From ec7db42a43be527f3c2fe2c4e7a18a5a91f6dd6b Mon Sep 17 00:00:00 2001 From: Jan Potoms <2109932+Janpot@users.noreply.github.com> Date: Wed, 5 Feb 2025 13:01:20 +0100 Subject: [PATCH] [code-infra] Update package layout for better ESM support (#43264) Signed-off-by: Jan Potoms <2109932+Janpot@users.noreply.github.com> Co-authored-by: Olivier Tassinari --- .circleci/config.yml | 2 +- .github/workflows/ci.yml | 2 +- apps/README.md | 4 +- apps/bare-next-app/.eslintrc | 9 + apps/bare-next-app/.gitignore | 35 + apps/bare-next-app/README.md | 9 + apps/bare-next-app/next.config.mjs | 13 + apps/bare-next-app/package.json | 42 + apps/bare-next-app/public/next.svg | 1 + apps/bare-next-app/public/vercel.svg | 1 + apps/bare-next-app/src/app/favicon.ico | Bin 0 -> 25931 bytes apps/bare-next-app/src/app/globals.css | 20 + apps/bare-next-app/src/app/grid/page.tsx | 259 + apps/bare-next-app/src/app/layout.tsx | 21 + .../src/app/material-ui/icons/page.tsx | 72 + .../src/app/material-ui/layout.tsx | 48 + .../src/app/material-ui/page.tsx | 37 + .../app/material-ui/react-accordion/page.tsx | 58 + .../src/app/material-ui/react-alert/page.tsx | 72 + .../app/material-ui/react-app-bar/page.tsx | 100 + .../material-ui/react-autocomplete/page.tsx | 191 + .../src/app/material-ui/react-avatar/page.tsx | 86 + .../app/material-ui/react-backdrop/page.tsx | 13 + .../src/app/material-ui/react-badge/page.tsx | 72 + .../react-bottom-navigation/page.tsx | 30 + .../material-ui/react-breadcrumbs/page.tsx | 58 + .../material-ui/react-button-group/page.tsx | 58 + .../src/app/material-ui/react-button/page.tsx | 121 + .../src/app/material-ui/react-card/page.tsx | 65 + .../app/material-ui/react-checkbox/page.tsx | 79 + .../src/app/material-ui/react-chip/page.tsx | 93 + .../app/material-ui/react-container/page.tsx | 26 + .../material-ui/react-css-baseline/page.tsx | 24 + .../app/material-ui/react-divider/page.tsx | 58 + .../react-floating-action-button/page.tsx | 37 + .../src/app/material-ui/react-grid/page.tsx | 74 + .../src/app/material-ui/react-modal/page.tsx | 51 + .../app/material-ui/react-pagination/page.tsx | 86 + .../src/app/material-ui/react-paper/page.tsx | 37 + .../app/material-ui/react-popover/page.tsx | 37 + .../src/app/material-ui/react-popper/page.tsx | 51 + .../app/material-ui/react-progress/page.tsx | 100 + .../material-ui/react-radio-button/page.tsx | 79 + .../src/app/material-ui/react-select/page.tsx | 121 + .../src/app/material-ui/react-slider/page.tsx | 135 + .../src/app/material-ui/react-stack/page.tsx | 54 + .../app/material-ui/react-stepper/page.tsx | 72 + .../src/app/material-ui/react-switch/page.tsx | 65 + .../src/app/material-ui/react-tabs/page.tsx | 142 + .../app/material-ui/react-text-field/page.tsx | 163 + .../material-ui/react-toggle-button/page.tsx | 65 + .../app/material-ui/react-tooltip/page.tsx | 121 + apps/bare-next-app/src/app/page.module.css | 149 + apps/bare-next-app/src/app/theme.ts | 13 + apps/bare-next-app/src/assets/mui.svg | 1 + apps/bare-next-app/src/augment.d.ts | 48 + apps/bare-next-app/tsconfig.json | 38 + apps/pigment-css-next-app/README.md | 4 +- .../{next.config.js => next.config.mjs} | 6 +- apps/pigment-css-next-app/package.json | 2 +- apps/pigment-css-next-app/tsconfig.json | 2 +- apps/pigment-css-vite-app/package.json | 2 +- apps/pigment-css-vite-app/tsconfig.json | 13 +- babel.config.js | 15 +- package.json | 11 +- packages/mui-base/package.json | 2 +- packages/mui-base/src/Select/Select.test.tsx | 12 +- packages/mui-base/tsconfig.build.json | 2 +- packages/mui-docs/package.json | 2 +- packages/mui-docs/tsconfig.build.json | 2 +- packages/mui-icons-material/lib/esm/icon.d.ts | 1 + .../mui-icons-material/lib/esm/index.d.ts | 10621 ++++++++++++++++ packages/mui-icons-material/lib/icon.d.ts | 1 + packages/mui-icons-material/lib/index.d.ts | 10621 ++++++++++++++++ packages/mui-icons-material/package.json | 33 +- .../scripts/create-esm-package-json.mjs | 17 + .../scripts/create-typings.mjs | 27 +- packages/mui-icons-material/src/icon.d.ts | 1 - .../test/generated-types/tsconfig.json | 4 +- packages/mui-joy/package.json | 2 +- packages/mui-joy/tsconfig.build.json | 2 +- packages/mui-lab/package.json | 2 +- packages/mui-lab/tsconfig.build.json | 2 +- packages/mui-material-nextjs/package.json | 11 +- .../src/v13-pagesRouter/nextDocument.cjs | 1 + .../pagesRouterV13Document.tsx | 5 +- .../mui-material-nextjs/tsconfig.build.json | 6 +- .../mui-material-pigment-css/package.json | 6 +- .../tsconfig.build.json | 2 +- packages/mui-material/package.json | 7 +- .../mui-material/src/styles/adaptV4Theme.js | 1 + packages/mui-material/tsconfig.build.json | 2 +- packages/mui-styled-engine/src/index.js | 1 + packages/mui-system/package.json | 2 +- .../src/Container/createContainer.tsx | 1 + packages/mui-system/src/Grid/createGrid.tsx | 1 + packages/mui-system/src/Stack/createStack.tsx | 1 + packages/mui-system/tsconfig.build.json | 2 +- packages/mui-utils/package.json | 2 +- packages/mui-utils/tsconfig.build.json | 2 +- pnpm-lock.yaml | 1041 +- scripts/build.mjs | 79 +- scripts/buildTypes.mjs | 2 + scripts/buildTypes.mts | 97 + scripts/copyFiles.mjs | 18 +- scripts/copyFilesUtils.mjs | 121 +- scripts/sizeSnapshot/webpack.config.js | 5 - tsconfig.json | 4 +- 108 files changed, 25706 insertions(+), 641 deletions(-) create mode 100644 apps/bare-next-app/.eslintrc create mode 100644 apps/bare-next-app/.gitignore create mode 100644 apps/bare-next-app/README.md create mode 100644 apps/bare-next-app/next.config.mjs create mode 100644 apps/bare-next-app/package.json create mode 100644 apps/bare-next-app/public/next.svg create mode 100644 apps/bare-next-app/public/vercel.svg create mode 100644 apps/bare-next-app/src/app/favicon.ico create mode 100644 apps/bare-next-app/src/app/globals.css create mode 100644 apps/bare-next-app/src/app/grid/page.tsx create mode 100644 apps/bare-next-app/src/app/layout.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/icons/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/layout.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-accordion/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-alert/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-app-bar/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-autocomplete/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-avatar/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-backdrop/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-badge/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-bottom-navigation/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-breadcrumbs/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-button-group/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-button/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-card/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-checkbox/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-chip/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-container/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-css-baseline/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-divider/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-floating-action-button/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-grid/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-modal/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-pagination/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-paper/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-popover/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-popper/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-progress/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-radio-button/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-select/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-slider/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-stack/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-stepper/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-switch/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-tabs/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-text-field/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-toggle-button/page.tsx create mode 100644 apps/bare-next-app/src/app/material-ui/react-tooltip/page.tsx create mode 100644 apps/bare-next-app/src/app/page.module.css create mode 100644 apps/bare-next-app/src/app/theme.ts create mode 100644 apps/bare-next-app/src/assets/mui.svg create mode 100644 apps/bare-next-app/src/augment.d.ts create mode 100644 apps/bare-next-app/tsconfig.json rename apps/pigment-css-next-app/{next.config.js => next.config.mjs} (94%) create mode 100644 packages/mui-icons-material/lib/esm/icon.d.ts create mode 100644 packages/mui-icons-material/lib/esm/index.d.ts create mode 100644 packages/mui-icons-material/lib/icon.d.ts create mode 100644 packages/mui-icons-material/lib/index.d.ts create mode 100644 packages/mui-icons-material/scripts/create-esm-package-json.mjs delete mode 100644 packages/mui-icons-material/src/icon.d.ts create mode 100644 packages/mui-material-nextjs/src/v13-pagesRouter/nextDocument.cjs create mode 100644 scripts/buildTypes.mts diff --git a/.circleci/config.yml b/.circleci/config.yml index 4336a37e12fe6b..f83ed891e12040 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -315,7 +315,7 @@ jobs: git add -f packages/mui-material/build || echo '/material declarations do not exist' git add -f packages/mui-lab/build || echo '/lab declarations do not exist' git add -f packages/mui-utils/build || echo '/utils declarations do not exist' - pnpm -r build:types + pnpm -r build:stable && pnpm -r build:types git --no-pager diff - run: name: Any defect declaration files? diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a96be7481ac6bc..0566f86d99034c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: - run: pnpm install - run: pnpm build:ci env: - NODE_OPTIONS: --max_old_space_size=4096 + NODE_OPTIONS: --max_old_space_size=6144 - run: pnpm release:changelog env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/apps/README.md b/apps/README.md index 0fb64c7b2a5424..2e551bb3b3b0e5 100644 --- a/apps/README.md +++ b/apps/README.md @@ -2,8 +2,8 @@ To test Pigment CSS demo apps, you can directly run - -`pnpm nx run @app/vite-app:preview` to start vite demo or `pnpm nx run @app/next-app:preview` to start nextjs demo after building automatically. +`pnpm nx run @app/pigment-css-vite-app:preview` to start vite demo or `pnpm nx run @app/pigment-css-next-app:preview` to start nextjs demo after building automatically. To start either of the apps in dev mode, just run - -`pnpm nx run @app/vite-app:dev` or `pnpm nx run @app/next-app:dev` +`pnpm nx run @app/pigment-css-vite-app:dev` or `pnpm nx run @app/pigment-css-next-app:dev` diff --git a/apps/bare-next-app/.eslintrc b/apps/bare-next-app/.eslintrc new file mode 100644 index 00000000000000..73d03ea1064762 --- /dev/null +++ b/apps/bare-next-app/.eslintrc @@ -0,0 +1,9 @@ +{ + "extends": ["plugin:react/jsx-runtime"], + "rules": { + "import/prefer-default-export": "off", + "import/extensions": "off", + "import/no-unresolved": "off", + "react/no-unknown-property": ["error", { "ignore": ["sx"] }], + }, +} diff --git a/apps/bare-next-app/.gitignore b/apps/bare-next-app/.gitignore new file mode 100644 index 00000000000000..8f322f0d8f4957 --- /dev/null +++ b/apps/bare-next-app/.gitignore @@ -0,0 +1,35 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/apps/bare-next-app/README.md b/apps/bare-next-app/README.md new file mode 100644 index 00000000000000..79f0a48b31818d --- /dev/null +++ b/apps/bare-next-app/README.md @@ -0,0 +1,9 @@ +# bare next app + +_date: 2025-02-04_ + +This is a copy of `apps/pigment-css-next-app` which currently suffers from heavy slow down in GitHub actions on MacOs for its `build` command. This copy removes Pigment CSS but keeps the rest of the app intact to serve as an integration test during `pnpm build:ci`. + +Feel free to remove once the pigmenbt version works in predictable time again on MacOs GitHub actions. + +See also [#43264](https://github.com/mui/material-ui/pull/43264) diff --git a/apps/bare-next-app/next.config.mjs b/apps/bare-next-app/next.config.mjs new file mode 100644 index 00000000000000..45ee1072902591 --- /dev/null +++ b/apps/bare-next-app/next.config.mjs @@ -0,0 +1,13 @@ +/** @type {import('@pigment-css/nextjs-plugin').NextConfig} */ +export default { + eslint: { + ignoreDuringBuilds: true, + }, + typescript: { + ignoreBuildErrors: true, + }, + devIndicators: { + buildActivity: true, + buildActivityPosition: 'bottom-right', + }, +}; diff --git a/apps/bare-next-app/package.json b/apps/bare-next-app/package.json new file mode 100644 index 00000000000000..43486f497836b6 --- /dev/null +++ b/apps/bare-next-app/package.json @@ -0,0 +1,42 @@ +{ + "name": "@app/next-app", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "preview": "next start", + "clean": "rimraf .next" + }, + "dependencies": { + "@emotion/cache": "latest", + "@mui/base": "workspace:^", + "@mui/icons-material": "workspace:^", + "@mui/lab": "workspace:^", + "@mui/material": "workspace:^", + "@mui/material-nextjs": "workspace:^", + "@mui/material-pigment-css": "workspace:^", + "@mui/system": "workspace:^", + "@mui/utils": "workspace:^", + "next": "latest", + "react": "^19.0.0", + "react-dom": "^19.0.0" + }, + "devDependencies": { + "@pigment-css/nextjs-plugin": "0.0.30", + "@types/node": "^20.17.16", + "@types/react": "^19.0.8", + "@types/react-dom": "^19.0.3", + "eslint": "^8.57.1", + "typescript": "^5.7.3" + }, + "nx": { + "targets": { + "preview": { + "dependsOn": [ + "^build" + ] + } + } + } +} diff --git a/apps/bare-next-app/public/next.svg b/apps/bare-next-app/public/next.svg new file mode 100644 index 00000000000000..5174b28c565c28 --- /dev/null +++ b/apps/bare-next-app/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/bare-next-app/public/vercel.svg b/apps/bare-next-app/public/vercel.svg new file mode 100644 index 00000000000000..d2f84222734f27 --- /dev/null +++ b/apps/bare-next-app/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/bare-next-app/src/app/favicon.ico b/apps/bare-next-app/src/app/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..718d6fea4835ec2d246af9800eddb7ffb276240c GIT binary patch literal 25931 zcmeHv30#a{`}aL_*G&7qml|y<+KVaDM2m#dVr!KsA!#An?kSQM(q<_dDNCpjEux83 zLb9Z^XxbDl(w>%i@8hT6>)&Gu{h#Oeyszu?xtw#Zb1mO{pgX9699l+Qppw7jXaYf~-84xW z)w4x8?=youko|}Vr~(D$UXIbiXABHh`p1?nn8Po~fxRJv}|0e(BPs|G`(TT%kKVJAdg5*Z|x0leQq0 zkdUBvb#>9F()jo|T~kx@OM8$9wzs~t2l;K=woNssA3l6|sx2r3+kdfVW@e^8e*E}v zA1y5{bRi+3Z`uD3{F7LgFJDdvm;nJilkzDku>BwXH(8ItVCXk*-lSJnR?-2UN%hJ){&rlvg`CDTj z)Bzo!3v7Ou#83zEDEFcKt(f1E0~=rqeEbTnMvWR#{+9pg%7G8y>u1OVRUSoox-ovF z2Ydma(;=YuBY(eI|04{hXzZD6_f(v~H;C~y5=DhAC{MMS>2fm~1H_t2$56pc$NH8( z5bH|<)71dV-_oCHIrzrT`2s-5w_+2CM0$95I6X8p^r!gHp+j_gd;9O<1~CEQQGS8) zS9Qh3#p&JM-G8rHekNmKVewU;pJRcTAog68KYo^dRo}(M>36U4Us zfgYWSiHZL3;lpWT=zNAW>Dh#mB!_@Lg%$ms8N-;aPqMn+C2HqZgz&9~Eu z4|Kp<`$q)Uw1R?y(~S>ePdonHxpV1#eSP1B;Ogo+-Pk}6#0GsZZ5!||ev2MGdh}_m z{DeR7?0-1^zVs&`AV6Vt;r3`I`OI_wgs*w=eO%_#7Kepl{B@xiyCANc(l zzIyd4y|c6PXWq9-|KM8(zIk8LPk(>a)zyFWjhT!$HJ$qX1vo@d25W<fvZQ2zUz5WRc(UnFMKHwe1| zWmlB1qdbiA(C0jmnV<}GfbKtmcu^2*P^O?MBLZKt|As~ge8&AAO~2K@zbXelK|4T<{|y4`raF{=72kC2Kn(L4YyenWgrPiv z@^mr$t{#X5VuIMeL!7Ab6_kG$&#&5p*Z{+?5U|TZ`B!7llpVmp@skYz&n^8QfPJzL z0G6K_OJM9x+Wu2gfN45phANGt{7=C>i34CV{Xqlx(fWpeAoj^N0Biu`w+MVcCUyU* zDZuzO0>4Z6fbu^T_arWW5n!E45vX8N=bxTVeFoep_G#VmNlQzAI_KTIc{6>c+04vr zx@W}zE5JNSU>!THJ{J=cqjz+4{L4A{Ob9$ZJ*S1?Ggg3klFp!+Y1@K+pK1DqI|_gq z5ZDXVpge8-cs!o|;K73#YXZ3AShj50wBvuq3NTOZ`M&qtjj#GOFfgExjg8Gn8>Vq5 z`85n+9|!iLCZF5$HJ$Iu($dm?8~-ofu}tEc+-pyke=3!im#6pk_Wo8IA|fJwD&~~F zc16osQ)EBo58U7XDuMexaPRjU@h8tXe%S{fA0NH3vGJFhuyyO!Uyl2^&EOpX{9As0 zWj+P>{@}jxH)8|r;2HdupP!vie{sJ28b&bo!8`D^x}TE$%zXNb^X1p@0PJ86`dZyj z%ce7*{^oo+6%&~I!8hQy-vQ7E)0t0ybH4l%KltWOo~8cO`T=157JqL(oq_rC%ea&4 z2NcTJe-HgFjNg-gZ$6!Y`SMHrlj}Etf7?r!zQTPPSv}{so2e>Fjs1{gzk~LGeesX%r(Lh6rbhSo_n)@@G-FTQy93;l#E)hgP@d_SGvyCp0~o(Y;Ee8{ zdVUDbHm5`2taPUOY^MAGOw*>=s7=Gst=D+p+2yON!0%Hk` zz5mAhyT4lS*T3LS^WSxUy86q&GnoHxzQ6vm8)VS}_zuqG?+3td68_x;etQAdu@sc6 zQJ&5|4(I?~3d-QOAODHpZ=hlSg(lBZ!JZWCtHHSj`0Wh93-Uk)_S%zsJ~aD>{`A0~ z9{AG(e|q3g5B%wYKRxiL2Y$8(4w6bzchKuloQW#e&S3n+P- z8!ds-%f;TJ1>)v)##>gd{PdS2Oc3VaR`fr=`O8QIO(6(N!A?pr5C#6fc~Ge@N%Vvu zaoAX2&(a6eWy_q&UwOhU)|P3J0Qc%OdhzW=F4D|pt0E4osw;%<%Dn58hAWD^XnZD= z>9~H(3bmLtxpF?a7su6J7M*x1By7YSUbxGi)Ot0P77`}P3{)&5Un{KD?`-e?r21!4vTTnN(4Y6Lin?UkSM z`MXCTC1@4A4~mvz%Rh2&EwY))LeoT=*`tMoqcEXI>TZU9WTP#l?uFv+@Dn~b(>xh2 z;>B?;Tz2SR&KVb>vGiBSB`@U7VIWFSo=LDSb9F{GF^DbmWAfpms8Sx9OX4CnBJca3 zlj9(x!dIjN?OG1X4l*imJNvRCk}F%!?SOfiOq5y^mZW)jFL@a|r-@d#f7 z2gmU8L3IZq0ynIws=}~m^#@&C%J6QFo~Mo4V`>v7MI-_!EBMMtb%_M&kvAaN)@ZVw z+`toz&WG#HkWDjnZE!6nk{e-oFdL^$YnbOCN}JC&{$#$O27@|Tn-skXr)2ml2~O!5 zX+gYoxhoc7qoU?C^3~&!U?kRFtnSEecWuH0B0OvLodgUAi}8p1 zrO6RSXHH}DMc$&|?D004DiOVMHV8kXCP@7NKB zgaZq^^O<7PoKEp72kby@W0Z!Y*Ay{&vfg#C&gG@YVR9g?FEocMUi1gSN$+V+ayF45{a zuDZDTN}mS|;BO%gEf}pjBfN2-gIrU#G5~cucA;dokXW89%>AyXJJI z9X4UlIWA|ZYHgbI z5?oFk@A=Ik7lrEQPDH!H+b`7_Y~aDb_qa=B2^Y&Ow41cU=4WDd40dp5(QS-WMN-=Y z9g;6_-JdNU;|6cPwf$ak*aJIcwL@1n$#l~zi{c{EW?T;DaW*E8DYq?Umtz{nJ&w-M zEMyTDrC&9K$d|kZe2#ws6)L=7K+{ zQw{XnV6UC$6-rW0emqm8wJoeZK)wJIcV?dST}Z;G0Arq{dVDu0&4kd%N!3F1*;*pW zR&qUiFzK=@44#QGw7k1`3t_d8&*kBV->O##t|tonFc2YWrL7_eqg+=+k;!F-`^b8> z#KWCE8%u4k@EprxqiV$VmmtiWxDLgnGu$Vs<8rppV5EajBXL4nyyZM$SWVm!wnCj-B!Wjqj5-5dNXukI2$$|Bu3Lrw}z65Lc=1G z^-#WuQOj$hwNGG?*CM_TO8Bg-1+qc>J7k5c51U8g?ZU5n?HYor;~JIjoWH-G>AoUP ztrWWLbRNqIjW#RT*WqZgPJXU7C)VaW5}MiijYbABmzoru6EmQ*N8cVK7a3|aOB#O& zBl8JY2WKfmj;h#Q!pN%9o@VNLv{OUL?rixHwOZuvX7{IJ{(EdPpuVFoQqIOa7giLVkBOKL@^smUA!tZ1CKRK}#SSM)iQHk)*R~?M!qkCruaS!#oIL1c z?J;U~&FfH#*98^G?i}pA{ z9Jg36t4=%6mhY(quYq*vSxptes9qy|7xSlH?G=S@>u>Ebe;|LVhs~@+06N<4CViBk zUiY$thvX;>Tby6z9Y1edAMQaiH zm^r3v#$Q#2T=X>bsY#D%s!bhs^M9PMAcHbCc0FMHV{u-dwlL;a1eJ63v5U*?Q_8JO zT#50!RD619#j_Uf))0ooADz~*9&lN!bBDRUgE>Vud-i5ck%vT=r^yD*^?Mp@Q^v+V zG#-?gKlr}Eeqifb{|So?HM&g91P8|av8hQoCmQXkd?7wIJwb z_^v8bbg`SAn{I*4bH$u(RZ6*xUhuA~hc=8czK8SHEKTzSxgbwi~9(OqJB&gwb^l4+m`k*Q;_?>Y-APi1{k zAHQ)P)G)f|AyjSgcCFps)Fh6Bca*Xznq36!pV6Az&m{O8$wGFD? zY&O*3*J0;_EqM#jh6^gMQKpXV?#1?>$ml1xvh8nSN>-?H=V;nJIwB07YX$e6vLxH( zqYwQ>qxwR(i4f)DLd)-$P>T-no_c!LsN@)8`e;W@)-Hj0>nJ-}Kla4-ZdPJzI&Mce zv)V_j;(3ERN3_@I$N<^|4Lf`B;8n+bX@bHbcZTopEmDI*Jfl)-pFDvo6svPRoo@(x z);_{lY<;);XzT`dBFpRmGrr}z5u1=pC^S-{ce6iXQlLGcItwJ^mZx{m$&DA_oEZ)B{_bYPq-HA zcH8WGoBG(aBU_j)vEy+_71T34@4dmSg!|M8Vf92Zj6WH7Q7t#OHQqWgFE3ARt+%!T z?oLovLVlnf?2c7pTc)~cc^($_8nyKwsN`RA-23ed3sdj(ys%pjjM+9JrctL;dy8a( z@en&CQmnV(()bu|Y%G1-4a(6x{aLytn$T-;(&{QIJB9vMox11U-1HpD@d(QkaJdEb zG{)+6Dos_L+O3NpWo^=gR?evp|CqEG?L&Ut#D*KLaRFOgOEK(Kq1@!EGcTfo+%A&I z=dLbB+d$u{sh?u)xP{PF8L%;YPPW53+@{>5W=Jt#wQpN;0_HYdw1{ksf_XhO4#2F= zyPx6Lx2<92L-;L5PD`zn6zwIH`Jk($?Qw({erA$^bC;q33hv!d!>%wRhj# zal^hk+WGNg;rJtb-EB(?czvOM=H7dl=vblBwAv>}%1@{}mnpUznfq1cE^sgsL0*4I zJ##!*B?=vI_OEVis5o+_IwMIRrpQyT_Sq~ZU%oY7c5JMIADzpD!Upz9h@iWg_>>~j zOLS;wp^i$-E?4<_cp?RiS%Rd?i;f*mOz=~(&3lo<=@(nR!_Rqiprh@weZlL!t#NCc zO!QTcInq|%#>OVgobj{~ixEUec`E25zJ~*DofsQdzIa@5^nOXj2T;8O`l--(QyU^$t?TGY^7#&FQ+2SS3B#qK*k3`ye?8jUYSajE5iBbJls75CCc(m3dk{t?- zopcER9{Z?TC)mk~gpi^kbbu>b-+a{m#8-y2^p$ka4n60w;Sc2}HMf<8JUvhCL0B&Btk)T`ctE$*qNW8L$`7!r^9T+>=<=2qaq-;ll2{`{Rg zc5a0ZUI$oG&j-qVOuKa=*v4aY#IsoM+1|c4Z)<}lEDvy;5huB@1RJPquU2U*U-;gu z=En2m+qjBzR#DEJDO`WU)hdd{Vj%^0V*KoyZ|5lzV87&g_j~NCjwv0uQVqXOb*QrQ zy|Qn`hxx(58c70$E;L(X0uZZ72M1!6oeg)(cdKO ze0gDaTz+ohR-#d)NbAH4x{I(21yjwvBQfmpLu$)|m{XolbgF!pmsqJ#D}(ylp6uC> z{bqtcI#hT#HW=wl7>p!38sKsJ`r8}lt-q%Keqy%u(xk=yiIJiUw6|5IvkS+#?JTBl z8H5(Q?l#wzazujH!8o>1xtn8#_w+397*_cy8!pQGP%K(Ga3pAjsaTbbXJlQF_+m+-UpUUent@xM zg%jqLUExj~o^vQ3Gl*>wh=_gOr2*|U64_iXb+-111aH}$TjeajM+I20xw(((>fej-@CIz4S1pi$(#}P7`4({6QS2CaQS4NPENDp>sAqD z$bH4KGzXGffkJ7R>V>)>tC)uax{UsN*dbeNC*v}#8Y#OWYwL4t$ePR?VTyIs!wea+ z5Urmc)X|^`MG~*dS6pGSbU+gPJoq*^a=_>$n4|P^w$sMBBy@f*Z^Jg6?n5?oId6f{ z$LW4M|4m502z0t7g<#Bx%X;9<=)smFolV&(V^(7Cv2-sxbxopQ!)*#ZRhTBpx1)Fc zNm1T%bONzv6@#|dz(w02AH8OXe>kQ#1FMCzO}2J_mST)+ExmBr9cva-@?;wnmWMOk z{3_~EX_xadgJGv&H@zK_8{(x84`}+c?oSBX*Ge3VdfTt&F}yCpFP?CpW+BE^cWY0^ zb&uBN!Ja3UzYHK-CTyA5=L zEMW{l3Usky#ly=7px648W31UNV@K)&Ub&zP1c7%)`{);I4b0Q<)B}3;NMG2JH=X$U zfIW4)4n9ZM`-yRj67I)YSLDK)qfUJ_ij}a#aZN~9EXrh8eZY2&=uY%2N0UFF7<~%M zsB8=erOWZ>Ct_#^tHZ|*q`H;A)5;ycw*IcmVxi8_0Xk}aJA^ath+E;xg!x+As(M#0=)3!NJR6H&9+zd#iP(m0PIW8$ z1Y^VX`>jm`W!=WpF*{ioM?C9`yOR>@0q=u7o>BP-eSHqCgMDj!2anwH?s%i2p+Q7D zzszIf5XJpE)IG4;d_(La-xenmF(tgAxK`Y4sQ}BSJEPs6N_U2vI{8=0C_F?@7<(G; zo$~G=8p+076G;`}>{MQ>t>7cm=zGtfbdDXm6||jUU|?X?CaE?(<6bKDYKeHlz}DA8 zXT={X=yp_R;HfJ9h%?eWvQ!dRgz&Su*JfNt!Wu>|XfU&68iRikRrHRW|ZxzRR^`eIGt zIeiDgVS>IeExKVRWW8-=A=yA`}`)ZkWBrZD`hpWIxBGkh&f#ijr449~m`j6{4jiJ*C!oVA8ZC?$1RM#K(_b zL9TW)kN*Y4%^-qPpMP7d4)o?Nk#>aoYHT(*g)qmRUb?**F@pnNiy6Fv9rEiUqD(^O zzyS?nBrX63BTRYduaG(0VVG2yJRe%o&rVrLjbxTaAFTd8s;<<@Qs>u(<193R8>}2_ zuwp{7;H2a*X7_jryzriZXMg?bTuegABb^87@SsKkr2)0Gyiax8KQWstw^v#ix45EVrcEhr>!NMhprl$InQMzjSFH54x5k9qHc`@9uKQzvL4ihcq{^B zPrVR=o_ic%Y>6&rMN)hTZsI7I<3&`#(nl+3y3ys9A~&^=4?PL&nd8)`OfG#n zwAMN$1&>K++c{^|7<4P=2y(B{jJsQ0a#U;HTo4ZmWZYvI{+s;Td{Yzem%0*k#)vjpB zia;J&>}ICate44SFYY3vEelqStQWFihx%^vQ@Do(sOy7yR2@WNv7Y9I^yL=nZr3mb zXKV5t@=?-Sk|b{XMhA7ZGB@2hqsx}4xwCW!in#C zI@}scZlr3-NFJ@NFaJlhyfcw{k^vvtGl`N9xSo**rDW4S}i zM9{fMPWo%4wYDG~BZ18BD+}h|GQKc-g^{++3MY>}W_uq7jGHx{mwE9fZiPCoxN$+7 zrODGGJrOkcPQUB(FD5aoS4g~7#6NR^ma7-!>mHuJfY5kTe6PpNNKC9GGRiu^L31uG z$7v`*JknQHsYB!Tm_W{a32TM099djW%5e+j0Ve_ct}IM>XLF1Ap+YvcrLV=|CKo6S zb+9Nl3_YdKP6%Cxy@6TxZ>;4&nTneadr z_ES90ydCev)LV!dN=#(*f}|ZORFdvkYBni^aLbUk>BajeWIOcmHP#8S)*2U~QKI%S zyrLmtPqb&TphJ;>yAxri#;{uyk`JJqODDw%(Z=2`1uc}br^V%>j!gS)D*q*f_-qf8&D;W1dJgQMlaH5er zN2U<%Smb7==vE}dDI8K7cKz!vs^73o9f>2sgiTzWcwY|BMYHH5%Vn7#kiw&eItCqa zIkR2~Q}>X=Ar8W|^Ms41Fm8o6IB2_j60eOeBB1Br!boW7JnoeX6Gs)?7rW0^5psc- zjS16yb>dFn>KPOF;imD}e!enuIniFzv}n$m2#gCCv4jM#ArwlzZ$7@9&XkFxZ4n!V zj3dyiwW4Ki2QG{@i>yuZXQizw_OkZI^-3otXC{!(lUpJF33gI60ak;Uqitp74|B6I zgg{b=Iz}WkhCGj1M=hu4#Aw173YxIVbISaoc z-nLZC*6Tgivd5V`K%GxhBsp@SUU60-rfc$=wb>zdJzXS&-5(NRRodFk;Kxk!S(O(a0e7oY=E( zAyS;Ow?6Q&XA+cnkCb{28_1N8H#?J!*$MmIwLq^*T_9-z^&UE@A(z9oGYtFy6EZef LrJugUA?W`A8`#=m literal 0 HcmV?d00001 diff --git a/apps/bare-next-app/src/app/globals.css b/apps/bare-next-app/src/app/globals.css new file mode 100644 index 00000000000000..3c8b02ea506b59 --- /dev/null +++ b/apps/bare-next-app/src/app/globals.css @@ -0,0 +1,20 @@ +@layer reset, mui; + +@layer reset { + * { + box-sizing: border-box; + padding: 0; + margin: 0; + } + + html, + body { + max-width: 100vw; + overflow-x: hidden; + } + + a { + color: inherit; + text-decoration: none; + } +} diff --git a/apps/bare-next-app/src/app/grid/page.tsx b/apps/bare-next-app/src/app/grid/page.tsx new file mode 100644 index 00000000000000..7045f40d96156b --- /dev/null +++ b/apps/bare-next-app/src/app/grid/page.tsx @@ -0,0 +1,259 @@ +'use client'; +import Box from '@mui/material/Box'; +import Grid from '@mui/material/Grid2'; +import { styled } from '@mui/material'; + +const Item = styled('div')` + background-color: #fff; + border: 1px solid #ced7e0; + padding: 8px; + border-radius: 4px; + text-align: center; +`; + +function GridDemo1() { + return ( + + + size=8 + + + size=4 + + + size=4 + + + size=8 + + + ); +} + +function GridDemo2() { + return ( + + + xs=6 md=8 + + + xs=6 md=4 + + + xs=6 md=4 + + + xs=6 md=8 + + + ); +} + +function GridDemo4() { + return ( + + + 1 + + + 2 + + + 3 + + + 4 + + + ); +} + +function GridDemo5() { + return ( + + {Array.from(Array(6)).map((_, index) => ( + + {index + 1} + + ))} + + ); +} + +function GridDemo6() { + return ( + + + grow + + + size=6 + + + grow + + + ); +} + +function GridDemo7() { + return ( + + + Variable width item + + + size=6 + + + grow + + + ); +} + +function GridDemo8() { + return ( + + + + Email subscribe section + + + + + + Category A + + +
  • Link 1.1
  • +
  • Link 1.2
  • +
  • Link 1.3
  • +
    +
    +
    + + + + Category B + + +
  • Link 2.1
  • +
  • Link 2.2
  • +
  • Link 2.3
  • +
    +
    +
    + + + + Category C + + +
  • Link 3.1
  • +
  • Link 3.2
  • +
  • Link 3.3
  • +
    +
    +
    + + + + Category D + + +
  • Link 4.1
  • +
  • Link 4.2
  • +
  • Link 4.3
  • +
    +
    +
    +
    + + + © Copyright + + + + Link A + + + Link B + + + Link C + + + +
    +
    + ); +} + +function GridDemo9() { + return ( + + + size=8 + + + size=8 + + + ); +} + +function GridDemo10() { + return ( + + + 1 + + + 2 + + + 3 + + + 4 + + + ); +} + +const demos = [ + { id: '1', component: GridDemo1 }, + { id: '2', component: GridDemo2 }, + { id: '4', component: GridDemo4 }, + { id: '5', component: GridDemo5 }, + { id: '6', component: GridDemo6 }, + { id: '7', component: GridDemo7 }, + { id: '8', component: GridDemo8 }, + { id: '9', component: GridDemo9 }, + { id: '10', component: GridDemo10 }, +]; + +export default function InteractiveGrid() { + return ( +
    + {demos.map((demo) => { + const Demo = demo.component; + return ( +
    +

    Grid Demo {demo.id}

    + +
    + ); + })} +
    + ); +} diff --git a/apps/bare-next-app/src/app/layout.tsx b/apps/bare-next-app/src/app/layout.tsx new file mode 100644 index 00000000000000..a03d1a329f883a --- /dev/null +++ b/apps/bare-next-app/src/app/layout.tsx @@ -0,0 +1,21 @@ +'use client'; +import { Inter } from 'next/font/google'; +import { AppRouterCacheProvider } from '@mui/material-nextjs/v15-appRouter'; +import { ThemeProvider } from '@mui/material/styles'; +import theme from './theme'; + +import './globals.css'; + +const inter = Inter({ subsets: ['latin'] }); + +export default function RootLayout(props: { children: React.ReactNode }) { + return ( + + + + {props.children} + + + + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/icons/page.tsx b/apps/bare-next-app/src/app/material-ui/icons/page.tsx new file mode 100644 index 00000000000000..a5a646c5635606 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/icons/page.tsx @@ -0,0 +1,72 @@ +'use client'; +import * as React from 'react'; +import CreateSvgIcon from '../../../../../../docs/data/material/components/icons/CreateSvgIcon'; +import FontAwesomeIcon from '../../../../../../docs/data/material/components/icons/FontAwesomeIcon'; +import FontAwesomeIconSize from '../../../../../../docs/data/material/components/icons/FontAwesomeIconSize'; +import FontAwesomeSvgIconDemo from '../../../../../../docs/data/material/components/icons/FontAwesomeSvgIconDemo'; +import Icons from '../../../../../../docs/data/material/components/icons/Icons'; +import SvgIconChildren from '../../../../../../docs/data/material/components/icons/SvgIconChildren'; +import SvgIconsColor from '../../../../../../docs/data/material/components/icons/SvgIconsColor'; +import SvgIconsSize from '../../../../../../docs/data/material/components/icons/SvgIconsSize'; +import SvgMaterialIcons from '../../../../../../docs/data/material/components/icons/SvgMaterialIcons'; + +export default function IconsPage() { + return ( + +
    +

    Create Svg Icon

    +
    + +
    +
    +
    +

    Font Awesome Icon

    +
    + +
    +
    +
    +

    Font Awesome Icon Size

    +
    + +
    +
    +
    +

    Font Awesome Svg Icon Demo

    +
    + +
    +
    +
    +

    Icons

    +
    + +
    +
    +
    +

    Svg Icon Children

    +
    + +
    +
    +
    +

    Svg Icons Color

    +
    + +
    +
    +
    +

    Svg Icons Size

    +
    + +
    +
    +
    +

    Svg Material Icons

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/layout.tsx b/apps/bare-next-app/src/app/material-ui/layout.tsx new file mode 100644 index 00000000000000..d77c161807286d --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/layout.tsx @@ -0,0 +1,48 @@ +'use client'; +import * as React from 'react'; +import { styled } from '@mui/material'; + +const Main = styled('div')(({ theme }) => ({ + display: 'flex', + flexDirection: 'column', + gap: '32px', + marginInline: 'auto', + maxWidth: '900px', + paddingBlock: '16px', + paddingInline: '8px', + [theme.breakpoints.up('sm')]: { + paddingInline: '24px', + }, + [theme.breakpoints.up('lg')]: { + paddingInline: '60px', + }, + '& h1': { + marginTop: 0, + marginBottom: 0, + }, + '& h2': { + marginTop: 0, + marginBottom: '0.75em', + }, + '& .demo-container': { + position: 'relative', + margin: 'auto', + display: 'flex', + WebkitBoxPack: 'center', + justifyContent: 'center', + padding: '24px', + backgroundColor: 'rgb(255, 255, 255)', + border: '1px solid rgb(229, 234, 242)', + borderRadius: '12px', + }, + ...theme.applyStyles('dark', { + '& .demo-container': { + backgroundColor: 'rgba(31, 38, 46, 0.1)', + border: '1px solid rgba(59, 74, 89, 0.2)', + }, + }), +})); + +export default function MaterialUILayout({ children }: { children: React.ReactNode }) { + return
    {children}
    ; +} diff --git a/apps/bare-next-app/src/app/material-ui/page.tsx b/apps/bare-next-app/src/app/material-ui/page.tsx new file mode 100644 index 00000000000000..dbc597751c52a0 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/page.tsx @@ -0,0 +1,37 @@ +// eslint-disable-next-line @typescript-eslint/no-unused-vars +import * as React from 'react'; +import Link from 'next/link'; +import fs from 'fs/promises'; +import path from 'path'; + +export default async function MaterialUIPage() { + const rootPaths = (await fs.readdir(path.join(process.cwd(), `src/app/material-ui`))).filter( + (p) => !p.startsWith('.'), + ); + return ( +
    +

    Material UI Components

    + +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-accordion/page.tsx b/apps/bare-next-app/src/app/material-ui/react-accordion/page.tsx new file mode 100644 index 00000000000000..7d47e9c5a83194 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-accordion/page.tsx @@ -0,0 +1,58 @@ +'use client'; +import * as React from 'react'; +import AccordionExpandDefault from '../../../../../../docs/data/material/components/accordion/AccordionExpandDefault'; +import AccordionExpandIcon from '../../../../../../docs/data/material/components/accordion/AccordionExpandIcon'; +import AccordionTransition from '../../../../../../docs/data/material/components/accordion/AccordionTransition'; +import AccordionUsage from '../../../../../../docs/data/material/components/accordion/AccordionUsage'; +import ControlledAccordions from '../../../../../../docs/data/material/components/accordion/ControlledAccordions'; +import CustomizedAccordions from '../../../../../../docs/data/material/components/accordion/CustomizedAccordions'; +import DisabledAccordion from '../../../../../../docs/data/material/components/accordion/DisabledAccordion'; + +export default function Accordion() { + return ( + +
    +

    Accordion Expand Default

    +
    + +
    +
    +
    +

    Accordion Expand Icon

    +
    + +
    +
    +
    +

    Accordion Transition

    +
    + +
    +
    +
    +

    Accordion Usage

    +
    + +
    +
    +
    +

    Controlled Accordions

    +
    + +
    +
    +
    +

    Customized Accordions

    +
    + +
    +
    +
    +

    Disabled Accordion

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-alert/page.tsx b/apps/bare-next-app/src/app/material-ui/react-alert/page.tsx new file mode 100644 index 00000000000000..35a5714870939b --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-alert/page.tsx @@ -0,0 +1,72 @@ +'use client'; +import * as React from 'react'; +import ActionAlerts from '../../../../../../docs/data/material/components/alert/ActionAlerts'; +import BasicAlerts from '../../../../../../docs/data/material/components/alert/BasicAlerts'; +import ColorAlerts from '../../../../../../docs/data/material/components/alert/ColorAlerts'; +import DescriptionAlerts from '../../../../../../docs/data/material/components/alert/DescriptionAlerts'; +import FilledAlerts from '../../../../../../docs/data/material/components/alert/FilledAlerts'; +import IconAlerts from '../../../../../../docs/data/material/components/alert/IconAlerts'; +import OutlinedAlerts from '../../../../../../docs/data/material/components/alert/OutlinedAlerts'; +import SimpleAlert from '../../../../../../docs/data/material/components/alert/SimpleAlert'; +import TransitionAlerts from '../../../../../../docs/data/material/components/alert/TransitionAlerts'; + +export default function Alert() { + return ( + +
    +

    Action Alerts

    +
    + +
    +
    +
    +

    Basic Alerts

    +
    + +
    +
    +
    +

    Color Alerts

    +
    + +
    +
    +
    +

    Description Alerts

    +
    + +
    +
    +
    +

    Filled Alerts

    +
    + +
    +
    +
    +

    Icon Alerts

    +
    + +
    +
    +
    +

    Outlined Alerts

    +
    + +
    +
    +
    +

    Simple Alert

    +
    + +
    +
    +
    +

    Transition Alerts

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-app-bar/page.tsx b/apps/bare-next-app/src/app/material-ui/react-app-bar/page.tsx new file mode 100644 index 00000000000000..cf15589d8cab32 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-app-bar/page.tsx @@ -0,0 +1,100 @@ +'use client'; +import * as React from 'react'; +import BackToTop from '../../../../../../docs/data/material/components/app-bar/BackToTop'; +import BottomAppBar from '../../../../../../docs/data/material/components/app-bar/BottomAppBar'; +import ButtonAppBar from '../../../../../../docs/data/material/components/app-bar/ButtonAppBar'; +import DenseAppBar from '../../../../../../docs/data/material/components/app-bar/DenseAppBar'; +import DrawerAppBar from '../../../../../../docs/data/material/components/app-bar/DrawerAppBar'; +import ElevateAppBar from '../../../../../../docs/data/material/components/app-bar/ElevateAppBar'; +import EnableColorOnDarkAppBar from '../../../../../../docs/data/material/components/app-bar/EnableColorOnDarkAppBar'; +import HideAppBar from '../../../../../../docs/data/material/components/app-bar/HideAppBar'; +import MenuAppBar from '../../../../../../docs/data/material/components/app-bar/MenuAppBar'; +import PrimarySearchAppBar from '../../../../../../docs/data/material/components/app-bar/PrimarySearchAppBar'; +import ProminentAppBar from '../../../../../../docs/data/material/components/app-bar/ProminentAppBar'; +import ResponsiveAppBar from '../../../../../../docs/data/material/components/app-bar/ResponsiveAppBar'; +import SearchAppBar from '../../../../../../docs/data/material/components/app-bar/SearchAppBar'; + +export default function AppBar() { + return ( + +
    +

    Back To Top

    +
    + +
    +
    +
    +

    Bottom App Bar

    +
    + +
    +
    +
    +

    Button App Bar

    +
    + +
    +
    +
    +

    Dense App Bar

    +
    + +
    +
    +
    +

    Drawer App Bar

    +
    + +
    +
    +
    +

    Elevate App Bar

    +
    + +
    +
    +
    +

    Enable Color On Dark App Bar

    +
    + +
    +
    +
    +

    Hide App Bar

    +
    + +
    +
    +
    +

    Menu App Bar

    +
    + +
    +
    +
    +

    Primary Search App Bar

    +
    + +
    +
    +
    +

    Prominent App Bar

    +
    + +
    +
    +
    +

    Responsive App Bar

    +
    + +
    +
    +
    +

    Search App Bar

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-autocomplete/page.tsx b/apps/bare-next-app/src/app/material-ui/react-autocomplete/page.tsx new file mode 100644 index 00000000000000..76d790513f7567 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-autocomplete/page.tsx @@ -0,0 +1,191 @@ +'use client'; +import * as React from 'react'; +import Asynchronous from '../../../../../../docs/data/material/components/autocomplete/Asynchronous'; +import AutocompleteHint from '../../../../../../docs/data/material/components/autocomplete/AutocompleteHint'; +import CheckboxesTags from '../../../../../../docs/data/material/components/autocomplete/CheckboxesTags'; +import ComboBox from '../../../../../../docs/data/material/components/autocomplete/ComboBox'; +import ControllableStates from '../../../../../../docs/data/material/components/autocomplete/ControllableStates'; +import CountrySelect from '../../../../../../docs/data/material/components/autocomplete/CountrySelect'; +import CustomInputAutocomplete from '../../../../../../docs/data/material/components/autocomplete/CustomInputAutocomplete'; +import CustomizedHook from '../../../../../../docs/data/material/components/autocomplete/CustomizedHook'; +import DisabledOptions from '../../../../../../docs/data/material/components/autocomplete/DisabledOptions'; +import Filter from '../../../../../../docs/data/material/components/autocomplete/Filter'; +import FixedTags from '../../../../../../docs/data/material/components/autocomplete/FixedTags'; +import FreeSolo from '../../../../../../docs/data/material/components/autocomplete/FreeSolo'; +import FreeSoloCreateOption from '../../../../../../docs/data/material/components/autocomplete/FreeSoloCreateOption'; +import FreeSoloCreateOptionDialog from '../../../../../../docs/data/material/components/autocomplete/FreeSoloCreateOptionDialog'; +import GitHubLabel from '../../../../../../docs/data/material/components/autocomplete/GitHubLabel'; +import GloballyCustomizedOptions from '../../../../../../docs/data/material/components/autocomplete/GloballyCustomizedOptions'; +import GoogleMaps from '../../../../../../docs/data/material/components/autocomplete/GoogleMaps'; +import Grouped from '../../../../../../docs/data/material/components/autocomplete/Grouped'; +import Highlights from '../../../../../../docs/data/material/components/autocomplete/Highlights'; +import LimitTags from '../../../../../../docs/data/material/components/autocomplete/LimitTags'; +import Playground from '../../../../../../docs/data/material/components/autocomplete/Playground'; +import RenderGroup from '../../../../../../docs/data/material/components/autocomplete/RenderGroup'; +import Sizes from '../../../../../../docs/data/material/components/autocomplete/Sizes'; +import Tags from '../../../../../../docs/data/material/components/autocomplete/Tags'; +import UseAutocomplete from '../../../../../../docs/data/material/components/autocomplete/UseAutocomplete'; +import Virtualize from '../../../../../../docs/data/material/components/autocomplete/Virtualize'; + +export default function Autocomplete() { + return ( + +
    +

    Asynchronous

    +
    + +
    +
    +
    +

    Autocomplete Hint

    +
    + +
    +
    +
    +

    Checkboxes Tags

    +
    + +
    +
    +
    +

    Combo Box

    +
    + +
    +
    +
    +

    Controllable States

    +
    + +
    +
    +
    +

    Country Select

    +
    + +
    +
    +
    +

    Custom Input Autocomplete

    +
    + +
    +
    +
    +

    Customized Hook

    +
    + +
    +
    +
    +

    Disabled Options

    +
    + +
    +
    +
    +

    Filter

    +
    + +
    +
    +
    +

    Fixed Tags

    +
    + +
    +
    +
    +

    Free Solo

    +
    + +
    +
    +
    +

    Free Solo Create Option

    +
    + +
    +
    +
    +

    Free Solo Create Option Dialog

    +
    + +
    +
    +
    +

    Git Hub Label

    +
    + +
    +
    +
    +

    Globally Customized Options

    +
    + +
    +
    +
    +

    Google Maps

    +
    + +
    +
    +
    +

    Grouped

    +
    + +
    +
    +
    +

    Highlights

    +
    + +
    +
    +
    +

    Limit Tags

    +
    + +
    +
    +
    +

    Playground

    +
    + +
    +
    +
    +

    Render Group

    +
    + +
    +
    +
    +

    Sizes

    +
    + +
    +
    +
    +

    Tags

    +
    + +
    +
    +
    +

    Use Autocomplete

    +
    + +
    +
    +
    +

    Virtualize

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-avatar/page.tsx b/apps/bare-next-app/src/app/material-ui/react-avatar/page.tsx new file mode 100644 index 00000000000000..b0cf4033ce238e --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-avatar/page.tsx @@ -0,0 +1,86 @@ +'use client'; +import * as React from 'react'; +import BackgroundLetterAvatars from '../../../../../../docs/data/material/components/avatars/BackgroundLetterAvatars'; +import BadgeAvatars from '../../../../../../docs/data/material/components/avatars/BadgeAvatars'; +import CustomSurplusAvatars from '../../../../../../docs/data/material/components/avatars/CustomSurplusAvatars'; +import FallbackAvatars from '../../../../../../docs/data/material/components/avatars/FallbackAvatars'; +import GroupAvatars from '../../../../../../docs/data/material/components/avatars/GroupAvatars'; +import IconAvatars from '../../../../../../docs/data/material/components/avatars/IconAvatars'; +import ImageAvatars from '../../../../../../docs/data/material/components/avatars/ImageAvatars'; +import LetterAvatars from '../../../../../../docs/data/material/components/avatars/LetterAvatars'; +import SizeAvatars from '../../../../../../docs/data/material/components/avatars/SizeAvatars'; +import TotalAvatars from '../../../../../../docs/data/material/components/avatars/TotalAvatars'; +import VariantAvatars from '../../../../../../docs/data/material/components/avatars/VariantAvatars'; + +export default function Avatars() { + return ( + +
    +

    Background Letter Avatars

    +
    + +
    +
    +
    +

    Badge Avatars

    +
    + +
    +
    +
    +

    Custom Surplus Avatars

    +
    + +
    +
    +
    +

    Fallback Avatars

    +
    + +
    +
    +
    +

    Group Avatars

    +
    + +
    +
    +
    +

    Icon Avatars

    +
    + +
    +
    +
    +

    Image Avatars

    +
    + +
    +
    +
    +

    Letter Avatars

    +
    + +
    +
    +
    +

    Size Avatars

    +
    + +
    +
    +
    +

    Total Avatars

    +
    + +
    +
    +
    +

    Variant Avatars

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-backdrop/page.tsx b/apps/bare-next-app/src/app/material-ui/react-backdrop/page.tsx new file mode 100644 index 00000000000000..54b664b5a36ba5 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-backdrop/page.tsx @@ -0,0 +1,13 @@ +'use client'; +import SimpleBackdrop from '../../../../../../docs/data/material/components/backdrop/SimpleBackdrop'; + +export default function Backdrop() { + return ( +
    +

    Simple Backdrop

    +
    + +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-badge/page.tsx b/apps/bare-next-app/src/app/material-ui/react-badge/page.tsx new file mode 100644 index 00000000000000..7612e906882b39 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-badge/page.tsx @@ -0,0 +1,72 @@ +'use client'; +import * as React from 'react'; +import AccessibleBadges from '../../../../../../docs/data/material/components/badges/AccessibleBadges'; +import BadgeMax from '../../../../../../docs/data/material/components/badges/BadgeMax'; +import BadgeOverlap from '../../../../../../docs/data/material/components/badges/BadgeOverlap'; +import BadgeVisibility from '../../../../../../docs/data/material/components/badges/BadgeVisibility'; +import ColorBadge from '../../../../../../docs/data/material/components/badges/ColorBadge'; +import CustomizedBadges from '../../../../../../docs/data/material/components/badges/CustomizedBadges'; +import DotBadge from '../../../../../../docs/data/material/components/badges/DotBadge'; +import ShowZeroBadge from '../../../../../../docs/data/material/components/badges/ShowZeroBadge'; +import SimpleBadge from '../../../../../../docs/data/material/components/badges/SimpleBadge'; + +export default function Badges() { + return ( + +
    +

    Accessible Badges

    +
    + +
    +
    +
    +

    Badge Max

    +
    + +
    +
    +
    +

    Badge Overlap

    +
    + +
    +
    +
    +

    Badge Visibility

    +
    + +
    +
    +
    +

    Color Badge

    +
    + +
    +
    +
    +

    Customized Badges

    +
    + +
    +
    +
    +

    Dot Badge

    +
    + +
    +
    +
    +

    Show Zero Badge

    +
    + +
    +
    +
    +

    Simple Badge

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-bottom-navigation/page.tsx b/apps/bare-next-app/src/app/material-ui/react-bottom-navigation/page.tsx new file mode 100644 index 00000000000000..835bfff7a9c407 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-bottom-navigation/page.tsx @@ -0,0 +1,30 @@ +'use client'; +import * as React from 'react'; +import FixedBottomNavigation from '../../../../../../docs/data/material/components/bottom-navigation/FixedBottomNavigation'; +import LabelBottomNavigation from '../../../../../../docs/data/material/components/bottom-navigation/LabelBottomNavigation'; +import SimpleBottomNavigation from '../../../../../../docs/data/material/components/bottom-navigation/SimpleBottomNavigation'; + +export default function BottomNavigation() { + return ( + +
    +

    Fixed Bottom Navigation

    +
    + +
    +
    +
    +

    Label Bottom Navigation

    +
    + +
    +
    +
    +

    Simple Bottom Navigation

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-breadcrumbs/page.tsx b/apps/bare-next-app/src/app/material-ui/react-breadcrumbs/page.tsx new file mode 100644 index 00000000000000..2bc3ae9757a7a7 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-breadcrumbs/page.tsx @@ -0,0 +1,58 @@ +'use client'; +import * as React from 'react'; +import ActiveLastBreadcrumb from '../../../../../../docs/data/material/components/breadcrumbs/ActiveLastBreadcrumb'; +import BasicBreadcrumbs from '../../../../../../docs/data/material/components/breadcrumbs/BasicBreadcrumbs'; +import CollapsedBreadcrumbs from '../../../../../../docs/data/material/components/breadcrumbs/CollapsedBreadcrumbs'; +import CustomSeparator from '../../../../../../docs/data/material/components/breadcrumbs/CustomSeparator'; +import CustomizedBreadcrumbs from '../../../../../../docs/data/material/components/breadcrumbs/CustomizedBreadcrumbs'; +import IconBreadcrumbs from '../../../../../../docs/data/material/components/breadcrumbs/IconBreadcrumbs'; +import RouterBreadcrumbs from '../../../../../../docs/data/material/components/breadcrumbs/RouterBreadcrumbs'; + +export default function Breadcrumbs() { + return ( + +
    +

    Active Last Breadcrumb

    +
    + +
    +
    +
    +

    Basic Breadcrumbs

    +
    + +
    +
    +
    +

    Collapsed Breadcrumbs

    +
    + +
    +
    +
    +

    Custom Separator

    +
    + +
    +
    +
    +

    Customized Breadcrumbs

    +
    + +
    +
    +
    +

    Icon Breadcrumbs

    +
    + +
    +
    +
    +

    Router Breadcrumbs

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-button-group/page.tsx b/apps/bare-next-app/src/app/material-ui/react-button-group/page.tsx new file mode 100644 index 00000000000000..73eeddd9668ec6 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-button-group/page.tsx @@ -0,0 +1,58 @@ +'use client'; +import * as React from 'react'; +import BasicButtonGroup from '../../../../../../docs/data/material/components/button-group/BasicButtonGroup'; +import DisableElevation from '../../../../../../docs/data/material/components/button-group/DisableElevation'; +import GroupOrientation from '../../../../../../docs/data/material/components/button-group/GroupOrientation'; +import GroupSizesColors from '../../../../../../docs/data/material/components/button-group/GroupSizesColors'; +import LoadingButtonGroup from '../../../../../../docs/data/material/components/button-group/LoadingButtonGroup'; +import SplitButton from '../../../../../../docs/data/material/components/button-group/SplitButton'; +import VariantButtonGroup from '../../../../../../docs/data/material/components/button-group/VariantButtonGroup'; + +export default function ButtonGroup() { + return ( + +
    +

    Basic Button Group

    +
    + +
    +
    +
    +

    Disable Elevation

    +
    + +
    +
    +
    +

    Group Orientation

    +
    + +
    +
    +
    +

    Group Sizes Colors

    +
    + +
    +
    +
    +

    Loading Button Group

    +
    + +
    +
    +
    +

    Split Button

    +
    + +
    +
    +
    +

    Variant Button Group

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-button/page.tsx b/apps/bare-next-app/src/app/material-ui/react-button/page.tsx new file mode 100644 index 00000000000000..a684ae0126c0ee --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-button/page.tsx @@ -0,0 +1,121 @@ +'use client'; +import * as React from 'react'; +import BasicButtons from '../../../../../../docs/data/material/components/buttons/BasicButtons'; +import ButtonBaseDemo from '../../../../../../docs/data/material/components/buttons/ButtonBaseDemo'; +import ButtonSizes from '../../../../../../docs/data/material/components/buttons/ButtonSizes'; +import ColorButtons from '../../../../../../docs/data/material/components/buttons/ColorButtons'; +import ContainedButtons from '../../../../../../docs/data/material/components/buttons/ContainedButtons'; +import CustomizedButtons from '../../../../../../docs/data/material/components/buttons/CustomizedButtons'; +import DisableElevation from '../../../../../../docs/data/material/components/buttons/DisableElevation'; +import IconButtonColors from '../../../../../../docs/data/material/components/buttons/IconButtonColors'; +import IconButtonSizes from '../../../../../../docs/data/material/components/buttons/IconButtonSizes'; +import IconButtons from '../../../../../../docs/data/material/components/buttons/IconButtons'; +import IconLabelButtons from '../../../../../../docs/data/material/components/buttons/IconLabelButtons'; +import InputFileUpload from '../../../../../../docs/data/material/components/buttons/InputFileUpload'; +import LoadingButtons from '../../../../../../docs/data/material/components/buttons/LoadingButtons'; +import LoadingButtonsTransition from '../../../../../../docs/data/material/components/buttons/LoadingButtonsTransition'; +import OutlinedButtons from '../../../../../../docs/data/material/components/buttons/OutlinedButtons'; +import TextButtons from '../../../../../../docs/data/material/components/buttons/TextButtons'; + +export default function Buttons() { + return ( + +
    +

    Basic Buttons

    +
    + +
    +
    +
    +

    Button Base Demo

    +
    + +
    +
    +
    +

    Button Sizes

    +
    + +
    +
    +
    +

    Color Buttons

    +
    + +
    +
    +
    +

    Contained Buttons

    +
    + +
    +
    +
    +

    Customized Buttons

    +
    + +
    +
    +
    +

    Disable Elevation

    +
    + +
    +
    +
    +

    Icon Button Colors

    +
    + +
    +
    +
    +

    Icon Button Sizes

    +
    + +
    +
    +
    +

    Icon Buttons

    +
    + +
    +
    +
    +

    Icon Label Buttons

    +
    + +
    +
    +
    +

    Input File Upload

    +
    + +
    +
    +
    +

    Loading Buttons

    +
    + +
    +
    +
    +

    Loading Buttons Transition

    +
    + +
    +
    +
    +

    Outlined Buttons

    +
    + +
    +
    +
    +

    Text Buttons

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-card/page.tsx b/apps/bare-next-app/src/app/material-ui/react-card/page.tsx new file mode 100644 index 00000000000000..4dbe15c5339126 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-card/page.tsx @@ -0,0 +1,65 @@ +'use client'; +import * as React from 'react'; +import ActionAreaCard from '../../../../../../docs/data/material/components/cards/ActionAreaCard'; +import BasicCard from '../../../../../../docs/data/material/components/cards/BasicCard'; +import ImgMediaCard from '../../../../../../docs/data/material/components/cards/ImgMediaCard'; +import MediaCard from '../../../../../../docs/data/material/components/cards/MediaCard'; +import MediaControlCard from '../../../../../../docs/data/material/components/cards/MediaControlCard'; +import MultiActionAreaCard from '../../../../../../docs/data/material/components/cards/MultiActionAreaCard'; +import OutlinedCard from '../../../../../../docs/data/material/components/cards/OutlinedCard'; +import RecipeReviewCard from '../../../../../../docs/data/material/components/cards/RecipeReviewCard'; + +export default function Cards() { + return ( + +
    +

    Action Area Card

    +
    + +
    +
    +
    +

    Basic Card

    +
    + +
    +
    +
    +

    Img Media Card

    +
    + +
    +
    +
    +

    Media Card

    +
    + +
    +
    +
    +

    Media Control Card

    +
    + +
    +
    +
    +

    Multi Action Area Card

    +
    + +
    +
    +
    +

    Outlined Card

    +
    + +
    +
    +
    +

    Recipe Review Card

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-checkbox/page.tsx b/apps/bare-next-app/src/app/material-ui/react-checkbox/page.tsx new file mode 100644 index 00000000000000..94e60f90ae0c67 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-checkbox/page.tsx @@ -0,0 +1,79 @@ +'use client'; +import * as React from 'react'; +import CheckboxLabels from '../../../../../../docs/data/material/components/checkboxes/CheckboxLabels'; +import CheckboxesComponent from '../../../../../../docs/data/material/components/checkboxes/Checkboxes'; +import CheckboxesGroup from '../../../../../../docs/data/material/components/checkboxes/CheckboxesGroup'; +import ColorCheckboxes from '../../../../../../docs/data/material/components/checkboxes/ColorCheckboxes'; +import ControlledCheckbox from '../../../../../../docs/data/material/components/checkboxes/ControlledCheckbox'; +import CustomizedCheckbox from '../../../../../../docs/data/material/components/checkboxes/CustomizedCheckbox'; +import FormControlLabelPosition from '../../../../../../docs/data/material/components/checkboxes/FormControlLabelPosition'; +import IconCheckboxes from '../../../../../../docs/data/material/components/checkboxes/IconCheckboxes'; +import IndeterminateCheckbox from '../../../../../../docs/data/material/components/checkboxes/IndeterminateCheckbox'; +import SizeCheckboxes from '../../../../../../docs/data/material/components/checkboxes/SizeCheckboxes'; + +export default function Checkboxes() { + return ( + +
    +

    Checkbox Labels

    +
    + +
    +
    +
    +

    Checkboxes

    +
    + +
    +
    +
    +

    Checkboxes Group

    +
    + +
    +
    +
    +

    Color Checkboxes

    +
    + +
    +
    +
    +

    Controlled Checkbox

    +
    + +
    +
    +
    +

    Customized Checkbox

    +
    + +
    +
    +
    +

    Form Control Label Position

    +
    + +
    +
    +
    +

    Icon Checkboxes

    +
    + +
    +
    +
    +

    Indeterminate Checkbox

    +
    + +
    +
    +
    +

    Size Checkboxes

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-chip/page.tsx b/apps/bare-next-app/src/app/material-ui/react-chip/page.tsx new file mode 100644 index 00000000000000..4b2786f32e6d0b --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-chip/page.tsx @@ -0,0 +1,93 @@ +'use client'; +import * as React from 'react'; +import AvatarChips from '../../../../../../docs/data/material/components/chips/AvatarChips'; +import BasicChips from '../../../../../../docs/data/material/components/chips/BasicChips'; +import ChipsArray from '../../../../../../docs/data/material/components/chips/ChipsArray'; +import ClickableAndDeletableChips from '../../../../../../docs/data/material/components/chips/ClickableAndDeletableChips'; +import ClickableChips from '../../../../../../docs/data/material/components/chips/ClickableChips'; +import ClickableLinkChips from '../../../../../../docs/data/material/components/chips/ClickableLinkChips'; +import ColorChips from '../../../../../../docs/data/material/components/chips/ColorChips'; +import CustomDeleteIconChips from '../../../../../../docs/data/material/components/chips/CustomDeleteIconChips'; +import DeletableChips from '../../../../../../docs/data/material/components/chips/DeletableChips'; +import IconChips from '../../../../../../docs/data/material/components/chips/IconChips'; +import MultilineChips from '../../../../../../docs/data/material/components/chips/MultilineChips'; +import SizesChips from '../../../../../../docs/data/material/components/chips/SizesChips'; + +export default function Chips() { + return ( + +
    +

    Avatar Chips

    +
    + +
    +
    +
    +

    Basic Chips

    +
    + +
    +
    +
    +

    Chips Array

    +
    + +
    +
    +
    +

    Clickable And Deletable Chips

    +
    + +
    +
    +
    +

    Clickable Chips

    +
    + +
    +
    +
    +

    Clickable Link Chips

    +
    + +
    +
    +
    +

    Color Chips

    +
    + +
    +
    +
    +

    Custom Delete Icon Chips

    +
    + +
    +
    +
    +

    Deletable Chips

    +
    + +
    +
    +
    +

    Icon Chips

    +
    + +
    +
    +
    +

    Multiline Chips

    +
    + +
    +
    +
    +

    Sizes Chips

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-container/page.tsx b/apps/bare-next-app/src/app/material-ui/react-container/page.tsx new file mode 100644 index 00000000000000..b5fd6e4d17465d --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-container/page.tsx @@ -0,0 +1,26 @@ +import * as React from 'react'; +import Box from '@mui/material/Box'; +import Container from '@mui/material/Container'; + +export default function ContainerPage() { + return ( + +
    +

    Fixed Container

    +
    + + + +
    +
    +
    +

    Simple Container

    +
    + + + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-css-baseline/page.tsx b/apps/bare-next-app/src/app/material-ui/react-css-baseline/page.tsx new file mode 100644 index 00000000000000..ba513ac0612826 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-css-baseline/page.tsx @@ -0,0 +1,24 @@ +'use client'; +import * as React from 'react'; +import CssBaseline from '@mui/material/CssBaseline'; +import ScopedCssBaseline from '@mui/material/ScopedCssBaseline'; + +export default function CssBaselinePage() { + return ( + + +
    +

    CSS Baseline

    +
    +

    Hello world

    +
    +
    +
    +

    Positioned Popper

    +
    + Hello world +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-divider/page.tsx b/apps/bare-next-app/src/app/material-ui/react-divider/page.tsx new file mode 100644 index 00000000000000..dc5bb0fa9c9e7d --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-divider/page.tsx @@ -0,0 +1,58 @@ +'use client'; +import * as React from 'react'; +import DividerText from '../../../../../../docs/data/material/components/dividers/DividerText'; +import DividerVariants from '../../../../../../docs/data/material/components/dividers/DividerVariants'; +import FlexDivider from '../../../../../../docs/data/material/components/dividers/FlexDivider'; +import IntroDivider from '../../../../../../docs/data/material/components/dividers/IntroDivider'; +import ListDividers from '../../../../../../docs/data/material/components/dividers/ListDividers'; +import VerticalDividerMiddle from '../../../../../../docs/data/material/components/dividers/VerticalDividerMiddle'; +import VerticalDividers from '../../../../../../docs/data/material/components/dividers/VerticalDividers'; + +export default function Dividers() { + return ( + +
    +

    Divider Text

    +
    + +
    +
    +
    +

    Divider Variants

    +
    + +
    +
    +
    +

    Flex Divider

    +
    + +
    +
    +
    +

    Intro Divider

    +
    + +
    +
    +
    +

    List Dividers

    +
    + +
    +
    +
    +

    Vertical Divider Middle

    +
    + +
    +
    +
    +

    Vertical Dividers

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-floating-action-button/page.tsx b/apps/bare-next-app/src/app/material-ui/react-floating-action-button/page.tsx new file mode 100644 index 00000000000000..4e39c5f719b8dd --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-floating-action-button/page.tsx @@ -0,0 +1,37 @@ +'use client'; +import * as React from 'react'; +import FloatingActionButtonExtendedSize from '../../../../../../docs/data/material/components/floating-action-button/FloatingActionButtonExtendedSize'; +import FloatingActionButtonSize from '../../../../../../docs/data/material/components/floating-action-button/FloatingActionButtonSize'; +import FloatingActionButtonZoom from '../../../../../../docs/data/material/components/floating-action-button/FloatingActionButtonZoom'; +import FloatingActionButtons from '../../../../../../docs/data/material/components/floating-action-button/FloatingActionButtons'; + +export default function FloatingActionButton() { + return ( + +
    +

    Floating Action Button Extended Size

    +
    + +
    +
    +
    +

    Floating Action Button Size

    +
    + +
    +
    +
    +

    Floating Action Button Zoom

    +
    + +
    +
    +
    +

    Floating Action Buttons

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-grid/page.tsx b/apps/bare-next-app/src/app/material-ui/react-grid/page.tsx new file mode 100644 index 00000000000000..c7c73d648a0dce --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-grid/page.tsx @@ -0,0 +1,74 @@ +'use client'; +import * as React from 'react'; +import Box from '@mui/material/Box'; +import Paper from '@mui/material/Paper'; +import Grid from '@mui/material/Grid2'; +import { styled } from '@mui/material'; + +const Item = styled(Paper)(({ theme }) => ({ + backgroundColor: '#fff', + ...theme.typography.body2, + padding: theme.spacing(1), + textAlign: 'center', + color: theme.palette.text.secondary, + ...theme.applyStyles('dark', { + backgroundColor: '#1A2027', + }), +})); + +export default function GridPage() { + return ( + +
    +

    Basic Grid

    +
    + + + + xs=8 + + + xs=4 + + + xs=4 + + + xs=8 + + + +
    +
    +
    +

    Columns Grid

    +
    + + + + xs=8 + + + xs=8 + + + +
    +
    +
    +

    Responsive Grid

    +
    + + + {Array.from(Array(6)).map((_, index) => ( + + xs=2 + + ))} + + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-modal/page.tsx b/apps/bare-next-app/src/app/material-ui/react-modal/page.tsx new file mode 100644 index 00000000000000..763472163e7732 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-modal/page.tsx @@ -0,0 +1,51 @@ +'use client'; +import * as React from 'react'; +import BasicModal from '../../../../../../docs/data/material/components/modal/BasicModal'; +import KeepMountedModal from '../../../../../../docs/data/material/components/modal/KeepMountedModal'; +import NestedModal from '../../../../../../docs/data/material/components/modal/NestedModal'; +import ServerModal from '../../../../../../docs/data/material/components/modal/ServerModal'; +import SpringModal from '../../../../../../docs/data/material/components/modal/SpringModal'; +import TransitionsModal from '../../../../../../docs/data/material/components/modal/TransitionsModal'; + +export default function Modal() { + return ( + +
    +

    Basic Modal

    +
    + +
    +
    +
    +

    Keep Mounted Modal

    +
    + +
    +
    +
    +

    Nested Modal

    +
    + +
    +
    +
    +

    Server Modal

    +
    + +
    +
    +
    +

    Spring Modal

    +
    + +
    +
    +
    +

    Transitions Modal

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-pagination/page.tsx b/apps/bare-next-app/src/app/material-ui/react-pagination/page.tsx new file mode 100644 index 00000000000000..89723ca9e16b84 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-pagination/page.tsx @@ -0,0 +1,86 @@ +'use client'; +import * as React from 'react'; +import BasicPagination from '../../../../../../docs/data/material/components/pagination/BasicPagination'; +import CustomIcons from '../../../../../../docs/data/material/components/pagination/CustomIcons'; +import PaginationButtons from '../../../../../../docs/data/material/components/pagination/PaginationButtons'; +import PaginationControlled from '../../../../../../docs/data/material/components/pagination/PaginationControlled'; +import PaginationLink from '../../../../../../docs/data/material/components/pagination/PaginationLink'; +import PaginationOutlined from '../../../../../../docs/data/material/components/pagination/PaginationOutlined'; +import PaginationRanges from '../../../../../../docs/data/material/components/pagination/PaginationRanges'; +import PaginationRounded from '../../../../../../docs/data/material/components/pagination/PaginationRounded'; +import PaginationSize from '../../../../../../docs/data/material/components/pagination/PaginationSize'; +import TablePaginationDemo from '../../../../../../docs/data/material/components/pagination/TablePaginationDemo'; +import UsePagination from '../../../../../../docs/data/material/components/pagination/UsePagination'; + +export default function Pagination() { + return ( + +
    +

    Basic Pagination

    +
    + +
    +
    +
    +

    Custom Icons

    +
    + +
    +
    +
    +

    Pagination Buttons

    +
    + +
    +
    +
    +

    Pagination Controlled

    +
    + +
    +
    +
    +

    Pagination Link

    +
    + +
    +
    +
    +

    Pagination Outlined

    +
    + +
    +
    +
    +

    Pagination Ranges

    +
    + +
    +
    +
    +

    Pagination Rounded

    +
    + +
    +
    +
    +

    Pagination Size

    +
    + +
    +
    +
    +

    Table Pagination Demo

    +
    + +
    +
    +
    +

    Use Pagination

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-paper/page.tsx b/apps/bare-next-app/src/app/material-ui/react-paper/page.tsx new file mode 100644 index 00000000000000..95583dadf32d4b --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-paper/page.tsx @@ -0,0 +1,37 @@ +'use client'; +import * as React from 'react'; +import Elevation from '../../../../../../docs/data/material/components/paper/Elevation'; +import SimplePaper from '../../../../../../docs/data/material/components/paper/SimplePaper'; +import SquareCorners from '../../../../../../docs/data/material/components/paper/SquareCorners'; +import Variants from '../../../../../../docs/data/material/components/paper/Variants'; + +export default function Paper() { + return ( + +
    +

    Elevation

    +
    + +
    +
    +
    +

    Simple Paper

    +
    + +
    +
    +
    +

    Square Corners

    +
    + +
    +
    +
    +

    Variants

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-popover/page.tsx b/apps/bare-next-app/src/app/material-ui/react-popover/page.tsx new file mode 100644 index 00000000000000..122a7fe3028553 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-popover/page.tsx @@ -0,0 +1,37 @@ +'use client'; +import * as React from 'react'; +import BasicPopover from '../../../../../../docs/data/material/components/popover/BasicPopover'; +import MouseHoverPopover from '../../../../../../docs/data/material/components/popover/MouseHoverPopover'; +import PopoverPopupState from '../../../../../../docs/data/material/components/popover/PopoverPopupState'; +import VirtualElementPopover from '../../../../../../docs/data/material/components/popover/VirtualElementPopover'; + +export default function Popover() { + return ( + +
    +

    Basic Popover

    +
    + +
    +
    +
    +

    Mouse Over Popover

    +
    + +
    +
    +
    +

    Popover Popup State

    +
    + +
    +
    +
    +

    Virtual Element Popover

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-popper/page.tsx b/apps/bare-next-app/src/app/material-ui/react-popper/page.tsx new file mode 100644 index 00000000000000..99197dba12699d --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-popper/page.tsx @@ -0,0 +1,51 @@ +'use client'; +import * as React from 'react'; +import PopperPopupState from '../../../../../../docs/data/material/components/popper/PopperPopupState'; +import PositionedPopper from '../../../../../../docs/data/material/components/popper/PositionedPopper'; +import SimplePopper from '../../../../../../docs/data/material/components/popper/SimplePopper'; +import SpringPopper from '../../../../../../docs/data/material/components/popper/SpringPopper'; +import TransitionsPopper from '../../../../../../docs/data/material/components/popper/TransitionsPopper'; +import VirtualElementPopper from '../../../../../../docs/data/material/components/popper/VirtualElementPopper'; + +export default function Popper() { + return ( + +
    +

    Popper Popup State

    +
    + +
    +
    +
    +

    Positioned Popper

    +
    + +
    +
    +
    +

    Simple Popper

    +
    + +
    +
    +
    +

    Spring Popper

    +
    + +
    +
    +
    +

    Transitions Popper

    +
    + +
    +
    +
    +

    Virtual Element Popper

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-progress/page.tsx b/apps/bare-next-app/src/app/material-ui/react-progress/page.tsx new file mode 100644 index 00000000000000..1a804f5d65e92a --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-progress/page.tsx @@ -0,0 +1,100 @@ +'use client'; +import * as React from 'react'; +import CircularColor from '../../../../../../docs/data/material/components/progress/CircularColor'; +import CircularDeterminate from '../../../../../../docs/data/material/components/progress/CircularDeterminate'; +import CircularIndeterminate from '../../../../../../docs/data/material/components/progress/CircularIndeterminate'; +import CircularIntegration from '../../../../../../docs/data/material/components/progress/CircularIntegration'; +import CircularUnderLoad from '../../../../../../docs/data/material/components/progress/CircularUnderLoad'; +import CircularWithValueLabel from '../../../../../../docs/data/material/components/progress/CircularWithValueLabel'; +import CustomizedProgressBars from '../../../../../../docs/data/material/components/progress/CustomizedProgressBars'; +import DelayingAppearance from '../../../../../../docs/data/material/components/progress/DelayingAppearance'; +import LinearBuffer from '../../../../../../docs/data/material/components/progress/LinearBuffer'; +import LinearColor from '../../../../../../docs/data/material/components/progress/LinearColor'; +import LinearDeterminate from '../../../../../../docs/data/material/components/progress/LinearDeterminate'; +import LinearIndeterminate from '../../../../../../docs/data/material/components/progress/LinearIndeterminate'; +import LinearWithValueLabel from '../../../../../../docs/data/material/components/progress/LinearWithValueLabel'; + +export default function Progress() { + return ( + +
    +

    Circular Color

    +
    + +
    +
    +
    +

    Circular Determinate

    +
    + +
    +
    +
    +

    Circular Indeterminate

    +
    + +
    +
    +
    +

    Circular Integration

    +
    + +
    +
    +
    +

    Circular Under Load

    +
    + +
    +
    +
    +

    Circular With Value Label

    +
    + +
    +
    +
    +

    Customized Progress Bars

    +
    + +
    +
    +
    +

    Delaying Appearance

    +
    + +
    +
    +
    +

    Linear Buffer

    +
    + +
    +
    +
    +

    Linear Color

    +
    + +
    +
    +
    +

    Linear Determinate

    +
    + +
    +
    +
    +

    Linear Indeterminate

    +
    + +
    +
    +
    +

    Linear With Value Label

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-radio-button/page.tsx b/apps/bare-next-app/src/app/material-ui/react-radio-button/page.tsx new file mode 100644 index 00000000000000..dda8ef7fe821b6 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-radio-button/page.tsx @@ -0,0 +1,79 @@ +'use client'; +import * as React from 'react'; +import ColorRadioButtons from '../../../../../../docs/data/material/components/radio-buttons/ColorRadioButtons'; +import ControlledRadioButtonsGroup from '../../../../../../docs/data/material/components/radio-buttons/ControlledRadioButtonsGroup'; +import CustomizedRadios from '../../../../../../docs/data/material/components/radio-buttons/CustomizedRadios'; +import ErrorRadios from '../../../../../../docs/data/material/components/radio-buttons/ErrorRadios'; +import FormControlLabelPlacement from '../../../../../../docs/data/material/components/radio-buttons/FormControlLabelPlacement'; +import RadioButtonsComponent from '../../../../../../docs/data/material/components/radio-buttons/RadioButtons'; +import RadioButtonsGroup from '../../../../../../docs/data/material/components/radio-buttons/RadioButtonsGroup'; +import RowRadioButtonsGroup from '../../../../../../docs/data/material/components/radio-buttons/RowRadioButtonsGroup'; +import SizeRadioButtons from '../../../../../../docs/data/material/components/radio-buttons/SizeRadioButtons'; +import UseRadioGroup from '../../../../../../docs/data/material/components/radio-buttons/UseRadioGroup'; + +export default function RadioButtons() { + return ( + +
    +

    Color Radio Buttons

    +
    + +
    +
    +
    +

    Controlled Radio Buttons Group

    +
    + +
    +
    +
    +

    Customized Radios

    +
    + +
    +
    +
    +

    Error Radios

    +
    + +
    +
    +
    +

    Form Control Label Placement

    +
    + +
    +
    +
    +

    Radio Buttons

    +
    + +
    +
    +
    +

    Radio Buttons Group

    +
    + +
    +
    +
    +

    Row Radio Buttons Group

    +
    + +
    +
    +
    +

    Size Radio Buttons

    +
    + +
    +
    +
    +

    Use Radio Group

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-select/page.tsx b/apps/bare-next-app/src/app/material-ui/react-select/page.tsx new file mode 100644 index 00000000000000..08503cbb49db81 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-select/page.tsx @@ -0,0 +1,121 @@ +'use client'; +import * as React from 'react'; +import BasicSelect from '../../../../../../docs/data/material/components/selects/BasicSelect'; +import ControlledOpenSelect from '../../../../../../docs/data/material/components/selects/ControlledOpenSelect'; +import CustomizedSelects from '../../../../../../docs/data/material/components/selects/CustomizedSelects'; +import DialogSelect from '../../../../../../docs/data/material/components/selects/DialogSelect'; +import GroupedSelect from '../../../../../../docs/data/material/components/selects/GroupedSelect'; +import MultipleSelect from '../../../../../../docs/data/material/components/selects/MultipleSelect'; +import MultipleSelectCheckmarks from '../../../../../../docs/data/material/components/selects/MultipleSelectCheckmarks'; +import MultipleSelectChip from '../../../../../../docs/data/material/components/selects/MultipleSelectChip'; +import MultipleSelectNative from '../../../../../../docs/data/material/components/selects/MultipleSelectNative'; +import MultipleSelectPlaceholder from '../../../../../../docs/data/material/components/selects/MultipleSelectPlaceholder'; +import NativeSelectDemo from '../../../../../../docs/data/material/components/selects/NativeSelectDemo'; +import SelectAutoWidth from '../../../../../../docs/data/material/components/selects/SelectAutoWidth'; +import SelectLabels from '../../../../../../docs/data/material/components/selects/SelectLabels'; +import SelectOtherProps from '../../../../../../docs/data/material/components/selects/SelectOtherProps'; +import SelectSmall from '../../../../../../docs/data/material/components/selects/SelectSmall'; +import SelectVariants from '../../../../../../docs/data/material/components/selects/SelectVariants'; + +export default function Selects() { + return ( + +
    +

    Basic Select

    +
    + +
    +
    +
    +

    Controlled Open Select

    +
    + +
    +
    +
    +

    Customized Selects

    +
    + +
    +
    +
    +

    Dialog Select

    +
    + +
    +
    +
    +

    Grouped Select

    +
    + +
    +
    +
    +

    Multiple Select

    +
    + +
    +
    +
    +

    Multiple Select Checkmarks

    +
    + +
    +
    +
    +

    Multiple Select Chip

    +
    + +
    +
    +
    +

    Multiple Select Native

    +
    + +
    +
    +
    +

    Multiple Select Placeholder

    +
    + +
    +
    +
    +

    Native Select Demo

    +
    + +
    +
    +
    +

    Select Auto Width

    +
    + +
    +
    +
    +

    Select Labels

    +
    + +
    +
    +
    +

    Select Other Props

    +
    + +
    +
    +
    +

    Select Small

    +
    + +
    +
    +
    +

    Select Variants

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-slider/page.tsx b/apps/bare-next-app/src/app/material-ui/react-slider/page.tsx new file mode 100644 index 00000000000000..19c93224b7a523 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-slider/page.tsx @@ -0,0 +1,135 @@ +'use client'; +import * as React from 'react'; +import ColorSlider from '../../../../../../docs/data/material/components/slider/ColorSlider'; +import ContinuousSlider from '../../../../../../docs/data/material/components/slider/ContinuousSlider'; +import CustomMarks from '../../../../../../docs/data/material/components/slider/CustomMarks'; +import CustomizedSlider from '../../../../../../docs/data/material/components/slider/CustomizedSlider'; +import DiscreteSlider from '../../../../../../docs/data/material/components/slider/DiscreteSlider'; +import DiscreteSliderLabel from '../../../../../../docs/data/material/components/slider/DiscreteSliderLabel'; +import DiscreteSliderMarks from '../../../../../../docs/data/material/components/slider/DiscreteSliderMarks'; +import DiscreteSliderSteps from '../../../../../../docs/data/material/components/slider/DiscreteSliderSteps'; +import DiscreteSliderValues from '../../../../../../docs/data/material/components/slider/DiscreteSliderValues'; +import InputSlider from '../../../../../../docs/data/material/components/slider/InputSlider'; +import MinimumDistanceSlider from '../../../../../../docs/data/material/components/slider/MinimumDistanceSlider'; +import MusicPlayerSlider from '../../../../../../docs/data/material/components/slider/MusicPlayerSlider'; +import NonLinearSlider from '../../../../../../docs/data/material/components/slider/NonLinearSlider'; +import RangeSlider from '../../../../../../docs/data/material/components/slider/RangeSlider'; +import SliderSizes from '../../../../../../docs/data/material/components/slider/SliderSizes'; +import TrackFalseSlider from '../../../../../../docs/data/material/components/slider/TrackFalseSlider'; +import TrackInvertedSlider from '../../../../../../docs/data/material/components/slider/TrackInvertedSlider'; +import VerticalSlider from '../../../../../../docs/data/material/components/slider/VerticalSlider'; + +export default function Slider() { + return ( + +
    +

    Color Slider

    +
    + +
    +
    +
    +

    Continuous Slider

    +
    + +
    +
    +
    +

    Custom Marks

    +
    + +
    +
    +
    +

    Customized Slider

    +
    + +
    +
    +
    +

    Discrete Slider

    +
    + +
    +
    +
    +

    Discrete Slider Label

    +
    + +
    +
    +
    +

    Discrete Slider Marks

    +
    + +
    +
    +
    +

    Discrete Slider Steps

    +
    + +
    +
    +
    +

    Discrete Slider Values

    +
    + +
    +
    +
    +

    Input Slider

    +
    + +
    +
    +
    +

    Minimum Distance Slider

    +
    + +
    +
    +
    +

    Music Player Slider

    +
    + +
    +
    +
    +

    Non Linear Slider

    +
    + +
    +
    +
    +

    Range Slider

    +
    + +
    +
    +
    +

    Slider Sizes

    +
    + +
    +
    +
    +

    Track False Slider

    +
    + +
    +
    +
    +

    Track Inverted Slider

    +
    + +
    +
    +
    +

    Vertical Slider

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-stack/page.tsx b/apps/bare-next-app/src/app/material-ui/react-stack/page.tsx new file mode 100644 index 00000000000000..f666bdfe964767 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-stack/page.tsx @@ -0,0 +1,54 @@ +'use client'; +import * as React from 'react'; +import Divider from '@mui/material/Divider'; +import Paper from '@mui/material/Paper'; +import Stack from '@mui/material/Stack'; +import { styled } from '@mui/material'; + +const Item = styled(Paper)(({ theme }) => ({ + backgroundColor: '#fff', + ...theme.typography.body2, + padding: theme.spacing(1), + textAlign: 'center', + color: theme.palette.text.secondary, + ...theme.applyStyles('dark', { + backgroundColor: '#1A2027', + }), +})); + +export default function StackPage() { + return ( + +
    +

    Basic Stack

    +
    + + Item 1 + Item 2 + Item 3 + +
    +
    +
    +

    Divider Stack

    +
    + } spacing={2}> + Item 1 + Item 2 + Item 3 + +
    +
    +
    +

    Responsive Stack

    +
    + + Item 1 + Item 2 + Item 3 + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-stepper/page.tsx b/apps/bare-next-app/src/app/material-ui/react-stepper/page.tsx new file mode 100644 index 00000000000000..8e135c3b896a2e --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-stepper/page.tsx @@ -0,0 +1,72 @@ +'use client'; +import * as React from 'react'; +import CustomizedSteppers from '../../../../../../docs/data/material/components/steppers/CustomizedSteppers'; +import DotsMobileStepper from '../../../../../../docs/data/material/components/steppers/DotsMobileStepper'; +import HorizontalLinearAlternativeLabelStepper from '../../../../../../docs/data/material/components/steppers/HorizontalLinearAlternativeLabelStepper'; +import HorizontalLinearStepper from '../../../../../../docs/data/material/components/steppers/HorizontalLinearStepper'; +import HorizontalNonLinearStepper from '../../../../../../docs/data/material/components/steppers/HorizontalNonLinearStepper'; +import HorizontalStepperWithError from '../../../../../../docs/data/material/components/steppers/HorizontalStepperWithError'; +import ProgressMobileStepper from '../../../../../../docs/data/material/components/steppers/ProgressMobileStepper'; +import TextMobileStepper from '../../../../../../docs/data/material/components/steppers/TextMobileStepper'; +import VerticalLinearStepper from '../../../../../../docs/data/material/components/steppers/VerticalLinearStepper'; + +export default function Steppers() { + return ( + +
    +

    Customized Steppers

    +
    + +
    +
    +
    +

    Dots Mobile Stepper

    +
    + +
    +
    +
    +

    Horizontal Linear Alternative Label Stepper

    +
    + +
    +
    +
    +

    Horizontal Linear Stepper

    +
    + +
    +
    +
    +

    Horizontal Non Linear Stepper

    +
    + +
    +
    +
    +

    Horizontal Stepper With Error

    +
    + +
    +
    +
    +

    Progress Mobile Stepper

    +
    + +
    +
    +
    +

    Text Mobile Stepper

    +
    + +
    +
    +
    +

    Vertical Linear Stepper

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-switch/page.tsx b/apps/bare-next-app/src/app/material-ui/react-switch/page.tsx new file mode 100644 index 00000000000000..03a99083243bcf --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-switch/page.tsx @@ -0,0 +1,65 @@ +'use client'; +import * as React from 'react'; +import BasicSwitches from '../../../../../../docs/data/material/components/switches/BasicSwitches'; +import ColorSwitches from '../../../../../../docs/data/material/components/switches/ColorSwitches'; +import ControlledSwitches from '../../../../../../docs/data/material/components/switches/ControlledSwitches'; +import CustomizedSwitches from '../../../../../../docs/data/material/components/switches/CustomizedSwitches'; +import FormControlLabelPosition from '../../../../../../docs/data/material/components/switches/FormControlLabelPosition'; +import SwitchLabels from '../../../../../../docs/data/material/components/switches/SwitchLabels'; +import SwitchesGroup from '../../../../../../docs/data/material/components/switches/SwitchesGroup'; +import SwitchesSize from '../../../../../../docs/data/material/components/switches/SwitchesSize'; + +export default function Switches() { + return ( + +
    +

    Basic Switches

    +
    + +
    +
    +
    +

    Color Switches

    +
    + +
    +
    +
    +

    Controlled Switches

    +
    + +
    +
    +
    +

    Customized Switches

    +
    + +
    +
    +
    +

    Form Control Label Position

    +
    + +
    +
    +
    +

    Switch Labels

    +
    + +
    +
    +
    +

    Switches Group

    +
    + +
    +
    +
    +

    Switches Size

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-tabs/page.tsx b/apps/bare-next-app/src/app/material-ui/react-tabs/page.tsx new file mode 100644 index 00000000000000..4e7cfa2c2ffd8a --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-tabs/page.tsx @@ -0,0 +1,142 @@ +'use client'; +import * as React from 'react'; +import AccessibleTabs1 from '../../../../../../docs/data/material/components/tabs/AccessibleTabs1'; +import AccessibleTabs2 from '../../../../../../docs/data/material/components/tabs/AccessibleTabs2'; +import BasicTabs from '../../../../../../docs/data/material/components/tabs/BasicTabs'; +import CenteredTabs from '../../../../../../docs/data/material/components/tabs/CenteredTabs'; +import ColorTabs from '../../../../../../docs/data/material/components/tabs/ColorTabs'; +import CustomizedTabs from '../../../../../../docs/data/material/components/tabs/CustomizedTabs'; +import DisabledTabs from '../../../../../../docs/data/material/components/tabs/DisabledTabs'; +import FullWidthTabs from '../../../../../../docs/data/material/components/tabs/FullWidthTabs'; +import IconLabelTabs from '../../../../../../docs/data/material/components/tabs/IconLabelTabs'; +import IconPositionTabs from '../../../../../../docs/data/material/components/tabs/IconPositionTabs'; +import IconTabs from '../../../../../../docs/data/material/components/tabs/IconTabs'; +import LabTabs from '../../../../../../docs/data/material/components/tabs/LabTabs'; +import NavTabs from '../../../../../../docs/data/material/components/tabs/NavTabs'; +import ScrollableTabsButtonAuto from '../../../../../../docs/data/material/components/tabs/ScrollableTabsButtonAuto'; +import ScrollableTabsButtonForce from '../../../../../../docs/data/material/components/tabs/ScrollableTabsButtonForce'; +import ScrollableTabsButtonPrevent from '../../../../../../docs/data/material/components/tabs/ScrollableTabsButtonPrevent'; +import ScrollableTabsButtonVisible from '../../../../../../docs/data/material/components/tabs/ScrollableTabsButtonVisible'; +import TabsWrappedLabel from '../../../../../../docs/data/material/components/tabs/TabsWrappedLabel'; +import VerticalTabs from '../../../../../../docs/data/material/components/tabs/VerticalTabs'; + +export default function Tabs() { + return ( + +
    +

    Accessible Tabs1

    +
    + +
    +
    +
    +

    Accessible Tabs2

    +
    + +
    +
    +
    +

    Basic Tabs

    +
    + +
    +
    +
    +

    Centered Tabs

    +
    + +
    +
    +
    +

    Color Tabs

    +
    + +
    +
    +
    +

    Customized Tabs

    +
    + +
    +
    +
    +

    Disabled Tabs

    +
    + +
    +
    +
    +

    Full Width Tabs

    +
    + +
    +
    +
    +

    Icon Label Tabs

    +
    + +
    +
    +
    +

    Icon Position Tabs

    +
    + +
    +
    +
    +

    Icon Tabs

    +
    + +
    +
    +
    +

    Lab Tabs

    +
    + +
    +
    +
    +

    Nav Tabs

    +
    + +
    +
    +
    +

    Scrollable Tabs Button Auto

    +
    + +
    +
    +
    +

    Scrollable Tabs Button Force

    +
    + +
    +
    +
    +

    Scrollable Tabs Button Prevent

    +
    + +
    +
    +
    +

    Scrollable Tabs Button Visible

    +
    + +
    +
    +
    +

    Tabs Wrapped Label

    +
    + +
    +
    +
    +

    Vertical Tabs

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-text-field/page.tsx b/apps/bare-next-app/src/app/material-ui/react-text-field/page.tsx new file mode 100644 index 00000000000000..f3d627bd2944ce --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-text-field/page.tsx @@ -0,0 +1,163 @@ +'use client'; +import * as React from 'react'; +import BasicTextFields from '../../../../../../docs/data/material/components/text-fields/BasicTextFields'; +import ColorTextFields from '../../../../../../docs/data/material/components/text-fields/ColorTextFields'; +import ComposedTextField from '../../../../../../docs/data/material/components/text-fields/ComposedTextField'; +import CustomizedInputBase from '../../../../../../docs/data/material/components/text-fields/CustomizedInputBase'; +import CustomizedInputsStyleOverrides from '../../../../../../docs/data/material/components/text-fields/CustomizedInputsStyleOverrides'; +import CustomizedInputsStyled from '../../../../../../docs/data/material/components/text-fields/CustomizedInputsStyled'; +import FormPropsTextFields from '../../../../../../docs/data/material/components/text-fields/FormPropsTextFields'; +import FormattedInputs from '../../../../../../docs/data/material/components/text-fields/FormattedInputs'; +import FullWidthTextField from '../../../../../../docs/data/material/components/text-fields/FullWidthTextField'; +import HelperTextAligned from '../../../../../../docs/data/material/components/text-fields/HelperTextAligned'; +import HelperTextMisaligned from '../../../../../../docs/data/material/components/text-fields/HelperTextMisaligned'; +import InputAdornments from '../../../../../../docs/data/material/components/text-fields/InputAdornments'; +import InputWithIcon from '../../../../../../docs/data/material/components/text-fields/InputWithIcon'; +import Inputs from '../../../../../../docs/data/material/components/text-fields/Inputs'; +import LayoutTextFields from '../../../../../../docs/data/material/components/text-fields/LayoutTextFields'; +import MultilineTextFields from '../../../../../../docs/data/material/components/text-fields/MultilineTextFields'; +import SelectTextFields from '../../../../../../docs/data/material/components/text-fields/SelectTextFields'; +import StateTextFields from '../../../../../../docs/data/material/components/text-fields/StateTextFields'; +import TextFieldHiddenLabel from '../../../../../../docs/data/material/components/text-fields/TextFieldHiddenLabel'; +import TextFieldSizes from '../../../../../../docs/data/material/components/text-fields/TextFieldSizes'; +import UseFormControl from '../../../../../../docs/data/material/components/text-fields/UseFormControl'; +import ValidationTextFields from '../../../../../../docs/data/material/components/text-fields/ValidationTextFields'; + +export default function TextFields() { + return ( + +
    +

    Basic Text Fields

    +
    + +
    +
    +
    +

    Color Text Fields

    +
    + +
    +
    +
    +

    Composed Text Field

    +
    + +
    +
    +
    +

    Customized Input Base

    +
    + +
    +
    +
    +

    Customized Inputs Style Overrides

    +
    + +
    +
    +
    +

    Customized Inputs Styled

    +
    + +
    +
    +
    +

    Form Props Text Fields

    +
    + +
    +
    +
    +

    Formatted Inputs

    +
    + +
    +
    +
    +

    Full Width Text Field

    +
    + +
    +
    +
    +

    Helper Text Aligned

    +
    + +
    +
    +
    +

    Helper Text Misaligned

    +
    + +
    +
    +
    +

    Input Adornments

    +
    + +
    +
    +
    +

    Input With Icon

    +
    + +
    +
    +
    +

    Inputs

    +
    + +
    +
    +
    +

    Layout Text Fields

    +
    + +
    +
    +
    +

    Multiline Text Fields

    +
    + +
    +
    +
    +

    Select Text Fields

    +
    + +
    +
    +
    +

    State Text Fields

    +
    + +
    +
    +
    +

    Text Field Hidden Label

    +
    + +
    +
    +
    +

    Text Field Sizes

    +
    + +
    +
    +
    +

    Use Form Control

    +
    + +
    +
    +
    +

    Validation Text Fields

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-toggle-button/page.tsx b/apps/bare-next-app/src/app/material-ui/react-toggle-button/page.tsx new file mode 100644 index 00000000000000..1ff789e4f6d4bf --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-toggle-button/page.tsx @@ -0,0 +1,65 @@ +'use client'; +import * as React from 'react'; +import ColorToggleButton from '../../../../../../docs/data/material/components/toggle-button/ColorToggleButton'; +import CustomizedDividers from '../../../../../../docs/data/material/components/toggle-button/CustomizedDividers'; +import StandaloneToggleButton from '../../../../../../docs/data/material/components/toggle-button/StandaloneToggleButton'; +import ToggleButtonNotEmpty from '../../../../../../docs/data/material/components/toggle-button/ToggleButtonNotEmpty'; +import ToggleButtonSizes from '../../../../../../docs/data/material/components/toggle-button/ToggleButtonSizes'; +import ToggleButtons from '../../../../../../docs/data/material/components/toggle-button/ToggleButtons'; +import ToggleButtonsMultiple from '../../../../../../docs/data/material/components/toggle-button/ToggleButtonsMultiple'; +import VerticalToggleButtons from '../../../../../../docs/data/material/components/toggle-button/VerticalToggleButtons'; + +export default function ToggleButton() { + return ( + +
    +

    Color Toggle Button

    +
    + +
    +
    +
    +

    Customized Dividers

    +
    + +
    +
    +
    +

    Standalone Toggle Button

    +
    + +
    +
    +
    +

    Toggle Button Not Empty

    +
    + +
    +
    +
    +

    Toggle Button Sizes

    +
    + +
    +
    +
    +

    Toggle Buttons

    +
    + +
    +
    +
    +

    Toggle Buttons Multiple

    +
    + +
    +
    +
    +

    Vertical Toggle Buttons

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/material-ui/react-tooltip/page.tsx b/apps/bare-next-app/src/app/material-ui/react-tooltip/page.tsx new file mode 100644 index 00000000000000..580fe774464783 --- /dev/null +++ b/apps/bare-next-app/src/app/material-ui/react-tooltip/page.tsx @@ -0,0 +1,121 @@ +'use client'; +import * as React from 'react'; +import AccessibilityTooltips from '../../../../../../docs/data/material/components/tooltips/AccessibilityTooltips'; +import AnchorElTooltips from '../../../../../../docs/data/material/components/tooltips/AnchorElTooltips'; +import ArrowTooltips from '../../../../../../docs/data/material/components/tooltips/ArrowTooltips'; +import BasicTooltip from '../../../../../../docs/data/material/components/tooltips/BasicTooltip'; +import ControlledTooltips from '../../../../../../docs/data/material/components/tooltips/ControlledTooltips'; +import CustomizedTooltips from '../../../../../../docs/data/material/components/tooltips/CustomizedTooltips'; +import DelayTooltips from '../../../../../../docs/data/material/components/tooltips/DelayTooltips'; +import DisabledTooltips from '../../../../../../docs/data/material/components/tooltips/DisabledTooltips'; +import FollowCursorTooltips from '../../../../../../docs/data/material/components/tooltips/FollowCursorTooltips'; +import NonInteractiveTooltips from '../../../../../../docs/data/material/components/tooltips/NonInteractiveTooltips'; +import PositionedTooltips from '../../../../../../docs/data/material/components/tooltips/PositionedTooltips'; +import TooltipMargin from '../../../../../../docs/data/material/components/tooltips/TooltipMargin'; +import TooltipOffset from '../../../../../../docs/data/material/components/tooltips/TooltipOffset'; +import TransitionsTooltips from '../../../../../../docs/data/material/components/tooltips/TransitionsTooltips'; +import TriggersTooltips from '../../../../../../docs/data/material/components/tooltips/TriggersTooltips'; +import VariableWidth from '../../../../../../docs/data/material/components/tooltips/VariableWidth'; + +export default function Tooltips() { + return ( + +
    +

    Accessibility Tooltips

    +
    + +
    +
    +
    +

    Anchor El Tooltips

    +
    + +
    +
    +
    +

    Arrow Tooltips

    +
    + +
    +
    +
    +

    Basic Tooltip

    +
    + +
    +
    +
    +

    Controlled Tooltips

    +
    + +
    +
    +
    +

    Customized Tooltips

    +
    + +
    +
    +
    +

    Delay Tooltips

    +
    + +
    +
    +
    +

    Disabled Tooltips

    +
    + +
    +
    +
    +

    Follow Cursor Tooltips

    +
    + +
    +
    +
    +

    Non Interactive Tooltips

    +
    + +
    +
    +
    +

    Positioned Tooltips

    +
    + +
    +
    +
    +

    Tooltip Margin

    +
    + +
    +
    +
    +

    Tooltip Offset

    +
    + +
    +
    +
    +

    Transitions Tooltips

    +
    + +
    +
    +
    +

    Triggers Tooltips

    +
    + +
    +
    +
    +

    Variable Width

    +
    + +
    +
    +
    + ); +} diff --git a/apps/bare-next-app/src/app/page.module.css b/apps/bare-next-app/src/app/page.module.css new file mode 100644 index 00000000000000..ec57b4167a5203 --- /dev/null +++ b/apps/bare-next-app/src/app/page.module.css @@ -0,0 +1,149 @@ +.code { + font-weight: 700; + font-family: var(--font-mono); +} + +.grid { + display: grid; + grid-template-columns: repeat(4, minmax(25%, auto)); + max-width: 100%; + width: var(--max-width); +} + +.card { + padding: 1rem 1.2rem; + border-radius: var(--border-radius); + background: rgba(var(--card-rgb), 0); + border: 1px solid rgba(var(--card-border-rgb), 0); + transition: + background 200ms, + border 200ms; +} + +.card span { + display: inline-block; + transition: transform 200ms; +} + +.card h2 { + font-weight: 600; + margin-bottom: 0.7rem; +} + +.card p { + margin: 0; + opacity: 0.6; + font-size: 0.9rem; + line-height: 1.5; + max-width: 30ch; +} + +.center { + display: flex; + justify-content: center; + align-items: center; + position: relative; + padding: 4rem 0; +} + +.center::before { + background: var(--secondary-glow); + border-radius: 50%; + width: 480px; + height: 360px; + margin-left: -400px; +} + +.center::after { + background: var(--primary-glow); + width: 240px; + height: 180px; + z-index: -1; +} + +.center::before, +.center::after { + content: ''; + left: 50%; + position: absolute; + filter: blur(45px); + transform: translateZ(0); +} + +.logo { + position: relative; +} +/* Enable hover only on non-touch devices */ +@media (hover: hover) and (pointer: fine) { + .card:hover { + background: rgba(var(--card-rgb), 0.1); + border: 1px solid rgba(var(--card-border-rgb), 0.15); + } + + .card:hover span { + transform: translateX(4px); + } +} + +@media (prefers-reduced-motion) { + .card:hover span { + transform: none; + } +} + +/* Mobile */ +@media (max-width: 700px) { + .content { + padding: 4rem; + } + + .grid { + grid-template-columns: 1fr; + margin-bottom: 120px; + max-width: 320px; + text-align: center; + } + + .card { + padding: 1rem 2.5rem; + } + + .card h2 { + margin-bottom: 0.5rem; + } + + .center { + padding: 8rem 0 6rem; + } + + .center::before { + transform: none; + height: 300px; + } +} + +/* Tablet and Smaller Desktop */ +@media (min-width: 701px) and (max-width: 1120px) { + .grid { + grid-template-columns: repeat(2, 50%); + } +} + +@media (prefers-color-scheme: dark) { + .vercelLogo { + filter: invert(1); + } + + .logo { + filter: invert(1) drop-shadow(0 0 0.3rem #ffffff70); + } +} + +@keyframes rotate { + from { + transform: rotate(360deg); + } + to { + transform: rotate(0deg); + } +} diff --git a/apps/bare-next-app/src/app/theme.ts b/apps/bare-next-app/src/app/theme.ts new file mode 100644 index 00000000000000..f8ef1612df3e73 --- /dev/null +++ b/apps/bare-next-app/src/app/theme.ts @@ -0,0 +1,13 @@ +// theme for MUI System (emotion) +'use client'; +import { createTheme } from '@mui/material/styles'; + +export default createTheme({ + components: { + MuiStack: { + defaultProps: { + useFlexGap: true, + }, + }, + }, +}); diff --git a/apps/bare-next-app/src/assets/mui.svg b/apps/bare-next-app/src/assets/mui.svg new file mode 100644 index 00000000000000..dea1f22374461e --- /dev/null +++ b/apps/bare-next-app/src/assets/mui.svg @@ -0,0 +1 @@ + diff --git a/apps/bare-next-app/src/augment.d.ts b/apps/bare-next-app/src/augment.d.ts new file mode 100644 index 00000000000000..56a692070161c5 --- /dev/null +++ b/apps/bare-next-app/src/augment.d.ts @@ -0,0 +1,48 @@ +import type { ExtendTheme } from '@mui/material'; + +interface ThemeTokens { + 'max-width': string; + 'border-radius': string; + 'font-mono': string; + 'foreground-rgb': string; + 'background-start-rgb': string; + 'background-end-rgb': string; + 'primary-glow': string; + 'secondary-glow': string; + title: { + 'start-rgb': string; + 'end-rgb': string; + border: string; + }; + callout: { + rgb: string; + 'border-rgb': string; + }; + card: { + rgb: string; + 'border-rgb': string; + }; +} + +type CustomTheme = ExtendTheme<{ + colorScheme: 'light' | 'dark'; + tokens: ThemeTokens; +}>; + +declare module '@mui/material/theme' { + interface ThemeArgs { + theme: CustomTheme; + } +} + +declare global { + namespace React { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + interface HTMLAttributes { + sx?: + | React.CSSProperties + | ((theme: CustomTheme) => React.CSSProperties) + | ReadonlyArray React.CSSProperties)>; + } + } +} diff --git a/apps/bare-next-app/tsconfig.json b/apps/bare-next-app/tsconfig.json new file mode 100644 index 00000000000000..fdf07e4e0b0f8e --- /dev/null +++ b/apps/bare-next-app/tsconfig.json @@ -0,0 +1,38 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./src/*"] + } + }, + "include": ["next-env.d.ts", "./src/**/*.ts", "./src/**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"], + "references": [ + { + "path": "../../packages/mui-system/tsconfig.build.json" + }, + { + "path": "../../packages/mui-base/tsconfig.build.json" + }, + { + "path": "../../packages/mui-material/tsconfig.build.json" + } + ] +} diff --git a/apps/pigment-css-next-app/README.md b/apps/pigment-css-next-app/README.md index 1f520a3e1172ea..d919150b44175d 100644 --- a/apps/pigment-css-next-app/README.md +++ b/apps/pigment-css-next-app/README.md @@ -13,7 +13,7 @@ pnpm build Then start the Next.js development server: ```bash -pnpm run --filter=@app/next-app dev +pnpm run --filter=@app/pigment-css-next-app dev ``` Open [http://localhost:3000](http://localhost:3000) to see the app running live. @@ -37,5 +37,5 @@ You might have to restart the Next.js server. To build the project, run the `build` command in this package: ```bash -pnpm run --filter=@app/next-app build +pnpm run --filter=@app/pigment-css-next-app build ``` diff --git a/apps/pigment-css-next-app/next.config.js b/apps/pigment-css-next-app/next.config.mjs similarity index 94% rename from apps/pigment-css-next-app/next.config.js rename to apps/pigment-css-next-app/next.config.mjs index 6f71bd85cbf8fe..07d6db2035c912 100644 --- a/apps/pigment-css-next-app/next.config.js +++ b/apps/pigment-css-next-app/next.config.mjs @@ -1,7 +1,7 @@ /* eslint-env node */ // eslint-ignore-next-line import/no-unresolved -const { withPigment } = require('@pigment-css/nextjs-plugin'); -const { extendTheme } = require('@mui/material/styles'); +import { withPigment } from '@pigment-css/nextjs-plugin'; +import { extendTheme } from '@mui/material/styles'; /** * @typedef {import('@pigment-css/nextjs-plugin').PigmentOptions} PigmentOptions @@ -119,4 +119,4 @@ const nextConfig = { }, }; -module.exports = withPigment(nextConfig, pigmentOptions); +export default withPigment(nextConfig, pigmentOptions); diff --git a/apps/pigment-css-next-app/package.json b/apps/pigment-css-next-app/package.json index 43486f497836b6..a067f1801219f6 100644 --- a/apps/pigment-css-next-app/package.json +++ b/apps/pigment-css-next-app/package.json @@ -1,5 +1,5 @@ { - "name": "@app/next-app", + "name": "@app/pigment-css-next-app", "version": "0.1.0", "private": true, "scripts": { diff --git a/apps/pigment-css-next-app/tsconfig.json b/apps/pigment-css-next-app/tsconfig.json index 40e9c49eb15b71..fdf07e4e0b0f8e 100644 --- a/apps/pigment-css-next-app/tsconfig.json +++ b/apps/pigment-css-next-app/tsconfig.json @@ -22,7 +22,7 @@ "@/*": ["./src/*"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "include": ["next-env.d.ts", "./src/**/*.ts", "./src/**/*.tsx", ".next/types/**/*.ts"], "exclude": ["node_modules"], "references": [ { diff --git a/apps/pigment-css-vite-app/package.json b/apps/pigment-css-vite-app/package.json index db01eecc2d2515..df294b7ebe2585 100644 --- a/apps/pigment-css-vite-app/package.json +++ b/apps/pigment-css-vite-app/package.json @@ -1,5 +1,5 @@ { - "name": "@app/vite-app", + "name": "@app/pigment-css-vite-app", "version": "0.0.0", "private": true, "type": "module", diff --git a/apps/pigment-css-vite-app/tsconfig.json b/apps/pigment-css-vite-app/tsconfig.json index 0ed0fe1afa6d97..dbc47e7873675c 100644 --- a/apps/pigment-css-vite-app/tsconfig.json +++ b/apps/pigment-css-vite-app/tsconfig.json @@ -3,16 +3,5 @@ "compilerOptions": { "jsx": "react-jsx", "allowImportingTsExtensions": true - }, - "references": [ - { - "path": "../../packages/mui-system/tsconfig.build.json" - }, - { - "path": "../../packages/mui-base/tsconfig.build.json" - }, - { - "path": "../../packages/mui-material/tsconfig.build.json" - } - ] + } } diff --git a/babel.config.js b/babel.config.js index deba3ab0efb87b..551cfdb3e8ab5b 100644 --- a/babel.config.js +++ b/babel.config.js @@ -68,14 +68,9 @@ module.exports = function getBabelConfig(api) { '@babel/preset-typescript', ]; - const usesAliases = - // in this config: - api.env(['coverage', 'development', 'test', 'benchmark']) || - process.env.NODE_ENV === 'test' || - // in webpack config: - api.env(['regressions']); - - const outFileExtension = '.js'; + // Essentially only replace in production builds. + // When aliasing we want to keep the original extension + const outFileExtension = process.env.MUI_OUT_FILE_EXTENSION || null; /** @type {babel.PluginItem[]} */ const plugins = [ @@ -118,9 +113,7 @@ module.exports = function getBabelConfig(api) { [ '@mui/internal-babel-plugin-resolve-imports', { - // Don't replace the extension when we're using aliases. - // Essentially only replace in production builds. - outExtension: usesAliases ? null : outFileExtension, + outExtension: outFileExtension, }, ], ] diff --git a/package.json b/package.json index 59fbe08c7491af..af38a5a2b270c4 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "deduplicate": "pnpm dedupe", "benchmark:browser": "pnpm --filter benchmark browser", "build": "lerna run build --ignore docs", - "build:ci": "lerna run build --ignore docs --concurrency 8 --skip-nx-cache", + "build:ci": "lerna run build --ignore docs --ignore @app/pigment-css-next-app --concurrency 8 --skip-nx-cache", "build:public": "lerna run --no-private build", "build:public:ci": "lerna run --no-private build --concurrency 8 --skip-nx-cache", "build:codesandbox": "NODE_OPTIONS=\"--max_old_space_size=4096\" lerna run --concurrency 8 --scope \"@mui/*\" --scope \"@mui-internal/*\" --no-private build", @@ -72,10 +72,10 @@ "test:regressions:run": "nx run nx_test_regressions_run", "test:regressions:server": "serve test/regressions -p 5001", "test:regressions-pigment-css": "cross-env NODE_ENV=production pnpm test:regressions-pigment-css:build && concurrently --success first --kill-others \"pnpm test:regressions-pigment-css:run\" \"pnpm test:regressions-pigment-css:server\"", - "test:regressions-pigment-css:build": "pnpm --filter @app/vite-app run build", + "test:regressions-pigment-css:build": "pnpm --filter @app/pigment-css-vite-app run build", "test:regressions-pigment-css:dev": "concurrently \"pnpm test:regressions-pigment-css:build --watch\" \"pnpm test:regressions-pigment-css:server\"", "test:regressions-pigment-css:run": "nx run nx_test_regressions_pigment_css_run", - "test:regressions-pigment-css:server": "pnpm --filter @app/vite-app run preview --port 5001", + "test:regressions-pigment-css:server": "pnpm --filter @app/pigment-css-vite-app run preview --port 5001", "test:unit": "nx run nx_test_unit", "test:argos": "node ./scripts/pushArgos.mjs", "typescript": "lerna run --no-bail typescript", @@ -94,6 +94,7 @@ "nx_test_karma": "cross-env NODE_ENV=test karma start test/karma.conf.js", "nx_test_regressions_run": "mocha --config test/regressions/.mocharc.js --delay 'test/regressions/**/*.test.js'", "nx_test_regressions_pigment_css_run": "mocha --config apps/pigment-css-vite-app/.mocharc.cjs --delay 'apps/pigment-css-vite-app/**/*.test.js'", + "clean": "pnpm -r exec rm -rf build", "nx_test_unit": "cross-env NODE_ENV=test mocha \"packages/**/*.test.?(c|m)[jt]s?(x)\" \"packages-internal/**/*.test.?(c|m)[jt]s?(x)\" \"docs/**/*.test.?(c|m)[jt]s?(x)\"" }, "dependencies": { @@ -176,11 +177,11 @@ "karma-mocha": "^2.0.1", "karma-sourcemap-loader": "^0.4.0", "karma-webpack": "^5.0.0", - "lerna": "^8.1.9", + "lerna": "^8.1.8", "lodash": "^4.17.21", "markdownlint-cli2": "^0.17.2", "mocha": "^11.1.0", - "nx": "^20.4.0", + "nx": "^19.8.14", "nyc": "^17.1.0", "piscina": "^4.8.0", "postcss-styled-syntax": "^0.7.1", diff --git a/packages/mui-base/package.json b/packages/mui-base/package.json index 308fbfba61a6ca..5eb389f7078a57 100644 --- a/packages/mui-base/package.json +++ b/packages/mui-base/package.json @@ -32,7 +32,7 @@ "build:node": "node ../../scripts/build.mjs node", "build:stable": "node ../../scripts/build.mjs stable", "build:copy-files": "node ../../scripts/copyFiles.mjs", - "build:types": "node ../../scripts/buildTypes.mjs", + "build:types": "tsx ../../scripts/buildTypes.mts", "prebuild": "rimraf build tsconfig.build.tsbuildinfo", "release": "pnpm build && pnpm publish", "test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-base/**/*.test.?(c|m)[jt]s?(x)'", diff --git a/packages/mui-base/src/Select/Select.test.tsx b/packages/mui-base/src/Select/Select.test.tsx index 7831c8b44e3aa5..e7a401675985db 100644 --- a/packages/mui-base/src/Select/Select.test.tsx +++ b/packages/mui-base/src/Select/Select.test.tsx @@ -1006,7 +1006,7 @@ describe('', () => { const select = screen.getByRole('combobox'); - act(() => { + await act(async () => { select.click(); }); @@ -1041,7 +1041,7 @@ describe('', () => { const updateButton = getByTestId('update-externally'); const selectButton = getByTestId('select'); - act(() => updateButton.click()); - act(() => selectButton.click()); + await act(async () => updateButton.click()); + await act(async () => selectButton.click()); const option2 = getByText('2'); - act(() => option2.click()); + await act(async () => option2.click()); expect(selectButton).to.have.text('1, 2'); }); diff --git a/packages/mui-base/tsconfig.build.json b/packages/mui-base/tsconfig.build.json index 7696cbeba02fc7..3ffd11e1d6ac57 100644 --- a/packages/mui-base/tsconfig.build.json +++ b/packages/mui-base/tsconfig.build.json @@ -7,7 +7,7 @@ "declaration": true, "noEmit": false, "emitDeclarationOnly": true, - "outDir": "build", + "outDir": "build/esm", "rootDir": "./src" }, "include": ["src/**/*.ts*"], diff --git a/packages/mui-docs/package.json b/packages/mui-docs/package.json index 0f87981e3c49ed..0dc9df65532c23 100644 --- a/packages/mui-docs/package.json +++ b/packages/mui-docs/package.json @@ -27,7 +27,7 @@ "build:modern": "echo 'Skip modern build'", "build:node": "node ../../scripts/build.mjs node", "build:stable": "node ../../scripts/build.mjs stable", - "build:types": "node ../../scripts/buildTypes.mjs", + "build:types": "tsx ../../scripts/buildTypes.mts", "build:copy-files": "node ../../scripts/copyFiles.mjs ./src/translations/translations.json:./translations/translations.json ./src/translations/translations.json:./node/translations/translations.json", "prebuild": "rimraf build", "release": "pnpm build && pnpm publish", diff --git a/packages/mui-docs/tsconfig.build.json b/packages/mui-docs/tsconfig.build.json index 6ecc42731f24fc..0cc53d62095317 100644 --- a/packages/mui-docs/tsconfig.build.json +++ b/packages/mui-docs/tsconfig.build.json @@ -7,7 +7,7 @@ "declaration": true, "noEmit": false, "emitDeclarationOnly": true, - "outDir": "build", + "outDir": "build/esm", "rootDir": "./src", "tsBuildInfoFile": "build/tsconfig.build.tsbuildinfo" }, diff --git a/packages/mui-icons-material/lib/esm/icon.d.ts b/packages/mui-icons-material/lib/esm/icon.d.ts new file mode 100644 index 00000000000000..1144a68cb289e6 --- /dev/null +++ b/packages/mui-icons-material/lib/esm/icon.d.ts @@ -0,0 +1 @@ +export { default } from '@mui/material/SvgIcon'; \ No newline at end of file diff --git a/packages/mui-icons-material/lib/esm/index.d.ts b/packages/mui-icons-material/lib/esm/index.d.ts new file mode 100644 index 00000000000000..6888afc615b35f --- /dev/null +++ b/packages/mui-icons-material/lib/esm/index.d.ts @@ -0,0 +1,10621 @@ + +import SvgIcon from '@mui/material/SvgIcon'; + +type SvgIconComponent = typeof SvgIcon; + +export const Abc: SvgIconComponent; +export const AbcOutlined: SvgIconComponent; +export const AbcRounded: SvgIconComponent; +export const AbcSharp: SvgIconComponent; +export const AbcTwoTone: SvgIconComponent; +export const AcUnit: SvgIconComponent; +export const AcUnitOutlined: SvgIconComponent; +export const AcUnitRounded: SvgIconComponent; +export const AcUnitSharp: SvgIconComponent; +export const AcUnitTwoTone: SvgIconComponent; +export const AccessAlarm: SvgIconComponent; +export const AccessAlarmOutlined: SvgIconComponent; +export const AccessAlarmRounded: SvgIconComponent; +export const AccessAlarmSharp: SvgIconComponent; +export const AccessAlarmTwoTone: SvgIconComponent; +export const AccessAlarms: SvgIconComponent; +export const AccessAlarmsOutlined: SvgIconComponent; +export const AccessAlarmsRounded: SvgIconComponent; +export const AccessAlarmsSharp: SvgIconComponent; +export const AccessAlarmsTwoTone: SvgIconComponent; +export const AccessTime: SvgIconComponent; +export const AccessTimeFilled: SvgIconComponent; +export const AccessTimeFilledOutlined: SvgIconComponent; +export const AccessTimeFilledRounded: SvgIconComponent; +export const AccessTimeFilledSharp: SvgIconComponent; +export const AccessTimeFilledTwoTone: SvgIconComponent; +export const AccessTimeOutlined: SvgIconComponent; +export const AccessTimeRounded: SvgIconComponent; +export const AccessTimeSharp: SvgIconComponent; +export const AccessTimeTwoTone: SvgIconComponent; +export const Accessibility: SvgIconComponent; +export const AccessibilityNew: SvgIconComponent; +export const AccessibilityNewOutlined: SvgIconComponent; +export const AccessibilityNewRounded: SvgIconComponent; +export const AccessibilityNewSharp: SvgIconComponent; +export const AccessibilityNewTwoTone: SvgIconComponent; +export const AccessibilityOutlined: SvgIconComponent; +export const AccessibilityRounded: SvgIconComponent; +export const AccessibilitySharp: SvgIconComponent; +export const AccessibilityTwoTone: SvgIconComponent; +export const Accessible: SvgIconComponent; +export const AccessibleForward: SvgIconComponent; +export const AccessibleForwardOutlined: SvgIconComponent; +export const AccessibleForwardRounded: SvgIconComponent; +export const AccessibleForwardSharp: SvgIconComponent; +export const AccessibleForwardTwoTone: SvgIconComponent; +export const AccessibleOutlined: SvgIconComponent; +export const AccessibleRounded: SvgIconComponent; +export const AccessibleSharp: SvgIconComponent; +export const AccessibleTwoTone: SvgIconComponent; +export const AccountBalance: SvgIconComponent; +export const AccountBalanceOutlined: SvgIconComponent; +export const AccountBalanceRounded: SvgIconComponent; +export const AccountBalanceSharp: SvgIconComponent; +export const AccountBalanceTwoTone: SvgIconComponent; +export const AccountBalanceWallet: SvgIconComponent; +export const AccountBalanceWalletOutlined: SvgIconComponent; +export const AccountBalanceWalletRounded: SvgIconComponent; +export const AccountBalanceWalletSharp: SvgIconComponent; +export const AccountBalanceWalletTwoTone: SvgIconComponent; +export const AccountBox: SvgIconComponent; +export const AccountBoxOutlined: SvgIconComponent; +export const AccountBoxRounded: SvgIconComponent; +export const AccountBoxSharp: SvgIconComponent; +export const AccountBoxTwoTone: SvgIconComponent; +export const AccountCircle: SvgIconComponent; +export const AccountCircleOutlined: SvgIconComponent; +export const AccountCircleRounded: SvgIconComponent; +export const AccountCircleSharp: SvgIconComponent; +export const AccountCircleTwoTone: SvgIconComponent; +export const AccountTree: SvgIconComponent; +export const AccountTreeOutlined: SvgIconComponent; +export const AccountTreeRounded: SvgIconComponent; +export const AccountTreeSharp: SvgIconComponent; +export const AccountTreeTwoTone: SvgIconComponent; +export const AdUnits: SvgIconComponent; +export const AdUnitsOutlined: SvgIconComponent; +export const AdUnitsRounded: SvgIconComponent; +export const AdUnitsSharp: SvgIconComponent; +export const AdUnitsTwoTone: SvgIconComponent; +export const Adb: SvgIconComponent; +export const AdbOutlined: SvgIconComponent; +export const AdbRounded: SvgIconComponent; +export const AdbSharp: SvgIconComponent; +export const AdbTwoTone: SvgIconComponent; +export const Add: SvgIconComponent; +export const AddAPhoto: SvgIconComponent; +export const AddAPhotoOutlined: SvgIconComponent; +export const AddAPhotoRounded: SvgIconComponent; +export const AddAPhotoSharp: SvgIconComponent; +export const AddAPhotoTwoTone: SvgIconComponent; +export const AddAlarm: SvgIconComponent; +export const AddAlarmOutlined: SvgIconComponent; +export const AddAlarmRounded: SvgIconComponent; +export const AddAlarmSharp: SvgIconComponent; +export const AddAlarmTwoTone: SvgIconComponent; +export const AddAlert: SvgIconComponent; +export const AddAlertOutlined: SvgIconComponent; +export const AddAlertRounded: SvgIconComponent; +export const AddAlertSharp: SvgIconComponent; +export const AddAlertTwoTone: SvgIconComponent; +export const AddBox: SvgIconComponent; +export const AddBoxOutlined: SvgIconComponent; +export const AddBoxRounded: SvgIconComponent; +export const AddBoxSharp: SvgIconComponent; +export const AddBoxTwoTone: SvgIconComponent; +export const AddBusiness: SvgIconComponent; +export const AddBusinessOutlined: SvgIconComponent; +export const AddBusinessRounded: SvgIconComponent; +export const AddBusinessSharp: SvgIconComponent; +export const AddBusinessTwoTone: SvgIconComponent; +export const AddCard: SvgIconComponent; +export const AddCardOutlined: SvgIconComponent; +export const AddCardRounded: SvgIconComponent; +export const AddCardSharp: SvgIconComponent; +export const AddCardTwoTone: SvgIconComponent; +export const AddCircle: SvgIconComponent; +export const AddCircleOutline: SvgIconComponent; +export const AddCircleOutlineOutlined: SvgIconComponent; +export const AddCircleOutlineRounded: SvgIconComponent; +export const AddCircleOutlineSharp: SvgIconComponent; +export const AddCircleOutlineTwoTone: SvgIconComponent; +export const AddCircleOutlined: SvgIconComponent; +export const AddCircleRounded: SvgIconComponent; +export const AddCircleSharp: SvgIconComponent; +export const AddCircleTwoTone: SvgIconComponent; +export const AddComment: SvgIconComponent; +export const AddCommentOutlined: SvgIconComponent; +export const AddCommentRounded: SvgIconComponent; +export const AddCommentSharp: SvgIconComponent; +export const AddCommentTwoTone: SvgIconComponent; +export const AddHome: SvgIconComponent; +export const AddHomeOutlined: SvgIconComponent; +export const AddHomeRounded: SvgIconComponent; +export const AddHomeSharp: SvgIconComponent; +export const AddHomeTwoTone: SvgIconComponent; +export const AddHomeWork: SvgIconComponent; +export const AddHomeWorkOutlined: SvgIconComponent; +export const AddHomeWorkRounded: SvgIconComponent; +export const AddHomeWorkSharp: SvgIconComponent; +export const AddHomeWorkTwoTone: SvgIconComponent; +export const AddIcCall: SvgIconComponent; +export const AddIcCallOutlined: SvgIconComponent; +export const AddIcCallRounded: SvgIconComponent; +export const AddIcCallSharp: SvgIconComponent; +export const AddIcCallTwoTone: SvgIconComponent; +export const AddLink: SvgIconComponent; +export const AddLinkOutlined: SvgIconComponent; +export const AddLinkRounded: SvgIconComponent; +export const AddLinkSharp: SvgIconComponent; +export const AddLinkTwoTone: SvgIconComponent; +export const AddLocation: SvgIconComponent; +export const AddLocationAlt: SvgIconComponent; +export const AddLocationAltOutlined: SvgIconComponent; +export const AddLocationAltRounded: SvgIconComponent; +export const AddLocationAltSharp: SvgIconComponent; +export const AddLocationAltTwoTone: SvgIconComponent; +export const AddLocationOutlined: SvgIconComponent; +export const AddLocationRounded: SvgIconComponent; +export const AddLocationSharp: SvgIconComponent; +export const AddLocationTwoTone: SvgIconComponent; +export const AddModerator: SvgIconComponent; +export const AddModeratorOutlined: SvgIconComponent; +export const AddModeratorRounded: SvgIconComponent; +export const AddModeratorSharp: SvgIconComponent; +export const AddModeratorTwoTone: SvgIconComponent; +export const AddOutlined: SvgIconComponent; +export const AddPhotoAlternate: SvgIconComponent; +export const AddPhotoAlternateOutlined: SvgIconComponent; +export const AddPhotoAlternateRounded: SvgIconComponent; +export const AddPhotoAlternateSharp: SvgIconComponent; +export const AddPhotoAlternateTwoTone: SvgIconComponent; +export const AddReaction: SvgIconComponent; +export const AddReactionOutlined: SvgIconComponent; +export const AddReactionRounded: SvgIconComponent; +export const AddReactionSharp: SvgIconComponent; +export const AddReactionTwoTone: SvgIconComponent; +export const AddRoad: SvgIconComponent; +export const AddRoadOutlined: SvgIconComponent; +export const AddRoadRounded: SvgIconComponent; +export const AddRoadSharp: SvgIconComponent; +export const AddRoadTwoTone: SvgIconComponent; +export const AddRounded: SvgIconComponent; +export const AddSharp: SvgIconComponent; +export const AddShoppingCart: SvgIconComponent; +export const AddShoppingCartOutlined: SvgIconComponent; +export const AddShoppingCartRounded: SvgIconComponent; +export const AddShoppingCartSharp: SvgIconComponent; +export const AddShoppingCartTwoTone: SvgIconComponent; +export const AddTask: SvgIconComponent; +export const AddTaskOutlined: SvgIconComponent; +export const AddTaskRounded: SvgIconComponent; +export const AddTaskSharp: SvgIconComponent; +export const AddTaskTwoTone: SvgIconComponent; +export const AddToDrive: SvgIconComponent; +export const AddToDriveOutlined: SvgIconComponent; +export const AddToDriveRounded: SvgIconComponent; +export const AddToDriveSharp: SvgIconComponent; +export const AddToDriveTwoTone: SvgIconComponent; +export const AddToHomeScreen: SvgIconComponent; +export const AddToHomeScreenOutlined: SvgIconComponent; +export const AddToHomeScreenRounded: SvgIconComponent; +export const AddToHomeScreenSharp: SvgIconComponent; +export const AddToHomeScreenTwoTone: SvgIconComponent; +export const AddToPhotos: SvgIconComponent; +export const AddToPhotosOutlined: SvgIconComponent; +export const AddToPhotosRounded: SvgIconComponent; +export const AddToPhotosSharp: SvgIconComponent; +export const AddToPhotosTwoTone: SvgIconComponent; +export const AddToQueue: SvgIconComponent; +export const AddToQueueOutlined: SvgIconComponent; +export const AddToQueueRounded: SvgIconComponent; +export const AddToQueueSharp: SvgIconComponent; +export const AddToQueueTwoTone: SvgIconComponent; +export const AddTwoTone: SvgIconComponent; +export const Addchart: SvgIconComponent; +export const AddchartOutlined: SvgIconComponent; +export const AddchartRounded: SvgIconComponent; +export const AddchartSharp: SvgIconComponent; +export const AddchartTwoTone: SvgIconComponent; +export const AdfScanner: SvgIconComponent; +export const AdfScannerOutlined: SvgIconComponent; +export const AdfScannerRounded: SvgIconComponent; +export const AdfScannerSharp: SvgIconComponent; +export const AdfScannerTwoTone: SvgIconComponent; +export const Adjust: SvgIconComponent; +export const AdjustOutlined: SvgIconComponent; +export const AdjustRounded: SvgIconComponent; +export const AdjustSharp: SvgIconComponent; +export const AdjustTwoTone: SvgIconComponent; +export const AdminPanelSettings: SvgIconComponent; +export const AdminPanelSettingsOutlined: SvgIconComponent; +export const AdminPanelSettingsRounded: SvgIconComponent; +export const AdminPanelSettingsSharp: SvgIconComponent; +export const AdminPanelSettingsTwoTone: SvgIconComponent; +export const AdsClick: SvgIconComponent; +export const AdsClickOutlined: SvgIconComponent; +export const AdsClickRounded: SvgIconComponent; +export const AdsClickSharp: SvgIconComponent; +export const AdsClickTwoTone: SvgIconComponent; +export const Agriculture: SvgIconComponent; +export const AgricultureOutlined: SvgIconComponent; +export const AgricultureRounded: SvgIconComponent; +export const AgricultureSharp: SvgIconComponent; +export const AgricultureTwoTone: SvgIconComponent; +export const Air: SvgIconComponent; +export const AirOutlined: SvgIconComponent; +export const AirRounded: SvgIconComponent; +export const AirSharp: SvgIconComponent; +export const AirTwoTone: SvgIconComponent; +export const AirlineSeatFlat: SvgIconComponent; +export const AirlineSeatFlatAngled: SvgIconComponent; +export const AirlineSeatFlatAngledOutlined: SvgIconComponent; +export const AirlineSeatFlatAngledRounded: SvgIconComponent; +export const AirlineSeatFlatAngledSharp: SvgIconComponent; +export const AirlineSeatFlatAngledTwoTone: SvgIconComponent; +export const AirlineSeatFlatOutlined: SvgIconComponent; +export const AirlineSeatFlatRounded: SvgIconComponent; +export const AirlineSeatFlatSharp: SvgIconComponent; +export const AirlineSeatFlatTwoTone: SvgIconComponent; +export const AirlineSeatIndividualSuite: SvgIconComponent; +export const AirlineSeatIndividualSuiteOutlined: SvgIconComponent; +export const AirlineSeatIndividualSuiteRounded: SvgIconComponent; +export const AirlineSeatIndividualSuiteSharp: SvgIconComponent; +export const AirlineSeatIndividualSuiteTwoTone: SvgIconComponent; +export const AirlineSeatLegroomExtra: SvgIconComponent; +export const AirlineSeatLegroomExtraOutlined: SvgIconComponent; +export const AirlineSeatLegroomExtraRounded: SvgIconComponent; +export const AirlineSeatLegroomExtraSharp: SvgIconComponent; +export const AirlineSeatLegroomExtraTwoTone: SvgIconComponent; +export const AirlineSeatLegroomNormal: SvgIconComponent; +export const AirlineSeatLegroomNormalOutlined: SvgIconComponent; +export const AirlineSeatLegroomNormalRounded: SvgIconComponent; +export const AirlineSeatLegroomNormalSharp: SvgIconComponent; +export const AirlineSeatLegroomNormalTwoTone: SvgIconComponent; +export const AirlineSeatLegroomReduced: SvgIconComponent; +export const AirlineSeatLegroomReducedOutlined: SvgIconComponent; +export const AirlineSeatLegroomReducedRounded: SvgIconComponent; +export const AirlineSeatLegroomReducedSharp: SvgIconComponent; +export const AirlineSeatLegroomReducedTwoTone: SvgIconComponent; +export const AirlineSeatReclineExtra: SvgIconComponent; +export const AirlineSeatReclineExtraOutlined: SvgIconComponent; +export const AirlineSeatReclineExtraRounded: SvgIconComponent; +export const AirlineSeatReclineExtraSharp: SvgIconComponent; +export const AirlineSeatReclineExtraTwoTone: SvgIconComponent; +export const AirlineSeatReclineNormal: SvgIconComponent; +export const AirlineSeatReclineNormalOutlined: SvgIconComponent; +export const AirlineSeatReclineNormalRounded: SvgIconComponent; +export const AirlineSeatReclineNormalSharp: SvgIconComponent; +export const AirlineSeatReclineNormalTwoTone: SvgIconComponent; +export const AirlineStops: SvgIconComponent; +export const AirlineStopsOutlined: SvgIconComponent; +export const AirlineStopsRounded: SvgIconComponent; +export const AirlineStopsSharp: SvgIconComponent; +export const AirlineStopsTwoTone: SvgIconComponent; +export const Airlines: SvgIconComponent; +export const AirlinesOutlined: SvgIconComponent; +export const AirlinesRounded: SvgIconComponent; +export const AirlinesSharp: SvgIconComponent; +export const AirlinesTwoTone: SvgIconComponent; +export const AirplaneTicket: SvgIconComponent; +export const AirplaneTicketOutlined: SvgIconComponent; +export const AirplaneTicketRounded: SvgIconComponent; +export const AirplaneTicketSharp: SvgIconComponent; +export const AirplaneTicketTwoTone: SvgIconComponent; +export const AirplanemodeActive: SvgIconComponent; +export const AirplanemodeActiveOutlined: SvgIconComponent; +export const AirplanemodeActiveRounded: SvgIconComponent; +export const AirplanemodeActiveSharp: SvgIconComponent; +export const AirplanemodeActiveTwoTone: SvgIconComponent; +export const AirplanemodeInactive: SvgIconComponent; +export const AirplanemodeInactiveOutlined: SvgIconComponent; +export const AirplanemodeInactiveRounded: SvgIconComponent; +export const AirplanemodeInactiveSharp: SvgIconComponent; +export const AirplanemodeInactiveTwoTone: SvgIconComponent; +export const Airplay: SvgIconComponent; +export const AirplayOutlined: SvgIconComponent; +export const AirplayRounded: SvgIconComponent; +export const AirplaySharp: SvgIconComponent; +export const AirplayTwoTone: SvgIconComponent; +export const AirportShuttle: SvgIconComponent; +export const AirportShuttleOutlined: SvgIconComponent; +export const AirportShuttleRounded: SvgIconComponent; +export const AirportShuttleSharp: SvgIconComponent; +export const AirportShuttleTwoTone: SvgIconComponent; +export const Alarm: SvgIconComponent; +export const AlarmAdd: SvgIconComponent; +export const AlarmAddOutlined: SvgIconComponent; +export const AlarmAddRounded: SvgIconComponent; +export const AlarmAddSharp: SvgIconComponent; +export const AlarmAddTwoTone: SvgIconComponent; +export const AlarmOff: SvgIconComponent; +export const AlarmOffOutlined: SvgIconComponent; +export const AlarmOffRounded: SvgIconComponent; +export const AlarmOffSharp: SvgIconComponent; +export const AlarmOffTwoTone: SvgIconComponent; +export const AlarmOn: SvgIconComponent; +export const AlarmOnOutlined: SvgIconComponent; +export const AlarmOnRounded: SvgIconComponent; +export const AlarmOnSharp: SvgIconComponent; +export const AlarmOnTwoTone: SvgIconComponent; +export const AlarmOutlined: SvgIconComponent; +export const AlarmRounded: SvgIconComponent; +export const AlarmSharp: SvgIconComponent; +export const AlarmTwoTone: SvgIconComponent; +export const Album: SvgIconComponent; +export const AlbumOutlined: SvgIconComponent; +export const AlbumRounded: SvgIconComponent; +export const AlbumSharp: SvgIconComponent; +export const AlbumTwoTone: SvgIconComponent; +export const AlignHorizontalCenter: SvgIconComponent; +export const AlignHorizontalCenterOutlined: SvgIconComponent; +export const AlignHorizontalCenterRounded: SvgIconComponent; +export const AlignHorizontalCenterSharp: SvgIconComponent; +export const AlignHorizontalCenterTwoTone: SvgIconComponent; +export const AlignHorizontalLeft: SvgIconComponent; +export const AlignHorizontalLeftOutlined: SvgIconComponent; +export const AlignHorizontalLeftRounded: SvgIconComponent; +export const AlignHorizontalLeftSharp: SvgIconComponent; +export const AlignHorizontalLeftTwoTone: SvgIconComponent; +export const AlignHorizontalRight: SvgIconComponent; +export const AlignHorizontalRightOutlined: SvgIconComponent; +export const AlignHorizontalRightRounded: SvgIconComponent; +export const AlignHorizontalRightSharp: SvgIconComponent; +export const AlignHorizontalRightTwoTone: SvgIconComponent; +export const AlignVerticalBottom: SvgIconComponent; +export const AlignVerticalBottomOutlined: SvgIconComponent; +export const AlignVerticalBottomRounded: SvgIconComponent; +export const AlignVerticalBottomSharp: SvgIconComponent; +export const AlignVerticalBottomTwoTone: SvgIconComponent; +export const AlignVerticalCenter: SvgIconComponent; +export const AlignVerticalCenterOutlined: SvgIconComponent; +export const AlignVerticalCenterRounded: SvgIconComponent; +export const AlignVerticalCenterSharp: SvgIconComponent; +export const AlignVerticalCenterTwoTone: SvgIconComponent; +export const AlignVerticalTop: SvgIconComponent; +export const AlignVerticalTopOutlined: SvgIconComponent; +export const AlignVerticalTopRounded: SvgIconComponent; +export const AlignVerticalTopSharp: SvgIconComponent; +export const AlignVerticalTopTwoTone: SvgIconComponent; +export const AllInbox: SvgIconComponent; +export const AllInboxOutlined: SvgIconComponent; +export const AllInboxRounded: SvgIconComponent; +export const AllInboxSharp: SvgIconComponent; +export const AllInboxTwoTone: SvgIconComponent; +export const AllInclusive: SvgIconComponent; +export const AllInclusiveOutlined: SvgIconComponent; +export const AllInclusiveRounded: SvgIconComponent; +export const AllInclusiveSharp: SvgIconComponent; +export const AllInclusiveTwoTone: SvgIconComponent; +export const AllOut: SvgIconComponent; +export const AllOutOutlined: SvgIconComponent; +export const AllOutRounded: SvgIconComponent; +export const AllOutSharp: SvgIconComponent; +export const AllOutTwoTone: SvgIconComponent; +export const AltRoute: SvgIconComponent; +export const AltRouteOutlined: SvgIconComponent; +export const AltRouteRounded: SvgIconComponent; +export const AltRouteSharp: SvgIconComponent; +export const AltRouteTwoTone: SvgIconComponent; +export const AlternateEmail: SvgIconComponent; +export const AlternateEmailOutlined: SvgIconComponent; +export const AlternateEmailRounded: SvgIconComponent; +export const AlternateEmailSharp: SvgIconComponent; +export const AlternateEmailTwoTone: SvgIconComponent; +export const Analytics: SvgIconComponent; +export const AnalyticsOutlined: SvgIconComponent; +export const AnalyticsRounded: SvgIconComponent; +export const AnalyticsSharp: SvgIconComponent; +export const AnalyticsTwoTone: SvgIconComponent; +export const Anchor: SvgIconComponent; +export const AnchorOutlined: SvgIconComponent; +export const AnchorRounded: SvgIconComponent; +export const AnchorSharp: SvgIconComponent; +export const AnchorTwoTone: SvgIconComponent; +export const Android: SvgIconComponent; +export const AndroidOutlined: SvgIconComponent; +export const AndroidRounded: SvgIconComponent; +export const AndroidSharp: SvgIconComponent; +export const AndroidTwoTone: SvgIconComponent; +export const Animation: SvgIconComponent; +export const AnimationOutlined: SvgIconComponent; +export const AnimationRounded: SvgIconComponent; +export const AnimationSharp: SvgIconComponent; +export const AnimationTwoTone: SvgIconComponent; +export const Announcement: SvgIconComponent; +export const AnnouncementOutlined: SvgIconComponent; +export const AnnouncementRounded: SvgIconComponent; +export const AnnouncementSharp: SvgIconComponent; +export const AnnouncementTwoTone: SvgIconComponent; +export const Aod: SvgIconComponent; +export const AodOutlined: SvgIconComponent; +export const AodRounded: SvgIconComponent; +export const AodSharp: SvgIconComponent; +export const AodTwoTone: SvgIconComponent; +export const Apartment: SvgIconComponent; +export const ApartmentOutlined: SvgIconComponent; +export const ApartmentRounded: SvgIconComponent; +export const ApartmentSharp: SvgIconComponent; +export const ApartmentTwoTone: SvgIconComponent; +export const Api: SvgIconComponent; +export const ApiOutlined: SvgIconComponent; +export const ApiRounded: SvgIconComponent; +export const ApiSharp: SvgIconComponent; +export const ApiTwoTone: SvgIconComponent; +export const AppBlocking: SvgIconComponent; +export const AppBlockingOutlined: SvgIconComponent; +export const AppBlockingRounded: SvgIconComponent; +export const AppBlockingSharp: SvgIconComponent; +export const AppBlockingTwoTone: SvgIconComponent; +export const AppRegistration: SvgIconComponent; +export const AppRegistrationOutlined: SvgIconComponent; +export const AppRegistrationRounded: SvgIconComponent; +export const AppRegistrationSharp: SvgIconComponent; +export const AppRegistrationTwoTone: SvgIconComponent; +export const AppSettingsAlt: SvgIconComponent; +export const AppSettingsAltOutlined: SvgIconComponent; +export const AppSettingsAltRounded: SvgIconComponent; +export const AppSettingsAltSharp: SvgIconComponent; +export const AppSettingsAltTwoTone: SvgIconComponent; +export const AppShortcut: SvgIconComponent; +export const AppShortcutOutlined: SvgIconComponent; +export const AppShortcutRounded: SvgIconComponent; +export const AppShortcutSharp: SvgIconComponent; +export const AppShortcutTwoTone: SvgIconComponent; +export const Apple: SvgIconComponent; +export const Approval: SvgIconComponent; +export const ApprovalOutlined: SvgIconComponent; +export const ApprovalRounded: SvgIconComponent; +export const ApprovalSharp: SvgIconComponent; +export const ApprovalTwoTone: SvgIconComponent; +export const Apps: SvgIconComponent; +export const AppsOutage: SvgIconComponent; +export const AppsOutageOutlined: SvgIconComponent; +export const AppsOutageRounded: SvgIconComponent; +export const AppsOutageSharp: SvgIconComponent; +export const AppsOutageTwoTone: SvgIconComponent; +export const AppsOutlined: SvgIconComponent; +export const AppsRounded: SvgIconComponent; +export const AppsSharp: SvgIconComponent; +export const AppsTwoTone: SvgIconComponent; +export const Architecture: SvgIconComponent; +export const ArchitectureOutlined: SvgIconComponent; +export const ArchitectureRounded: SvgIconComponent; +export const ArchitectureSharp: SvgIconComponent; +export const ArchitectureTwoTone: SvgIconComponent; +export const Archive: SvgIconComponent; +export const ArchiveOutlined: SvgIconComponent; +export const ArchiveRounded: SvgIconComponent; +export const ArchiveSharp: SvgIconComponent; +export const ArchiveTwoTone: SvgIconComponent; +export const ArrowBack: SvgIconComponent; +export const ArrowBackIos: SvgIconComponent; +export const ArrowBackIosNew: SvgIconComponent; +export const ArrowBackIosNewOutlined: SvgIconComponent; +export const ArrowBackIosNewRounded: SvgIconComponent; +export const ArrowBackIosNewSharp: SvgIconComponent; +export const ArrowBackIosNewTwoTone: SvgIconComponent; +export const ArrowBackIosOutlined: SvgIconComponent; +export const ArrowBackIosRounded: SvgIconComponent; +export const ArrowBackIosSharp: SvgIconComponent; +export const ArrowBackIosTwoTone: SvgIconComponent; +export const ArrowBackOutlined: SvgIconComponent; +export const ArrowBackRounded: SvgIconComponent; +export const ArrowBackSharp: SvgIconComponent; +export const ArrowBackTwoTone: SvgIconComponent; +export const ArrowCircleDown: SvgIconComponent; +export const ArrowCircleDownOutlined: SvgIconComponent; +export const ArrowCircleDownRounded: SvgIconComponent; +export const ArrowCircleDownSharp: SvgIconComponent; +export const ArrowCircleDownTwoTone: SvgIconComponent; +export const ArrowCircleLeft: SvgIconComponent; +export const ArrowCircleLeftOutlined: SvgIconComponent; +export const ArrowCircleLeftRounded: SvgIconComponent; +export const ArrowCircleLeftSharp: SvgIconComponent; +export const ArrowCircleLeftTwoTone: SvgIconComponent; +export const ArrowCircleRight: SvgIconComponent; +export const ArrowCircleRightOutlined: SvgIconComponent; +export const ArrowCircleRightRounded: SvgIconComponent; +export const ArrowCircleRightSharp: SvgIconComponent; +export const ArrowCircleRightTwoTone: SvgIconComponent; +export const ArrowCircleUp: SvgIconComponent; +export const ArrowCircleUpOutlined: SvgIconComponent; +export const ArrowCircleUpRounded: SvgIconComponent; +export const ArrowCircleUpSharp: SvgIconComponent; +export const ArrowCircleUpTwoTone: SvgIconComponent; +export const ArrowDownward: SvgIconComponent; +export const ArrowDownwardOutlined: SvgIconComponent; +export const ArrowDownwardRounded: SvgIconComponent; +export const ArrowDownwardSharp: SvgIconComponent; +export const ArrowDownwardTwoTone: SvgIconComponent; +export const ArrowDropDown: SvgIconComponent; +export const ArrowDropDownCircle: SvgIconComponent; +export const ArrowDropDownCircleOutlined: SvgIconComponent; +export const ArrowDropDownCircleRounded: SvgIconComponent; +export const ArrowDropDownCircleSharp: SvgIconComponent; +export const ArrowDropDownCircleTwoTone: SvgIconComponent; +export const ArrowDropDownOutlined: SvgIconComponent; +export const ArrowDropDownRounded: SvgIconComponent; +export const ArrowDropDownSharp: SvgIconComponent; +export const ArrowDropDownTwoTone: SvgIconComponent; +export const ArrowDropUp: SvgIconComponent; +export const ArrowDropUpOutlined: SvgIconComponent; +export const ArrowDropUpRounded: SvgIconComponent; +export const ArrowDropUpSharp: SvgIconComponent; +export const ArrowDropUpTwoTone: SvgIconComponent; +export const ArrowForward: SvgIconComponent; +export const ArrowForwardIos: SvgIconComponent; +export const ArrowForwardIosOutlined: SvgIconComponent; +export const ArrowForwardIosRounded: SvgIconComponent; +export const ArrowForwardIosSharp: SvgIconComponent; +export const ArrowForwardIosTwoTone: SvgIconComponent; +export const ArrowForwardOutlined: SvgIconComponent; +export const ArrowForwardRounded: SvgIconComponent; +export const ArrowForwardSharp: SvgIconComponent; +export const ArrowForwardTwoTone: SvgIconComponent; +export const ArrowLeft: SvgIconComponent; +export const ArrowLeftOutlined: SvgIconComponent; +export const ArrowLeftRounded: SvgIconComponent; +export const ArrowLeftSharp: SvgIconComponent; +export const ArrowLeftTwoTone: SvgIconComponent; +export const ArrowOutward: SvgIconComponent; +export const ArrowOutwardOutlined: SvgIconComponent; +export const ArrowOutwardRounded: SvgIconComponent; +export const ArrowOutwardSharp: SvgIconComponent; +export const ArrowOutwardTwoTone: SvgIconComponent; +export const ArrowRight: SvgIconComponent; +export const ArrowRightAlt: SvgIconComponent; +export const ArrowRightAltOutlined: SvgIconComponent; +export const ArrowRightAltRounded: SvgIconComponent; +export const ArrowRightAltSharp: SvgIconComponent; +export const ArrowRightAltTwoTone: SvgIconComponent; +export const ArrowRightOutlined: SvgIconComponent; +export const ArrowRightRounded: SvgIconComponent; +export const ArrowRightSharp: SvgIconComponent; +export const ArrowRightTwoTone: SvgIconComponent; +export const ArrowUpward: SvgIconComponent; +export const ArrowUpwardOutlined: SvgIconComponent; +export const ArrowUpwardRounded: SvgIconComponent; +export const ArrowUpwardSharp: SvgIconComponent; +export const ArrowUpwardTwoTone: SvgIconComponent; +export const ArtTrack: SvgIconComponent; +export const ArtTrackOutlined: SvgIconComponent; +export const ArtTrackRounded: SvgIconComponent; +export const ArtTrackSharp: SvgIconComponent; +export const ArtTrackTwoTone: SvgIconComponent; +export const Article: SvgIconComponent; +export const ArticleOutlined: SvgIconComponent; +export const ArticleRounded: SvgIconComponent; +export const ArticleSharp: SvgIconComponent; +export const ArticleTwoTone: SvgIconComponent; +export const AspectRatio: SvgIconComponent; +export const AspectRatioOutlined: SvgIconComponent; +export const AspectRatioRounded: SvgIconComponent; +export const AspectRatioSharp: SvgIconComponent; +export const AspectRatioTwoTone: SvgIconComponent; +export const Assessment: SvgIconComponent; +export const AssessmentOutlined: SvgIconComponent; +export const AssessmentRounded: SvgIconComponent; +export const AssessmentSharp: SvgIconComponent; +export const AssessmentTwoTone: SvgIconComponent; +export const Assignment: SvgIconComponent; +export const AssignmentInd: SvgIconComponent; +export const AssignmentIndOutlined: SvgIconComponent; +export const AssignmentIndRounded: SvgIconComponent; +export const AssignmentIndSharp: SvgIconComponent; +export const AssignmentIndTwoTone: SvgIconComponent; +export const AssignmentLate: SvgIconComponent; +export const AssignmentLateOutlined: SvgIconComponent; +export const AssignmentLateRounded: SvgIconComponent; +export const AssignmentLateSharp: SvgIconComponent; +export const AssignmentLateTwoTone: SvgIconComponent; +export const AssignmentOutlined: SvgIconComponent; +export const AssignmentReturn: SvgIconComponent; +export const AssignmentReturnOutlined: SvgIconComponent; +export const AssignmentReturnRounded: SvgIconComponent; +export const AssignmentReturnSharp: SvgIconComponent; +export const AssignmentReturnTwoTone: SvgIconComponent; +export const AssignmentReturned: SvgIconComponent; +export const AssignmentReturnedOutlined: SvgIconComponent; +export const AssignmentReturnedRounded: SvgIconComponent; +export const AssignmentReturnedSharp: SvgIconComponent; +export const AssignmentReturnedTwoTone: SvgIconComponent; +export const AssignmentRounded: SvgIconComponent; +export const AssignmentSharp: SvgIconComponent; +export const AssignmentTurnedIn: SvgIconComponent; +export const AssignmentTurnedInOutlined: SvgIconComponent; +export const AssignmentTurnedInRounded: SvgIconComponent; +export const AssignmentTurnedInSharp: SvgIconComponent; +export const AssignmentTurnedInTwoTone: SvgIconComponent; +export const AssignmentTwoTone: SvgIconComponent; +export const AssistWalker: SvgIconComponent; +export const AssistWalkerOutlined: SvgIconComponent; +export const AssistWalkerRounded: SvgIconComponent; +export const AssistWalkerSharp: SvgIconComponent; +export const AssistWalkerTwoTone: SvgIconComponent; +export const Assistant: SvgIconComponent; +export const AssistantDirection: SvgIconComponent; +export const AssistantDirectionOutlined: SvgIconComponent; +export const AssistantDirectionRounded: SvgIconComponent; +export const AssistantDirectionSharp: SvgIconComponent; +export const AssistantDirectionTwoTone: SvgIconComponent; +export const AssistantOutlined: SvgIconComponent; +export const AssistantPhoto: SvgIconComponent; +export const AssistantPhotoOutlined: SvgIconComponent; +export const AssistantPhotoRounded: SvgIconComponent; +export const AssistantPhotoSharp: SvgIconComponent; +export const AssistantPhotoTwoTone: SvgIconComponent; +export const AssistantRounded: SvgIconComponent; +export const AssistantSharp: SvgIconComponent; +export const AssistantTwoTone: SvgIconComponent; +export const AssuredWorkload: SvgIconComponent; +export const AssuredWorkloadOutlined: SvgIconComponent; +export const AssuredWorkloadRounded: SvgIconComponent; +export const AssuredWorkloadSharp: SvgIconComponent; +export const AssuredWorkloadTwoTone: SvgIconComponent; +export const Atm: SvgIconComponent; +export const AtmOutlined: SvgIconComponent; +export const AtmRounded: SvgIconComponent; +export const AtmSharp: SvgIconComponent; +export const AtmTwoTone: SvgIconComponent; +export const AttachEmail: SvgIconComponent; +export const AttachEmailOutlined: SvgIconComponent; +export const AttachEmailRounded: SvgIconComponent; +export const AttachEmailSharp: SvgIconComponent; +export const AttachEmailTwoTone: SvgIconComponent; +export const AttachFile: SvgIconComponent; +export const AttachFileOutlined: SvgIconComponent; +export const AttachFileRounded: SvgIconComponent; +export const AttachFileSharp: SvgIconComponent; +export const AttachFileTwoTone: SvgIconComponent; +export const AttachMoney: SvgIconComponent; +export const AttachMoneyOutlined: SvgIconComponent; +export const AttachMoneyRounded: SvgIconComponent; +export const AttachMoneySharp: SvgIconComponent; +export const AttachMoneyTwoTone: SvgIconComponent; +export const Attachment: SvgIconComponent; +export const AttachmentOutlined: SvgIconComponent; +export const AttachmentRounded: SvgIconComponent; +export const AttachmentSharp: SvgIconComponent; +export const AttachmentTwoTone: SvgIconComponent; +export const Attractions: SvgIconComponent; +export const AttractionsOutlined: SvgIconComponent; +export const AttractionsRounded: SvgIconComponent; +export const AttractionsSharp: SvgIconComponent; +export const AttractionsTwoTone: SvgIconComponent; +export const Attribution: SvgIconComponent; +export const AttributionOutlined: SvgIconComponent; +export const AttributionRounded: SvgIconComponent; +export const AttributionSharp: SvgIconComponent; +export const AttributionTwoTone: SvgIconComponent; +export const AudioFile: SvgIconComponent; +export const AudioFileOutlined: SvgIconComponent; +export const AudioFileRounded: SvgIconComponent; +export const AudioFileSharp: SvgIconComponent; +export const AudioFileTwoTone: SvgIconComponent; +export const Audiotrack: SvgIconComponent; +export const AudiotrackOutlined: SvgIconComponent; +export const AudiotrackRounded: SvgIconComponent; +export const AudiotrackSharp: SvgIconComponent; +export const AudiotrackTwoTone: SvgIconComponent; +export const AutoAwesome: SvgIconComponent; +export const AutoAwesomeMosaic: SvgIconComponent; +export const AutoAwesomeMosaicOutlined: SvgIconComponent; +export const AutoAwesomeMosaicRounded: SvgIconComponent; +export const AutoAwesomeMosaicSharp: SvgIconComponent; +export const AutoAwesomeMosaicTwoTone: SvgIconComponent; +export const AutoAwesomeMotion: SvgIconComponent; +export const AutoAwesomeMotionOutlined: SvgIconComponent; +export const AutoAwesomeMotionRounded: SvgIconComponent; +export const AutoAwesomeMotionSharp: SvgIconComponent; +export const AutoAwesomeMotionTwoTone: SvgIconComponent; +export const AutoAwesomeOutlined: SvgIconComponent; +export const AutoAwesomeRounded: SvgIconComponent; +export const AutoAwesomeSharp: SvgIconComponent; +export const AutoAwesomeTwoTone: SvgIconComponent; +export const AutoDelete: SvgIconComponent; +export const AutoDeleteOutlined: SvgIconComponent; +export const AutoDeleteRounded: SvgIconComponent; +export const AutoDeleteSharp: SvgIconComponent; +export const AutoDeleteTwoTone: SvgIconComponent; +export const AutoFixHigh: SvgIconComponent; +export const AutoFixHighOutlined: SvgIconComponent; +export const AutoFixHighRounded: SvgIconComponent; +export const AutoFixHighSharp: SvgIconComponent; +export const AutoFixHighTwoTone: SvgIconComponent; +export const AutoFixNormal: SvgIconComponent; +export const AutoFixNormalOutlined: SvgIconComponent; +export const AutoFixNormalRounded: SvgIconComponent; +export const AutoFixNormalSharp: SvgIconComponent; +export const AutoFixNormalTwoTone: SvgIconComponent; +export const AutoFixOff: SvgIconComponent; +export const AutoFixOffOutlined: SvgIconComponent; +export const AutoFixOffRounded: SvgIconComponent; +export const AutoFixOffSharp: SvgIconComponent; +export const AutoFixOffTwoTone: SvgIconComponent; +export const AutoGraph: SvgIconComponent; +export const AutoGraphOutlined: SvgIconComponent; +export const AutoGraphRounded: SvgIconComponent; +export const AutoGraphSharp: SvgIconComponent; +export const AutoGraphTwoTone: SvgIconComponent; +export const AutoMode: SvgIconComponent; +export const AutoModeOutlined: SvgIconComponent; +export const AutoModeRounded: SvgIconComponent; +export const AutoModeSharp: SvgIconComponent; +export const AutoModeTwoTone: SvgIconComponent; +export const AutoStories: SvgIconComponent; +export const AutoStoriesOutlined: SvgIconComponent; +export const AutoStoriesRounded: SvgIconComponent; +export const AutoStoriesSharp: SvgIconComponent; +export const AutoStoriesTwoTone: SvgIconComponent; +export const AutofpsSelect: SvgIconComponent; +export const AutofpsSelectOutlined: SvgIconComponent; +export const AutofpsSelectRounded: SvgIconComponent; +export const AutofpsSelectSharp: SvgIconComponent; +export const AutofpsSelectTwoTone: SvgIconComponent; +export const Autorenew: SvgIconComponent; +export const AutorenewOutlined: SvgIconComponent; +export const AutorenewRounded: SvgIconComponent; +export const AutorenewSharp: SvgIconComponent; +export const AutorenewTwoTone: SvgIconComponent; +export const AvTimer: SvgIconComponent; +export const AvTimerOutlined: SvgIconComponent; +export const AvTimerRounded: SvgIconComponent; +export const AvTimerSharp: SvgIconComponent; +export const AvTimerTwoTone: SvgIconComponent; +export const BabyChangingStation: SvgIconComponent; +export const BabyChangingStationOutlined: SvgIconComponent; +export const BabyChangingStationRounded: SvgIconComponent; +export const BabyChangingStationSharp: SvgIconComponent; +export const BabyChangingStationTwoTone: SvgIconComponent; +export const BackHand: SvgIconComponent; +export const BackHandOutlined: SvgIconComponent; +export const BackHandRounded: SvgIconComponent; +export const BackHandSharp: SvgIconComponent; +export const BackHandTwoTone: SvgIconComponent; +export const Backpack: SvgIconComponent; +export const BackpackOutlined: SvgIconComponent; +export const BackpackRounded: SvgIconComponent; +export const BackpackSharp: SvgIconComponent; +export const BackpackTwoTone: SvgIconComponent; +export const Backspace: SvgIconComponent; +export const BackspaceOutlined: SvgIconComponent; +export const BackspaceRounded: SvgIconComponent; +export const BackspaceSharp: SvgIconComponent; +export const BackspaceTwoTone: SvgIconComponent; +export const Backup: SvgIconComponent; +export const BackupOutlined: SvgIconComponent; +export const BackupRounded: SvgIconComponent; +export const BackupSharp: SvgIconComponent; +export const BackupTable: SvgIconComponent; +export const BackupTableOutlined: SvgIconComponent; +export const BackupTableRounded: SvgIconComponent; +export const BackupTableSharp: SvgIconComponent; +export const BackupTableTwoTone: SvgIconComponent; +export const BackupTwoTone: SvgIconComponent; +export const Badge: SvgIconComponent; +export const BadgeOutlined: SvgIconComponent; +export const BadgeRounded: SvgIconComponent; +export const BadgeSharp: SvgIconComponent; +export const BadgeTwoTone: SvgIconComponent; +export const BakeryDining: SvgIconComponent; +export const BakeryDiningOutlined: SvgIconComponent; +export const BakeryDiningRounded: SvgIconComponent; +export const BakeryDiningSharp: SvgIconComponent; +export const BakeryDiningTwoTone: SvgIconComponent; +export const Balance: SvgIconComponent; +export const BalanceOutlined: SvgIconComponent; +export const BalanceRounded: SvgIconComponent; +export const BalanceSharp: SvgIconComponent; +export const BalanceTwoTone: SvgIconComponent; +export const Balcony: SvgIconComponent; +export const BalconyOutlined: SvgIconComponent; +export const BalconyRounded: SvgIconComponent; +export const BalconySharp: SvgIconComponent; +export const BalconyTwoTone: SvgIconComponent; +export const Ballot: SvgIconComponent; +export const BallotOutlined: SvgIconComponent; +export const BallotRounded: SvgIconComponent; +export const BallotSharp: SvgIconComponent; +export const BallotTwoTone: SvgIconComponent; +export const BarChart: SvgIconComponent; +export const BarChartOutlined: SvgIconComponent; +export const BarChartRounded: SvgIconComponent; +export const BarChartSharp: SvgIconComponent; +export const BarChartTwoTone: SvgIconComponent; +export const BatchPrediction: SvgIconComponent; +export const BatchPredictionOutlined: SvgIconComponent; +export const BatchPredictionRounded: SvgIconComponent; +export const BatchPredictionSharp: SvgIconComponent; +export const BatchPredictionTwoTone: SvgIconComponent; +export const Bathroom: SvgIconComponent; +export const BathroomOutlined: SvgIconComponent; +export const BathroomRounded: SvgIconComponent; +export const BathroomSharp: SvgIconComponent; +export const BathroomTwoTone: SvgIconComponent; +export const Bathtub: SvgIconComponent; +export const BathtubOutlined: SvgIconComponent; +export const BathtubRounded: SvgIconComponent; +export const BathtubSharp: SvgIconComponent; +export const BathtubTwoTone: SvgIconComponent; +export const Battery0Bar: SvgIconComponent; +export const Battery0BarOutlined: SvgIconComponent; +export const Battery0BarRounded: SvgIconComponent; +export const Battery0BarSharp: SvgIconComponent; +export const Battery0BarTwoTone: SvgIconComponent; +export const Battery1Bar: SvgIconComponent; +export const Battery1BarOutlined: SvgIconComponent; +export const Battery1BarRounded: SvgIconComponent; +export const Battery1BarSharp: SvgIconComponent; +export const Battery1BarTwoTone: SvgIconComponent; +export const Battery20: SvgIconComponent; +export const Battery20Outlined: SvgIconComponent; +export const Battery20Rounded: SvgIconComponent; +export const Battery20Sharp: SvgIconComponent; +export const Battery20TwoTone: SvgIconComponent; +export const Battery2Bar: SvgIconComponent; +export const Battery2BarOutlined: SvgIconComponent; +export const Battery2BarRounded: SvgIconComponent; +export const Battery2BarSharp: SvgIconComponent; +export const Battery2BarTwoTone: SvgIconComponent; +export const Battery30: SvgIconComponent; +export const Battery30Outlined: SvgIconComponent; +export const Battery30Rounded: SvgIconComponent; +export const Battery30Sharp: SvgIconComponent; +export const Battery30TwoTone: SvgIconComponent; +export const Battery3Bar: SvgIconComponent; +export const Battery3BarOutlined: SvgIconComponent; +export const Battery3BarRounded: SvgIconComponent; +export const Battery3BarSharp: SvgIconComponent; +export const Battery3BarTwoTone: SvgIconComponent; +export const Battery4Bar: SvgIconComponent; +export const Battery4BarOutlined: SvgIconComponent; +export const Battery4BarRounded: SvgIconComponent; +export const Battery4BarSharp: SvgIconComponent; +export const Battery4BarTwoTone: SvgIconComponent; +export const Battery50: SvgIconComponent; +export const Battery50Outlined: SvgIconComponent; +export const Battery50Rounded: SvgIconComponent; +export const Battery50Sharp: SvgIconComponent; +export const Battery50TwoTone: SvgIconComponent; +export const Battery5Bar: SvgIconComponent; +export const Battery5BarOutlined: SvgIconComponent; +export const Battery5BarRounded: SvgIconComponent; +export const Battery5BarSharp: SvgIconComponent; +export const Battery5BarTwoTone: SvgIconComponent; +export const Battery60: SvgIconComponent; +export const Battery60Outlined: SvgIconComponent; +export const Battery60Rounded: SvgIconComponent; +export const Battery60Sharp: SvgIconComponent; +export const Battery60TwoTone: SvgIconComponent; +export const Battery6Bar: SvgIconComponent; +export const Battery6BarOutlined: SvgIconComponent; +export const Battery6BarRounded: SvgIconComponent; +export const Battery6BarSharp: SvgIconComponent; +export const Battery6BarTwoTone: SvgIconComponent; +export const Battery80: SvgIconComponent; +export const Battery80Outlined: SvgIconComponent; +export const Battery80Rounded: SvgIconComponent; +export const Battery80Sharp: SvgIconComponent; +export const Battery80TwoTone: SvgIconComponent; +export const Battery90: SvgIconComponent; +export const Battery90Outlined: SvgIconComponent; +export const Battery90Rounded: SvgIconComponent; +export const Battery90Sharp: SvgIconComponent; +export const Battery90TwoTone: SvgIconComponent; +export const BatteryAlert: SvgIconComponent; +export const BatteryAlertOutlined: SvgIconComponent; +export const BatteryAlertRounded: SvgIconComponent; +export const BatteryAlertSharp: SvgIconComponent; +export const BatteryAlertTwoTone: SvgIconComponent; +export const BatteryCharging20: SvgIconComponent; +export const BatteryCharging20Outlined: SvgIconComponent; +export const BatteryCharging20Rounded: SvgIconComponent; +export const BatteryCharging20Sharp: SvgIconComponent; +export const BatteryCharging20TwoTone: SvgIconComponent; +export const BatteryCharging30: SvgIconComponent; +export const BatteryCharging30Outlined: SvgIconComponent; +export const BatteryCharging30Rounded: SvgIconComponent; +export const BatteryCharging30Sharp: SvgIconComponent; +export const BatteryCharging30TwoTone: SvgIconComponent; +export const BatteryCharging50: SvgIconComponent; +export const BatteryCharging50Outlined: SvgIconComponent; +export const BatteryCharging50Rounded: SvgIconComponent; +export const BatteryCharging50Sharp: SvgIconComponent; +export const BatteryCharging50TwoTone: SvgIconComponent; +export const BatteryCharging60: SvgIconComponent; +export const BatteryCharging60Outlined: SvgIconComponent; +export const BatteryCharging60Rounded: SvgIconComponent; +export const BatteryCharging60Sharp: SvgIconComponent; +export const BatteryCharging60TwoTone: SvgIconComponent; +export const BatteryCharging80: SvgIconComponent; +export const BatteryCharging80Outlined: SvgIconComponent; +export const BatteryCharging80Rounded: SvgIconComponent; +export const BatteryCharging80Sharp: SvgIconComponent; +export const BatteryCharging80TwoTone: SvgIconComponent; +export const BatteryCharging90: SvgIconComponent; +export const BatteryCharging90Outlined: SvgIconComponent; +export const BatteryCharging90Rounded: SvgIconComponent; +export const BatteryCharging90Sharp: SvgIconComponent; +export const BatteryCharging90TwoTone: SvgIconComponent; +export const BatteryChargingFull: SvgIconComponent; +export const BatteryChargingFullOutlined: SvgIconComponent; +export const BatteryChargingFullRounded: SvgIconComponent; +export const BatteryChargingFullSharp: SvgIconComponent; +export const BatteryChargingFullTwoTone: SvgIconComponent; +export const BatteryFull: SvgIconComponent; +export const BatteryFullOutlined: SvgIconComponent; +export const BatteryFullRounded: SvgIconComponent; +export const BatteryFullSharp: SvgIconComponent; +export const BatteryFullTwoTone: SvgIconComponent; +export const BatterySaver: SvgIconComponent; +export const BatterySaverOutlined: SvgIconComponent; +export const BatterySaverRounded: SvgIconComponent; +export const BatterySaverSharp: SvgIconComponent; +export const BatterySaverTwoTone: SvgIconComponent; +export const BatteryStd: SvgIconComponent; +export const BatteryStdOutlined: SvgIconComponent; +export const BatteryStdRounded: SvgIconComponent; +export const BatteryStdSharp: SvgIconComponent; +export const BatteryStdTwoTone: SvgIconComponent; +export const BatteryUnknown: SvgIconComponent; +export const BatteryUnknownOutlined: SvgIconComponent; +export const BatteryUnknownRounded: SvgIconComponent; +export const BatteryUnknownSharp: SvgIconComponent; +export const BatteryUnknownTwoTone: SvgIconComponent; +export const BeachAccess: SvgIconComponent; +export const BeachAccessOutlined: SvgIconComponent; +export const BeachAccessRounded: SvgIconComponent; +export const BeachAccessSharp: SvgIconComponent; +export const BeachAccessTwoTone: SvgIconComponent; +export const Bed: SvgIconComponent; +export const BedOutlined: SvgIconComponent; +export const BedRounded: SvgIconComponent; +export const BedSharp: SvgIconComponent; +export const BedTwoTone: SvgIconComponent; +export const BedroomBaby: SvgIconComponent; +export const BedroomBabyOutlined: SvgIconComponent; +export const BedroomBabyRounded: SvgIconComponent; +export const BedroomBabySharp: SvgIconComponent; +export const BedroomBabyTwoTone: SvgIconComponent; +export const BedroomChild: SvgIconComponent; +export const BedroomChildOutlined: SvgIconComponent; +export const BedroomChildRounded: SvgIconComponent; +export const BedroomChildSharp: SvgIconComponent; +export const BedroomChildTwoTone: SvgIconComponent; +export const BedroomParent: SvgIconComponent; +export const BedroomParentOutlined: SvgIconComponent; +export const BedroomParentRounded: SvgIconComponent; +export const BedroomParentSharp: SvgIconComponent; +export const BedroomParentTwoTone: SvgIconComponent; +export const Bedtime: SvgIconComponent; +export const BedtimeOff: SvgIconComponent; +export const BedtimeOffOutlined: SvgIconComponent; +export const BedtimeOffRounded: SvgIconComponent; +export const BedtimeOffSharp: SvgIconComponent; +export const BedtimeOffTwoTone: SvgIconComponent; +export const BedtimeOutlined: SvgIconComponent; +export const BedtimeRounded: SvgIconComponent; +export const BedtimeSharp: SvgIconComponent; +export const BedtimeTwoTone: SvgIconComponent; +export const Beenhere: SvgIconComponent; +export const BeenhereOutlined: SvgIconComponent; +export const BeenhereRounded: SvgIconComponent; +export const BeenhereSharp: SvgIconComponent; +export const BeenhereTwoTone: SvgIconComponent; +export const Bento: SvgIconComponent; +export const BentoOutlined: SvgIconComponent; +export const BentoRounded: SvgIconComponent; +export const BentoSharp: SvgIconComponent; +export const BentoTwoTone: SvgIconComponent; +export const BikeScooter: SvgIconComponent; +export const BikeScooterOutlined: SvgIconComponent; +export const BikeScooterRounded: SvgIconComponent; +export const BikeScooterSharp: SvgIconComponent; +export const BikeScooterTwoTone: SvgIconComponent; +export const Biotech: SvgIconComponent; +export const BiotechOutlined: SvgIconComponent; +export const BiotechRounded: SvgIconComponent; +export const BiotechSharp: SvgIconComponent; +export const BiotechTwoTone: SvgIconComponent; +export const Blender: SvgIconComponent; +export const BlenderOutlined: SvgIconComponent; +export const BlenderRounded: SvgIconComponent; +export const BlenderSharp: SvgIconComponent; +export const BlenderTwoTone: SvgIconComponent; +export const Blind: SvgIconComponent; +export const BlindOutlined: SvgIconComponent; +export const BlindRounded: SvgIconComponent; +export const BlindSharp: SvgIconComponent; +export const BlindTwoTone: SvgIconComponent; +export const Blinds: SvgIconComponent; +export const BlindsClosed: SvgIconComponent; +export const BlindsClosedOutlined: SvgIconComponent; +export const BlindsClosedRounded: SvgIconComponent; +export const BlindsClosedSharp: SvgIconComponent; +export const BlindsClosedTwoTone: SvgIconComponent; +export const BlindsOutlined: SvgIconComponent; +export const BlindsRounded: SvgIconComponent; +export const BlindsSharp: SvgIconComponent; +export const BlindsTwoTone: SvgIconComponent; +export const Block: SvgIconComponent; +export const BlockOutlined: SvgIconComponent; +export const BlockRounded: SvgIconComponent; +export const BlockSharp: SvgIconComponent; +export const BlockTwoTone: SvgIconComponent; +export const Bloodtype: SvgIconComponent; +export const BloodtypeOutlined: SvgIconComponent; +export const BloodtypeRounded: SvgIconComponent; +export const BloodtypeSharp: SvgIconComponent; +export const BloodtypeTwoTone: SvgIconComponent; +export const Bluetooth: SvgIconComponent; +export const BluetoothAudio: SvgIconComponent; +export const BluetoothAudioOutlined: SvgIconComponent; +export const BluetoothAudioRounded: SvgIconComponent; +export const BluetoothAudioSharp: SvgIconComponent; +export const BluetoothAudioTwoTone: SvgIconComponent; +export const BluetoothConnected: SvgIconComponent; +export const BluetoothConnectedOutlined: SvgIconComponent; +export const BluetoothConnectedRounded: SvgIconComponent; +export const BluetoothConnectedSharp: SvgIconComponent; +export const BluetoothConnectedTwoTone: SvgIconComponent; +export const BluetoothDisabled: SvgIconComponent; +export const BluetoothDisabledOutlined: SvgIconComponent; +export const BluetoothDisabledRounded: SvgIconComponent; +export const BluetoothDisabledSharp: SvgIconComponent; +export const BluetoothDisabledTwoTone: SvgIconComponent; +export const BluetoothDrive: SvgIconComponent; +export const BluetoothDriveOutlined: SvgIconComponent; +export const BluetoothDriveRounded: SvgIconComponent; +export const BluetoothDriveSharp: SvgIconComponent; +export const BluetoothDriveTwoTone: SvgIconComponent; +export const BluetoothOutlined: SvgIconComponent; +export const BluetoothRounded: SvgIconComponent; +export const BluetoothSearching: SvgIconComponent; +export const BluetoothSearchingOutlined: SvgIconComponent; +export const BluetoothSearchingRounded: SvgIconComponent; +export const BluetoothSearchingSharp: SvgIconComponent; +export const BluetoothSearchingTwoTone: SvgIconComponent; +export const BluetoothSharp: SvgIconComponent; +export const BluetoothTwoTone: SvgIconComponent; +export const BlurCircular: SvgIconComponent; +export const BlurCircularOutlined: SvgIconComponent; +export const BlurCircularRounded: SvgIconComponent; +export const BlurCircularSharp: SvgIconComponent; +export const BlurCircularTwoTone: SvgIconComponent; +export const BlurLinear: SvgIconComponent; +export const BlurLinearOutlined: SvgIconComponent; +export const BlurLinearRounded: SvgIconComponent; +export const BlurLinearSharp: SvgIconComponent; +export const BlurLinearTwoTone: SvgIconComponent; +export const BlurOff: SvgIconComponent; +export const BlurOffOutlined: SvgIconComponent; +export const BlurOffRounded: SvgIconComponent; +export const BlurOffSharp: SvgIconComponent; +export const BlurOffTwoTone: SvgIconComponent; +export const BlurOn: SvgIconComponent; +export const BlurOnOutlined: SvgIconComponent; +export const BlurOnRounded: SvgIconComponent; +export const BlurOnSharp: SvgIconComponent; +export const BlurOnTwoTone: SvgIconComponent; +export const Bolt: SvgIconComponent; +export const BoltOutlined: SvgIconComponent; +export const BoltRounded: SvgIconComponent; +export const BoltSharp: SvgIconComponent; +export const BoltTwoTone: SvgIconComponent; +export const Book: SvgIconComponent; +export const BookOnline: SvgIconComponent; +export const BookOnlineOutlined: SvgIconComponent; +export const BookOnlineRounded: SvgIconComponent; +export const BookOnlineSharp: SvgIconComponent; +export const BookOnlineTwoTone: SvgIconComponent; +export const BookOutlined: SvgIconComponent; +export const BookRounded: SvgIconComponent; +export const BookSharp: SvgIconComponent; +export const BookTwoTone: SvgIconComponent; +export const Bookmark: SvgIconComponent; +export const BookmarkAdd: SvgIconComponent; +export const BookmarkAddOutlined: SvgIconComponent; +export const BookmarkAddRounded: SvgIconComponent; +export const BookmarkAddSharp: SvgIconComponent; +export const BookmarkAddTwoTone: SvgIconComponent; +export const BookmarkAdded: SvgIconComponent; +export const BookmarkAddedOutlined: SvgIconComponent; +export const BookmarkAddedRounded: SvgIconComponent; +export const BookmarkAddedSharp: SvgIconComponent; +export const BookmarkAddedTwoTone: SvgIconComponent; +export const BookmarkBorder: SvgIconComponent; +export const BookmarkBorderOutlined: SvgIconComponent; +export const BookmarkBorderRounded: SvgIconComponent; +export const BookmarkBorderSharp: SvgIconComponent; +export const BookmarkBorderTwoTone: SvgIconComponent; +export const BookmarkOutlined: SvgIconComponent; +export const BookmarkRemove: SvgIconComponent; +export const BookmarkRemoveOutlined: SvgIconComponent; +export const BookmarkRemoveRounded: SvgIconComponent; +export const BookmarkRemoveSharp: SvgIconComponent; +export const BookmarkRemoveTwoTone: SvgIconComponent; +export const BookmarkRounded: SvgIconComponent; +export const BookmarkSharp: SvgIconComponent; +export const BookmarkTwoTone: SvgIconComponent; +export const Bookmarks: SvgIconComponent; +export const BookmarksOutlined: SvgIconComponent; +export const BookmarksRounded: SvgIconComponent; +export const BookmarksSharp: SvgIconComponent; +export const BookmarksTwoTone: SvgIconComponent; +export const BorderAll: SvgIconComponent; +export const BorderAllOutlined: SvgIconComponent; +export const BorderAllRounded: SvgIconComponent; +export const BorderAllSharp: SvgIconComponent; +export const BorderAllTwoTone: SvgIconComponent; +export const BorderBottom: SvgIconComponent; +export const BorderBottomOutlined: SvgIconComponent; +export const BorderBottomRounded: SvgIconComponent; +export const BorderBottomSharp: SvgIconComponent; +export const BorderBottomTwoTone: SvgIconComponent; +export const BorderClear: SvgIconComponent; +export const BorderClearOutlined: SvgIconComponent; +export const BorderClearRounded: SvgIconComponent; +export const BorderClearSharp: SvgIconComponent; +export const BorderClearTwoTone: SvgIconComponent; +export const BorderColor: SvgIconComponent; +export const BorderColorOutlined: SvgIconComponent; +export const BorderColorRounded: SvgIconComponent; +export const BorderColorSharp: SvgIconComponent; +export const BorderColorTwoTone: SvgIconComponent; +export const BorderHorizontal: SvgIconComponent; +export const BorderHorizontalOutlined: SvgIconComponent; +export const BorderHorizontalRounded: SvgIconComponent; +export const BorderHorizontalSharp: SvgIconComponent; +export const BorderHorizontalTwoTone: SvgIconComponent; +export const BorderInner: SvgIconComponent; +export const BorderInnerOutlined: SvgIconComponent; +export const BorderInnerRounded: SvgIconComponent; +export const BorderInnerSharp: SvgIconComponent; +export const BorderInnerTwoTone: SvgIconComponent; +export const BorderLeft: SvgIconComponent; +export const BorderLeftOutlined: SvgIconComponent; +export const BorderLeftRounded: SvgIconComponent; +export const BorderLeftSharp: SvgIconComponent; +export const BorderLeftTwoTone: SvgIconComponent; +export const BorderOuter: SvgIconComponent; +export const BorderOuterOutlined: SvgIconComponent; +export const BorderOuterRounded: SvgIconComponent; +export const BorderOuterSharp: SvgIconComponent; +export const BorderOuterTwoTone: SvgIconComponent; +export const BorderRight: SvgIconComponent; +export const BorderRightOutlined: SvgIconComponent; +export const BorderRightRounded: SvgIconComponent; +export const BorderRightSharp: SvgIconComponent; +export const BorderRightTwoTone: SvgIconComponent; +export const BorderStyle: SvgIconComponent; +export const BorderStyleOutlined: SvgIconComponent; +export const BorderStyleRounded: SvgIconComponent; +export const BorderStyleSharp: SvgIconComponent; +export const BorderStyleTwoTone: SvgIconComponent; +export const BorderTop: SvgIconComponent; +export const BorderTopOutlined: SvgIconComponent; +export const BorderTopRounded: SvgIconComponent; +export const BorderTopSharp: SvgIconComponent; +export const BorderTopTwoTone: SvgIconComponent; +export const BorderVertical: SvgIconComponent; +export const BorderVerticalOutlined: SvgIconComponent; +export const BorderVerticalRounded: SvgIconComponent; +export const BorderVerticalSharp: SvgIconComponent; +export const BorderVerticalTwoTone: SvgIconComponent; +export const Boy: SvgIconComponent; +export const BoyOutlined: SvgIconComponent; +export const BoyRounded: SvgIconComponent; +export const BoySharp: SvgIconComponent; +export const BoyTwoTone: SvgIconComponent; +export const BrandingWatermark: SvgIconComponent; +export const BrandingWatermarkOutlined: SvgIconComponent; +export const BrandingWatermarkRounded: SvgIconComponent; +export const BrandingWatermarkSharp: SvgIconComponent; +export const BrandingWatermarkTwoTone: SvgIconComponent; +export const BreakfastDining: SvgIconComponent; +export const BreakfastDiningOutlined: SvgIconComponent; +export const BreakfastDiningRounded: SvgIconComponent; +export const BreakfastDiningSharp: SvgIconComponent; +export const BreakfastDiningTwoTone: SvgIconComponent; +export const Brightness1: SvgIconComponent; +export const Brightness1Outlined: SvgIconComponent; +export const Brightness1Rounded: SvgIconComponent; +export const Brightness1Sharp: SvgIconComponent; +export const Brightness1TwoTone: SvgIconComponent; +export const Brightness2: SvgIconComponent; +export const Brightness2Outlined: SvgIconComponent; +export const Brightness2Rounded: SvgIconComponent; +export const Brightness2Sharp: SvgIconComponent; +export const Brightness2TwoTone: SvgIconComponent; +export const Brightness3: SvgIconComponent; +export const Brightness3Outlined: SvgIconComponent; +export const Brightness3Rounded: SvgIconComponent; +export const Brightness3Sharp: SvgIconComponent; +export const Brightness3TwoTone: SvgIconComponent; +export const Brightness4: SvgIconComponent; +export const Brightness4Outlined: SvgIconComponent; +export const Brightness4Rounded: SvgIconComponent; +export const Brightness4Sharp: SvgIconComponent; +export const Brightness4TwoTone: SvgIconComponent; +export const Brightness5: SvgIconComponent; +export const Brightness5Outlined: SvgIconComponent; +export const Brightness5Rounded: SvgIconComponent; +export const Brightness5Sharp: SvgIconComponent; +export const Brightness5TwoTone: SvgIconComponent; +export const Brightness6: SvgIconComponent; +export const Brightness6Outlined: SvgIconComponent; +export const Brightness6Rounded: SvgIconComponent; +export const Brightness6Sharp: SvgIconComponent; +export const Brightness6TwoTone: SvgIconComponent; +export const Brightness7: SvgIconComponent; +export const Brightness7Outlined: SvgIconComponent; +export const Brightness7Rounded: SvgIconComponent; +export const Brightness7Sharp: SvgIconComponent; +export const Brightness7TwoTone: SvgIconComponent; +export const BrightnessAuto: SvgIconComponent; +export const BrightnessAutoOutlined: SvgIconComponent; +export const BrightnessAutoRounded: SvgIconComponent; +export const BrightnessAutoSharp: SvgIconComponent; +export const BrightnessAutoTwoTone: SvgIconComponent; +export const BrightnessHigh: SvgIconComponent; +export const BrightnessHighOutlined: SvgIconComponent; +export const BrightnessHighRounded: SvgIconComponent; +export const BrightnessHighSharp: SvgIconComponent; +export const BrightnessHighTwoTone: SvgIconComponent; +export const BrightnessLow: SvgIconComponent; +export const BrightnessLowOutlined: SvgIconComponent; +export const BrightnessLowRounded: SvgIconComponent; +export const BrightnessLowSharp: SvgIconComponent; +export const BrightnessLowTwoTone: SvgIconComponent; +export const BrightnessMedium: SvgIconComponent; +export const BrightnessMediumOutlined: SvgIconComponent; +export const BrightnessMediumRounded: SvgIconComponent; +export const BrightnessMediumSharp: SvgIconComponent; +export const BrightnessMediumTwoTone: SvgIconComponent; +export const BroadcastOnHome: SvgIconComponent; +export const BroadcastOnHomeOutlined: SvgIconComponent; +export const BroadcastOnHomeRounded: SvgIconComponent; +export const BroadcastOnHomeSharp: SvgIconComponent; +export const BroadcastOnHomeTwoTone: SvgIconComponent; +export const BroadcastOnPersonal: SvgIconComponent; +export const BroadcastOnPersonalOutlined: SvgIconComponent; +export const BroadcastOnPersonalRounded: SvgIconComponent; +export const BroadcastOnPersonalSharp: SvgIconComponent; +export const BroadcastOnPersonalTwoTone: SvgIconComponent; +export const BrokenImage: SvgIconComponent; +export const BrokenImageOutlined: SvgIconComponent; +export const BrokenImageRounded: SvgIconComponent; +export const BrokenImageSharp: SvgIconComponent; +export const BrokenImageTwoTone: SvgIconComponent; +export const BrowseGallery: SvgIconComponent; +export const BrowseGalleryOutlined: SvgIconComponent; +export const BrowseGalleryRounded: SvgIconComponent; +export const BrowseGallerySharp: SvgIconComponent; +export const BrowseGalleryTwoTone: SvgIconComponent; +export const BrowserNotSupported: SvgIconComponent; +export const BrowserNotSupportedOutlined: SvgIconComponent; +export const BrowserNotSupportedRounded: SvgIconComponent; +export const BrowserNotSupportedSharp: SvgIconComponent; +export const BrowserNotSupportedTwoTone: SvgIconComponent; +export const BrowserUpdated: SvgIconComponent; +export const BrowserUpdatedOutlined: SvgIconComponent; +export const BrowserUpdatedRounded: SvgIconComponent; +export const BrowserUpdatedSharp: SvgIconComponent; +export const BrowserUpdatedTwoTone: SvgIconComponent; +export const BrunchDining: SvgIconComponent; +export const BrunchDiningOutlined: SvgIconComponent; +export const BrunchDiningRounded: SvgIconComponent; +export const BrunchDiningSharp: SvgIconComponent; +export const BrunchDiningTwoTone: SvgIconComponent; +export const Brush: SvgIconComponent; +export const BrushOutlined: SvgIconComponent; +export const BrushRounded: SvgIconComponent; +export const BrushSharp: SvgIconComponent; +export const BrushTwoTone: SvgIconComponent; +export const BubbleChart: SvgIconComponent; +export const BubbleChartOutlined: SvgIconComponent; +export const BubbleChartRounded: SvgIconComponent; +export const BubbleChartSharp: SvgIconComponent; +export const BubbleChartTwoTone: SvgIconComponent; +export const BugReport: SvgIconComponent; +export const BugReportOutlined: SvgIconComponent; +export const BugReportRounded: SvgIconComponent; +export const BugReportSharp: SvgIconComponent; +export const BugReportTwoTone: SvgIconComponent; +export const Build: SvgIconComponent; +export const BuildCircle: SvgIconComponent; +export const BuildCircleOutlined: SvgIconComponent; +export const BuildCircleRounded: SvgIconComponent; +export const BuildCircleSharp: SvgIconComponent; +export const BuildCircleTwoTone: SvgIconComponent; +export const BuildOutlined: SvgIconComponent; +export const BuildRounded: SvgIconComponent; +export const BuildSharp: SvgIconComponent; +export const BuildTwoTone: SvgIconComponent; +export const Bungalow: SvgIconComponent; +export const BungalowOutlined: SvgIconComponent; +export const BungalowRounded: SvgIconComponent; +export const BungalowSharp: SvgIconComponent; +export const BungalowTwoTone: SvgIconComponent; +export const BurstMode: SvgIconComponent; +export const BurstModeOutlined: SvgIconComponent; +export const BurstModeRounded: SvgIconComponent; +export const BurstModeSharp: SvgIconComponent; +export const BurstModeTwoTone: SvgIconComponent; +export const BusAlert: SvgIconComponent; +export const BusAlertOutlined: SvgIconComponent; +export const BusAlertRounded: SvgIconComponent; +export const BusAlertSharp: SvgIconComponent; +export const BusAlertTwoTone: SvgIconComponent; +export const Business: SvgIconComponent; +export const BusinessCenter: SvgIconComponent; +export const BusinessCenterOutlined: SvgIconComponent; +export const BusinessCenterRounded: SvgIconComponent; +export const BusinessCenterSharp: SvgIconComponent; +export const BusinessCenterTwoTone: SvgIconComponent; +export const BusinessOutlined: SvgIconComponent; +export const BusinessRounded: SvgIconComponent; +export const BusinessSharp: SvgIconComponent; +export const BusinessTwoTone: SvgIconComponent; +export const Cabin: SvgIconComponent; +export const CabinOutlined: SvgIconComponent; +export const CabinRounded: SvgIconComponent; +export const CabinSharp: SvgIconComponent; +export const CabinTwoTone: SvgIconComponent; +export const Cable: SvgIconComponent; +export const CableOutlined: SvgIconComponent; +export const CableRounded: SvgIconComponent; +export const CableSharp: SvgIconComponent; +export const CableTwoTone: SvgIconComponent; +export const Cached: SvgIconComponent; +export const CachedOutlined: SvgIconComponent; +export const CachedRounded: SvgIconComponent; +export const CachedSharp: SvgIconComponent; +export const CachedTwoTone: SvgIconComponent; +export const Cake: SvgIconComponent; +export const CakeOutlined: SvgIconComponent; +export const CakeRounded: SvgIconComponent; +export const CakeSharp: SvgIconComponent; +export const CakeTwoTone: SvgIconComponent; +export const Calculate: SvgIconComponent; +export const CalculateOutlined: SvgIconComponent; +export const CalculateRounded: SvgIconComponent; +export const CalculateSharp: SvgIconComponent; +export const CalculateTwoTone: SvgIconComponent; +export const CalendarMonth: SvgIconComponent; +export const CalendarMonthOutlined: SvgIconComponent; +export const CalendarMonthRounded: SvgIconComponent; +export const CalendarMonthSharp: SvgIconComponent; +export const CalendarMonthTwoTone: SvgIconComponent; +export const CalendarToday: SvgIconComponent; +export const CalendarTodayOutlined: SvgIconComponent; +export const CalendarTodayRounded: SvgIconComponent; +export const CalendarTodaySharp: SvgIconComponent; +export const CalendarTodayTwoTone: SvgIconComponent; +export const CalendarViewDay: SvgIconComponent; +export const CalendarViewDayOutlined: SvgIconComponent; +export const CalendarViewDayRounded: SvgIconComponent; +export const CalendarViewDaySharp: SvgIconComponent; +export const CalendarViewDayTwoTone: SvgIconComponent; +export const CalendarViewMonth: SvgIconComponent; +export const CalendarViewMonthOutlined: SvgIconComponent; +export const CalendarViewMonthRounded: SvgIconComponent; +export const CalendarViewMonthSharp: SvgIconComponent; +export const CalendarViewMonthTwoTone: SvgIconComponent; +export const CalendarViewWeek: SvgIconComponent; +export const CalendarViewWeekOutlined: SvgIconComponent; +export const CalendarViewWeekRounded: SvgIconComponent; +export const CalendarViewWeekSharp: SvgIconComponent; +export const CalendarViewWeekTwoTone: SvgIconComponent; +export const Call: SvgIconComponent; +export const CallEnd: SvgIconComponent; +export const CallEndOutlined: SvgIconComponent; +export const CallEndRounded: SvgIconComponent; +export const CallEndSharp: SvgIconComponent; +export const CallEndTwoTone: SvgIconComponent; +export const CallMade: SvgIconComponent; +export const CallMadeOutlined: SvgIconComponent; +export const CallMadeRounded: SvgIconComponent; +export const CallMadeSharp: SvgIconComponent; +export const CallMadeTwoTone: SvgIconComponent; +export const CallMerge: SvgIconComponent; +export const CallMergeOutlined: SvgIconComponent; +export const CallMergeRounded: SvgIconComponent; +export const CallMergeSharp: SvgIconComponent; +export const CallMergeTwoTone: SvgIconComponent; +export const CallMissed: SvgIconComponent; +export const CallMissedOutgoing: SvgIconComponent; +export const CallMissedOutgoingOutlined: SvgIconComponent; +export const CallMissedOutgoingRounded: SvgIconComponent; +export const CallMissedOutgoingSharp: SvgIconComponent; +export const CallMissedOutgoingTwoTone: SvgIconComponent; +export const CallMissedOutlined: SvgIconComponent; +export const CallMissedRounded: SvgIconComponent; +export const CallMissedSharp: SvgIconComponent; +export const CallMissedTwoTone: SvgIconComponent; +export const CallOutlined: SvgIconComponent; +export const CallReceived: SvgIconComponent; +export const CallReceivedOutlined: SvgIconComponent; +export const CallReceivedRounded: SvgIconComponent; +export const CallReceivedSharp: SvgIconComponent; +export const CallReceivedTwoTone: SvgIconComponent; +export const CallRounded: SvgIconComponent; +export const CallSharp: SvgIconComponent; +export const CallSplit: SvgIconComponent; +export const CallSplitOutlined: SvgIconComponent; +export const CallSplitRounded: SvgIconComponent; +export const CallSplitSharp: SvgIconComponent; +export const CallSplitTwoTone: SvgIconComponent; +export const CallToAction: SvgIconComponent; +export const CallToActionOutlined: SvgIconComponent; +export const CallToActionRounded: SvgIconComponent; +export const CallToActionSharp: SvgIconComponent; +export const CallToActionTwoTone: SvgIconComponent; +export const CallTwoTone: SvgIconComponent; +export const Camera: SvgIconComponent; +export const CameraAlt: SvgIconComponent; +export const CameraAltOutlined: SvgIconComponent; +export const CameraAltRounded: SvgIconComponent; +export const CameraAltSharp: SvgIconComponent; +export const CameraAltTwoTone: SvgIconComponent; +export const CameraEnhance: SvgIconComponent; +export const CameraEnhanceOutlined: SvgIconComponent; +export const CameraEnhanceRounded: SvgIconComponent; +export const CameraEnhanceSharp: SvgIconComponent; +export const CameraEnhanceTwoTone: SvgIconComponent; +export const CameraFront: SvgIconComponent; +export const CameraFrontOutlined: SvgIconComponent; +export const CameraFrontRounded: SvgIconComponent; +export const CameraFrontSharp: SvgIconComponent; +export const CameraFrontTwoTone: SvgIconComponent; +export const CameraIndoor: SvgIconComponent; +export const CameraIndoorOutlined: SvgIconComponent; +export const CameraIndoorRounded: SvgIconComponent; +export const CameraIndoorSharp: SvgIconComponent; +export const CameraIndoorTwoTone: SvgIconComponent; +export const CameraOutdoor: SvgIconComponent; +export const CameraOutdoorOutlined: SvgIconComponent; +export const CameraOutdoorRounded: SvgIconComponent; +export const CameraOutdoorSharp: SvgIconComponent; +export const CameraOutdoorTwoTone: SvgIconComponent; +export const CameraOutlined: SvgIconComponent; +export const CameraRear: SvgIconComponent; +export const CameraRearOutlined: SvgIconComponent; +export const CameraRearRounded: SvgIconComponent; +export const CameraRearSharp: SvgIconComponent; +export const CameraRearTwoTone: SvgIconComponent; +export const CameraRoll: SvgIconComponent; +export const CameraRollOutlined: SvgIconComponent; +export const CameraRollRounded: SvgIconComponent; +export const CameraRollSharp: SvgIconComponent; +export const CameraRollTwoTone: SvgIconComponent; +export const CameraRounded: SvgIconComponent; +export const CameraSharp: SvgIconComponent; +export const CameraTwoTone: SvgIconComponent; +export const Cameraswitch: SvgIconComponent; +export const CameraswitchOutlined: SvgIconComponent; +export const CameraswitchRounded: SvgIconComponent; +export const CameraswitchSharp: SvgIconComponent; +export const CameraswitchTwoTone: SvgIconComponent; +export const Campaign: SvgIconComponent; +export const CampaignOutlined: SvgIconComponent; +export const CampaignRounded: SvgIconComponent; +export const CampaignSharp: SvgIconComponent; +export const CampaignTwoTone: SvgIconComponent; +export const Cancel: SvgIconComponent; +export const CancelOutlined: SvgIconComponent; +export const CancelPresentation: SvgIconComponent; +export const CancelPresentationOutlined: SvgIconComponent; +export const CancelPresentationRounded: SvgIconComponent; +export const CancelPresentationSharp: SvgIconComponent; +export const CancelPresentationTwoTone: SvgIconComponent; +export const CancelRounded: SvgIconComponent; +export const CancelScheduleSend: SvgIconComponent; +export const CancelScheduleSendOutlined: SvgIconComponent; +export const CancelScheduleSendRounded: SvgIconComponent; +export const CancelScheduleSendSharp: SvgIconComponent; +export const CancelScheduleSendTwoTone: SvgIconComponent; +export const CancelSharp: SvgIconComponent; +export const CancelTwoTone: SvgIconComponent; +export const CandlestickChart: SvgIconComponent; +export const CandlestickChartOutlined: SvgIconComponent; +export const CandlestickChartRounded: SvgIconComponent; +export const CandlestickChartSharp: SvgIconComponent; +export const CandlestickChartTwoTone: SvgIconComponent; +export const CarCrash: SvgIconComponent; +export const CarCrashOutlined: SvgIconComponent; +export const CarCrashRounded: SvgIconComponent; +export const CarCrashSharp: SvgIconComponent; +export const CarCrashTwoTone: SvgIconComponent; +export const CarRental: SvgIconComponent; +export const CarRentalOutlined: SvgIconComponent; +export const CarRentalRounded: SvgIconComponent; +export const CarRentalSharp: SvgIconComponent; +export const CarRentalTwoTone: SvgIconComponent; +export const CarRepair: SvgIconComponent; +export const CarRepairOutlined: SvgIconComponent; +export const CarRepairRounded: SvgIconComponent; +export const CarRepairSharp: SvgIconComponent; +export const CarRepairTwoTone: SvgIconComponent; +export const CardGiftcard: SvgIconComponent; +export const CardGiftcardOutlined: SvgIconComponent; +export const CardGiftcardRounded: SvgIconComponent; +export const CardGiftcardSharp: SvgIconComponent; +export const CardGiftcardTwoTone: SvgIconComponent; +export const CardMembership: SvgIconComponent; +export const CardMembershipOutlined: SvgIconComponent; +export const CardMembershipRounded: SvgIconComponent; +export const CardMembershipSharp: SvgIconComponent; +export const CardMembershipTwoTone: SvgIconComponent; +export const CardTravel: SvgIconComponent; +export const CardTravelOutlined: SvgIconComponent; +export const CardTravelRounded: SvgIconComponent; +export const CardTravelSharp: SvgIconComponent; +export const CardTravelTwoTone: SvgIconComponent; +export const Carpenter: SvgIconComponent; +export const CarpenterOutlined: SvgIconComponent; +export const CarpenterRounded: SvgIconComponent; +export const CarpenterSharp: SvgIconComponent; +export const CarpenterTwoTone: SvgIconComponent; +export const Cases: SvgIconComponent; +export const CasesOutlined: SvgIconComponent; +export const CasesRounded: SvgIconComponent; +export const CasesSharp: SvgIconComponent; +export const CasesTwoTone: SvgIconComponent; +export const Casino: SvgIconComponent; +export const CasinoOutlined: SvgIconComponent; +export const CasinoRounded: SvgIconComponent; +export const CasinoSharp: SvgIconComponent; +export const CasinoTwoTone: SvgIconComponent; +export const Cast: SvgIconComponent; +export const CastConnected: SvgIconComponent; +export const CastConnectedOutlined: SvgIconComponent; +export const CastConnectedRounded: SvgIconComponent; +export const CastConnectedSharp: SvgIconComponent; +export const CastConnectedTwoTone: SvgIconComponent; +export const CastForEducation: SvgIconComponent; +export const CastForEducationOutlined: SvgIconComponent; +export const CastForEducationRounded: SvgIconComponent; +export const CastForEducationSharp: SvgIconComponent; +export const CastForEducationTwoTone: SvgIconComponent; +export const CastOutlined: SvgIconComponent; +export const CastRounded: SvgIconComponent; +export const CastSharp: SvgIconComponent; +export const CastTwoTone: SvgIconComponent; +export const Castle: SvgIconComponent; +export const CastleOutlined: SvgIconComponent; +export const CastleRounded: SvgIconComponent; +export const CastleSharp: SvgIconComponent; +export const CastleTwoTone: SvgIconComponent; +export const CatchingPokemon: SvgIconComponent; +export const CatchingPokemonOutlined: SvgIconComponent; +export const CatchingPokemonRounded: SvgIconComponent; +export const CatchingPokemonSharp: SvgIconComponent; +export const CatchingPokemonTwoTone: SvgIconComponent; +export const Category: SvgIconComponent; +export const CategoryOutlined: SvgIconComponent; +export const CategoryRounded: SvgIconComponent; +export const CategorySharp: SvgIconComponent; +export const CategoryTwoTone: SvgIconComponent; +export const Celebration: SvgIconComponent; +export const CelebrationOutlined: SvgIconComponent; +export const CelebrationRounded: SvgIconComponent; +export const CelebrationSharp: SvgIconComponent; +export const CelebrationTwoTone: SvgIconComponent; +export const CellTower: SvgIconComponent; +export const CellTowerOutlined: SvgIconComponent; +export const CellTowerRounded: SvgIconComponent; +export const CellTowerSharp: SvgIconComponent; +export const CellTowerTwoTone: SvgIconComponent; +export const CellWifi: SvgIconComponent; +export const CellWifiOutlined: SvgIconComponent; +export const CellWifiRounded: SvgIconComponent; +export const CellWifiSharp: SvgIconComponent; +export const CellWifiTwoTone: SvgIconComponent; +export const CenterFocusStrong: SvgIconComponent; +export const CenterFocusStrongOutlined: SvgIconComponent; +export const CenterFocusStrongRounded: SvgIconComponent; +export const CenterFocusStrongSharp: SvgIconComponent; +export const CenterFocusStrongTwoTone: SvgIconComponent; +export const CenterFocusWeak: SvgIconComponent; +export const CenterFocusWeakOutlined: SvgIconComponent; +export const CenterFocusWeakRounded: SvgIconComponent; +export const CenterFocusWeakSharp: SvgIconComponent; +export const CenterFocusWeakTwoTone: SvgIconComponent; +export const Chair: SvgIconComponent; +export const ChairAlt: SvgIconComponent; +export const ChairAltOutlined: SvgIconComponent; +export const ChairAltRounded: SvgIconComponent; +export const ChairAltSharp: SvgIconComponent; +export const ChairAltTwoTone: SvgIconComponent; +export const ChairOutlined: SvgIconComponent; +export const ChairRounded: SvgIconComponent; +export const ChairSharp: SvgIconComponent; +export const ChairTwoTone: SvgIconComponent; +export const Chalet: SvgIconComponent; +export const ChaletOutlined: SvgIconComponent; +export const ChaletRounded: SvgIconComponent; +export const ChaletSharp: SvgIconComponent; +export const ChaletTwoTone: SvgIconComponent; +export const ChangeCircle: SvgIconComponent; +export const ChangeCircleOutlined: SvgIconComponent; +export const ChangeCircleRounded: SvgIconComponent; +export const ChangeCircleSharp: SvgIconComponent; +export const ChangeCircleTwoTone: SvgIconComponent; +export const ChangeHistory: SvgIconComponent; +export const ChangeHistoryOutlined: SvgIconComponent; +export const ChangeHistoryRounded: SvgIconComponent; +export const ChangeHistorySharp: SvgIconComponent; +export const ChangeHistoryTwoTone: SvgIconComponent; +export const ChargingStation: SvgIconComponent; +export const ChargingStationOutlined: SvgIconComponent; +export const ChargingStationRounded: SvgIconComponent; +export const ChargingStationSharp: SvgIconComponent; +export const ChargingStationTwoTone: SvgIconComponent; +export const Chat: SvgIconComponent; +export const ChatBubble: SvgIconComponent; +export const ChatBubbleOutline: SvgIconComponent; +export const ChatBubbleOutlineOutlined: SvgIconComponent; +export const ChatBubbleOutlineRounded: SvgIconComponent; +export const ChatBubbleOutlineSharp: SvgIconComponent; +export const ChatBubbleOutlineTwoTone: SvgIconComponent; +export const ChatBubbleOutlined: SvgIconComponent; +export const ChatBubbleRounded: SvgIconComponent; +export const ChatBubbleSharp: SvgIconComponent; +export const ChatBubbleTwoTone: SvgIconComponent; +export const ChatOutlined: SvgIconComponent; +export const ChatRounded: SvgIconComponent; +export const ChatSharp: SvgIconComponent; +export const ChatTwoTone: SvgIconComponent; +export const Check: SvgIconComponent; +export const CheckBox: SvgIconComponent; +export const CheckBoxOutlineBlank: SvgIconComponent; +export const CheckBoxOutlineBlankOutlined: SvgIconComponent; +export const CheckBoxOutlineBlankRounded: SvgIconComponent; +export const CheckBoxOutlineBlankSharp: SvgIconComponent; +export const CheckBoxOutlineBlankTwoTone: SvgIconComponent; +export const CheckBoxOutlined: SvgIconComponent; +export const CheckBoxRounded: SvgIconComponent; +export const CheckBoxSharp: SvgIconComponent; +export const CheckBoxTwoTone: SvgIconComponent; +export const CheckCircle: SvgIconComponent; +export const CheckCircleOutline: SvgIconComponent; +export const CheckCircleOutlineOutlined: SvgIconComponent; +export const CheckCircleOutlineRounded: SvgIconComponent; +export const CheckCircleOutlineSharp: SvgIconComponent; +export const CheckCircleOutlineTwoTone: SvgIconComponent; +export const CheckCircleOutlined: SvgIconComponent; +export const CheckCircleRounded: SvgIconComponent; +export const CheckCircleSharp: SvgIconComponent; +export const CheckCircleTwoTone: SvgIconComponent; +export const CheckOutlined: SvgIconComponent; +export const CheckRounded: SvgIconComponent; +export const CheckSharp: SvgIconComponent; +export const CheckTwoTone: SvgIconComponent; +export const Checklist: SvgIconComponent; +export const ChecklistOutlined: SvgIconComponent; +export const ChecklistRounded: SvgIconComponent; +export const ChecklistRtl: SvgIconComponent; +export const ChecklistRtlOutlined: SvgIconComponent; +export const ChecklistRtlRounded: SvgIconComponent; +export const ChecklistRtlSharp: SvgIconComponent; +export const ChecklistRtlTwoTone: SvgIconComponent; +export const ChecklistSharp: SvgIconComponent; +export const ChecklistTwoTone: SvgIconComponent; +export const Checkroom: SvgIconComponent; +export const CheckroomOutlined: SvgIconComponent; +export const CheckroomRounded: SvgIconComponent; +export const CheckroomSharp: SvgIconComponent; +export const CheckroomTwoTone: SvgIconComponent; +export const ChevronLeft: SvgIconComponent; +export const ChevronLeftOutlined: SvgIconComponent; +export const ChevronLeftRounded: SvgIconComponent; +export const ChevronLeftSharp: SvgIconComponent; +export const ChevronLeftTwoTone: SvgIconComponent; +export const ChevronRight: SvgIconComponent; +export const ChevronRightOutlined: SvgIconComponent; +export const ChevronRightRounded: SvgIconComponent; +export const ChevronRightSharp: SvgIconComponent; +export const ChevronRightTwoTone: SvgIconComponent; +export const ChildCare: SvgIconComponent; +export const ChildCareOutlined: SvgIconComponent; +export const ChildCareRounded: SvgIconComponent; +export const ChildCareSharp: SvgIconComponent; +export const ChildCareTwoTone: SvgIconComponent; +export const ChildFriendly: SvgIconComponent; +export const ChildFriendlyOutlined: SvgIconComponent; +export const ChildFriendlyRounded: SvgIconComponent; +export const ChildFriendlySharp: SvgIconComponent; +export const ChildFriendlyTwoTone: SvgIconComponent; +export const ChromeReaderMode: SvgIconComponent; +export const ChromeReaderModeOutlined: SvgIconComponent; +export const ChromeReaderModeRounded: SvgIconComponent; +export const ChromeReaderModeSharp: SvgIconComponent; +export const ChromeReaderModeTwoTone: SvgIconComponent; +export const Church: SvgIconComponent; +export const ChurchOutlined: SvgIconComponent; +export const ChurchRounded: SvgIconComponent; +export const ChurchSharp: SvgIconComponent; +export const ChurchTwoTone: SvgIconComponent; +export const Circle: SvgIconComponent; +export const CircleNotifications: SvgIconComponent; +export const CircleNotificationsOutlined: SvgIconComponent; +export const CircleNotificationsRounded: SvgIconComponent; +export const CircleNotificationsSharp: SvgIconComponent; +export const CircleNotificationsTwoTone: SvgIconComponent; +export const CircleOutlined: SvgIconComponent; +export const CircleRounded: SvgIconComponent; +export const CircleSharp: SvgIconComponent; +export const CircleTwoTone: SvgIconComponent; +export const Class: SvgIconComponent; +export const ClassOutlined: SvgIconComponent; +export const ClassRounded: SvgIconComponent; +export const ClassSharp: SvgIconComponent; +export const ClassTwoTone: SvgIconComponent; +export const CleanHands: SvgIconComponent; +export const CleanHandsOutlined: SvgIconComponent; +export const CleanHandsRounded: SvgIconComponent; +export const CleanHandsSharp: SvgIconComponent; +export const CleanHandsTwoTone: SvgIconComponent; +export const CleaningServices: SvgIconComponent; +export const CleaningServicesOutlined: SvgIconComponent; +export const CleaningServicesRounded: SvgIconComponent; +export const CleaningServicesSharp: SvgIconComponent; +export const CleaningServicesTwoTone: SvgIconComponent; +export const Clear: SvgIconComponent; +export const ClearAll: SvgIconComponent; +export const ClearAllOutlined: SvgIconComponent; +export const ClearAllRounded: SvgIconComponent; +export const ClearAllSharp: SvgIconComponent; +export const ClearAllTwoTone: SvgIconComponent; +export const ClearOutlined: SvgIconComponent; +export const ClearRounded: SvgIconComponent; +export const ClearSharp: SvgIconComponent; +export const ClearTwoTone: SvgIconComponent; +export const Close: SvgIconComponent; +export const CloseFullscreen: SvgIconComponent; +export const CloseFullscreenOutlined: SvgIconComponent; +export const CloseFullscreenRounded: SvgIconComponent; +export const CloseFullscreenSharp: SvgIconComponent; +export const CloseFullscreenTwoTone: SvgIconComponent; +export const CloseOutlined: SvgIconComponent; +export const CloseRounded: SvgIconComponent; +export const CloseSharp: SvgIconComponent; +export const CloseTwoTone: SvgIconComponent; +export const ClosedCaption: SvgIconComponent; +export const ClosedCaptionDisabled: SvgIconComponent; +export const ClosedCaptionDisabledOutlined: SvgIconComponent; +export const ClosedCaptionDisabledRounded: SvgIconComponent; +export const ClosedCaptionDisabledSharp: SvgIconComponent; +export const ClosedCaptionDisabledTwoTone: SvgIconComponent; +export const ClosedCaptionOff: SvgIconComponent; +export const ClosedCaptionOffOutlined: SvgIconComponent; +export const ClosedCaptionOffRounded: SvgIconComponent; +export const ClosedCaptionOffSharp: SvgIconComponent; +export const ClosedCaptionOffTwoTone: SvgIconComponent; +export const ClosedCaptionOutlined: SvgIconComponent; +export const ClosedCaptionRounded: SvgIconComponent; +export const ClosedCaptionSharp: SvgIconComponent; +export const ClosedCaptionTwoTone: SvgIconComponent; +export const Cloud: SvgIconComponent; +export const CloudCircle: SvgIconComponent; +export const CloudCircleOutlined: SvgIconComponent; +export const CloudCircleRounded: SvgIconComponent; +export const CloudCircleSharp: SvgIconComponent; +export const CloudCircleTwoTone: SvgIconComponent; +export const CloudDone: SvgIconComponent; +export const CloudDoneOutlined: SvgIconComponent; +export const CloudDoneRounded: SvgIconComponent; +export const CloudDoneSharp: SvgIconComponent; +export const CloudDoneTwoTone: SvgIconComponent; +export const CloudDownload: SvgIconComponent; +export const CloudDownloadOutlined: SvgIconComponent; +export const CloudDownloadRounded: SvgIconComponent; +export const CloudDownloadSharp: SvgIconComponent; +export const CloudDownloadTwoTone: SvgIconComponent; +export const CloudOff: SvgIconComponent; +export const CloudOffOutlined: SvgIconComponent; +export const CloudOffRounded: SvgIconComponent; +export const CloudOffSharp: SvgIconComponent; +export const CloudOffTwoTone: SvgIconComponent; +export const CloudOutlined: SvgIconComponent; +export const CloudQueue: SvgIconComponent; +export const CloudQueueOutlined: SvgIconComponent; +export const CloudQueueRounded: SvgIconComponent; +export const CloudQueueSharp: SvgIconComponent; +export const CloudQueueTwoTone: SvgIconComponent; +export const CloudRounded: SvgIconComponent; +export const CloudSharp: SvgIconComponent; +export const CloudSync: SvgIconComponent; +export const CloudSyncOutlined: SvgIconComponent; +export const CloudSyncRounded: SvgIconComponent; +export const CloudSyncSharp: SvgIconComponent; +export const CloudSyncTwoTone: SvgIconComponent; +export const CloudTwoTone: SvgIconComponent; +export const CloudUpload: SvgIconComponent; +export const CloudUploadOutlined: SvgIconComponent; +export const CloudUploadRounded: SvgIconComponent; +export const CloudUploadSharp: SvgIconComponent; +export const CloudUploadTwoTone: SvgIconComponent; +export const Co2: SvgIconComponent; +export const Co2Outlined: SvgIconComponent; +export const Co2Rounded: SvgIconComponent; +export const Co2Sharp: SvgIconComponent; +export const Co2TwoTone: SvgIconComponent; +export const CoPresent: SvgIconComponent; +export const CoPresentOutlined: SvgIconComponent; +export const CoPresentRounded: SvgIconComponent; +export const CoPresentSharp: SvgIconComponent; +export const CoPresentTwoTone: SvgIconComponent; +export const Code: SvgIconComponent; +export const CodeOff: SvgIconComponent; +export const CodeOffOutlined: SvgIconComponent; +export const CodeOffRounded: SvgIconComponent; +export const CodeOffSharp: SvgIconComponent; +export const CodeOffTwoTone: SvgIconComponent; +export const CodeOutlined: SvgIconComponent; +export const CodeRounded: SvgIconComponent; +export const CodeSharp: SvgIconComponent; +export const CodeTwoTone: SvgIconComponent; +export const Coffee: SvgIconComponent; +export const CoffeeMaker: SvgIconComponent; +export const CoffeeMakerOutlined: SvgIconComponent; +export const CoffeeMakerRounded: SvgIconComponent; +export const CoffeeMakerSharp: SvgIconComponent; +export const CoffeeMakerTwoTone: SvgIconComponent; +export const CoffeeOutlined: SvgIconComponent; +export const CoffeeRounded: SvgIconComponent; +export const CoffeeSharp: SvgIconComponent; +export const CoffeeTwoTone: SvgIconComponent; +export const Collections: SvgIconComponent; +export const CollectionsBookmark: SvgIconComponent; +export const CollectionsBookmarkOutlined: SvgIconComponent; +export const CollectionsBookmarkRounded: SvgIconComponent; +export const CollectionsBookmarkSharp: SvgIconComponent; +export const CollectionsBookmarkTwoTone: SvgIconComponent; +export const CollectionsOutlined: SvgIconComponent; +export const CollectionsRounded: SvgIconComponent; +export const CollectionsSharp: SvgIconComponent; +export const CollectionsTwoTone: SvgIconComponent; +export const ColorLens: SvgIconComponent; +export const ColorLensOutlined: SvgIconComponent; +export const ColorLensRounded: SvgIconComponent; +export const ColorLensSharp: SvgIconComponent; +export const ColorLensTwoTone: SvgIconComponent; +export const Colorize: SvgIconComponent; +export const ColorizeOutlined: SvgIconComponent; +export const ColorizeRounded: SvgIconComponent; +export const ColorizeSharp: SvgIconComponent; +export const ColorizeTwoTone: SvgIconComponent; +export const Comment: SvgIconComponent; +export const CommentBank: SvgIconComponent; +export const CommentBankOutlined: SvgIconComponent; +export const CommentBankRounded: SvgIconComponent; +export const CommentBankSharp: SvgIconComponent; +export const CommentBankTwoTone: SvgIconComponent; +export const CommentOutlined: SvgIconComponent; +export const CommentRounded: SvgIconComponent; +export const CommentSharp: SvgIconComponent; +export const CommentTwoTone: SvgIconComponent; +export const CommentsDisabled: SvgIconComponent; +export const CommentsDisabledOutlined: SvgIconComponent; +export const CommentsDisabledRounded: SvgIconComponent; +export const CommentsDisabledSharp: SvgIconComponent; +export const CommentsDisabledTwoTone: SvgIconComponent; +export const Commit: SvgIconComponent; +export const CommitOutlined: SvgIconComponent; +export const CommitRounded: SvgIconComponent; +export const CommitSharp: SvgIconComponent; +export const CommitTwoTone: SvgIconComponent; +export const Commute: SvgIconComponent; +export const CommuteOutlined: SvgIconComponent; +export const CommuteRounded: SvgIconComponent; +export const CommuteSharp: SvgIconComponent; +export const CommuteTwoTone: SvgIconComponent; +export const Compare: SvgIconComponent; +export const CompareArrows: SvgIconComponent; +export const CompareArrowsOutlined: SvgIconComponent; +export const CompareArrowsRounded: SvgIconComponent; +export const CompareArrowsSharp: SvgIconComponent; +export const CompareArrowsTwoTone: SvgIconComponent; +export const CompareOutlined: SvgIconComponent; +export const CompareRounded: SvgIconComponent; +export const CompareSharp: SvgIconComponent; +export const CompareTwoTone: SvgIconComponent; +export const CompassCalibration: SvgIconComponent; +export const CompassCalibrationOutlined: SvgIconComponent; +export const CompassCalibrationRounded: SvgIconComponent; +export const CompassCalibrationSharp: SvgIconComponent; +export const CompassCalibrationTwoTone: SvgIconComponent; +export const Compress: SvgIconComponent; +export const CompressOutlined: SvgIconComponent; +export const CompressRounded: SvgIconComponent; +export const CompressSharp: SvgIconComponent; +export const CompressTwoTone: SvgIconComponent; +export const Computer: SvgIconComponent; +export const ComputerOutlined: SvgIconComponent; +export const ComputerRounded: SvgIconComponent; +export const ComputerSharp: SvgIconComponent; +export const ComputerTwoTone: SvgIconComponent; +export const ConfirmationNumber: SvgIconComponent; +export const ConfirmationNumberOutlined: SvgIconComponent; +export const ConfirmationNumberRounded: SvgIconComponent; +export const ConfirmationNumberSharp: SvgIconComponent; +export const ConfirmationNumberTwoTone: SvgIconComponent; +export const ConnectWithoutContact: SvgIconComponent; +export const ConnectWithoutContactOutlined: SvgIconComponent; +export const ConnectWithoutContactRounded: SvgIconComponent; +export const ConnectWithoutContactSharp: SvgIconComponent; +export const ConnectWithoutContactTwoTone: SvgIconComponent; +export const ConnectedTv: SvgIconComponent; +export const ConnectedTvOutlined: SvgIconComponent; +export const ConnectedTvRounded: SvgIconComponent; +export const ConnectedTvSharp: SvgIconComponent; +export const ConnectedTvTwoTone: SvgIconComponent; +export const ConnectingAirports: SvgIconComponent; +export const ConnectingAirportsOutlined: SvgIconComponent; +export const ConnectingAirportsRounded: SvgIconComponent; +export const ConnectingAirportsSharp: SvgIconComponent; +export const ConnectingAirportsTwoTone: SvgIconComponent; +export const Construction: SvgIconComponent; +export const ConstructionOutlined: SvgIconComponent; +export const ConstructionRounded: SvgIconComponent; +export const ConstructionSharp: SvgIconComponent; +export const ConstructionTwoTone: SvgIconComponent; +export const ContactEmergency: SvgIconComponent; +export const ContactEmergencyOutlined: SvgIconComponent; +export const ContactEmergencyRounded: SvgIconComponent; +export const ContactEmergencySharp: SvgIconComponent; +export const ContactEmergencyTwoTone: SvgIconComponent; +export const ContactMail: SvgIconComponent; +export const ContactMailOutlined: SvgIconComponent; +export const ContactMailRounded: SvgIconComponent; +export const ContactMailSharp: SvgIconComponent; +export const ContactMailTwoTone: SvgIconComponent; +export const ContactPage: SvgIconComponent; +export const ContactPageOutlined: SvgIconComponent; +export const ContactPageRounded: SvgIconComponent; +export const ContactPageSharp: SvgIconComponent; +export const ContactPageTwoTone: SvgIconComponent; +export const ContactPhone: SvgIconComponent; +export const ContactPhoneOutlined: SvgIconComponent; +export const ContactPhoneRounded: SvgIconComponent; +export const ContactPhoneSharp: SvgIconComponent; +export const ContactPhoneTwoTone: SvgIconComponent; +export const ContactSupport: SvgIconComponent; +export const ContactSupportOutlined: SvgIconComponent; +export const ContactSupportRounded: SvgIconComponent; +export const ContactSupportSharp: SvgIconComponent; +export const ContactSupportTwoTone: SvgIconComponent; +export const Contactless: SvgIconComponent; +export const ContactlessOutlined: SvgIconComponent; +export const ContactlessRounded: SvgIconComponent; +export const ContactlessSharp: SvgIconComponent; +export const ContactlessTwoTone: SvgIconComponent; +export const Contacts: SvgIconComponent; +export const ContactsOutlined: SvgIconComponent; +export const ContactsRounded: SvgIconComponent; +export const ContactsSharp: SvgIconComponent; +export const ContactsTwoTone: SvgIconComponent; +export const ContentCopy: SvgIconComponent; +export const ContentCopyOutlined: SvgIconComponent; +export const ContentCopyRounded: SvgIconComponent; +export const ContentCopySharp: SvgIconComponent; +export const ContentCopyTwoTone: SvgIconComponent; +export const ContentCut: SvgIconComponent; +export const ContentCutOutlined: SvgIconComponent; +export const ContentCutRounded: SvgIconComponent; +export const ContentCutSharp: SvgIconComponent; +export const ContentCutTwoTone: SvgIconComponent; +export const ContentPaste: SvgIconComponent; +export const ContentPasteGo: SvgIconComponent; +export const ContentPasteGoOutlined: SvgIconComponent; +export const ContentPasteGoRounded: SvgIconComponent; +export const ContentPasteGoSharp: SvgIconComponent; +export const ContentPasteGoTwoTone: SvgIconComponent; +export const ContentPasteOff: SvgIconComponent; +export const ContentPasteOffOutlined: SvgIconComponent; +export const ContentPasteOffRounded: SvgIconComponent; +export const ContentPasteOffSharp: SvgIconComponent; +export const ContentPasteOffTwoTone: SvgIconComponent; +export const ContentPasteOutlined: SvgIconComponent; +export const ContentPasteRounded: SvgIconComponent; +export const ContentPasteSearch: SvgIconComponent; +export const ContentPasteSearchOutlined: SvgIconComponent; +export const ContentPasteSearchRounded: SvgIconComponent; +export const ContentPasteSearchSharp: SvgIconComponent; +export const ContentPasteSearchTwoTone: SvgIconComponent; +export const ContentPasteSharp: SvgIconComponent; +export const ContentPasteTwoTone: SvgIconComponent; +export const Contrast: SvgIconComponent; +export const ContrastOutlined: SvgIconComponent; +export const ContrastRounded: SvgIconComponent; +export const ContrastSharp: SvgIconComponent; +export const ContrastTwoTone: SvgIconComponent; +export const ControlCamera: SvgIconComponent; +export const ControlCameraOutlined: SvgIconComponent; +export const ControlCameraRounded: SvgIconComponent; +export const ControlCameraSharp: SvgIconComponent; +export const ControlCameraTwoTone: SvgIconComponent; +export const ControlPoint: SvgIconComponent; +export const ControlPointDuplicate: SvgIconComponent; +export const ControlPointDuplicateOutlined: SvgIconComponent; +export const ControlPointDuplicateRounded: SvgIconComponent; +export const ControlPointDuplicateSharp: SvgIconComponent; +export const ControlPointDuplicateTwoTone: SvgIconComponent; +export const ControlPointOutlined: SvgIconComponent; +export const ControlPointRounded: SvgIconComponent; +export const ControlPointSharp: SvgIconComponent; +export const ControlPointTwoTone: SvgIconComponent; +export const Cookie: SvgIconComponent; +export const CookieOutlined: SvgIconComponent; +export const CookieRounded: SvgIconComponent; +export const CookieSharp: SvgIconComponent; +export const CookieTwoTone: SvgIconComponent; +export const CopyAll: SvgIconComponent; +export const CopyAllOutlined: SvgIconComponent; +export const CopyAllRounded: SvgIconComponent; +export const CopyAllSharp: SvgIconComponent; +export const CopyAllTwoTone: SvgIconComponent; +export const Copyright: SvgIconComponent; +export const CopyrightOutlined: SvgIconComponent; +export const CopyrightRounded: SvgIconComponent; +export const CopyrightSharp: SvgIconComponent; +export const CopyrightTwoTone: SvgIconComponent; +export const Coronavirus: SvgIconComponent; +export const CoronavirusOutlined: SvgIconComponent; +export const CoronavirusRounded: SvgIconComponent; +export const CoronavirusSharp: SvgIconComponent; +export const CoronavirusTwoTone: SvgIconComponent; +export const CorporateFare: SvgIconComponent; +export const CorporateFareOutlined: SvgIconComponent; +export const CorporateFareRounded: SvgIconComponent; +export const CorporateFareSharp: SvgIconComponent; +export const CorporateFareTwoTone: SvgIconComponent; +export const Cottage: SvgIconComponent; +export const CottageOutlined: SvgIconComponent; +export const CottageRounded: SvgIconComponent; +export const CottageSharp: SvgIconComponent; +export const CottageTwoTone: SvgIconComponent; +export const Countertops: SvgIconComponent; +export const CountertopsOutlined: SvgIconComponent; +export const CountertopsRounded: SvgIconComponent; +export const CountertopsSharp: SvgIconComponent; +export const CountertopsTwoTone: SvgIconComponent; +export const Create: SvgIconComponent; +export const CreateNewFolder: SvgIconComponent; +export const CreateNewFolderOutlined: SvgIconComponent; +export const CreateNewFolderRounded: SvgIconComponent; +export const CreateNewFolderSharp: SvgIconComponent; +export const CreateNewFolderTwoTone: SvgIconComponent; +export const CreateOutlined: SvgIconComponent; +export const CreateRounded: SvgIconComponent; +export const CreateSharp: SvgIconComponent; +export const CreateTwoTone: SvgIconComponent; +export const CreditCard: SvgIconComponent; +export const CreditCardOff: SvgIconComponent; +export const CreditCardOffOutlined: SvgIconComponent; +export const CreditCardOffRounded: SvgIconComponent; +export const CreditCardOffSharp: SvgIconComponent; +export const CreditCardOffTwoTone: SvgIconComponent; +export const CreditCardOutlined: SvgIconComponent; +export const CreditCardRounded: SvgIconComponent; +export const CreditCardSharp: SvgIconComponent; +export const CreditCardTwoTone: SvgIconComponent; +export const CreditScore: SvgIconComponent; +export const CreditScoreOutlined: SvgIconComponent; +export const CreditScoreRounded: SvgIconComponent; +export const CreditScoreSharp: SvgIconComponent; +export const CreditScoreTwoTone: SvgIconComponent; +export const Crib: SvgIconComponent; +export const CribOutlined: SvgIconComponent; +export const CribRounded: SvgIconComponent; +export const CribSharp: SvgIconComponent; +export const CribTwoTone: SvgIconComponent; +export const CrisisAlert: SvgIconComponent; +export const CrisisAlertOutlined: SvgIconComponent; +export const CrisisAlertRounded: SvgIconComponent; +export const CrisisAlertSharp: SvgIconComponent; +export const CrisisAlertTwoTone: SvgIconComponent; +export const Crop: SvgIconComponent; +export const Crop169: SvgIconComponent; +export const Crop169Outlined: SvgIconComponent; +export const Crop169Rounded: SvgIconComponent; +export const Crop169Sharp: SvgIconComponent; +export const Crop169TwoTone: SvgIconComponent; +export const Crop32: SvgIconComponent; +export const Crop32Outlined: SvgIconComponent; +export const Crop32Rounded: SvgIconComponent; +export const Crop32Sharp: SvgIconComponent; +export const Crop32TwoTone: SvgIconComponent; +export const Crop54: SvgIconComponent; +export const Crop54Outlined: SvgIconComponent; +export const Crop54Rounded: SvgIconComponent; +export const Crop54Sharp: SvgIconComponent; +export const Crop54TwoTone: SvgIconComponent; +export const Crop75: SvgIconComponent; +export const Crop75Outlined: SvgIconComponent; +export const Crop75Rounded: SvgIconComponent; +export const Crop75Sharp: SvgIconComponent; +export const Crop75TwoTone: SvgIconComponent; +export const CropDin: SvgIconComponent; +export const CropDinOutlined: SvgIconComponent; +export const CropDinRounded: SvgIconComponent; +export const CropDinSharp: SvgIconComponent; +export const CropDinTwoTone: SvgIconComponent; +export const CropFree: SvgIconComponent; +export const CropFreeOutlined: SvgIconComponent; +export const CropFreeRounded: SvgIconComponent; +export const CropFreeSharp: SvgIconComponent; +export const CropFreeTwoTone: SvgIconComponent; +export const CropLandscape: SvgIconComponent; +export const CropLandscapeOutlined: SvgIconComponent; +export const CropLandscapeRounded: SvgIconComponent; +export const CropLandscapeSharp: SvgIconComponent; +export const CropLandscapeTwoTone: SvgIconComponent; +export const CropOriginal: SvgIconComponent; +export const CropOriginalOutlined: SvgIconComponent; +export const CropOriginalRounded: SvgIconComponent; +export const CropOriginalSharp: SvgIconComponent; +export const CropOriginalTwoTone: SvgIconComponent; +export const CropOutlined: SvgIconComponent; +export const CropPortrait: SvgIconComponent; +export const CropPortraitOutlined: SvgIconComponent; +export const CropPortraitRounded: SvgIconComponent; +export const CropPortraitSharp: SvgIconComponent; +export const CropPortraitTwoTone: SvgIconComponent; +export const CropRotate: SvgIconComponent; +export const CropRotateOutlined: SvgIconComponent; +export const CropRotateRounded: SvgIconComponent; +export const CropRotateSharp: SvgIconComponent; +export const CropRotateTwoTone: SvgIconComponent; +export const CropRounded: SvgIconComponent; +export const CropSharp: SvgIconComponent; +export const CropSquare: SvgIconComponent; +export const CropSquareOutlined: SvgIconComponent; +export const CropSquareRounded: SvgIconComponent; +export const CropSquareSharp: SvgIconComponent; +export const CropSquareTwoTone: SvgIconComponent; +export const CropTwoTone: SvgIconComponent; +export const Css: SvgIconComponent; +export const CssOutlined: SvgIconComponent; +export const CssRounded: SvgIconComponent; +export const CssSharp: SvgIconComponent; +export const CssTwoTone: SvgIconComponent; +export const CurrencyBitcoin: SvgIconComponent; +export const CurrencyBitcoinOutlined: SvgIconComponent; +export const CurrencyBitcoinRounded: SvgIconComponent; +export const CurrencyBitcoinSharp: SvgIconComponent; +export const CurrencyBitcoinTwoTone: SvgIconComponent; +export const CurrencyExchange: SvgIconComponent; +export const CurrencyExchangeOutlined: SvgIconComponent; +export const CurrencyExchangeRounded: SvgIconComponent; +export const CurrencyExchangeSharp: SvgIconComponent; +export const CurrencyExchangeTwoTone: SvgIconComponent; +export const CurrencyFranc: SvgIconComponent; +export const CurrencyFrancOutlined: SvgIconComponent; +export const CurrencyFrancRounded: SvgIconComponent; +export const CurrencyFrancSharp: SvgIconComponent; +export const CurrencyFrancTwoTone: SvgIconComponent; +export const CurrencyLira: SvgIconComponent; +export const CurrencyLiraOutlined: SvgIconComponent; +export const CurrencyLiraRounded: SvgIconComponent; +export const CurrencyLiraSharp: SvgIconComponent; +export const CurrencyLiraTwoTone: SvgIconComponent; +export const CurrencyPound: SvgIconComponent; +export const CurrencyPoundOutlined: SvgIconComponent; +export const CurrencyPoundRounded: SvgIconComponent; +export const CurrencyPoundSharp: SvgIconComponent; +export const CurrencyPoundTwoTone: SvgIconComponent; +export const CurrencyRuble: SvgIconComponent; +export const CurrencyRubleOutlined: SvgIconComponent; +export const CurrencyRubleRounded: SvgIconComponent; +export const CurrencyRubleSharp: SvgIconComponent; +export const CurrencyRubleTwoTone: SvgIconComponent; +export const CurrencyRupee: SvgIconComponent; +export const CurrencyRupeeOutlined: SvgIconComponent; +export const CurrencyRupeeRounded: SvgIconComponent; +export const CurrencyRupeeSharp: SvgIconComponent; +export const CurrencyRupeeTwoTone: SvgIconComponent; +export const CurrencyYen: SvgIconComponent; +export const CurrencyYenOutlined: SvgIconComponent; +export const CurrencyYenRounded: SvgIconComponent; +export const CurrencyYenSharp: SvgIconComponent; +export const CurrencyYenTwoTone: SvgIconComponent; +export const CurrencyYuan: SvgIconComponent; +export const CurrencyYuanOutlined: SvgIconComponent; +export const CurrencyYuanRounded: SvgIconComponent; +export const CurrencyYuanSharp: SvgIconComponent; +export const CurrencyYuanTwoTone: SvgIconComponent; +export const Curtains: SvgIconComponent; +export const CurtainsClosed: SvgIconComponent; +export const CurtainsClosedOutlined: SvgIconComponent; +export const CurtainsClosedRounded: SvgIconComponent; +export const CurtainsClosedSharp: SvgIconComponent; +export const CurtainsClosedTwoTone: SvgIconComponent; +export const CurtainsOutlined: SvgIconComponent; +export const CurtainsRounded: SvgIconComponent; +export const CurtainsSharp: SvgIconComponent; +export const CurtainsTwoTone: SvgIconComponent; +export const Cyclone: SvgIconComponent; +export const CycloneOutlined: SvgIconComponent; +export const CycloneRounded: SvgIconComponent; +export const CycloneSharp: SvgIconComponent; +export const CycloneTwoTone: SvgIconComponent; +export const Dangerous: SvgIconComponent; +export const DangerousOutlined: SvgIconComponent; +export const DangerousRounded: SvgIconComponent; +export const DangerousSharp: SvgIconComponent; +export const DangerousTwoTone: SvgIconComponent; +export const DarkMode: SvgIconComponent; +export const DarkModeOutlined: SvgIconComponent; +export const DarkModeRounded: SvgIconComponent; +export const DarkModeSharp: SvgIconComponent; +export const DarkModeTwoTone: SvgIconComponent; +export const Dashboard: SvgIconComponent; +export const DashboardCustomize: SvgIconComponent; +export const DashboardCustomizeOutlined: SvgIconComponent; +export const DashboardCustomizeRounded: SvgIconComponent; +export const DashboardCustomizeSharp: SvgIconComponent; +export const DashboardCustomizeTwoTone: SvgIconComponent; +export const DashboardOutlined: SvgIconComponent; +export const DashboardRounded: SvgIconComponent; +export const DashboardSharp: SvgIconComponent; +export const DashboardTwoTone: SvgIconComponent; +export const DataArray: SvgIconComponent; +export const DataArrayOutlined: SvgIconComponent; +export const DataArrayRounded: SvgIconComponent; +export const DataArraySharp: SvgIconComponent; +export const DataArrayTwoTone: SvgIconComponent; +export const DataObject: SvgIconComponent; +export const DataObjectOutlined: SvgIconComponent; +export const DataObjectRounded: SvgIconComponent; +export const DataObjectSharp: SvgIconComponent; +export const DataObjectTwoTone: SvgIconComponent; +export const DataSaverOff: SvgIconComponent; +export const DataSaverOffOutlined: SvgIconComponent; +export const DataSaverOffRounded: SvgIconComponent; +export const DataSaverOffSharp: SvgIconComponent; +export const DataSaverOffTwoTone: SvgIconComponent; +export const DataSaverOn: SvgIconComponent; +export const DataSaverOnOutlined: SvgIconComponent; +export const DataSaverOnRounded: SvgIconComponent; +export const DataSaverOnSharp: SvgIconComponent; +export const DataSaverOnTwoTone: SvgIconComponent; +export const DataThresholding: SvgIconComponent; +export const DataThresholdingOutlined: SvgIconComponent; +export const DataThresholdingRounded: SvgIconComponent; +export const DataThresholdingSharp: SvgIconComponent; +export const DataThresholdingTwoTone: SvgIconComponent; +export const DataUsage: SvgIconComponent; +export const DataUsageOutlined: SvgIconComponent; +export const DataUsageRounded: SvgIconComponent; +export const DataUsageSharp: SvgIconComponent; +export const DataUsageTwoTone: SvgIconComponent; +export const Dataset: SvgIconComponent; +export const DatasetLinked: SvgIconComponent; +export const DatasetLinkedOutlined: SvgIconComponent; +export const DatasetLinkedRounded: SvgIconComponent; +export const DatasetLinkedSharp: SvgIconComponent; +export const DatasetLinkedTwoTone: SvgIconComponent; +export const DatasetOutlined: SvgIconComponent; +export const DatasetRounded: SvgIconComponent; +export const DatasetSharp: SvgIconComponent; +export const DatasetTwoTone: SvgIconComponent; +export const DateRange: SvgIconComponent; +export const DateRangeOutlined: SvgIconComponent; +export const DateRangeRounded: SvgIconComponent; +export const DateRangeSharp: SvgIconComponent; +export const DateRangeTwoTone: SvgIconComponent; +export const Deblur: SvgIconComponent; +export const DeblurOutlined: SvgIconComponent; +export const DeblurRounded: SvgIconComponent; +export const DeblurSharp: SvgIconComponent; +export const DeblurTwoTone: SvgIconComponent; +export const Deck: SvgIconComponent; +export const DeckOutlined: SvgIconComponent; +export const DeckRounded: SvgIconComponent; +export const DeckSharp: SvgIconComponent; +export const DeckTwoTone: SvgIconComponent; +export const Dehaze: SvgIconComponent; +export const DehazeOutlined: SvgIconComponent; +export const DehazeRounded: SvgIconComponent; +export const DehazeSharp: SvgIconComponent; +export const DehazeTwoTone: SvgIconComponent; +export const Delete: SvgIconComponent; +export const DeleteForever: SvgIconComponent; +export const DeleteForeverOutlined: SvgIconComponent; +export const DeleteForeverRounded: SvgIconComponent; +export const DeleteForeverSharp: SvgIconComponent; +export const DeleteForeverTwoTone: SvgIconComponent; +export const DeleteOutline: SvgIconComponent; +export const DeleteOutlineOutlined: SvgIconComponent; +export const DeleteOutlineRounded: SvgIconComponent; +export const DeleteOutlineSharp: SvgIconComponent; +export const DeleteOutlineTwoTone: SvgIconComponent; +export const DeleteOutlined: SvgIconComponent; +export const DeleteRounded: SvgIconComponent; +export const DeleteSharp: SvgIconComponent; +export const DeleteSweep: SvgIconComponent; +export const DeleteSweepOutlined: SvgIconComponent; +export const DeleteSweepRounded: SvgIconComponent; +export const DeleteSweepSharp: SvgIconComponent; +export const DeleteSweepTwoTone: SvgIconComponent; +export const DeleteTwoTone: SvgIconComponent; +export const DeliveryDining: SvgIconComponent; +export const DeliveryDiningOutlined: SvgIconComponent; +export const DeliveryDiningRounded: SvgIconComponent; +export const DeliveryDiningSharp: SvgIconComponent; +export const DeliveryDiningTwoTone: SvgIconComponent; +export const DensityLarge: SvgIconComponent; +export const DensityLargeOutlined: SvgIconComponent; +export const DensityLargeRounded: SvgIconComponent; +export const DensityLargeSharp: SvgIconComponent; +export const DensityLargeTwoTone: SvgIconComponent; +export const DensityMedium: SvgIconComponent; +export const DensityMediumOutlined: SvgIconComponent; +export const DensityMediumRounded: SvgIconComponent; +export const DensityMediumSharp: SvgIconComponent; +export const DensityMediumTwoTone: SvgIconComponent; +export const DensitySmall: SvgIconComponent; +export const DensitySmallOutlined: SvgIconComponent; +export const DensitySmallRounded: SvgIconComponent; +export const DensitySmallSharp: SvgIconComponent; +export const DensitySmallTwoTone: SvgIconComponent; +export const DepartureBoard: SvgIconComponent; +export const DepartureBoardOutlined: SvgIconComponent; +export const DepartureBoardRounded: SvgIconComponent; +export const DepartureBoardSharp: SvgIconComponent; +export const DepartureBoardTwoTone: SvgIconComponent; +export const Description: SvgIconComponent; +export const DescriptionOutlined: SvgIconComponent; +export const DescriptionRounded: SvgIconComponent; +export const DescriptionSharp: SvgIconComponent; +export const DescriptionTwoTone: SvgIconComponent; +export const Deselect: SvgIconComponent; +export const DeselectOutlined: SvgIconComponent; +export const DeselectRounded: SvgIconComponent; +export const DeselectSharp: SvgIconComponent; +export const DeselectTwoTone: SvgIconComponent; +export const DesignServices: SvgIconComponent; +export const DesignServicesOutlined: SvgIconComponent; +export const DesignServicesRounded: SvgIconComponent; +export const DesignServicesSharp: SvgIconComponent; +export const DesignServicesTwoTone: SvgIconComponent; +export const Desk: SvgIconComponent; +export const DeskOutlined: SvgIconComponent; +export const DeskRounded: SvgIconComponent; +export const DeskSharp: SvgIconComponent; +export const DeskTwoTone: SvgIconComponent; +export const DesktopAccessDisabled: SvgIconComponent; +export const DesktopAccessDisabledOutlined: SvgIconComponent; +export const DesktopAccessDisabledRounded: SvgIconComponent; +export const DesktopAccessDisabledSharp: SvgIconComponent; +export const DesktopAccessDisabledTwoTone: SvgIconComponent; +export const DesktopMac: SvgIconComponent; +export const DesktopMacOutlined: SvgIconComponent; +export const DesktopMacRounded: SvgIconComponent; +export const DesktopMacSharp: SvgIconComponent; +export const DesktopMacTwoTone: SvgIconComponent; +export const DesktopWindows: SvgIconComponent; +export const DesktopWindowsOutlined: SvgIconComponent; +export const DesktopWindowsRounded: SvgIconComponent; +export const DesktopWindowsSharp: SvgIconComponent; +export const DesktopWindowsTwoTone: SvgIconComponent; +export const Details: SvgIconComponent; +export const DetailsOutlined: SvgIconComponent; +export const DetailsRounded: SvgIconComponent; +export const DetailsSharp: SvgIconComponent; +export const DetailsTwoTone: SvgIconComponent; +export const DeveloperBoard: SvgIconComponent; +export const DeveloperBoardOff: SvgIconComponent; +export const DeveloperBoardOffOutlined: SvgIconComponent; +export const DeveloperBoardOffRounded: SvgIconComponent; +export const DeveloperBoardOffSharp: SvgIconComponent; +export const DeveloperBoardOffTwoTone: SvgIconComponent; +export const DeveloperBoardOutlined: SvgIconComponent; +export const DeveloperBoardRounded: SvgIconComponent; +export const DeveloperBoardSharp: SvgIconComponent; +export const DeveloperBoardTwoTone: SvgIconComponent; +export const DeveloperMode: SvgIconComponent; +export const DeveloperModeOutlined: SvgIconComponent; +export const DeveloperModeRounded: SvgIconComponent; +export const DeveloperModeSharp: SvgIconComponent; +export const DeveloperModeTwoTone: SvgIconComponent; +export const DeviceHub: SvgIconComponent; +export const DeviceHubOutlined: SvgIconComponent; +export const DeviceHubRounded: SvgIconComponent; +export const DeviceHubSharp: SvgIconComponent; +export const DeviceHubTwoTone: SvgIconComponent; +export const DeviceThermostat: SvgIconComponent; +export const DeviceThermostatOutlined: SvgIconComponent; +export const DeviceThermostatRounded: SvgIconComponent; +export const DeviceThermostatSharp: SvgIconComponent; +export const DeviceThermostatTwoTone: SvgIconComponent; +export const DeviceUnknown: SvgIconComponent; +export const DeviceUnknownOutlined: SvgIconComponent; +export const DeviceUnknownRounded: SvgIconComponent; +export const DeviceUnknownSharp: SvgIconComponent; +export const DeviceUnknownTwoTone: SvgIconComponent; +export const Devices: SvgIconComponent; +export const DevicesFold: SvgIconComponent; +export const DevicesFoldOutlined: SvgIconComponent; +export const DevicesFoldRounded: SvgIconComponent; +export const DevicesFoldSharp: SvgIconComponent; +export const DevicesFoldTwoTone: SvgIconComponent; +export const DevicesOther: SvgIconComponent; +export const DevicesOtherOutlined: SvgIconComponent; +export const DevicesOtherRounded: SvgIconComponent; +export const DevicesOtherSharp: SvgIconComponent; +export const DevicesOtherTwoTone: SvgIconComponent; +export const DevicesOutlined: SvgIconComponent; +export const DevicesRounded: SvgIconComponent; +export const DevicesSharp: SvgIconComponent; +export const DevicesTwoTone: SvgIconComponent; +export const DialerSip: SvgIconComponent; +export const DialerSipOutlined: SvgIconComponent; +export const DialerSipRounded: SvgIconComponent; +export const DialerSipSharp: SvgIconComponent; +export const DialerSipTwoTone: SvgIconComponent; +export const Dialpad: SvgIconComponent; +export const DialpadOutlined: SvgIconComponent; +export const DialpadRounded: SvgIconComponent; +export const DialpadSharp: SvgIconComponent; +export const DialpadTwoTone: SvgIconComponent; +export const Diamond: SvgIconComponent; +export const DiamondOutlined: SvgIconComponent; +export const DiamondRounded: SvgIconComponent; +export const DiamondSharp: SvgIconComponent; +export const DiamondTwoTone: SvgIconComponent; +export const Difference: SvgIconComponent; +export const DifferenceOutlined: SvgIconComponent; +export const DifferenceRounded: SvgIconComponent; +export const DifferenceSharp: SvgIconComponent; +export const DifferenceTwoTone: SvgIconComponent; +export const Dining: SvgIconComponent; +export const DiningOutlined: SvgIconComponent; +export const DiningRounded: SvgIconComponent; +export const DiningSharp: SvgIconComponent; +export const DiningTwoTone: SvgIconComponent; +export const DinnerDining: SvgIconComponent; +export const DinnerDiningOutlined: SvgIconComponent; +export const DinnerDiningRounded: SvgIconComponent; +export const DinnerDiningSharp: SvgIconComponent; +export const DinnerDiningTwoTone: SvgIconComponent; +export const Directions: SvgIconComponent; +export const DirectionsBike: SvgIconComponent; +export const DirectionsBikeOutlined: SvgIconComponent; +export const DirectionsBikeRounded: SvgIconComponent; +export const DirectionsBikeSharp: SvgIconComponent; +export const DirectionsBikeTwoTone: SvgIconComponent; +export const DirectionsBoat: SvgIconComponent; +export const DirectionsBoatFilled: SvgIconComponent; +export const DirectionsBoatFilledOutlined: SvgIconComponent; +export const DirectionsBoatFilledRounded: SvgIconComponent; +export const DirectionsBoatFilledSharp: SvgIconComponent; +export const DirectionsBoatFilledTwoTone: SvgIconComponent; +export const DirectionsBoatOutlined: SvgIconComponent; +export const DirectionsBoatRounded: SvgIconComponent; +export const DirectionsBoatSharp: SvgIconComponent; +export const DirectionsBoatTwoTone: SvgIconComponent; +export const DirectionsBus: SvgIconComponent; +export const DirectionsBusFilled: SvgIconComponent; +export const DirectionsBusFilledOutlined: SvgIconComponent; +export const DirectionsBusFilledRounded: SvgIconComponent; +export const DirectionsBusFilledSharp: SvgIconComponent; +export const DirectionsBusFilledTwoTone: SvgIconComponent; +export const DirectionsBusOutlined: SvgIconComponent; +export const DirectionsBusRounded: SvgIconComponent; +export const DirectionsBusSharp: SvgIconComponent; +export const DirectionsBusTwoTone: SvgIconComponent; +export const DirectionsCar: SvgIconComponent; +export const DirectionsCarFilled: SvgIconComponent; +export const DirectionsCarFilledOutlined: SvgIconComponent; +export const DirectionsCarFilledRounded: SvgIconComponent; +export const DirectionsCarFilledSharp: SvgIconComponent; +export const DirectionsCarFilledTwoTone: SvgIconComponent; +export const DirectionsCarOutlined: SvgIconComponent; +export const DirectionsCarRounded: SvgIconComponent; +export const DirectionsCarSharp: SvgIconComponent; +export const DirectionsCarTwoTone: SvgIconComponent; +export const DirectionsOff: SvgIconComponent; +export const DirectionsOffOutlined: SvgIconComponent; +export const DirectionsOffRounded: SvgIconComponent; +export const DirectionsOffSharp: SvgIconComponent; +export const DirectionsOffTwoTone: SvgIconComponent; +export const DirectionsOutlined: SvgIconComponent; +export const DirectionsRailway: SvgIconComponent; +export const DirectionsRailwayFilled: SvgIconComponent; +export const DirectionsRailwayFilledOutlined: SvgIconComponent; +export const DirectionsRailwayFilledRounded: SvgIconComponent; +export const DirectionsRailwayFilledSharp: SvgIconComponent; +export const DirectionsRailwayFilledTwoTone: SvgIconComponent; +export const DirectionsRailwayOutlined: SvgIconComponent; +export const DirectionsRailwayRounded: SvgIconComponent; +export const DirectionsRailwaySharp: SvgIconComponent; +export const DirectionsRailwayTwoTone: SvgIconComponent; +export const DirectionsRounded: SvgIconComponent; +export const DirectionsRun: SvgIconComponent; +export const DirectionsRunOutlined: SvgIconComponent; +export const DirectionsRunRounded: SvgIconComponent; +export const DirectionsRunSharp: SvgIconComponent; +export const DirectionsRunTwoTone: SvgIconComponent; +export const DirectionsSharp: SvgIconComponent; +export const DirectionsSubway: SvgIconComponent; +export const DirectionsSubwayFilled: SvgIconComponent; +export const DirectionsSubwayFilledOutlined: SvgIconComponent; +export const DirectionsSubwayFilledRounded: SvgIconComponent; +export const DirectionsSubwayFilledSharp: SvgIconComponent; +export const DirectionsSubwayFilledTwoTone: SvgIconComponent; +export const DirectionsSubwayOutlined: SvgIconComponent; +export const DirectionsSubwayRounded: SvgIconComponent; +export const DirectionsSubwaySharp: SvgIconComponent; +export const DirectionsSubwayTwoTone: SvgIconComponent; +export const DirectionsTransit: SvgIconComponent; +export const DirectionsTransitFilled: SvgIconComponent; +export const DirectionsTransitFilledOutlined: SvgIconComponent; +export const DirectionsTransitFilledRounded: SvgIconComponent; +export const DirectionsTransitFilledSharp: SvgIconComponent; +export const DirectionsTransitFilledTwoTone: SvgIconComponent; +export const DirectionsTransitOutlined: SvgIconComponent; +export const DirectionsTransitRounded: SvgIconComponent; +export const DirectionsTransitSharp: SvgIconComponent; +export const DirectionsTransitTwoTone: SvgIconComponent; +export const DirectionsTwoTone: SvgIconComponent; +export const DirectionsWalk: SvgIconComponent; +export const DirectionsWalkOutlined: SvgIconComponent; +export const DirectionsWalkRounded: SvgIconComponent; +export const DirectionsWalkSharp: SvgIconComponent; +export const DirectionsWalkTwoTone: SvgIconComponent; +export const DirtyLens: SvgIconComponent; +export const DirtyLensOutlined: SvgIconComponent; +export const DirtyLensRounded: SvgIconComponent; +export const DirtyLensSharp: SvgIconComponent; +export const DirtyLensTwoTone: SvgIconComponent; +export const DisabledByDefault: SvgIconComponent; +export const DisabledByDefaultOutlined: SvgIconComponent; +export const DisabledByDefaultRounded: SvgIconComponent; +export const DisabledByDefaultSharp: SvgIconComponent; +export const DisabledByDefaultTwoTone: SvgIconComponent; +export const DiscFull: SvgIconComponent; +export const DiscFullOutlined: SvgIconComponent; +export const DiscFullRounded: SvgIconComponent; +export const DiscFullSharp: SvgIconComponent; +export const DiscFullTwoTone: SvgIconComponent; +export const Discount: SvgIconComponent; +export const DiscountOutlined: SvgIconComponent; +export const DiscountRounded: SvgIconComponent; +export const DiscountSharp: SvgIconComponent; +export const DiscountTwoTone: SvgIconComponent; +export const DisplaySettings: SvgIconComponent; +export const DisplaySettingsOutlined: SvgIconComponent; +export const DisplaySettingsRounded: SvgIconComponent; +export const DisplaySettingsSharp: SvgIconComponent; +export const DisplaySettingsTwoTone: SvgIconComponent; +export const Diversity1: SvgIconComponent; +export const Diversity1Outlined: SvgIconComponent; +export const Diversity1Rounded: SvgIconComponent; +export const Diversity1Sharp: SvgIconComponent; +export const Diversity1TwoTone: SvgIconComponent; +export const Diversity2: SvgIconComponent; +export const Diversity2Outlined: SvgIconComponent; +export const Diversity2Rounded: SvgIconComponent; +export const Diversity2Sharp: SvgIconComponent; +export const Diversity2TwoTone: SvgIconComponent; +export const Diversity3: SvgIconComponent; +export const Diversity3Outlined: SvgIconComponent; +export const Diversity3Rounded: SvgIconComponent; +export const Diversity3Sharp: SvgIconComponent; +export const Diversity3TwoTone: SvgIconComponent; +export const Dns: SvgIconComponent; +export const DnsOutlined: SvgIconComponent; +export const DnsRounded: SvgIconComponent; +export const DnsSharp: SvgIconComponent; +export const DnsTwoTone: SvgIconComponent; +export const DoDisturb: SvgIconComponent; +export const DoDisturbAlt: SvgIconComponent; +export const DoDisturbAltOutlined: SvgIconComponent; +export const DoDisturbAltRounded: SvgIconComponent; +export const DoDisturbAltSharp: SvgIconComponent; +export const DoDisturbAltTwoTone: SvgIconComponent; +export const DoDisturbOff: SvgIconComponent; +export const DoDisturbOffOutlined: SvgIconComponent; +export const DoDisturbOffRounded: SvgIconComponent; +export const DoDisturbOffSharp: SvgIconComponent; +export const DoDisturbOffTwoTone: SvgIconComponent; +export const DoDisturbOn: SvgIconComponent; +export const DoDisturbOnOutlined: SvgIconComponent; +export const DoDisturbOnRounded: SvgIconComponent; +export const DoDisturbOnSharp: SvgIconComponent; +export const DoDisturbOnTwoTone: SvgIconComponent; +export const DoDisturbOutlined: SvgIconComponent; +export const DoDisturbRounded: SvgIconComponent; +export const DoDisturbSharp: SvgIconComponent; +export const DoDisturbTwoTone: SvgIconComponent; +export const DoNotDisturb: SvgIconComponent; +export const DoNotDisturbAlt: SvgIconComponent; +export const DoNotDisturbAltOutlined: SvgIconComponent; +export const DoNotDisturbAltRounded: SvgIconComponent; +export const DoNotDisturbAltSharp: SvgIconComponent; +export const DoNotDisturbAltTwoTone: SvgIconComponent; +export const DoNotDisturbOff: SvgIconComponent; +export const DoNotDisturbOffOutlined: SvgIconComponent; +export const DoNotDisturbOffRounded: SvgIconComponent; +export const DoNotDisturbOffSharp: SvgIconComponent; +export const DoNotDisturbOffTwoTone: SvgIconComponent; +export const DoNotDisturbOn: SvgIconComponent; +export const DoNotDisturbOnOutlined: SvgIconComponent; +export const DoNotDisturbOnRounded: SvgIconComponent; +export const DoNotDisturbOnSharp: SvgIconComponent; +export const DoNotDisturbOnTotalSilence: SvgIconComponent; +export const DoNotDisturbOnTotalSilenceOutlined: SvgIconComponent; +export const DoNotDisturbOnTotalSilenceRounded: SvgIconComponent; +export const DoNotDisturbOnTotalSilenceSharp: SvgIconComponent; +export const DoNotDisturbOnTotalSilenceTwoTone: SvgIconComponent; +export const DoNotDisturbOnTwoTone: SvgIconComponent; +export const DoNotDisturbOutlined: SvgIconComponent; +export const DoNotDisturbRounded: SvgIconComponent; +export const DoNotDisturbSharp: SvgIconComponent; +export const DoNotDisturbTwoTone: SvgIconComponent; +export const DoNotStep: SvgIconComponent; +export const DoNotStepOutlined: SvgIconComponent; +export const DoNotStepRounded: SvgIconComponent; +export const DoNotStepSharp: SvgIconComponent; +export const DoNotStepTwoTone: SvgIconComponent; +export const DoNotTouch: SvgIconComponent; +export const DoNotTouchOutlined: SvgIconComponent; +export const DoNotTouchRounded: SvgIconComponent; +export const DoNotTouchSharp: SvgIconComponent; +export const DoNotTouchTwoTone: SvgIconComponent; +export const Dock: SvgIconComponent; +export const DockOutlined: SvgIconComponent; +export const DockRounded: SvgIconComponent; +export const DockSharp: SvgIconComponent; +export const DockTwoTone: SvgIconComponent; +export const DocumentScanner: SvgIconComponent; +export const DocumentScannerOutlined: SvgIconComponent; +export const DocumentScannerRounded: SvgIconComponent; +export const DocumentScannerSharp: SvgIconComponent; +export const DocumentScannerTwoTone: SvgIconComponent; +export const Domain: SvgIconComponent; +export const DomainAdd: SvgIconComponent; +export const DomainAddOutlined: SvgIconComponent; +export const DomainAddRounded: SvgIconComponent; +export const DomainAddSharp: SvgIconComponent; +export const DomainAddTwoTone: SvgIconComponent; +export const DomainDisabled: SvgIconComponent; +export const DomainDisabledOutlined: SvgIconComponent; +export const DomainDisabledRounded: SvgIconComponent; +export const DomainDisabledSharp: SvgIconComponent; +export const DomainDisabledTwoTone: SvgIconComponent; +export const DomainOutlined: SvgIconComponent; +export const DomainRounded: SvgIconComponent; +export const DomainSharp: SvgIconComponent; +export const DomainTwoTone: SvgIconComponent; +export const DomainVerification: SvgIconComponent; +export const DomainVerificationOutlined: SvgIconComponent; +export const DomainVerificationRounded: SvgIconComponent; +export const DomainVerificationSharp: SvgIconComponent; +export const DomainVerificationTwoTone: SvgIconComponent; +export const Done: SvgIconComponent; +export const DoneAll: SvgIconComponent; +export const DoneAllOutlined: SvgIconComponent; +export const DoneAllRounded: SvgIconComponent; +export const DoneAllSharp: SvgIconComponent; +export const DoneAllTwoTone: SvgIconComponent; +export const DoneOutline: SvgIconComponent; +export const DoneOutlineOutlined: SvgIconComponent; +export const DoneOutlineRounded: SvgIconComponent; +export const DoneOutlineSharp: SvgIconComponent; +export const DoneOutlineTwoTone: SvgIconComponent; +export const DoneOutlined: SvgIconComponent; +export const DoneRounded: SvgIconComponent; +export const DoneSharp: SvgIconComponent; +export const DoneTwoTone: SvgIconComponent; +export const DonutLarge: SvgIconComponent; +export const DonutLargeOutlined: SvgIconComponent; +export const DonutLargeRounded: SvgIconComponent; +export const DonutLargeSharp: SvgIconComponent; +export const DonutLargeTwoTone: SvgIconComponent; +export const DonutSmall: SvgIconComponent; +export const DonutSmallOutlined: SvgIconComponent; +export const DonutSmallRounded: SvgIconComponent; +export const DonutSmallSharp: SvgIconComponent; +export const DonutSmallTwoTone: SvgIconComponent; +export const DoorBack: SvgIconComponent; +export const DoorBackOutlined: SvgIconComponent; +export const DoorBackRounded: SvgIconComponent; +export const DoorBackSharp: SvgIconComponent; +export const DoorBackTwoTone: SvgIconComponent; +export const DoorFront: SvgIconComponent; +export const DoorFrontOutlined: SvgIconComponent; +export const DoorFrontRounded: SvgIconComponent; +export const DoorFrontSharp: SvgIconComponent; +export const DoorFrontTwoTone: SvgIconComponent; +export const DoorSliding: SvgIconComponent; +export const DoorSlidingOutlined: SvgIconComponent; +export const DoorSlidingRounded: SvgIconComponent; +export const DoorSlidingSharp: SvgIconComponent; +export const DoorSlidingTwoTone: SvgIconComponent; +export const Doorbell: SvgIconComponent; +export const DoorbellOutlined: SvgIconComponent; +export const DoorbellRounded: SvgIconComponent; +export const DoorbellSharp: SvgIconComponent; +export const DoorbellTwoTone: SvgIconComponent; +export const DoubleArrow: SvgIconComponent; +export const DoubleArrowOutlined: SvgIconComponent; +export const DoubleArrowRounded: SvgIconComponent; +export const DoubleArrowSharp: SvgIconComponent; +export const DoubleArrowTwoTone: SvgIconComponent; +export const DownhillSkiing: SvgIconComponent; +export const DownhillSkiingOutlined: SvgIconComponent; +export const DownhillSkiingRounded: SvgIconComponent; +export const DownhillSkiingSharp: SvgIconComponent; +export const DownhillSkiingTwoTone: SvgIconComponent; +export const Download: SvgIconComponent; +export const DownloadDone: SvgIconComponent; +export const DownloadDoneOutlined: SvgIconComponent; +export const DownloadDoneRounded: SvgIconComponent; +export const DownloadDoneSharp: SvgIconComponent; +export const DownloadDoneTwoTone: SvgIconComponent; +export const DownloadForOffline: SvgIconComponent; +export const DownloadForOfflineOutlined: SvgIconComponent; +export const DownloadForOfflineRounded: SvgIconComponent; +export const DownloadForOfflineSharp: SvgIconComponent; +export const DownloadForOfflineTwoTone: SvgIconComponent; +export const DownloadOutlined: SvgIconComponent; +export const DownloadRounded: SvgIconComponent; +export const DownloadSharp: SvgIconComponent; +export const DownloadTwoTone: SvgIconComponent; +export const Downloading: SvgIconComponent; +export const DownloadingOutlined: SvgIconComponent; +export const DownloadingRounded: SvgIconComponent; +export const DownloadingSharp: SvgIconComponent; +export const DownloadingTwoTone: SvgIconComponent; +export const Drafts: SvgIconComponent; +export const DraftsOutlined: SvgIconComponent; +export const DraftsRounded: SvgIconComponent; +export const DraftsSharp: SvgIconComponent; +export const DraftsTwoTone: SvgIconComponent; +export const DragHandle: SvgIconComponent; +export const DragHandleOutlined: SvgIconComponent; +export const DragHandleRounded: SvgIconComponent; +export const DragHandleSharp: SvgIconComponent; +export const DragHandleTwoTone: SvgIconComponent; +export const DragIndicator: SvgIconComponent; +export const DragIndicatorOutlined: SvgIconComponent; +export const DragIndicatorRounded: SvgIconComponent; +export const DragIndicatorSharp: SvgIconComponent; +export const DragIndicatorTwoTone: SvgIconComponent; +export const Draw: SvgIconComponent; +export const DrawOutlined: SvgIconComponent; +export const DrawRounded: SvgIconComponent; +export const DrawSharp: SvgIconComponent; +export const DrawTwoTone: SvgIconComponent; +export const DriveEta: SvgIconComponent; +export const DriveEtaOutlined: SvgIconComponent; +export const DriveEtaRounded: SvgIconComponent; +export const DriveEtaSharp: SvgIconComponent; +export const DriveEtaTwoTone: SvgIconComponent; +export const DriveFileMove: SvgIconComponent; +export const DriveFileMoveOutlined: SvgIconComponent; +export const DriveFileMoveRounded: SvgIconComponent; +export const DriveFileMoveSharp: SvgIconComponent; +export const DriveFileMoveTwoTone: SvgIconComponent; +export const DriveFileRenameOutline: SvgIconComponent; +export const DriveFileRenameOutlineOutlined: SvgIconComponent; +export const DriveFileRenameOutlineRounded: SvgIconComponent; +export const DriveFileRenameOutlineSharp: SvgIconComponent; +export const DriveFileRenameOutlineTwoTone: SvgIconComponent; +export const DriveFolderUpload: SvgIconComponent; +export const DriveFolderUploadOutlined: SvgIconComponent; +export const DriveFolderUploadRounded: SvgIconComponent; +export const DriveFolderUploadSharp: SvgIconComponent; +export const DriveFolderUploadTwoTone: SvgIconComponent; +export const Dry: SvgIconComponent; +export const DryCleaning: SvgIconComponent; +export const DryCleaningOutlined: SvgIconComponent; +export const DryCleaningRounded: SvgIconComponent; +export const DryCleaningSharp: SvgIconComponent; +export const DryCleaningTwoTone: SvgIconComponent; +export const DryOutlined: SvgIconComponent; +export const DryRounded: SvgIconComponent; +export const DrySharp: SvgIconComponent; +export const DryTwoTone: SvgIconComponent; +export const Duo: SvgIconComponent; +export const DuoOutlined: SvgIconComponent; +export const DuoRounded: SvgIconComponent; +export const DuoSharp: SvgIconComponent; +export const DuoTwoTone: SvgIconComponent; +export const Dvr: SvgIconComponent; +export const DvrOutlined: SvgIconComponent; +export const DvrRounded: SvgIconComponent; +export const DvrSharp: SvgIconComponent; +export const DvrTwoTone: SvgIconComponent; +export const DynamicFeed: SvgIconComponent; +export const DynamicFeedOutlined: SvgIconComponent; +export const DynamicFeedRounded: SvgIconComponent; +export const DynamicFeedSharp: SvgIconComponent; +export const DynamicFeedTwoTone: SvgIconComponent; +export const DynamicForm: SvgIconComponent; +export const DynamicFormOutlined: SvgIconComponent; +export const DynamicFormRounded: SvgIconComponent; +export const DynamicFormSharp: SvgIconComponent; +export const DynamicFormTwoTone: SvgIconComponent; +export const EMobiledata: SvgIconComponent; +export const EMobiledataOutlined: SvgIconComponent; +export const EMobiledataRounded: SvgIconComponent; +export const EMobiledataSharp: SvgIconComponent; +export const EMobiledataTwoTone: SvgIconComponent; +export const Earbuds: SvgIconComponent; +export const EarbudsBattery: SvgIconComponent; +export const EarbudsBatteryOutlined: SvgIconComponent; +export const EarbudsBatteryRounded: SvgIconComponent; +export const EarbudsBatterySharp: SvgIconComponent; +export const EarbudsBatteryTwoTone: SvgIconComponent; +export const EarbudsOutlined: SvgIconComponent; +export const EarbudsRounded: SvgIconComponent; +export const EarbudsSharp: SvgIconComponent; +export const EarbudsTwoTone: SvgIconComponent; +export const East: SvgIconComponent; +export const EastOutlined: SvgIconComponent; +export const EastRounded: SvgIconComponent; +export const EastSharp: SvgIconComponent; +export const EastTwoTone: SvgIconComponent; +export const EdgesensorHigh: SvgIconComponent; +export const EdgesensorHighOutlined: SvgIconComponent; +export const EdgesensorHighRounded: SvgIconComponent; +export const EdgesensorHighSharp: SvgIconComponent; +export const EdgesensorHighTwoTone: SvgIconComponent; +export const EdgesensorLow: SvgIconComponent; +export const EdgesensorLowOutlined: SvgIconComponent; +export const EdgesensorLowRounded: SvgIconComponent; +export const EdgesensorLowSharp: SvgIconComponent; +export const EdgesensorLowTwoTone: SvgIconComponent; +export const Edit: SvgIconComponent; +export const EditAttributes: SvgIconComponent; +export const EditAttributesOutlined: SvgIconComponent; +export const EditAttributesRounded: SvgIconComponent; +export const EditAttributesSharp: SvgIconComponent; +export const EditAttributesTwoTone: SvgIconComponent; +export const EditCalendar: SvgIconComponent; +export const EditCalendarOutlined: SvgIconComponent; +export const EditCalendarRounded: SvgIconComponent; +export const EditCalendarSharp: SvgIconComponent; +export const EditCalendarTwoTone: SvgIconComponent; +export const EditLocation: SvgIconComponent; +export const EditLocationAlt: SvgIconComponent; +export const EditLocationAltOutlined: SvgIconComponent; +export const EditLocationAltRounded: SvgIconComponent; +export const EditLocationAltSharp: SvgIconComponent; +export const EditLocationAltTwoTone: SvgIconComponent; +export const EditLocationOutlined: SvgIconComponent; +export const EditLocationRounded: SvgIconComponent; +export const EditLocationSharp: SvgIconComponent; +export const EditLocationTwoTone: SvgIconComponent; +export const EditNote: SvgIconComponent; +export const EditNoteOutlined: SvgIconComponent; +export const EditNoteRounded: SvgIconComponent; +export const EditNoteSharp: SvgIconComponent; +export const EditNoteTwoTone: SvgIconComponent; +export const EditNotifications: SvgIconComponent; +export const EditNotificationsOutlined: SvgIconComponent; +export const EditNotificationsRounded: SvgIconComponent; +export const EditNotificationsSharp: SvgIconComponent; +export const EditNotificationsTwoTone: SvgIconComponent; +export const EditOff: SvgIconComponent; +export const EditOffOutlined: SvgIconComponent; +export const EditOffRounded: SvgIconComponent; +export const EditOffSharp: SvgIconComponent; +export const EditOffTwoTone: SvgIconComponent; +export const EditOutlined: SvgIconComponent; +export const EditRoad: SvgIconComponent; +export const EditRoadOutlined: SvgIconComponent; +export const EditRoadRounded: SvgIconComponent; +export const EditRoadSharp: SvgIconComponent; +export const EditRoadTwoTone: SvgIconComponent; +export const EditRounded: SvgIconComponent; +export const EditSharp: SvgIconComponent; +export const EditTwoTone: SvgIconComponent; +export const Egg: SvgIconComponent; +export const EggAlt: SvgIconComponent; +export const EggAltOutlined: SvgIconComponent; +export const EggAltRounded: SvgIconComponent; +export const EggAltSharp: SvgIconComponent; +export const EggAltTwoTone: SvgIconComponent; +export const EggOutlined: SvgIconComponent; +export const EggRounded: SvgIconComponent; +export const EggSharp: SvgIconComponent; +export const EggTwoTone: SvgIconComponent; +export const EightK: SvgIconComponent; +export const EightKOutlined: SvgIconComponent; +export const EightKPlus: SvgIconComponent; +export const EightKPlusOutlined: SvgIconComponent; +export const EightKPlusRounded: SvgIconComponent; +export const EightKPlusSharp: SvgIconComponent; +export const EightKPlusTwoTone: SvgIconComponent; +export const EightKRounded: SvgIconComponent; +export const EightKSharp: SvgIconComponent; +export const EightKTwoTone: SvgIconComponent; +export const EightMp: SvgIconComponent; +export const EightMpOutlined: SvgIconComponent; +export const EightMpRounded: SvgIconComponent; +export const EightMpSharp: SvgIconComponent; +export const EightMpTwoTone: SvgIconComponent; +export const EighteenMp: SvgIconComponent; +export const EighteenMpOutlined: SvgIconComponent; +export const EighteenMpRounded: SvgIconComponent; +export const EighteenMpSharp: SvgIconComponent; +export const EighteenMpTwoTone: SvgIconComponent; +export const EighteenUpRating: SvgIconComponent; +export const EighteenUpRatingOutlined: SvgIconComponent; +export const EighteenUpRatingRounded: SvgIconComponent; +export const EighteenUpRatingSharp: SvgIconComponent; +export const EighteenUpRatingTwoTone: SvgIconComponent; +export const EightteenMp: SvgIconComponent; +export const EightteenMpOutlined: SvgIconComponent; +export const EightteenMpRounded: SvgIconComponent; +export const EightteenMpSharp: SvgIconComponent; +export const EightteenMpTwoTone: SvgIconComponent; +export const Eject: SvgIconComponent; +export const EjectOutlined: SvgIconComponent; +export const EjectRounded: SvgIconComponent; +export const EjectSharp: SvgIconComponent; +export const EjectTwoTone: SvgIconComponent; +export const Elderly: SvgIconComponent; +export const ElderlyOutlined: SvgIconComponent; +export const ElderlyRounded: SvgIconComponent; +export const ElderlySharp: SvgIconComponent; +export const ElderlyTwoTone: SvgIconComponent; +export const ElderlyWoman: SvgIconComponent; +export const ElderlyWomanOutlined: SvgIconComponent; +export const ElderlyWomanRounded: SvgIconComponent; +export const ElderlyWomanSharp: SvgIconComponent; +export const ElderlyWomanTwoTone: SvgIconComponent; +export const ElectricBike: SvgIconComponent; +export const ElectricBikeOutlined: SvgIconComponent; +export const ElectricBikeRounded: SvgIconComponent; +export const ElectricBikeSharp: SvgIconComponent; +export const ElectricBikeTwoTone: SvgIconComponent; +export const ElectricBolt: SvgIconComponent; +export const ElectricBoltOutlined: SvgIconComponent; +export const ElectricBoltRounded: SvgIconComponent; +export const ElectricBoltSharp: SvgIconComponent; +export const ElectricBoltTwoTone: SvgIconComponent; +export const ElectricCar: SvgIconComponent; +export const ElectricCarOutlined: SvgIconComponent; +export const ElectricCarRounded: SvgIconComponent; +export const ElectricCarSharp: SvgIconComponent; +export const ElectricCarTwoTone: SvgIconComponent; +export const ElectricMeter: SvgIconComponent; +export const ElectricMeterOutlined: SvgIconComponent; +export const ElectricMeterRounded: SvgIconComponent; +export const ElectricMeterSharp: SvgIconComponent; +export const ElectricMeterTwoTone: SvgIconComponent; +export const ElectricMoped: SvgIconComponent; +export const ElectricMopedOutlined: SvgIconComponent; +export const ElectricMopedRounded: SvgIconComponent; +export const ElectricMopedSharp: SvgIconComponent; +export const ElectricMopedTwoTone: SvgIconComponent; +export const ElectricRickshaw: SvgIconComponent; +export const ElectricRickshawOutlined: SvgIconComponent; +export const ElectricRickshawRounded: SvgIconComponent; +export const ElectricRickshawSharp: SvgIconComponent; +export const ElectricRickshawTwoTone: SvgIconComponent; +export const ElectricScooter: SvgIconComponent; +export const ElectricScooterOutlined: SvgIconComponent; +export const ElectricScooterRounded: SvgIconComponent; +export const ElectricScooterSharp: SvgIconComponent; +export const ElectricScooterTwoTone: SvgIconComponent; +export const ElectricalServices: SvgIconComponent; +export const ElectricalServicesOutlined: SvgIconComponent; +export const ElectricalServicesRounded: SvgIconComponent; +export const ElectricalServicesSharp: SvgIconComponent; +export const ElectricalServicesTwoTone: SvgIconComponent; +export const Elevator: SvgIconComponent; +export const ElevatorOutlined: SvgIconComponent; +export const ElevatorRounded: SvgIconComponent; +export const ElevatorSharp: SvgIconComponent; +export const ElevatorTwoTone: SvgIconComponent; +export const ElevenMp: SvgIconComponent; +export const ElevenMpOutlined: SvgIconComponent; +export const ElevenMpRounded: SvgIconComponent; +export const ElevenMpSharp: SvgIconComponent; +export const ElevenMpTwoTone: SvgIconComponent; +export const Email: SvgIconComponent; +export const EmailOutlined: SvgIconComponent; +export const EmailRounded: SvgIconComponent; +export const EmailSharp: SvgIconComponent; +export const EmailTwoTone: SvgIconComponent; +export const Emergency: SvgIconComponent; +export const EmergencyOutlined: SvgIconComponent; +export const EmergencyRecording: SvgIconComponent; +export const EmergencyRecordingOutlined: SvgIconComponent; +export const EmergencyRecordingRounded: SvgIconComponent; +export const EmergencyRecordingSharp: SvgIconComponent; +export const EmergencyRecordingTwoTone: SvgIconComponent; +export const EmergencyRounded: SvgIconComponent; +export const EmergencyShare: SvgIconComponent; +export const EmergencyShareOutlined: SvgIconComponent; +export const EmergencyShareRounded: SvgIconComponent; +export const EmergencyShareSharp: SvgIconComponent; +export const EmergencyShareTwoTone: SvgIconComponent; +export const EmergencySharp: SvgIconComponent; +export const EmergencyTwoTone: SvgIconComponent; +export const EmojiEmotions: SvgIconComponent; +export const EmojiEmotionsOutlined: SvgIconComponent; +export const EmojiEmotionsRounded: SvgIconComponent; +export const EmojiEmotionsSharp: SvgIconComponent; +export const EmojiEmotionsTwoTone: SvgIconComponent; +export const EmojiEvents: SvgIconComponent; +export const EmojiEventsOutlined: SvgIconComponent; +export const EmojiEventsRounded: SvgIconComponent; +export const EmojiEventsSharp: SvgIconComponent; +export const EmojiEventsTwoTone: SvgIconComponent; +export const EmojiFlags: SvgIconComponent; +export const EmojiFlagsOutlined: SvgIconComponent; +export const EmojiFlagsRounded: SvgIconComponent; +export const EmojiFlagsSharp: SvgIconComponent; +export const EmojiFlagsTwoTone: SvgIconComponent; +export const EmojiFoodBeverage: SvgIconComponent; +export const EmojiFoodBeverageOutlined: SvgIconComponent; +export const EmojiFoodBeverageRounded: SvgIconComponent; +export const EmojiFoodBeverageSharp: SvgIconComponent; +export const EmojiFoodBeverageTwoTone: SvgIconComponent; +export const EmojiNature: SvgIconComponent; +export const EmojiNatureOutlined: SvgIconComponent; +export const EmojiNatureRounded: SvgIconComponent; +export const EmojiNatureSharp: SvgIconComponent; +export const EmojiNatureTwoTone: SvgIconComponent; +export const EmojiObjects: SvgIconComponent; +export const EmojiObjectsOutlined: SvgIconComponent; +export const EmojiObjectsRounded: SvgIconComponent; +export const EmojiObjectsSharp: SvgIconComponent; +export const EmojiObjectsTwoTone: SvgIconComponent; +export const EmojiPeople: SvgIconComponent; +export const EmojiPeopleOutlined: SvgIconComponent; +export const EmojiPeopleRounded: SvgIconComponent; +export const EmojiPeopleSharp: SvgIconComponent; +export const EmojiPeopleTwoTone: SvgIconComponent; +export const EmojiSymbols: SvgIconComponent; +export const EmojiSymbolsOutlined: SvgIconComponent; +export const EmojiSymbolsRounded: SvgIconComponent; +export const EmojiSymbolsSharp: SvgIconComponent; +export const EmojiSymbolsTwoTone: SvgIconComponent; +export const EmojiTransportation: SvgIconComponent; +export const EmojiTransportationOutlined: SvgIconComponent; +export const EmojiTransportationRounded: SvgIconComponent; +export const EmojiTransportationSharp: SvgIconComponent; +export const EmojiTransportationTwoTone: SvgIconComponent; +export const EnergySavingsLeaf: SvgIconComponent; +export const EnergySavingsLeafOutlined: SvgIconComponent; +export const EnergySavingsLeafRounded: SvgIconComponent; +export const EnergySavingsLeafSharp: SvgIconComponent; +export const EnergySavingsLeafTwoTone: SvgIconComponent; +export const Engineering: SvgIconComponent; +export const EngineeringOutlined: SvgIconComponent; +export const EngineeringRounded: SvgIconComponent; +export const EngineeringSharp: SvgIconComponent; +export const EngineeringTwoTone: SvgIconComponent; +export const EnhancedEncryption: SvgIconComponent; +export const EnhancedEncryptionOutlined: SvgIconComponent; +export const EnhancedEncryptionRounded: SvgIconComponent; +export const EnhancedEncryptionSharp: SvgIconComponent; +export const EnhancedEncryptionTwoTone: SvgIconComponent; +export const Equalizer: SvgIconComponent; +export const EqualizerOutlined: SvgIconComponent; +export const EqualizerRounded: SvgIconComponent; +export const EqualizerSharp: SvgIconComponent; +export const EqualizerTwoTone: SvgIconComponent; +export const Error: SvgIconComponent; +export const ErrorOutline: SvgIconComponent; +export const ErrorOutlineOutlined: SvgIconComponent; +export const ErrorOutlineRounded: SvgIconComponent; +export const ErrorOutlineSharp: SvgIconComponent; +export const ErrorOutlineTwoTone: SvgIconComponent; +export const ErrorOutlined: SvgIconComponent; +export const ErrorRounded: SvgIconComponent; +export const ErrorSharp: SvgIconComponent; +export const ErrorTwoTone: SvgIconComponent; +export const Escalator: SvgIconComponent; +export const EscalatorOutlined: SvgIconComponent; +export const EscalatorRounded: SvgIconComponent; +export const EscalatorSharp: SvgIconComponent; +export const EscalatorTwoTone: SvgIconComponent; +export const EscalatorWarning: SvgIconComponent; +export const EscalatorWarningOutlined: SvgIconComponent; +export const EscalatorWarningRounded: SvgIconComponent; +export const EscalatorWarningSharp: SvgIconComponent; +export const EscalatorWarningTwoTone: SvgIconComponent; +export const Euro: SvgIconComponent; +export const EuroOutlined: SvgIconComponent; +export const EuroRounded: SvgIconComponent; +export const EuroSharp: SvgIconComponent; +export const EuroSymbol: SvgIconComponent; +export const EuroSymbolOutlined: SvgIconComponent; +export const EuroSymbolRounded: SvgIconComponent; +export const EuroSymbolSharp: SvgIconComponent; +export const EuroSymbolTwoTone: SvgIconComponent; +export const EuroTwoTone: SvgIconComponent; +export const EvStation: SvgIconComponent; +export const EvStationOutlined: SvgIconComponent; +export const EvStationRounded: SvgIconComponent; +export const EvStationSharp: SvgIconComponent; +export const EvStationTwoTone: SvgIconComponent; +export const Event: SvgIconComponent; +export const EventAvailable: SvgIconComponent; +export const EventAvailableOutlined: SvgIconComponent; +export const EventAvailableRounded: SvgIconComponent; +export const EventAvailableSharp: SvgIconComponent; +export const EventAvailableTwoTone: SvgIconComponent; +export const EventBusy: SvgIconComponent; +export const EventBusyOutlined: SvgIconComponent; +export const EventBusyRounded: SvgIconComponent; +export const EventBusySharp: SvgIconComponent; +export const EventBusyTwoTone: SvgIconComponent; +export const EventNote: SvgIconComponent; +export const EventNoteOutlined: SvgIconComponent; +export const EventNoteRounded: SvgIconComponent; +export const EventNoteSharp: SvgIconComponent; +export const EventNoteTwoTone: SvgIconComponent; +export const EventOutlined: SvgIconComponent; +export const EventRepeat: SvgIconComponent; +export const EventRepeatOutlined: SvgIconComponent; +export const EventRepeatRounded: SvgIconComponent; +export const EventRepeatSharp: SvgIconComponent; +export const EventRepeatTwoTone: SvgIconComponent; +export const EventRounded: SvgIconComponent; +export const EventSeat: SvgIconComponent; +export const EventSeatOutlined: SvgIconComponent; +export const EventSeatRounded: SvgIconComponent; +export const EventSeatSharp: SvgIconComponent; +export const EventSeatTwoTone: SvgIconComponent; +export const EventSharp: SvgIconComponent; +export const EventTwoTone: SvgIconComponent; +export const ExitToApp: SvgIconComponent; +export const ExitToAppOutlined: SvgIconComponent; +export const ExitToAppRounded: SvgIconComponent; +export const ExitToAppSharp: SvgIconComponent; +export const ExitToAppTwoTone: SvgIconComponent; +export const Expand: SvgIconComponent; +export const ExpandCircleDown: SvgIconComponent; +export const ExpandCircleDownOutlined: SvgIconComponent; +export const ExpandCircleDownRounded: SvgIconComponent; +export const ExpandCircleDownSharp: SvgIconComponent; +export const ExpandCircleDownTwoTone: SvgIconComponent; +export const ExpandLess: SvgIconComponent; +export const ExpandLessOutlined: SvgIconComponent; +export const ExpandLessRounded: SvgIconComponent; +export const ExpandLessSharp: SvgIconComponent; +export const ExpandLessTwoTone: SvgIconComponent; +export const ExpandMore: SvgIconComponent; +export const ExpandMoreOutlined: SvgIconComponent; +export const ExpandMoreRounded: SvgIconComponent; +export const ExpandMoreSharp: SvgIconComponent; +export const ExpandMoreTwoTone: SvgIconComponent; +export const ExpandOutlined: SvgIconComponent; +export const ExpandRounded: SvgIconComponent; +export const ExpandSharp: SvgIconComponent; +export const ExpandTwoTone: SvgIconComponent; +export const Explicit: SvgIconComponent; +export const ExplicitOutlined: SvgIconComponent; +export const ExplicitRounded: SvgIconComponent; +export const ExplicitSharp: SvgIconComponent; +export const ExplicitTwoTone: SvgIconComponent; +export const Explore: SvgIconComponent; +export const ExploreOff: SvgIconComponent; +export const ExploreOffOutlined: SvgIconComponent; +export const ExploreOffRounded: SvgIconComponent; +export const ExploreOffSharp: SvgIconComponent; +export const ExploreOffTwoTone: SvgIconComponent; +export const ExploreOutlined: SvgIconComponent; +export const ExploreRounded: SvgIconComponent; +export const ExploreSharp: SvgIconComponent; +export const ExploreTwoTone: SvgIconComponent; +export const Exposure: SvgIconComponent; +export const ExposureOutlined: SvgIconComponent; +export const ExposureRounded: SvgIconComponent; +export const ExposureSharp: SvgIconComponent; +export const ExposureTwoTone: SvgIconComponent; +export const Extension: SvgIconComponent; +export const ExtensionOff: SvgIconComponent; +export const ExtensionOffOutlined: SvgIconComponent; +export const ExtensionOffRounded: SvgIconComponent; +export const ExtensionOffSharp: SvgIconComponent; +export const ExtensionOffTwoTone: SvgIconComponent; +export const ExtensionOutlined: SvgIconComponent; +export const ExtensionRounded: SvgIconComponent; +export const ExtensionSharp: SvgIconComponent; +export const ExtensionTwoTone: SvgIconComponent; +export const Face: SvgIconComponent; +export const Face2: SvgIconComponent; +export const Face2Outlined: SvgIconComponent; +export const Face2Rounded: SvgIconComponent; +export const Face2Sharp: SvgIconComponent; +export const Face2TwoTone: SvgIconComponent; +export const Face3: SvgIconComponent; +export const Face3Outlined: SvgIconComponent; +export const Face3Rounded: SvgIconComponent; +export const Face3Sharp: SvgIconComponent; +export const Face3TwoTone: SvgIconComponent; +export const Face4: SvgIconComponent; +export const Face4Outlined: SvgIconComponent; +export const Face4Rounded: SvgIconComponent; +export const Face4Sharp: SvgIconComponent; +export const Face4TwoTone: SvgIconComponent; +export const Face5: SvgIconComponent; +export const Face5Outlined: SvgIconComponent; +export const Face5Rounded: SvgIconComponent; +export const Face5Sharp: SvgIconComponent; +export const Face5TwoTone: SvgIconComponent; +export const Face6: SvgIconComponent; +export const Face6Outlined: SvgIconComponent; +export const Face6Rounded: SvgIconComponent; +export const Face6Sharp: SvgIconComponent; +export const Face6TwoTone: SvgIconComponent; +export const FaceOutlined: SvgIconComponent; +export const FaceRetouchingNatural: SvgIconComponent; +export const FaceRetouchingNaturalOutlined: SvgIconComponent; +export const FaceRetouchingNaturalRounded: SvgIconComponent; +export const FaceRetouchingNaturalSharp: SvgIconComponent; +export const FaceRetouchingNaturalTwoTone: SvgIconComponent; +export const FaceRetouchingOff: SvgIconComponent; +export const FaceRetouchingOffOutlined: SvgIconComponent; +export const FaceRetouchingOffRounded: SvgIconComponent; +export const FaceRetouchingOffSharp: SvgIconComponent; +export const FaceRetouchingOffTwoTone: SvgIconComponent; +export const FaceRounded: SvgIconComponent; +export const FaceSharp: SvgIconComponent; +export const FaceTwoTone: SvgIconComponent; +export const Facebook: SvgIconComponent; +export const FacebookOutlined: SvgIconComponent; +export const FacebookRounded: SvgIconComponent; +export const FacebookSharp: SvgIconComponent; +export const FacebookTwoTone: SvgIconComponent; +export const FactCheck: SvgIconComponent; +export const FactCheckOutlined: SvgIconComponent; +export const FactCheckRounded: SvgIconComponent; +export const FactCheckSharp: SvgIconComponent; +export const FactCheckTwoTone: SvgIconComponent; +export const Factory: SvgIconComponent; +export const FactoryOutlined: SvgIconComponent; +export const FactoryRounded: SvgIconComponent; +export const FactorySharp: SvgIconComponent; +export const FactoryTwoTone: SvgIconComponent; +export const FamilyRestroom: SvgIconComponent; +export const FamilyRestroomOutlined: SvgIconComponent; +export const FamilyRestroomRounded: SvgIconComponent; +export const FamilyRestroomSharp: SvgIconComponent; +export const FamilyRestroomTwoTone: SvgIconComponent; +export const FastForward: SvgIconComponent; +export const FastForwardOutlined: SvgIconComponent; +export const FastForwardRounded: SvgIconComponent; +export const FastForwardSharp: SvgIconComponent; +export const FastForwardTwoTone: SvgIconComponent; +export const FastRewind: SvgIconComponent; +export const FastRewindOutlined: SvgIconComponent; +export const FastRewindRounded: SvgIconComponent; +export const FastRewindSharp: SvgIconComponent; +export const FastRewindTwoTone: SvgIconComponent; +export const Fastfood: SvgIconComponent; +export const FastfoodOutlined: SvgIconComponent; +export const FastfoodRounded: SvgIconComponent; +export const FastfoodSharp: SvgIconComponent; +export const FastfoodTwoTone: SvgIconComponent; +export const Favorite: SvgIconComponent; +export const FavoriteBorder: SvgIconComponent; +export const FavoriteBorderOutlined: SvgIconComponent; +export const FavoriteBorderRounded: SvgIconComponent; +export const FavoriteBorderSharp: SvgIconComponent; +export const FavoriteBorderTwoTone: SvgIconComponent; +export const FavoriteOutlined: SvgIconComponent; +export const FavoriteRounded: SvgIconComponent; +export const FavoriteSharp: SvgIconComponent; +export const FavoriteTwoTone: SvgIconComponent; +export const Fax: SvgIconComponent; +export const FaxOutlined: SvgIconComponent; +export const FaxRounded: SvgIconComponent; +export const FaxSharp: SvgIconComponent; +export const FaxTwoTone: SvgIconComponent; +export const FeaturedPlayList: SvgIconComponent; +export const FeaturedPlayListOutlined: SvgIconComponent; +export const FeaturedPlayListRounded: SvgIconComponent; +export const FeaturedPlayListSharp: SvgIconComponent; +export const FeaturedPlayListTwoTone: SvgIconComponent; +export const FeaturedVideo: SvgIconComponent; +export const FeaturedVideoOutlined: SvgIconComponent; +export const FeaturedVideoRounded: SvgIconComponent; +export const FeaturedVideoSharp: SvgIconComponent; +export const FeaturedVideoTwoTone: SvgIconComponent; +export const Feed: SvgIconComponent; +export const FeedOutlined: SvgIconComponent; +export const FeedRounded: SvgIconComponent; +export const FeedSharp: SvgIconComponent; +export const FeedTwoTone: SvgIconComponent; +export const Feedback: SvgIconComponent; +export const FeedbackOutlined: SvgIconComponent; +export const FeedbackRounded: SvgIconComponent; +export const FeedbackSharp: SvgIconComponent; +export const FeedbackTwoTone: SvgIconComponent; +export const Female: SvgIconComponent; +export const FemaleOutlined: SvgIconComponent; +export const FemaleRounded: SvgIconComponent; +export const FemaleSharp: SvgIconComponent; +export const FemaleTwoTone: SvgIconComponent; +export const Fence: SvgIconComponent; +export const FenceOutlined: SvgIconComponent; +export const FenceRounded: SvgIconComponent; +export const FenceSharp: SvgIconComponent; +export const FenceTwoTone: SvgIconComponent; +export const Festival: SvgIconComponent; +export const FestivalOutlined: SvgIconComponent; +export const FestivalRounded: SvgIconComponent; +export const FestivalSharp: SvgIconComponent; +export const FestivalTwoTone: SvgIconComponent; +export const FiberDvr: SvgIconComponent; +export const FiberDvrOutlined: SvgIconComponent; +export const FiberDvrRounded: SvgIconComponent; +export const FiberDvrSharp: SvgIconComponent; +export const FiberDvrTwoTone: SvgIconComponent; +export const FiberManualRecord: SvgIconComponent; +export const FiberManualRecordOutlined: SvgIconComponent; +export const FiberManualRecordRounded: SvgIconComponent; +export const FiberManualRecordSharp: SvgIconComponent; +export const FiberManualRecordTwoTone: SvgIconComponent; +export const FiberNew: SvgIconComponent; +export const FiberNewOutlined: SvgIconComponent; +export const FiberNewRounded: SvgIconComponent; +export const FiberNewSharp: SvgIconComponent; +export const FiberNewTwoTone: SvgIconComponent; +export const FiberPin: SvgIconComponent; +export const FiberPinOutlined: SvgIconComponent; +export const FiberPinRounded: SvgIconComponent; +export const FiberPinSharp: SvgIconComponent; +export const FiberPinTwoTone: SvgIconComponent; +export const FiberSmartRecord: SvgIconComponent; +export const FiberSmartRecordOutlined: SvgIconComponent; +export const FiberSmartRecordRounded: SvgIconComponent; +export const FiberSmartRecordSharp: SvgIconComponent; +export const FiberSmartRecordTwoTone: SvgIconComponent; +export const FifteenMp: SvgIconComponent; +export const FifteenMpOutlined: SvgIconComponent; +export const FifteenMpRounded: SvgIconComponent; +export const FifteenMpSharp: SvgIconComponent; +export const FifteenMpTwoTone: SvgIconComponent; +export const FileCopy: SvgIconComponent; +export const FileCopyOutlined: SvgIconComponent; +export const FileCopyRounded: SvgIconComponent; +export const FileCopySharp: SvgIconComponent; +export const FileCopyTwoTone: SvgIconComponent; +export const FileDownload: SvgIconComponent; +export const FileDownloadDone: SvgIconComponent; +export const FileDownloadDoneOutlined: SvgIconComponent; +export const FileDownloadDoneRounded: SvgIconComponent; +export const FileDownloadDoneSharp: SvgIconComponent; +export const FileDownloadDoneTwoTone: SvgIconComponent; +export const FileDownloadOff: SvgIconComponent; +export const FileDownloadOffOutlined: SvgIconComponent; +export const FileDownloadOffRounded: SvgIconComponent; +export const FileDownloadOffSharp: SvgIconComponent; +export const FileDownloadOffTwoTone: SvgIconComponent; +export const FileDownloadOutlined: SvgIconComponent; +export const FileDownloadRounded: SvgIconComponent; +export const FileDownloadSharp: SvgIconComponent; +export const FileDownloadTwoTone: SvgIconComponent; +export const FileOpen: SvgIconComponent; +export const FileOpenOutlined: SvgIconComponent; +export const FileOpenRounded: SvgIconComponent; +export const FileOpenSharp: SvgIconComponent; +export const FileOpenTwoTone: SvgIconComponent; +export const FilePresent: SvgIconComponent; +export const FilePresentOutlined: SvgIconComponent; +export const FilePresentRounded: SvgIconComponent; +export const FilePresentSharp: SvgIconComponent; +export const FilePresentTwoTone: SvgIconComponent; +export const FileUpload: SvgIconComponent; +export const FileUploadOutlined: SvgIconComponent; +export const FileUploadRounded: SvgIconComponent; +export const FileUploadSharp: SvgIconComponent; +export const FileUploadTwoTone: SvgIconComponent; +export const Filter: SvgIconComponent; +export const Filter1: SvgIconComponent; +export const Filter1Outlined: SvgIconComponent; +export const Filter1Rounded: SvgIconComponent; +export const Filter1Sharp: SvgIconComponent; +export const Filter1TwoTone: SvgIconComponent; +export const Filter2: SvgIconComponent; +export const Filter2Outlined: SvgIconComponent; +export const Filter2Rounded: SvgIconComponent; +export const Filter2Sharp: SvgIconComponent; +export const Filter2TwoTone: SvgIconComponent; +export const Filter3: SvgIconComponent; +export const Filter3Outlined: SvgIconComponent; +export const Filter3Rounded: SvgIconComponent; +export const Filter3Sharp: SvgIconComponent; +export const Filter3TwoTone: SvgIconComponent; +export const Filter4: SvgIconComponent; +export const Filter4Outlined: SvgIconComponent; +export const Filter4Rounded: SvgIconComponent; +export const Filter4Sharp: SvgIconComponent; +export const Filter4TwoTone: SvgIconComponent; +export const Filter5: SvgIconComponent; +export const Filter5Outlined: SvgIconComponent; +export const Filter5Rounded: SvgIconComponent; +export const Filter5Sharp: SvgIconComponent; +export const Filter5TwoTone: SvgIconComponent; +export const Filter6: SvgIconComponent; +export const Filter6Outlined: SvgIconComponent; +export const Filter6Rounded: SvgIconComponent; +export const Filter6Sharp: SvgIconComponent; +export const Filter6TwoTone: SvgIconComponent; +export const Filter7: SvgIconComponent; +export const Filter7Outlined: SvgIconComponent; +export const Filter7Rounded: SvgIconComponent; +export const Filter7Sharp: SvgIconComponent; +export const Filter7TwoTone: SvgIconComponent; +export const Filter8: SvgIconComponent; +export const Filter8Outlined: SvgIconComponent; +export const Filter8Rounded: SvgIconComponent; +export const Filter8Sharp: SvgIconComponent; +export const Filter8TwoTone: SvgIconComponent; +export const Filter9: SvgIconComponent; +export const Filter9Outlined: SvgIconComponent; +export const Filter9Plus: SvgIconComponent; +export const Filter9PlusOutlined: SvgIconComponent; +export const Filter9PlusRounded: SvgIconComponent; +export const Filter9PlusSharp: SvgIconComponent; +export const Filter9PlusTwoTone: SvgIconComponent; +export const Filter9Rounded: SvgIconComponent; +export const Filter9Sharp: SvgIconComponent; +export const Filter9TwoTone: SvgIconComponent; +export const FilterAlt: SvgIconComponent; +export const FilterAltOff: SvgIconComponent; +export const FilterAltOffOutlined: SvgIconComponent; +export const FilterAltOffRounded: SvgIconComponent; +export const FilterAltOffSharp: SvgIconComponent; +export const FilterAltOffTwoTone: SvgIconComponent; +export const FilterAltOutlined: SvgIconComponent; +export const FilterAltRounded: SvgIconComponent; +export const FilterAltSharp: SvgIconComponent; +export const FilterAltTwoTone: SvgIconComponent; +export const FilterBAndW: SvgIconComponent; +export const FilterBAndWOutlined: SvgIconComponent; +export const FilterBAndWRounded: SvgIconComponent; +export const FilterBAndWSharp: SvgIconComponent; +export const FilterBAndWTwoTone: SvgIconComponent; +export const FilterCenterFocus: SvgIconComponent; +export const FilterCenterFocusOutlined: SvgIconComponent; +export const FilterCenterFocusRounded: SvgIconComponent; +export const FilterCenterFocusSharp: SvgIconComponent; +export const FilterCenterFocusTwoTone: SvgIconComponent; +export const FilterDrama: SvgIconComponent; +export const FilterDramaOutlined: SvgIconComponent; +export const FilterDramaRounded: SvgIconComponent; +export const FilterDramaSharp: SvgIconComponent; +export const FilterDramaTwoTone: SvgIconComponent; +export const FilterFrames: SvgIconComponent; +export const FilterFramesOutlined: SvgIconComponent; +export const FilterFramesRounded: SvgIconComponent; +export const FilterFramesSharp: SvgIconComponent; +export const FilterFramesTwoTone: SvgIconComponent; +export const FilterHdr: SvgIconComponent; +export const FilterHdrOutlined: SvgIconComponent; +export const FilterHdrRounded: SvgIconComponent; +export const FilterHdrSharp: SvgIconComponent; +export const FilterHdrTwoTone: SvgIconComponent; +export const FilterList: SvgIconComponent; +export const FilterListOff: SvgIconComponent; +export const FilterListOffOutlined: SvgIconComponent; +export const FilterListOffRounded: SvgIconComponent; +export const FilterListOffSharp: SvgIconComponent; +export const FilterListOffTwoTone: SvgIconComponent; +export const FilterListOutlined: SvgIconComponent; +export const FilterListRounded: SvgIconComponent; +export const FilterListSharp: SvgIconComponent; +export const FilterListTwoTone: SvgIconComponent; +export const FilterNone: SvgIconComponent; +export const FilterNoneOutlined: SvgIconComponent; +export const FilterNoneRounded: SvgIconComponent; +export const FilterNoneSharp: SvgIconComponent; +export const FilterNoneTwoTone: SvgIconComponent; +export const FilterOutlined: SvgIconComponent; +export const FilterRounded: SvgIconComponent; +export const FilterSharp: SvgIconComponent; +export const FilterTiltShift: SvgIconComponent; +export const FilterTiltShiftOutlined: SvgIconComponent; +export const FilterTiltShiftRounded: SvgIconComponent; +export const FilterTiltShiftSharp: SvgIconComponent; +export const FilterTiltShiftTwoTone: SvgIconComponent; +export const FilterTwoTone: SvgIconComponent; +export const FilterVintage: SvgIconComponent; +export const FilterVintageOutlined: SvgIconComponent; +export const FilterVintageRounded: SvgIconComponent; +export const FilterVintageSharp: SvgIconComponent; +export const FilterVintageTwoTone: SvgIconComponent; +export const FindInPage: SvgIconComponent; +export const FindInPageOutlined: SvgIconComponent; +export const FindInPageRounded: SvgIconComponent; +export const FindInPageSharp: SvgIconComponent; +export const FindInPageTwoTone: SvgIconComponent; +export const FindReplace: SvgIconComponent; +export const FindReplaceOutlined: SvgIconComponent; +export const FindReplaceRounded: SvgIconComponent; +export const FindReplaceSharp: SvgIconComponent; +export const FindReplaceTwoTone: SvgIconComponent; +export const Fingerprint: SvgIconComponent; +export const FingerprintOutlined: SvgIconComponent; +export const FingerprintRounded: SvgIconComponent; +export const FingerprintSharp: SvgIconComponent; +export const FingerprintTwoTone: SvgIconComponent; +export const FireExtinguisher: SvgIconComponent; +export const FireExtinguisherOutlined: SvgIconComponent; +export const FireExtinguisherRounded: SvgIconComponent; +export const FireExtinguisherSharp: SvgIconComponent; +export const FireExtinguisherTwoTone: SvgIconComponent; +export const FireHydrantAlt: SvgIconComponent; +export const FireHydrantAltOutlined: SvgIconComponent; +export const FireHydrantAltRounded: SvgIconComponent; +export const FireHydrantAltSharp: SvgIconComponent; +export const FireHydrantAltTwoTone: SvgIconComponent; +export const FireTruck: SvgIconComponent; +export const FireTruckOutlined: SvgIconComponent; +export const FireTruckRounded: SvgIconComponent; +export const FireTruckSharp: SvgIconComponent; +export const FireTruckTwoTone: SvgIconComponent; +export const Fireplace: SvgIconComponent; +export const FireplaceOutlined: SvgIconComponent; +export const FireplaceRounded: SvgIconComponent; +export const FireplaceSharp: SvgIconComponent; +export const FireplaceTwoTone: SvgIconComponent; +export const FirstPage: SvgIconComponent; +export const FirstPageOutlined: SvgIconComponent; +export const FirstPageRounded: SvgIconComponent; +export const FirstPageSharp: SvgIconComponent; +export const FirstPageTwoTone: SvgIconComponent; +export const FitScreen: SvgIconComponent; +export const FitScreenOutlined: SvgIconComponent; +export const FitScreenRounded: SvgIconComponent; +export const FitScreenSharp: SvgIconComponent; +export const FitScreenTwoTone: SvgIconComponent; +export const Fitbit: SvgIconComponent; +export const FitbitOutlined: SvgIconComponent; +export const FitbitRounded: SvgIconComponent; +export const FitbitSharp: SvgIconComponent; +export const FitbitTwoTone: SvgIconComponent; +export const FitnessCenter: SvgIconComponent; +export const FitnessCenterOutlined: SvgIconComponent; +export const FitnessCenterRounded: SvgIconComponent; +export const FitnessCenterSharp: SvgIconComponent; +export const FitnessCenterTwoTone: SvgIconComponent; +export const FiveG: SvgIconComponent; +export const FiveGOutlined: SvgIconComponent; +export const FiveGRounded: SvgIconComponent; +export const FiveGSharp: SvgIconComponent; +export const FiveGTwoTone: SvgIconComponent; +export const FiveK: SvgIconComponent; +export const FiveKOutlined: SvgIconComponent; +export const FiveKPlus: SvgIconComponent; +export const FiveKPlusOutlined: SvgIconComponent; +export const FiveKPlusRounded: SvgIconComponent; +export const FiveKPlusSharp: SvgIconComponent; +export const FiveKPlusTwoTone: SvgIconComponent; +export const FiveKRounded: SvgIconComponent; +export const FiveKSharp: SvgIconComponent; +export const FiveKTwoTone: SvgIconComponent; +export const FiveMp: SvgIconComponent; +export const FiveMpOutlined: SvgIconComponent; +export const FiveMpRounded: SvgIconComponent; +export const FiveMpSharp: SvgIconComponent; +export const FiveMpTwoTone: SvgIconComponent; +export const FivteenMp: SvgIconComponent; +export const FivteenMpOutlined: SvgIconComponent; +export const FivteenMpRounded: SvgIconComponent; +export const FivteenMpSharp: SvgIconComponent; +export const FivteenMpTwoTone: SvgIconComponent; +export const Flag: SvgIconComponent; +export const FlagCircle: SvgIconComponent; +export const FlagCircleOutlined: SvgIconComponent; +export const FlagCircleRounded: SvgIconComponent; +export const FlagCircleSharp: SvgIconComponent; +export const FlagCircleTwoTone: SvgIconComponent; +export const FlagOutlined: SvgIconComponent; +export const FlagRounded: SvgIconComponent; +export const FlagSharp: SvgIconComponent; +export const FlagTwoTone: SvgIconComponent; +export const Flaky: SvgIconComponent; +export const FlakyOutlined: SvgIconComponent; +export const FlakyRounded: SvgIconComponent; +export const FlakySharp: SvgIconComponent; +export const FlakyTwoTone: SvgIconComponent; +export const Flare: SvgIconComponent; +export const FlareOutlined: SvgIconComponent; +export const FlareRounded: SvgIconComponent; +export const FlareSharp: SvgIconComponent; +export const FlareTwoTone: SvgIconComponent; +export const FlashAuto: SvgIconComponent; +export const FlashAutoOutlined: SvgIconComponent; +export const FlashAutoRounded: SvgIconComponent; +export const FlashAutoSharp: SvgIconComponent; +export const FlashAutoTwoTone: SvgIconComponent; +export const FlashOff: SvgIconComponent; +export const FlashOffOutlined: SvgIconComponent; +export const FlashOffRounded: SvgIconComponent; +export const FlashOffSharp: SvgIconComponent; +export const FlashOffTwoTone: SvgIconComponent; +export const FlashOn: SvgIconComponent; +export const FlashOnOutlined: SvgIconComponent; +export const FlashOnRounded: SvgIconComponent; +export const FlashOnSharp: SvgIconComponent; +export const FlashOnTwoTone: SvgIconComponent; +export const FlashlightOff: SvgIconComponent; +export const FlashlightOffOutlined: SvgIconComponent; +export const FlashlightOffRounded: SvgIconComponent; +export const FlashlightOffSharp: SvgIconComponent; +export const FlashlightOffTwoTone: SvgIconComponent; +export const FlashlightOn: SvgIconComponent; +export const FlashlightOnOutlined: SvgIconComponent; +export const FlashlightOnRounded: SvgIconComponent; +export const FlashlightOnSharp: SvgIconComponent; +export const FlashlightOnTwoTone: SvgIconComponent; +export const Flatware: SvgIconComponent; +export const FlatwareOutlined: SvgIconComponent; +export const FlatwareRounded: SvgIconComponent; +export const FlatwareSharp: SvgIconComponent; +export const FlatwareTwoTone: SvgIconComponent; +export const Flight: SvgIconComponent; +export const FlightClass: SvgIconComponent; +export const FlightClassOutlined: SvgIconComponent; +export const FlightClassRounded: SvgIconComponent; +export const FlightClassSharp: SvgIconComponent; +export const FlightClassTwoTone: SvgIconComponent; +export const FlightLand: SvgIconComponent; +export const FlightLandOutlined: SvgIconComponent; +export const FlightLandRounded: SvgIconComponent; +export const FlightLandSharp: SvgIconComponent; +export const FlightLandTwoTone: SvgIconComponent; +export const FlightOutlined: SvgIconComponent; +export const FlightRounded: SvgIconComponent; +export const FlightSharp: SvgIconComponent; +export const FlightTakeoff: SvgIconComponent; +export const FlightTakeoffOutlined: SvgIconComponent; +export const FlightTakeoffRounded: SvgIconComponent; +export const FlightTakeoffSharp: SvgIconComponent; +export const FlightTakeoffTwoTone: SvgIconComponent; +export const FlightTwoTone: SvgIconComponent; +export const Flip: SvgIconComponent; +export const FlipCameraAndroid: SvgIconComponent; +export const FlipCameraAndroidOutlined: SvgIconComponent; +export const FlipCameraAndroidRounded: SvgIconComponent; +export const FlipCameraAndroidSharp: SvgIconComponent; +export const FlipCameraAndroidTwoTone: SvgIconComponent; +export const FlipCameraIos: SvgIconComponent; +export const FlipCameraIosOutlined: SvgIconComponent; +export const FlipCameraIosRounded: SvgIconComponent; +export const FlipCameraIosSharp: SvgIconComponent; +export const FlipCameraIosTwoTone: SvgIconComponent; +export const FlipOutlined: SvgIconComponent; +export const FlipRounded: SvgIconComponent; +export const FlipSharp: SvgIconComponent; +export const FlipToBack: SvgIconComponent; +export const FlipToBackOutlined: SvgIconComponent; +export const FlipToBackRounded: SvgIconComponent; +export const FlipToBackSharp: SvgIconComponent; +export const FlipToBackTwoTone: SvgIconComponent; +export const FlipToFront: SvgIconComponent; +export const FlipToFrontOutlined: SvgIconComponent; +export const FlipToFrontRounded: SvgIconComponent; +export const FlipToFrontSharp: SvgIconComponent; +export const FlipToFrontTwoTone: SvgIconComponent; +export const FlipTwoTone: SvgIconComponent; +export const Flood: SvgIconComponent; +export const FloodOutlined: SvgIconComponent; +export const FloodRounded: SvgIconComponent; +export const FloodSharp: SvgIconComponent; +export const FloodTwoTone: SvgIconComponent; +export const Fluorescent: SvgIconComponent; +export const FluorescentOutlined: SvgIconComponent; +export const FluorescentRounded: SvgIconComponent; +export const FluorescentSharp: SvgIconComponent; +export const FluorescentTwoTone: SvgIconComponent; +export const FlutterDash: SvgIconComponent; +export const FlutterDashOutlined: SvgIconComponent; +export const FlutterDashRounded: SvgIconComponent; +export const FlutterDashSharp: SvgIconComponent; +export const FlutterDashTwoTone: SvgIconComponent; +export const FmdBad: SvgIconComponent; +export const FmdBadOutlined: SvgIconComponent; +export const FmdBadRounded: SvgIconComponent; +export const FmdBadSharp: SvgIconComponent; +export const FmdBadTwoTone: SvgIconComponent; +export const FmdGood: SvgIconComponent; +export const FmdGoodOutlined: SvgIconComponent; +export const FmdGoodRounded: SvgIconComponent; +export const FmdGoodSharp: SvgIconComponent; +export const FmdGoodTwoTone: SvgIconComponent; +export const Folder: SvgIconComponent; +export const FolderCopy: SvgIconComponent; +export const FolderCopyOutlined: SvgIconComponent; +export const FolderCopyRounded: SvgIconComponent; +export const FolderCopySharp: SvgIconComponent; +export const FolderCopyTwoTone: SvgIconComponent; +export const FolderDelete: SvgIconComponent; +export const FolderDeleteOutlined: SvgIconComponent; +export const FolderDeleteRounded: SvgIconComponent; +export const FolderDeleteSharp: SvgIconComponent; +export const FolderDeleteTwoTone: SvgIconComponent; +export const FolderOff: SvgIconComponent; +export const FolderOffOutlined: SvgIconComponent; +export const FolderOffRounded: SvgIconComponent; +export const FolderOffSharp: SvgIconComponent; +export const FolderOffTwoTone: SvgIconComponent; +export const FolderOpen: SvgIconComponent; +export const FolderOpenOutlined: SvgIconComponent; +export const FolderOpenRounded: SvgIconComponent; +export const FolderOpenSharp: SvgIconComponent; +export const FolderOpenTwoTone: SvgIconComponent; +export const FolderOutlined: SvgIconComponent; +export const FolderRounded: SvgIconComponent; +export const FolderShared: SvgIconComponent; +export const FolderSharedOutlined: SvgIconComponent; +export const FolderSharedRounded: SvgIconComponent; +export const FolderSharedSharp: SvgIconComponent; +export const FolderSharedTwoTone: SvgIconComponent; +export const FolderSharp: SvgIconComponent; +export const FolderSpecial: SvgIconComponent; +export const FolderSpecialOutlined: SvgIconComponent; +export const FolderSpecialRounded: SvgIconComponent; +export const FolderSpecialSharp: SvgIconComponent; +export const FolderSpecialTwoTone: SvgIconComponent; +export const FolderTwoTone: SvgIconComponent; +export const FolderZip: SvgIconComponent; +export const FolderZipOutlined: SvgIconComponent; +export const FolderZipRounded: SvgIconComponent; +export const FolderZipSharp: SvgIconComponent; +export const FolderZipTwoTone: SvgIconComponent; +export const FollowTheSigns: SvgIconComponent; +export const FollowTheSignsOutlined: SvgIconComponent; +export const FollowTheSignsRounded: SvgIconComponent; +export const FollowTheSignsSharp: SvgIconComponent; +export const FollowTheSignsTwoTone: SvgIconComponent; +export const FontDownload: SvgIconComponent; +export const FontDownloadOff: SvgIconComponent; +export const FontDownloadOffOutlined: SvgIconComponent; +export const FontDownloadOffRounded: SvgIconComponent; +export const FontDownloadOffSharp: SvgIconComponent; +export const FontDownloadOffTwoTone: SvgIconComponent; +export const FontDownloadOutlined: SvgIconComponent; +export const FontDownloadRounded: SvgIconComponent; +export const FontDownloadSharp: SvgIconComponent; +export const FontDownloadTwoTone: SvgIconComponent; +export const FoodBank: SvgIconComponent; +export const FoodBankOutlined: SvgIconComponent; +export const FoodBankRounded: SvgIconComponent; +export const FoodBankSharp: SvgIconComponent; +export const FoodBankTwoTone: SvgIconComponent; +export const Forest: SvgIconComponent; +export const ForestOutlined: SvgIconComponent; +export const ForestRounded: SvgIconComponent; +export const ForestSharp: SvgIconComponent; +export const ForestTwoTone: SvgIconComponent; +export const ForkLeft: SvgIconComponent; +export const ForkLeftOutlined: SvgIconComponent; +export const ForkLeftRounded: SvgIconComponent; +export const ForkLeftSharp: SvgIconComponent; +export const ForkLeftTwoTone: SvgIconComponent; +export const ForkRight: SvgIconComponent; +export const ForkRightOutlined: SvgIconComponent; +export const ForkRightRounded: SvgIconComponent; +export const ForkRightSharp: SvgIconComponent; +export const ForkRightTwoTone: SvgIconComponent; +export const FormatAlignCenter: SvgIconComponent; +export const FormatAlignCenterOutlined: SvgIconComponent; +export const FormatAlignCenterRounded: SvgIconComponent; +export const FormatAlignCenterSharp: SvgIconComponent; +export const FormatAlignCenterTwoTone: SvgIconComponent; +export const FormatAlignJustify: SvgIconComponent; +export const FormatAlignJustifyOutlined: SvgIconComponent; +export const FormatAlignJustifyRounded: SvgIconComponent; +export const FormatAlignJustifySharp: SvgIconComponent; +export const FormatAlignJustifyTwoTone: SvgIconComponent; +export const FormatAlignLeft: SvgIconComponent; +export const FormatAlignLeftOutlined: SvgIconComponent; +export const FormatAlignLeftRounded: SvgIconComponent; +export const FormatAlignLeftSharp: SvgIconComponent; +export const FormatAlignLeftTwoTone: SvgIconComponent; +export const FormatAlignRight: SvgIconComponent; +export const FormatAlignRightOutlined: SvgIconComponent; +export const FormatAlignRightRounded: SvgIconComponent; +export const FormatAlignRightSharp: SvgIconComponent; +export const FormatAlignRightTwoTone: SvgIconComponent; +export const FormatBold: SvgIconComponent; +export const FormatBoldOutlined: SvgIconComponent; +export const FormatBoldRounded: SvgIconComponent; +export const FormatBoldSharp: SvgIconComponent; +export const FormatBoldTwoTone: SvgIconComponent; +export const FormatClear: SvgIconComponent; +export const FormatClearOutlined: SvgIconComponent; +export const FormatClearRounded: SvgIconComponent; +export const FormatClearSharp: SvgIconComponent; +export const FormatClearTwoTone: SvgIconComponent; +export const FormatColorFill: SvgIconComponent; +export const FormatColorFillOutlined: SvgIconComponent; +export const FormatColorFillRounded: SvgIconComponent; +export const FormatColorFillSharp: SvgIconComponent; +export const FormatColorFillTwoTone: SvgIconComponent; +export const FormatColorReset: SvgIconComponent; +export const FormatColorResetOutlined: SvgIconComponent; +export const FormatColorResetRounded: SvgIconComponent; +export const FormatColorResetSharp: SvgIconComponent; +export const FormatColorResetTwoTone: SvgIconComponent; +export const FormatColorText: SvgIconComponent; +export const FormatColorTextOutlined: SvgIconComponent; +export const FormatColorTextRounded: SvgIconComponent; +export const FormatColorTextSharp: SvgIconComponent; +export const FormatColorTextTwoTone: SvgIconComponent; +export const FormatIndentDecrease: SvgIconComponent; +export const FormatIndentDecreaseOutlined: SvgIconComponent; +export const FormatIndentDecreaseRounded: SvgIconComponent; +export const FormatIndentDecreaseSharp: SvgIconComponent; +export const FormatIndentDecreaseTwoTone: SvgIconComponent; +export const FormatIndentIncrease: SvgIconComponent; +export const FormatIndentIncreaseOutlined: SvgIconComponent; +export const FormatIndentIncreaseRounded: SvgIconComponent; +export const FormatIndentIncreaseSharp: SvgIconComponent; +export const FormatIndentIncreaseTwoTone: SvgIconComponent; +export const FormatItalic: SvgIconComponent; +export const FormatItalicOutlined: SvgIconComponent; +export const FormatItalicRounded: SvgIconComponent; +export const FormatItalicSharp: SvgIconComponent; +export const FormatItalicTwoTone: SvgIconComponent; +export const FormatLineSpacing: SvgIconComponent; +export const FormatLineSpacingOutlined: SvgIconComponent; +export const FormatLineSpacingRounded: SvgIconComponent; +export const FormatLineSpacingSharp: SvgIconComponent; +export const FormatLineSpacingTwoTone: SvgIconComponent; +export const FormatListBulleted: SvgIconComponent; +export const FormatListBulletedOutlined: SvgIconComponent; +export const FormatListBulletedRounded: SvgIconComponent; +export const FormatListBulletedSharp: SvgIconComponent; +export const FormatListBulletedTwoTone: SvgIconComponent; +export const FormatListNumbered: SvgIconComponent; +export const FormatListNumberedOutlined: SvgIconComponent; +export const FormatListNumberedRounded: SvgIconComponent; +export const FormatListNumberedRtl: SvgIconComponent; +export const FormatListNumberedRtlOutlined: SvgIconComponent; +export const FormatListNumberedRtlRounded: SvgIconComponent; +export const FormatListNumberedRtlSharp: SvgIconComponent; +export const FormatListNumberedRtlTwoTone: SvgIconComponent; +export const FormatListNumberedSharp: SvgIconComponent; +export const FormatListNumberedTwoTone: SvgIconComponent; +export const FormatOverline: SvgIconComponent; +export const FormatOverlineOutlined: SvgIconComponent; +export const FormatOverlineRounded: SvgIconComponent; +export const FormatOverlineSharp: SvgIconComponent; +export const FormatOverlineTwoTone: SvgIconComponent; +export const FormatPaint: SvgIconComponent; +export const FormatPaintOutlined: SvgIconComponent; +export const FormatPaintRounded: SvgIconComponent; +export const FormatPaintSharp: SvgIconComponent; +export const FormatPaintTwoTone: SvgIconComponent; +export const FormatQuote: SvgIconComponent; +export const FormatQuoteOutlined: SvgIconComponent; +export const FormatQuoteRounded: SvgIconComponent; +export const FormatQuoteSharp: SvgIconComponent; +export const FormatQuoteTwoTone: SvgIconComponent; +export const FormatShapes: SvgIconComponent; +export const FormatShapesOutlined: SvgIconComponent; +export const FormatShapesRounded: SvgIconComponent; +export const FormatShapesSharp: SvgIconComponent; +export const FormatShapesTwoTone: SvgIconComponent; +export const FormatSize: SvgIconComponent; +export const FormatSizeOutlined: SvgIconComponent; +export const FormatSizeRounded: SvgIconComponent; +export const FormatSizeSharp: SvgIconComponent; +export const FormatSizeTwoTone: SvgIconComponent; +export const FormatStrikethrough: SvgIconComponent; +export const FormatStrikethroughOutlined: SvgIconComponent; +export const FormatStrikethroughRounded: SvgIconComponent; +export const FormatStrikethroughSharp: SvgIconComponent; +export const FormatStrikethroughTwoTone: SvgIconComponent; +export const FormatTextdirectionLToR: SvgIconComponent; +export const FormatTextdirectionLToROutlined: SvgIconComponent; +export const FormatTextdirectionLToRRounded: SvgIconComponent; +export const FormatTextdirectionLToRSharp: SvgIconComponent; +export const FormatTextdirectionLToRTwoTone: SvgIconComponent; +export const FormatTextdirectionRToL: SvgIconComponent; +export const FormatTextdirectionRToLOutlined: SvgIconComponent; +export const FormatTextdirectionRToLRounded: SvgIconComponent; +export const FormatTextdirectionRToLSharp: SvgIconComponent; +export const FormatTextdirectionRToLTwoTone: SvgIconComponent; +export const FormatUnderlined: SvgIconComponent; +export const FormatUnderlinedOutlined: SvgIconComponent; +export const FormatUnderlinedRounded: SvgIconComponent; +export const FormatUnderlinedSharp: SvgIconComponent; +export const FormatUnderlinedTwoTone: SvgIconComponent; +export const Fort: SvgIconComponent; +export const FortOutlined: SvgIconComponent; +export const FortRounded: SvgIconComponent; +export const FortSharp: SvgIconComponent; +export const FortTwoTone: SvgIconComponent; +export const Forum: SvgIconComponent; +export const ForumOutlined: SvgIconComponent; +export const ForumRounded: SvgIconComponent; +export const ForumSharp: SvgIconComponent; +export const ForumTwoTone: SvgIconComponent; +export const Forward: SvgIconComponent; +export const Forward10: SvgIconComponent; +export const Forward10Outlined: SvgIconComponent; +export const Forward10Rounded: SvgIconComponent; +export const Forward10Sharp: SvgIconComponent; +export const Forward10TwoTone: SvgIconComponent; +export const Forward30: SvgIconComponent; +export const Forward30Outlined: SvgIconComponent; +export const Forward30Rounded: SvgIconComponent; +export const Forward30Sharp: SvgIconComponent; +export const Forward30TwoTone: SvgIconComponent; +export const Forward5: SvgIconComponent; +export const Forward5Outlined: SvgIconComponent; +export const Forward5Rounded: SvgIconComponent; +export const Forward5Sharp: SvgIconComponent; +export const Forward5TwoTone: SvgIconComponent; +export const ForwardOutlined: SvgIconComponent; +export const ForwardRounded: SvgIconComponent; +export const ForwardSharp: SvgIconComponent; +export const ForwardToInbox: SvgIconComponent; +export const ForwardToInboxOutlined: SvgIconComponent; +export const ForwardToInboxRounded: SvgIconComponent; +export const ForwardToInboxSharp: SvgIconComponent; +export const ForwardToInboxTwoTone: SvgIconComponent; +export const ForwardTwoTone: SvgIconComponent; +export const Foundation: SvgIconComponent; +export const FoundationOutlined: SvgIconComponent; +export const FoundationRounded: SvgIconComponent; +export const FoundationSharp: SvgIconComponent; +export const FoundationTwoTone: SvgIconComponent; +export const FourGMobiledata: SvgIconComponent; +export const FourGMobiledataOutlined: SvgIconComponent; +export const FourGMobiledataRounded: SvgIconComponent; +export const FourGMobiledataSharp: SvgIconComponent; +export const FourGMobiledataTwoTone: SvgIconComponent; +export const FourGPlusMobiledata: SvgIconComponent; +export const FourGPlusMobiledataOutlined: SvgIconComponent; +export const FourGPlusMobiledataRounded: SvgIconComponent; +export const FourGPlusMobiledataSharp: SvgIconComponent; +export const FourGPlusMobiledataTwoTone: SvgIconComponent; +export const FourK: SvgIconComponent; +export const FourKOutlined: SvgIconComponent; +export const FourKPlus: SvgIconComponent; +export const FourKPlusOutlined: SvgIconComponent; +export const FourKPlusRounded: SvgIconComponent; +export const FourKPlusSharp: SvgIconComponent; +export const FourKPlusTwoTone: SvgIconComponent; +export const FourKRounded: SvgIconComponent; +export const FourKSharp: SvgIconComponent; +export const FourKTwoTone: SvgIconComponent; +export const FourMp: SvgIconComponent; +export const FourMpOutlined: SvgIconComponent; +export const FourMpRounded: SvgIconComponent; +export const FourMpSharp: SvgIconComponent; +export const FourMpTwoTone: SvgIconComponent; +export const FourteenMp: SvgIconComponent; +export const FourteenMpOutlined: SvgIconComponent; +export const FourteenMpRounded: SvgIconComponent; +export const FourteenMpSharp: SvgIconComponent; +export const FourteenMpTwoTone: SvgIconComponent; +export const FreeBreakfast: SvgIconComponent; +export const FreeBreakfastOutlined: SvgIconComponent; +export const FreeBreakfastRounded: SvgIconComponent; +export const FreeBreakfastSharp: SvgIconComponent; +export const FreeBreakfastTwoTone: SvgIconComponent; +export const Fullscreen: SvgIconComponent; +export const FullscreenExit: SvgIconComponent; +export const FullscreenExitOutlined: SvgIconComponent; +export const FullscreenExitRounded: SvgIconComponent; +export const FullscreenExitSharp: SvgIconComponent; +export const FullscreenExitTwoTone: SvgIconComponent; +export const FullscreenOutlined: SvgIconComponent; +export const FullscreenRounded: SvgIconComponent; +export const FullscreenSharp: SvgIconComponent; +export const FullscreenTwoTone: SvgIconComponent; +export const Functions: SvgIconComponent; +export const FunctionsOutlined: SvgIconComponent; +export const FunctionsRounded: SvgIconComponent; +export const FunctionsSharp: SvgIconComponent; +export const FunctionsTwoTone: SvgIconComponent; +export const GMobiledata: SvgIconComponent; +export const GMobiledataOutlined: SvgIconComponent; +export const GMobiledataRounded: SvgIconComponent; +export const GMobiledataSharp: SvgIconComponent; +export const GMobiledataTwoTone: SvgIconComponent; +export const GTranslate: SvgIconComponent; +export const GTranslateOutlined: SvgIconComponent; +export const GTranslateRounded: SvgIconComponent; +export const GTranslateSharp: SvgIconComponent; +export const GTranslateTwoTone: SvgIconComponent; +export const Gamepad: SvgIconComponent; +export const GamepadOutlined: SvgIconComponent; +export const GamepadRounded: SvgIconComponent; +export const GamepadSharp: SvgIconComponent; +export const GamepadTwoTone: SvgIconComponent; +export const Games: SvgIconComponent; +export const GamesOutlined: SvgIconComponent; +export const GamesRounded: SvgIconComponent; +export const GamesSharp: SvgIconComponent; +export const GamesTwoTone: SvgIconComponent; +export const Garage: SvgIconComponent; +export const GarageOutlined: SvgIconComponent; +export const GarageRounded: SvgIconComponent; +export const GarageSharp: SvgIconComponent; +export const GarageTwoTone: SvgIconComponent; +export const GasMeter: SvgIconComponent; +export const GasMeterOutlined: SvgIconComponent; +export const GasMeterRounded: SvgIconComponent; +export const GasMeterSharp: SvgIconComponent; +export const GasMeterTwoTone: SvgIconComponent; +export const Gavel: SvgIconComponent; +export const GavelOutlined: SvgIconComponent; +export const GavelRounded: SvgIconComponent; +export const GavelSharp: SvgIconComponent; +export const GavelTwoTone: SvgIconComponent; +export const Gesture: SvgIconComponent; +export const GestureOutlined: SvgIconComponent; +export const GestureRounded: SvgIconComponent; +export const GestureSharp: SvgIconComponent; +export const GestureTwoTone: SvgIconComponent; +export const GetApp: SvgIconComponent; +export const GetAppOutlined: SvgIconComponent; +export const GetAppRounded: SvgIconComponent; +export const GetAppSharp: SvgIconComponent; +export const GetAppTwoTone: SvgIconComponent; +export const Gif: SvgIconComponent; +export const GifBox: SvgIconComponent; +export const GifBoxOutlined: SvgIconComponent; +export const GifBoxRounded: SvgIconComponent; +export const GifBoxSharp: SvgIconComponent; +export const GifBoxTwoTone: SvgIconComponent; +export const GifOutlined: SvgIconComponent; +export const GifRounded: SvgIconComponent; +export const GifSharp: SvgIconComponent; +export const GifTwoTone: SvgIconComponent; +export const Girl: SvgIconComponent; +export const GirlOutlined: SvgIconComponent; +export const GirlRounded: SvgIconComponent; +export const GirlSharp: SvgIconComponent; +export const GirlTwoTone: SvgIconComponent; +export const GitHub: SvgIconComponent; +export const Gite: SvgIconComponent; +export const GiteOutlined: SvgIconComponent; +export const GiteRounded: SvgIconComponent; +export const GiteSharp: SvgIconComponent; +export const GiteTwoTone: SvgIconComponent; +export const GolfCourse: SvgIconComponent; +export const GolfCourseOutlined: SvgIconComponent; +export const GolfCourseRounded: SvgIconComponent; +export const GolfCourseSharp: SvgIconComponent; +export const GolfCourseTwoTone: SvgIconComponent; +export const Google: SvgIconComponent; +export const GppBad: SvgIconComponent; +export const GppBadOutlined: SvgIconComponent; +export const GppBadRounded: SvgIconComponent; +export const GppBadSharp: SvgIconComponent; +export const GppBadTwoTone: SvgIconComponent; +export const GppGood: SvgIconComponent; +export const GppGoodOutlined: SvgIconComponent; +export const GppGoodRounded: SvgIconComponent; +export const GppGoodSharp: SvgIconComponent; +export const GppGoodTwoTone: SvgIconComponent; +export const GppMaybe: SvgIconComponent; +export const GppMaybeOutlined: SvgIconComponent; +export const GppMaybeRounded: SvgIconComponent; +export const GppMaybeSharp: SvgIconComponent; +export const GppMaybeTwoTone: SvgIconComponent; +export const GpsFixed: SvgIconComponent; +export const GpsFixedOutlined: SvgIconComponent; +export const GpsFixedRounded: SvgIconComponent; +export const GpsFixedSharp: SvgIconComponent; +export const GpsFixedTwoTone: SvgIconComponent; +export const GpsNotFixed: SvgIconComponent; +export const GpsNotFixedOutlined: SvgIconComponent; +export const GpsNotFixedRounded: SvgIconComponent; +export const GpsNotFixedSharp: SvgIconComponent; +export const GpsNotFixedTwoTone: SvgIconComponent; +export const GpsOff: SvgIconComponent; +export const GpsOffOutlined: SvgIconComponent; +export const GpsOffRounded: SvgIconComponent; +export const GpsOffSharp: SvgIconComponent; +export const GpsOffTwoTone: SvgIconComponent; +export const Grade: SvgIconComponent; +export const GradeOutlined: SvgIconComponent; +export const GradeRounded: SvgIconComponent; +export const GradeSharp: SvgIconComponent; +export const GradeTwoTone: SvgIconComponent; +export const Gradient: SvgIconComponent; +export const GradientOutlined: SvgIconComponent; +export const GradientRounded: SvgIconComponent; +export const GradientSharp: SvgIconComponent; +export const GradientTwoTone: SvgIconComponent; +export const Grading: SvgIconComponent; +export const GradingOutlined: SvgIconComponent; +export const GradingRounded: SvgIconComponent; +export const GradingSharp: SvgIconComponent; +export const GradingTwoTone: SvgIconComponent; +export const Grain: SvgIconComponent; +export const GrainOutlined: SvgIconComponent; +export const GrainRounded: SvgIconComponent; +export const GrainSharp: SvgIconComponent; +export const GrainTwoTone: SvgIconComponent; +export const GraphicEq: SvgIconComponent; +export const GraphicEqOutlined: SvgIconComponent; +export const GraphicEqRounded: SvgIconComponent; +export const GraphicEqSharp: SvgIconComponent; +export const GraphicEqTwoTone: SvgIconComponent; +export const Grass: SvgIconComponent; +export const GrassOutlined: SvgIconComponent; +export const GrassRounded: SvgIconComponent; +export const GrassSharp: SvgIconComponent; +export const GrassTwoTone: SvgIconComponent; +export const Grid3x3: SvgIconComponent; +export const Grid3x3Outlined: SvgIconComponent; +export const Grid3x3Rounded: SvgIconComponent; +export const Grid3x3Sharp: SvgIconComponent; +export const Grid3x3TwoTone: SvgIconComponent; +export const Grid4x4: SvgIconComponent; +export const Grid4x4Outlined: SvgIconComponent; +export const Grid4x4Rounded: SvgIconComponent; +export const Grid4x4Sharp: SvgIconComponent; +export const Grid4x4TwoTone: SvgIconComponent; +export const GridGoldenratio: SvgIconComponent; +export const GridGoldenratioOutlined: SvgIconComponent; +export const GridGoldenratioRounded: SvgIconComponent; +export const GridGoldenratioSharp: SvgIconComponent; +export const GridGoldenratioTwoTone: SvgIconComponent; +export const GridOff: SvgIconComponent; +export const GridOffOutlined: SvgIconComponent; +export const GridOffRounded: SvgIconComponent; +export const GridOffSharp: SvgIconComponent; +export const GridOffTwoTone: SvgIconComponent; +export const GridOn: SvgIconComponent; +export const GridOnOutlined: SvgIconComponent; +export const GridOnRounded: SvgIconComponent; +export const GridOnSharp: SvgIconComponent; +export const GridOnTwoTone: SvgIconComponent; +export const GridView: SvgIconComponent; +export const GridViewOutlined: SvgIconComponent; +export const GridViewRounded: SvgIconComponent; +export const GridViewSharp: SvgIconComponent; +export const GridViewTwoTone: SvgIconComponent; +export const Group: SvgIconComponent; +export const GroupAdd: SvgIconComponent; +export const GroupAddOutlined: SvgIconComponent; +export const GroupAddRounded: SvgIconComponent; +export const GroupAddSharp: SvgIconComponent; +export const GroupAddTwoTone: SvgIconComponent; +export const GroupOutlined: SvgIconComponent; +export const GroupRemove: SvgIconComponent; +export const GroupRemoveOutlined: SvgIconComponent; +export const GroupRemoveRounded: SvgIconComponent; +export const GroupRemoveSharp: SvgIconComponent; +export const GroupRemoveTwoTone: SvgIconComponent; +export const GroupRounded: SvgIconComponent; +export const GroupSharp: SvgIconComponent; +export const GroupTwoTone: SvgIconComponent; +export const GroupWork: SvgIconComponent; +export const GroupWorkOutlined: SvgIconComponent; +export const GroupWorkRounded: SvgIconComponent; +export const GroupWorkSharp: SvgIconComponent; +export const GroupWorkTwoTone: SvgIconComponent; +export const Groups: SvgIconComponent; +export const Groups2: SvgIconComponent; +export const Groups2Outlined: SvgIconComponent; +export const Groups2Rounded: SvgIconComponent; +export const Groups2Sharp: SvgIconComponent; +export const Groups2TwoTone: SvgIconComponent; +export const Groups3: SvgIconComponent; +export const Groups3Outlined: SvgIconComponent; +export const Groups3Rounded: SvgIconComponent; +export const Groups3Sharp: SvgIconComponent; +export const Groups3TwoTone: SvgIconComponent; +export const GroupsOutlined: SvgIconComponent; +export const GroupsRounded: SvgIconComponent; +export const GroupsSharp: SvgIconComponent; +export const GroupsTwoTone: SvgIconComponent; +export const HMobiledata: SvgIconComponent; +export const HMobiledataOutlined: SvgIconComponent; +export const HMobiledataRounded: SvgIconComponent; +export const HMobiledataSharp: SvgIconComponent; +export const HMobiledataTwoTone: SvgIconComponent; +export const HPlusMobiledata: SvgIconComponent; +export const HPlusMobiledataOutlined: SvgIconComponent; +export const HPlusMobiledataRounded: SvgIconComponent; +export const HPlusMobiledataSharp: SvgIconComponent; +export const HPlusMobiledataTwoTone: SvgIconComponent; +export const Hail: SvgIconComponent; +export const HailOutlined: SvgIconComponent; +export const HailRounded: SvgIconComponent; +export const HailSharp: SvgIconComponent; +export const HailTwoTone: SvgIconComponent; +export const Handshake: SvgIconComponent; +export const HandshakeOutlined: SvgIconComponent; +export const HandshakeRounded: SvgIconComponent; +export const HandshakeSharp: SvgIconComponent; +export const HandshakeTwoTone: SvgIconComponent; +export const Handyman: SvgIconComponent; +export const HandymanOutlined: SvgIconComponent; +export const HandymanRounded: SvgIconComponent; +export const HandymanSharp: SvgIconComponent; +export const HandymanTwoTone: SvgIconComponent; +export const Hardware: SvgIconComponent; +export const HardwareOutlined: SvgIconComponent; +export const HardwareRounded: SvgIconComponent; +export const HardwareSharp: SvgIconComponent; +export const HardwareTwoTone: SvgIconComponent; +export const Hd: SvgIconComponent; +export const HdOutlined: SvgIconComponent; +export const HdRounded: SvgIconComponent; +export const HdSharp: SvgIconComponent; +export const HdTwoTone: SvgIconComponent; +export const HdrAuto: SvgIconComponent; +export const HdrAutoOutlined: SvgIconComponent; +export const HdrAutoRounded: SvgIconComponent; +export const HdrAutoSelect: SvgIconComponent; +export const HdrAutoSelectOutlined: SvgIconComponent; +export const HdrAutoSelectRounded: SvgIconComponent; +export const HdrAutoSelectSharp: SvgIconComponent; +export const HdrAutoSelectTwoTone: SvgIconComponent; +export const HdrAutoSharp: SvgIconComponent; +export const HdrAutoTwoTone: SvgIconComponent; +export const HdrEnhancedSelect: SvgIconComponent; +export const HdrEnhancedSelectOutlined: SvgIconComponent; +export const HdrEnhancedSelectRounded: SvgIconComponent; +export const HdrEnhancedSelectSharp: SvgIconComponent; +export const HdrEnhancedSelectTwoTone: SvgIconComponent; +export const HdrOff: SvgIconComponent; +export const HdrOffOutlined: SvgIconComponent; +export const HdrOffRounded: SvgIconComponent; +export const HdrOffSelect: SvgIconComponent; +export const HdrOffSelectOutlined: SvgIconComponent; +export const HdrOffSelectRounded: SvgIconComponent; +export const HdrOffSelectSharp: SvgIconComponent; +export const HdrOffSelectTwoTone: SvgIconComponent; +export const HdrOffSharp: SvgIconComponent; +export const HdrOffTwoTone: SvgIconComponent; +export const HdrOn: SvgIconComponent; +export const HdrOnOutlined: SvgIconComponent; +export const HdrOnRounded: SvgIconComponent; +export const HdrOnSelect: SvgIconComponent; +export const HdrOnSelectOutlined: SvgIconComponent; +export const HdrOnSelectRounded: SvgIconComponent; +export const HdrOnSelectSharp: SvgIconComponent; +export const HdrOnSelectTwoTone: SvgIconComponent; +export const HdrOnSharp: SvgIconComponent; +export const HdrOnTwoTone: SvgIconComponent; +export const HdrPlus: SvgIconComponent; +export const HdrPlusOutlined: SvgIconComponent; +export const HdrPlusRounded: SvgIconComponent; +export const HdrPlusSharp: SvgIconComponent; +export const HdrPlusTwoTone: SvgIconComponent; +export const HdrStrong: SvgIconComponent; +export const HdrStrongOutlined: SvgIconComponent; +export const HdrStrongRounded: SvgIconComponent; +export const HdrStrongSharp: SvgIconComponent; +export const HdrStrongTwoTone: SvgIconComponent; +export const HdrWeak: SvgIconComponent; +export const HdrWeakOutlined: SvgIconComponent; +export const HdrWeakRounded: SvgIconComponent; +export const HdrWeakSharp: SvgIconComponent; +export const HdrWeakTwoTone: SvgIconComponent; +export const Headphones: SvgIconComponent; +export const HeadphonesBattery: SvgIconComponent; +export const HeadphonesBatteryOutlined: SvgIconComponent; +export const HeadphonesBatteryRounded: SvgIconComponent; +export const HeadphonesBatterySharp: SvgIconComponent; +export const HeadphonesBatteryTwoTone: SvgIconComponent; +export const HeadphonesOutlined: SvgIconComponent; +export const HeadphonesRounded: SvgIconComponent; +export const HeadphonesSharp: SvgIconComponent; +export const HeadphonesTwoTone: SvgIconComponent; +export const Headset: SvgIconComponent; +export const HeadsetMic: SvgIconComponent; +export const HeadsetMicOutlined: SvgIconComponent; +export const HeadsetMicRounded: SvgIconComponent; +export const HeadsetMicSharp: SvgIconComponent; +export const HeadsetMicTwoTone: SvgIconComponent; +export const HeadsetOff: SvgIconComponent; +export const HeadsetOffOutlined: SvgIconComponent; +export const HeadsetOffRounded: SvgIconComponent; +export const HeadsetOffSharp: SvgIconComponent; +export const HeadsetOffTwoTone: SvgIconComponent; +export const HeadsetOutlined: SvgIconComponent; +export const HeadsetRounded: SvgIconComponent; +export const HeadsetSharp: SvgIconComponent; +export const HeadsetTwoTone: SvgIconComponent; +export const Healing: SvgIconComponent; +export const HealingOutlined: SvgIconComponent; +export const HealingRounded: SvgIconComponent; +export const HealingSharp: SvgIconComponent; +export const HealingTwoTone: SvgIconComponent; +export const HealthAndSafety: SvgIconComponent; +export const HealthAndSafetyOutlined: SvgIconComponent; +export const HealthAndSafetyRounded: SvgIconComponent; +export const HealthAndSafetySharp: SvgIconComponent; +export const HealthAndSafetyTwoTone: SvgIconComponent; +export const Hearing: SvgIconComponent; +export const HearingDisabled: SvgIconComponent; +export const HearingDisabledOutlined: SvgIconComponent; +export const HearingDisabledRounded: SvgIconComponent; +export const HearingDisabledSharp: SvgIconComponent; +export const HearingDisabledTwoTone: SvgIconComponent; +export const HearingOutlined: SvgIconComponent; +export const HearingRounded: SvgIconComponent; +export const HearingSharp: SvgIconComponent; +export const HearingTwoTone: SvgIconComponent; +export const HeartBroken: SvgIconComponent; +export const HeartBrokenOutlined: SvgIconComponent; +export const HeartBrokenRounded: SvgIconComponent; +export const HeartBrokenSharp: SvgIconComponent; +export const HeartBrokenTwoTone: SvgIconComponent; +export const HeatPump: SvgIconComponent; +export const HeatPumpOutlined: SvgIconComponent; +export const HeatPumpRounded: SvgIconComponent; +export const HeatPumpSharp: SvgIconComponent; +export const HeatPumpTwoTone: SvgIconComponent; +export const Height: SvgIconComponent; +export const HeightOutlined: SvgIconComponent; +export const HeightRounded: SvgIconComponent; +export const HeightSharp: SvgIconComponent; +export const HeightTwoTone: SvgIconComponent; +export const Help: SvgIconComponent; +export const HelpCenter: SvgIconComponent; +export const HelpCenterOutlined: SvgIconComponent; +export const HelpCenterRounded: SvgIconComponent; +export const HelpCenterSharp: SvgIconComponent; +export const HelpCenterTwoTone: SvgIconComponent; +export const HelpOutline: SvgIconComponent; +export const HelpOutlineOutlined: SvgIconComponent; +export const HelpOutlineRounded: SvgIconComponent; +export const HelpOutlineSharp: SvgIconComponent; +export const HelpOutlineTwoTone: SvgIconComponent; +export const HelpOutlined: SvgIconComponent; +export const HelpRounded: SvgIconComponent; +export const HelpSharp: SvgIconComponent; +export const HelpTwoTone: SvgIconComponent; +export const Hevc: SvgIconComponent; +export const HevcOutlined: SvgIconComponent; +export const HevcRounded: SvgIconComponent; +export const HevcSharp: SvgIconComponent; +export const HevcTwoTone: SvgIconComponent; +export const Hexagon: SvgIconComponent; +export const HexagonOutlined: SvgIconComponent; +export const HexagonRounded: SvgIconComponent; +export const HexagonSharp: SvgIconComponent; +export const HexagonTwoTone: SvgIconComponent; +export const HideImage: SvgIconComponent; +export const HideImageOutlined: SvgIconComponent; +export const HideImageRounded: SvgIconComponent; +export const HideImageSharp: SvgIconComponent; +export const HideImageTwoTone: SvgIconComponent; +export const HideSource: SvgIconComponent; +export const HideSourceOutlined: SvgIconComponent; +export const HideSourceRounded: SvgIconComponent; +export const HideSourceSharp: SvgIconComponent; +export const HideSourceTwoTone: SvgIconComponent; +export const HighQuality: SvgIconComponent; +export const HighQualityOutlined: SvgIconComponent; +export const HighQualityRounded: SvgIconComponent; +export const HighQualitySharp: SvgIconComponent; +export const HighQualityTwoTone: SvgIconComponent; +export const Highlight: SvgIconComponent; +export const HighlightAlt: SvgIconComponent; +export const HighlightAltOutlined: SvgIconComponent; +export const HighlightAltRounded: SvgIconComponent; +export const HighlightAltSharp: SvgIconComponent; +export const HighlightAltTwoTone: SvgIconComponent; +export const HighlightOff: SvgIconComponent; +export const HighlightOffOutlined: SvgIconComponent; +export const HighlightOffRounded: SvgIconComponent; +export const HighlightOffSharp: SvgIconComponent; +export const HighlightOffTwoTone: SvgIconComponent; +export const HighlightOutlined: SvgIconComponent; +export const HighlightRounded: SvgIconComponent; +export const HighlightSharp: SvgIconComponent; +export const HighlightTwoTone: SvgIconComponent; +export const Hiking: SvgIconComponent; +export const HikingOutlined: SvgIconComponent; +export const HikingRounded: SvgIconComponent; +export const HikingSharp: SvgIconComponent; +export const HikingTwoTone: SvgIconComponent; +export const History: SvgIconComponent; +export const HistoryEdu: SvgIconComponent; +export const HistoryEduOutlined: SvgIconComponent; +export const HistoryEduRounded: SvgIconComponent; +export const HistoryEduSharp: SvgIconComponent; +export const HistoryEduTwoTone: SvgIconComponent; +export const HistoryOutlined: SvgIconComponent; +export const HistoryRounded: SvgIconComponent; +export const HistorySharp: SvgIconComponent; +export const HistoryToggleOff: SvgIconComponent; +export const HistoryToggleOffOutlined: SvgIconComponent; +export const HistoryToggleOffRounded: SvgIconComponent; +export const HistoryToggleOffSharp: SvgIconComponent; +export const HistoryToggleOffTwoTone: SvgIconComponent; +export const HistoryTwoTone: SvgIconComponent; +export const Hive: SvgIconComponent; +export const HiveOutlined: SvgIconComponent; +export const HiveRounded: SvgIconComponent; +export const HiveSharp: SvgIconComponent; +export const HiveTwoTone: SvgIconComponent; +export const Hls: SvgIconComponent; +export const HlsOff: SvgIconComponent; +export const HlsOffOutlined: SvgIconComponent; +export const HlsOffRounded: SvgIconComponent; +export const HlsOffSharp: SvgIconComponent; +export const HlsOffTwoTone: SvgIconComponent; +export const HlsOutlined: SvgIconComponent; +export const HlsRounded: SvgIconComponent; +export const HlsSharp: SvgIconComponent; +export const HlsTwoTone: SvgIconComponent; +export const HolidayVillage: SvgIconComponent; +export const HolidayVillageOutlined: SvgIconComponent; +export const HolidayVillageRounded: SvgIconComponent; +export const HolidayVillageSharp: SvgIconComponent; +export const HolidayVillageTwoTone: SvgIconComponent; +export const Home: SvgIconComponent; +export const HomeMax: SvgIconComponent; +export const HomeMaxOutlined: SvgIconComponent; +export const HomeMaxRounded: SvgIconComponent; +export const HomeMaxSharp: SvgIconComponent; +export const HomeMaxTwoTone: SvgIconComponent; +export const HomeMini: SvgIconComponent; +export const HomeMiniOutlined: SvgIconComponent; +export const HomeMiniRounded: SvgIconComponent; +export const HomeMiniSharp: SvgIconComponent; +export const HomeMiniTwoTone: SvgIconComponent; +export const HomeOutlined: SvgIconComponent; +export const HomeRepairService: SvgIconComponent; +export const HomeRepairServiceOutlined: SvgIconComponent; +export const HomeRepairServiceRounded: SvgIconComponent; +export const HomeRepairServiceSharp: SvgIconComponent; +export const HomeRepairServiceTwoTone: SvgIconComponent; +export const HomeRounded: SvgIconComponent; +export const HomeSharp: SvgIconComponent; +export const HomeTwoTone: SvgIconComponent; +export const HomeWork: SvgIconComponent; +export const HomeWorkOutlined: SvgIconComponent; +export const HomeWorkRounded: SvgIconComponent; +export const HomeWorkSharp: SvgIconComponent; +export const HomeWorkTwoTone: SvgIconComponent; +export const HorizontalRule: SvgIconComponent; +export const HorizontalRuleOutlined: SvgIconComponent; +export const HorizontalRuleRounded: SvgIconComponent; +export const HorizontalRuleSharp: SvgIconComponent; +export const HorizontalRuleTwoTone: SvgIconComponent; +export const HorizontalSplit: SvgIconComponent; +export const HorizontalSplitOutlined: SvgIconComponent; +export const HorizontalSplitRounded: SvgIconComponent; +export const HorizontalSplitSharp: SvgIconComponent; +export const HorizontalSplitTwoTone: SvgIconComponent; +export const HotTub: SvgIconComponent; +export const HotTubOutlined: SvgIconComponent; +export const HotTubRounded: SvgIconComponent; +export const HotTubSharp: SvgIconComponent; +export const HotTubTwoTone: SvgIconComponent; +export const Hotel: SvgIconComponent; +export const HotelOutlined: SvgIconComponent; +export const HotelRounded: SvgIconComponent; +export const HotelSharp: SvgIconComponent; +export const HotelTwoTone: SvgIconComponent; +export const HourglassBottom: SvgIconComponent; +export const HourglassBottomOutlined: SvgIconComponent; +export const HourglassBottomRounded: SvgIconComponent; +export const HourglassBottomSharp: SvgIconComponent; +export const HourglassBottomTwoTone: SvgIconComponent; +export const HourglassDisabled: SvgIconComponent; +export const HourglassDisabledOutlined: SvgIconComponent; +export const HourglassDisabledRounded: SvgIconComponent; +export const HourglassDisabledSharp: SvgIconComponent; +export const HourglassDisabledTwoTone: SvgIconComponent; +export const HourglassEmpty: SvgIconComponent; +export const HourglassEmptyOutlined: SvgIconComponent; +export const HourglassEmptyRounded: SvgIconComponent; +export const HourglassEmptySharp: SvgIconComponent; +export const HourglassEmptyTwoTone: SvgIconComponent; +export const HourglassFull: SvgIconComponent; +export const HourglassFullOutlined: SvgIconComponent; +export const HourglassFullRounded: SvgIconComponent; +export const HourglassFullSharp: SvgIconComponent; +export const HourglassFullTwoTone: SvgIconComponent; +export const HourglassTop: SvgIconComponent; +export const HourglassTopOutlined: SvgIconComponent; +export const HourglassTopRounded: SvgIconComponent; +export const HourglassTopSharp: SvgIconComponent; +export const HourglassTopTwoTone: SvgIconComponent; +export const House: SvgIconComponent; +export const HouseOutlined: SvgIconComponent; +export const HouseRounded: SvgIconComponent; +export const HouseSharp: SvgIconComponent; +export const HouseSiding: SvgIconComponent; +export const HouseSidingOutlined: SvgIconComponent; +export const HouseSidingRounded: SvgIconComponent; +export const HouseSidingSharp: SvgIconComponent; +export const HouseSidingTwoTone: SvgIconComponent; +export const HouseTwoTone: SvgIconComponent; +export const Houseboat: SvgIconComponent; +export const HouseboatOutlined: SvgIconComponent; +export const HouseboatRounded: SvgIconComponent; +export const HouseboatSharp: SvgIconComponent; +export const HouseboatTwoTone: SvgIconComponent; +export const HowToReg: SvgIconComponent; +export const HowToRegOutlined: SvgIconComponent; +export const HowToRegRounded: SvgIconComponent; +export const HowToRegSharp: SvgIconComponent; +export const HowToRegTwoTone: SvgIconComponent; +export const HowToVote: SvgIconComponent; +export const HowToVoteOutlined: SvgIconComponent; +export const HowToVoteRounded: SvgIconComponent; +export const HowToVoteSharp: SvgIconComponent; +export const HowToVoteTwoTone: SvgIconComponent; +export const Html: SvgIconComponent; +export const HtmlOutlined: SvgIconComponent; +export const HtmlRounded: SvgIconComponent; +export const HtmlSharp: SvgIconComponent; +export const HtmlTwoTone: SvgIconComponent; +export const Http: SvgIconComponent; +export const HttpOutlined: SvgIconComponent; +export const HttpRounded: SvgIconComponent; +export const HttpSharp: SvgIconComponent; +export const HttpTwoTone: SvgIconComponent; +export const Https: SvgIconComponent; +export const HttpsOutlined: SvgIconComponent; +export const HttpsRounded: SvgIconComponent; +export const HttpsSharp: SvgIconComponent; +export const HttpsTwoTone: SvgIconComponent; +export const Hub: SvgIconComponent; +export const HubOutlined: SvgIconComponent; +export const HubRounded: SvgIconComponent; +export const HubSharp: SvgIconComponent; +export const HubTwoTone: SvgIconComponent; +export const Hvac: SvgIconComponent; +export const HvacOutlined: SvgIconComponent; +export const HvacRounded: SvgIconComponent; +export const HvacSharp: SvgIconComponent; +export const HvacTwoTone: SvgIconComponent; +export const IceSkating: SvgIconComponent; +export const IceSkatingOutlined: SvgIconComponent; +export const IceSkatingRounded: SvgIconComponent; +export const IceSkatingSharp: SvgIconComponent; +export const IceSkatingTwoTone: SvgIconComponent; +export const Icecream: SvgIconComponent; +export const IcecreamOutlined: SvgIconComponent; +export const IcecreamRounded: SvgIconComponent; +export const IcecreamSharp: SvgIconComponent; +export const IcecreamTwoTone: SvgIconComponent; +export const Image: SvgIconComponent; +export const ImageAspectRatio: SvgIconComponent; +export const ImageAspectRatioOutlined: SvgIconComponent; +export const ImageAspectRatioRounded: SvgIconComponent; +export const ImageAspectRatioSharp: SvgIconComponent; +export const ImageAspectRatioTwoTone: SvgIconComponent; +export const ImageNotSupported: SvgIconComponent; +export const ImageNotSupportedOutlined: SvgIconComponent; +export const ImageNotSupportedRounded: SvgIconComponent; +export const ImageNotSupportedSharp: SvgIconComponent; +export const ImageNotSupportedTwoTone: SvgIconComponent; +export const ImageOutlined: SvgIconComponent; +export const ImageRounded: SvgIconComponent; +export const ImageSearch: SvgIconComponent; +export const ImageSearchOutlined: SvgIconComponent; +export const ImageSearchRounded: SvgIconComponent; +export const ImageSearchSharp: SvgIconComponent; +export const ImageSearchTwoTone: SvgIconComponent; +export const ImageSharp: SvgIconComponent; +export const ImageTwoTone: SvgIconComponent; +export const ImagesearchRoller: SvgIconComponent; +export const ImagesearchRollerOutlined: SvgIconComponent; +export const ImagesearchRollerRounded: SvgIconComponent; +export const ImagesearchRollerSharp: SvgIconComponent; +export const ImagesearchRollerTwoTone: SvgIconComponent; +export const ImportContacts: SvgIconComponent; +export const ImportContactsOutlined: SvgIconComponent; +export const ImportContactsRounded: SvgIconComponent; +export const ImportContactsSharp: SvgIconComponent; +export const ImportContactsTwoTone: SvgIconComponent; +export const ImportExport: SvgIconComponent; +export const ImportExportOutlined: SvgIconComponent; +export const ImportExportRounded: SvgIconComponent; +export const ImportExportSharp: SvgIconComponent; +export const ImportExportTwoTone: SvgIconComponent; +export const ImportantDevices: SvgIconComponent; +export const ImportantDevicesOutlined: SvgIconComponent; +export const ImportantDevicesRounded: SvgIconComponent; +export const ImportantDevicesSharp: SvgIconComponent; +export const ImportantDevicesTwoTone: SvgIconComponent; +export const Inbox: SvgIconComponent; +export const InboxOutlined: SvgIconComponent; +export const InboxRounded: SvgIconComponent; +export const InboxSharp: SvgIconComponent; +export const InboxTwoTone: SvgIconComponent; +export const IndeterminateCheckBox: SvgIconComponent; +export const IndeterminateCheckBoxOutlined: SvgIconComponent; +export const IndeterminateCheckBoxRounded: SvgIconComponent; +export const IndeterminateCheckBoxSharp: SvgIconComponent; +export const IndeterminateCheckBoxTwoTone: SvgIconComponent; +export const Info: SvgIconComponent; +export const InfoOutlined: SvgIconComponent; +export const InfoRounded: SvgIconComponent; +export const InfoSharp: SvgIconComponent; +export const InfoTwoTone: SvgIconComponent; +export const Input: SvgIconComponent; +export const InputOutlined: SvgIconComponent; +export const InputRounded: SvgIconComponent; +export const InputSharp: SvgIconComponent; +export const InputTwoTone: SvgIconComponent; +export const InsertChart: SvgIconComponent; +export const InsertChartOutlined: SvgIconComponent; +export const InsertChartOutlinedOutlined: SvgIconComponent; +export const InsertChartOutlinedRounded: SvgIconComponent; +export const InsertChartOutlinedSharp: SvgIconComponent; +export const InsertChartOutlinedTwoTone: SvgIconComponent; +export const InsertChartRounded: SvgIconComponent; +export const InsertChartSharp: SvgIconComponent; +export const InsertChartTwoTone: SvgIconComponent; +export const InsertComment: SvgIconComponent; +export const InsertCommentOutlined: SvgIconComponent; +export const InsertCommentRounded: SvgIconComponent; +export const InsertCommentSharp: SvgIconComponent; +export const InsertCommentTwoTone: SvgIconComponent; +export const InsertDriveFile: SvgIconComponent; +export const InsertDriveFileOutlined: SvgIconComponent; +export const InsertDriveFileRounded: SvgIconComponent; +export const InsertDriveFileSharp: SvgIconComponent; +export const InsertDriveFileTwoTone: SvgIconComponent; +export const InsertEmoticon: SvgIconComponent; +export const InsertEmoticonOutlined: SvgIconComponent; +export const InsertEmoticonRounded: SvgIconComponent; +export const InsertEmoticonSharp: SvgIconComponent; +export const InsertEmoticonTwoTone: SvgIconComponent; +export const InsertInvitation: SvgIconComponent; +export const InsertInvitationOutlined: SvgIconComponent; +export const InsertInvitationRounded: SvgIconComponent; +export const InsertInvitationSharp: SvgIconComponent; +export const InsertInvitationTwoTone: SvgIconComponent; +export const InsertLink: SvgIconComponent; +export const InsertLinkOutlined: SvgIconComponent; +export const InsertLinkRounded: SvgIconComponent; +export const InsertLinkSharp: SvgIconComponent; +export const InsertLinkTwoTone: SvgIconComponent; +export const InsertPageBreak: SvgIconComponent; +export const InsertPageBreakOutlined: SvgIconComponent; +export const InsertPageBreakRounded: SvgIconComponent; +export const InsertPageBreakSharp: SvgIconComponent; +export const InsertPageBreakTwoTone: SvgIconComponent; +export const InsertPhoto: SvgIconComponent; +export const InsertPhotoOutlined: SvgIconComponent; +export const InsertPhotoRounded: SvgIconComponent; +export const InsertPhotoSharp: SvgIconComponent; +export const InsertPhotoTwoTone: SvgIconComponent; +export const Insights: SvgIconComponent; +export const InsightsOutlined: SvgIconComponent; +export const InsightsRounded: SvgIconComponent; +export const InsightsSharp: SvgIconComponent; +export const InsightsTwoTone: SvgIconComponent; +export const Instagram: SvgIconComponent; +export const InstallDesktop: SvgIconComponent; +export const InstallDesktopOutlined: SvgIconComponent; +export const InstallDesktopRounded: SvgIconComponent; +export const InstallDesktopSharp: SvgIconComponent; +export const InstallDesktopTwoTone: SvgIconComponent; +export const InstallMobile: SvgIconComponent; +export const InstallMobileOutlined: SvgIconComponent; +export const InstallMobileRounded: SvgIconComponent; +export const InstallMobileSharp: SvgIconComponent; +export const InstallMobileTwoTone: SvgIconComponent; +export const IntegrationInstructions: SvgIconComponent; +export const IntegrationInstructionsOutlined: SvgIconComponent; +export const IntegrationInstructionsRounded: SvgIconComponent; +export const IntegrationInstructionsSharp: SvgIconComponent; +export const IntegrationInstructionsTwoTone: SvgIconComponent; +export const Interests: SvgIconComponent; +export const InterestsOutlined: SvgIconComponent; +export const InterestsRounded: SvgIconComponent; +export const InterestsSharp: SvgIconComponent; +export const InterestsTwoTone: SvgIconComponent; +export const InterpreterMode: SvgIconComponent; +export const InterpreterModeOutlined: SvgIconComponent; +export const InterpreterModeRounded: SvgIconComponent; +export const InterpreterModeSharp: SvgIconComponent; +export const InterpreterModeTwoTone: SvgIconComponent; +export const Inventory: SvgIconComponent; +export const Inventory2: SvgIconComponent; +export const Inventory2Outlined: SvgIconComponent; +export const Inventory2Rounded: SvgIconComponent; +export const Inventory2Sharp: SvgIconComponent; +export const Inventory2TwoTone: SvgIconComponent; +export const InventoryOutlined: SvgIconComponent; +export const InventoryRounded: SvgIconComponent; +export const InventorySharp: SvgIconComponent; +export const InventoryTwoTone: SvgIconComponent; +export const InvertColors: SvgIconComponent; +export const InvertColorsOff: SvgIconComponent; +export const InvertColorsOffOutlined: SvgIconComponent; +export const InvertColorsOffRounded: SvgIconComponent; +export const InvertColorsOffSharp: SvgIconComponent; +export const InvertColorsOffTwoTone: SvgIconComponent; +export const InvertColorsOutlined: SvgIconComponent; +export const InvertColorsRounded: SvgIconComponent; +export const InvertColorsSharp: SvgIconComponent; +export const InvertColorsTwoTone: SvgIconComponent; +export const IosShare: SvgIconComponent; +export const IosShareOutlined: SvgIconComponent; +export const IosShareRounded: SvgIconComponent; +export const IosShareSharp: SvgIconComponent; +export const IosShareTwoTone: SvgIconComponent; +export const Iron: SvgIconComponent; +export const IronOutlined: SvgIconComponent; +export const IronRounded: SvgIconComponent; +export const IronSharp: SvgIconComponent; +export const IronTwoTone: SvgIconComponent; +export const Iso: SvgIconComponent; +export const IsoOutlined: SvgIconComponent; +export const IsoRounded: SvgIconComponent; +export const IsoSharp: SvgIconComponent; +export const IsoTwoTone: SvgIconComponent; +export const Javascript: SvgIconComponent; +export const JavascriptOutlined: SvgIconComponent; +export const JavascriptRounded: SvgIconComponent; +export const JavascriptSharp: SvgIconComponent; +export const JavascriptTwoTone: SvgIconComponent; +export const JoinFull: SvgIconComponent; +export const JoinFullOutlined: SvgIconComponent; +export const JoinFullRounded: SvgIconComponent; +export const JoinFullSharp: SvgIconComponent; +export const JoinFullTwoTone: SvgIconComponent; +export const JoinInner: SvgIconComponent; +export const JoinInnerOutlined: SvgIconComponent; +export const JoinInnerRounded: SvgIconComponent; +export const JoinInnerSharp: SvgIconComponent; +export const JoinInnerTwoTone: SvgIconComponent; +export const JoinLeft: SvgIconComponent; +export const JoinLeftOutlined: SvgIconComponent; +export const JoinLeftRounded: SvgIconComponent; +export const JoinLeftSharp: SvgIconComponent; +export const JoinLeftTwoTone: SvgIconComponent; +export const JoinRight: SvgIconComponent; +export const JoinRightOutlined: SvgIconComponent; +export const JoinRightRounded: SvgIconComponent; +export const JoinRightSharp: SvgIconComponent; +export const JoinRightTwoTone: SvgIconComponent; +export const Kayaking: SvgIconComponent; +export const KayakingOutlined: SvgIconComponent; +export const KayakingRounded: SvgIconComponent; +export const KayakingSharp: SvgIconComponent; +export const KayakingTwoTone: SvgIconComponent; +export const KebabDining: SvgIconComponent; +export const KebabDiningOutlined: SvgIconComponent; +export const KebabDiningRounded: SvgIconComponent; +export const KebabDiningSharp: SvgIconComponent; +export const KebabDiningTwoTone: SvgIconComponent; +export const Key: SvgIconComponent; +export const KeyOff: SvgIconComponent; +export const KeyOffOutlined: SvgIconComponent; +export const KeyOffRounded: SvgIconComponent; +export const KeyOffSharp: SvgIconComponent; +export const KeyOffTwoTone: SvgIconComponent; +export const KeyOutlined: SvgIconComponent; +export const KeyRounded: SvgIconComponent; +export const KeySharp: SvgIconComponent; +export const KeyTwoTone: SvgIconComponent; +export const Keyboard: SvgIconComponent; +export const KeyboardAlt: SvgIconComponent; +export const KeyboardAltOutlined: SvgIconComponent; +export const KeyboardAltRounded: SvgIconComponent; +export const KeyboardAltSharp: SvgIconComponent; +export const KeyboardAltTwoTone: SvgIconComponent; +export const KeyboardArrowDown: SvgIconComponent; +export const KeyboardArrowDownOutlined: SvgIconComponent; +export const KeyboardArrowDownRounded: SvgIconComponent; +export const KeyboardArrowDownSharp: SvgIconComponent; +export const KeyboardArrowDownTwoTone: SvgIconComponent; +export const KeyboardArrowLeft: SvgIconComponent; +export const KeyboardArrowLeftOutlined: SvgIconComponent; +export const KeyboardArrowLeftRounded: SvgIconComponent; +export const KeyboardArrowLeftSharp: SvgIconComponent; +export const KeyboardArrowLeftTwoTone: SvgIconComponent; +export const KeyboardArrowRight: SvgIconComponent; +export const KeyboardArrowRightOutlined: SvgIconComponent; +export const KeyboardArrowRightRounded: SvgIconComponent; +export const KeyboardArrowRightSharp: SvgIconComponent; +export const KeyboardArrowRightTwoTone: SvgIconComponent; +export const KeyboardArrowUp: SvgIconComponent; +export const KeyboardArrowUpOutlined: SvgIconComponent; +export const KeyboardArrowUpRounded: SvgIconComponent; +export const KeyboardArrowUpSharp: SvgIconComponent; +export const KeyboardArrowUpTwoTone: SvgIconComponent; +export const KeyboardBackspace: SvgIconComponent; +export const KeyboardBackspaceOutlined: SvgIconComponent; +export const KeyboardBackspaceRounded: SvgIconComponent; +export const KeyboardBackspaceSharp: SvgIconComponent; +export const KeyboardBackspaceTwoTone: SvgIconComponent; +export const KeyboardCapslock: SvgIconComponent; +export const KeyboardCapslockOutlined: SvgIconComponent; +export const KeyboardCapslockRounded: SvgIconComponent; +export const KeyboardCapslockSharp: SvgIconComponent; +export const KeyboardCapslockTwoTone: SvgIconComponent; +export const KeyboardCommandKey: SvgIconComponent; +export const KeyboardCommandKeyOutlined: SvgIconComponent; +export const KeyboardCommandKeyRounded: SvgIconComponent; +export const KeyboardCommandKeySharp: SvgIconComponent; +export const KeyboardCommandKeyTwoTone: SvgIconComponent; +export const KeyboardControlKey: SvgIconComponent; +export const KeyboardControlKeyOutlined: SvgIconComponent; +export const KeyboardControlKeyRounded: SvgIconComponent; +export const KeyboardControlKeySharp: SvgIconComponent; +export const KeyboardControlKeyTwoTone: SvgIconComponent; +export const KeyboardDoubleArrowDown: SvgIconComponent; +export const KeyboardDoubleArrowDownOutlined: SvgIconComponent; +export const KeyboardDoubleArrowDownRounded: SvgIconComponent; +export const KeyboardDoubleArrowDownSharp: SvgIconComponent; +export const KeyboardDoubleArrowDownTwoTone: SvgIconComponent; +export const KeyboardDoubleArrowLeft: SvgIconComponent; +export const KeyboardDoubleArrowLeftOutlined: SvgIconComponent; +export const KeyboardDoubleArrowLeftRounded: SvgIconComponent; +export const KeyboardDoubleArrowLeftSharp: SvgIconComponent; +export const KeyboardDoubleArrowLeftTwoTone: SvgIconComponent; +export const KeyboardDoubleArrowRight: SvgIconComponent; +export const KeyboardDoubleArrowRightOutlined: SvgIconComponent; +export const KeyboardDoubleArrowRightRounded: SvgIconComponent; +export const KeyboardDoubleArrowRightSharp: SvgIconComponent; +export const KeyboardDoubleArrowRightTwoTone: SvgIconComponent; +export const KeyboardDoubleArrowUp: SvgIconComponent; +export const KeyboardDoubleArrowUpOutlined: SvgIconComponent; +export const KeyboardDoubleArrowUpRounded: SvgIconComponent; +export const KeyboardDoubleArrowUpSharp: SvgIconComponent; +export const KeyboardDoubleArrowUpTwoTone: SvgIconComponent; +export const KeyboardHide: SvgIconComponent; +export const KeyboardHideOutlined: SvgIconComponent; +export const KeyboardHideRounded: SvgIconComponent; +export const KeyboardHideSharp: SvgIconComponent; +export const KeyboardHideTwoTone: SvgIconComponent; +export const KeyboardOptionKey: SvgIconComponent; +export const KeyboardOptionKeyOutlined: SvgIconComponent; +export const KeyboardOptionKeyRounded: SvgIconComponent; +export const KeyboardOptionKeySharp: SvgIconComponent; +export const KeyboardOptionKeyTwoTone: SvgIconComponent; +export const KeyboardOutlined: SvgIconComponent; +export const KeyboardReturn: SvgIconComponent; +export const KeyboardReturnOutlined: SvgIconComponent; +export const KeyboardReturnRounded: SvgIconComponent; +export const KeyboardReturnSharp: SvgIconComponent; +export const KeyboardReturnTwoTone: SvgIconComponent; +export const KeyboardRounded: SvgIconComponent; +export const KeyboardSharp: SvgIconComponent; +export const KeyboardTab: SvgIconComponent; +export const KeyboardTabOutlined: SvgIconComponent; +export const KeyboardTabRounded: SvgIconComponent; +export const KeyboardTabSharp: SvgIconComponent; +export const KeyboardTabTwoTone: SvgIconComponent; +export const KeyboardTwoTone: SvgIconComponent; +export const KeyboardVoice: SvgIconComponent; +export const KeyboardVoiceOutlined: SvgIconComponent; +export const KeyboardVoiceRounded: SvgIconComponent; +export const KeyboardVoiceSharp: SvgIconComponent; +export const KeyboardVoiceTwoTone: SvgIconComponent; +export const KingBed: SvgIconComponent; +export const KingBedOutlined: SvgIconComponent; +export const KingBedRounded: SvgIconComponent; +export const KingBedSharp: SvgIconComponent; +export const KingBedTwoTone: SvgIconComponent; +export const Kitchen: SvgIconComponent; +export const KitchenOutlined: SvgIconComponent; +export const KitchenRounded: SvgIconComponent; +export const KitchenSharp: SvgIconComponent; +export const KitchenTwoTone: SvgIconComponent; +export const Kitesurfing: SvgIconComponent; +export const KitesurfingOutlined: SvgIconComponent; +export const KitesurfingRounded: SvgIconComponent; +export const KitesurfingSharp: SvgIconComponent; +export const KitesurfingTwoTone: SvgIconComponent; +export const Label: SvgIconComponent; +export const LabelImportant: SvgIconComponent; +export const LabelImportantOutlined: SvgIconComponent; +export const LabelImportantRounded: SvgIconComponent; +export const LabelImportantSharp: SvgIconComponent; +export const LabelImportantTwoTone: SvgIconComponent; +export const LabelOff: SvgIconComponent; +export const LabelOffOutlined: SvgIconComponent; +export const LabelOffRounded: SvgIconComponent; +export const LabelOffSharp: SvgIconComponent; +export const LabelOffTwoTone: SvgIconComponent; +export const LabelOutlined: SvgIconComponent; +export const LabelRounded: SvgIconComponent; +export const LabelSharp: SvgIconComponent; +export const LabelTwoTone: SvgIconComponent; +export const Lan: SvgIconComponent; +export const LanOutlined: SvgIconComponent; +export const LanRounded: SvgIconComponent; +export const LanSharp: SvgIconComponent; +export const LanTwoTone: SvgIconComponent; +export const Landscape: SvgIconComponent; +export const LandscapeOutlined: SvgIconComponent; +export const LandscapeRounded: SvgIconComponent; +export const LandscapeSharp: SvgIconComponent; +export const LandscapeTwoTone: SvgIconComponent; +export const Landslide: SvgIconComponent; +export const LandslideOutlined: SvgIconComponent; +export const LandslideRounded: SvgIconComponent; +export const LandslideSharp: SvgIconComponent; +export const LandslideTwoTone: SvgIconComponent; +export const Language: SvgIconComponent; +export const LanguageOutlined: SvgIconComponent; +export const LanguageRounded: SvgIconComponent; +export const LanguageSharp: SvgIconComponent; +export const LanguageTwoTone: SvgIconComponent; +export const Laptop: SvgIconComponent; +export const LaptopChromebook: SvgIconComponent; +export const LaptopChromebookOutlined: SvgIconComponent; +export const LaptopChromebookRounded: SvgIconComponent; +export const LaptopChromebookSharp: SvgIconComponent; +export const LaptopChromebookTwoTone: SvgIconComponent; +export const LaptopMac: SvgIconComponent; +export const LaptopMacOutlined: SvgIconComponent; +export const LaptopMacRounded: SvgIconComponent; +export const LaptopMacSharp: SvgIconComponent; +export const LaptopMacTwoTone: SvgIconComponent; +export const LaptopOutlined: SvgIconComponent; +export const LaptopRounded: SvgIconComponent; +export const LaptopSharp: SvgIconComponent; +export const LaptopTwoTone: SvgIconComponent; +export const LaptopWindows: SvgIconComponent; +export const LaptopWindowsOutlined: SvgIconComponent; +export const LaptopWindowsRounded: SvgIconComponent; +export const LaptopWindowsSharp: SvgIconComponent; +export const LaptopWindowsTwoTone: SvgIconComponent; +export const LastPage: SvgIconComponent; +export const LastPageOutlined: SvgIconComponent; +export const LastPageRounded: SvgIconComponent; +export const LastPageSharp: SvgIconComponent; +export const LastPageTwoTone: SvgIconComponent; +export const Launch: SvgIconComponent; +export const LaunchOutlined: SvgIconComponent; +export const LaunchRounded: SvgIconComponent; +export const LaunchSharp: SvgIconComponent; +export const LaunchTwoTone: SvgIconComponent; +export const Layers: SvgIconComponent; +export const LayersClear: SvgIconComponent; +export const LayersClearOutlined: SvgIconComponent; +export const LayersClearRounded: SvgIconComponent; +export const LayersClearSharp: SvgIconComponent; +export const LayersClearTwoTone: SvgIconComponent; +export const LayersOutlined: SvgIconComponent; +export const LayersRounded: SvgIconComponent; +export const LayersSharp: SvgIconComponent; +export const LayersTwoTone: SvgIconComponent; +export const Leaderboard: SvgIconComponent; +export const LeaderboardOutlined: SvgIconComponent; +export const LeaderboardRounded: SvgIconComponent; +export const LeaderboardSharp: SvgIconComponent; +export const LeaderboardTwoTone: SvgIconComponent; +export const LeakAdd: SvgIconComponent; +export const LeakAddOutlined: SvgIconComponent; +export const LeakAddRounded: SvgIconComponent; +export const LeakAddSharp: SvgIconComponent; +export const LeakAddTwoTone: SvgIconComponent; +export const LeakRemove: SvgIconComponent; +export const LeakRemoveOutlined: SvgIconComponent; +export const LeakRemoveRounded: SvgIconComponent; +export const LeakRemoveSharp: SvgIconComponent; +export const LeakRemoveTwoTone: SvgIconComponent; +export const LegendToggle: SvgIconComponent; +export const LegendToggleOutlined: SvgIconComponent; +export const LegendToggleRounded: SvgIconComponent; +export const LegendToggleSharp: SvgIconComponent; +export const LegendToggleTwoTone: SvgIconComponent; +export const Lens: SvgIconComponent; +export const LensBlur: SvgIconComponent; +export const LensBlurOutlined: SvgIconComponent; +export const LensBlurRounded: SvgIconComponent; +export const LensBlurSharp: SvgIconComponent; +export const LensBlurTwoTone: SvgIconComponent; +export const LensOutlined: SvgIconComponent; +export const LensRounded: SvgIconComponent; +export const LensSharp: SvgIconComponent; +export const LensTwoTone: SvgIconComponent; +export const LibraryAdd: SvgIconComponent; +export const LibraryAddCheck: SvgIconComponent; +export const LibraryAddCheckOutlined: SvgIconComponent; +export const LibraryAddCheckRounded: SvgIconComponent; +export const LibraryAddCheckSharp: SvgIconComponent; +export const LibraryAddCheckTwoTone: SvgIconComponent; +export const LibraryAddOutlined: SvgIconComponent; +export const LibraryAddRounded: SvgIconComponent; +export const LibraryAddSharp: SvgIconComponent; +export const LibraryAddTwoTone: SvgIconComponent; +export const LibraryBooks: SvgIconComponent; +export const LibraryBooksOutlined: SvgIconComponent; +export const LibraryBooksRounded: SvgIconComponent; +export const LibraryBooksSharp: SvgIconComponent; +export const LibraryBooksTwoTone: SvgIconComponent; +export const LibraryMusic: SvgIconComponent; +export const LibraryMusicOutlined: SvgIconComponent; +export const LibraryMusicRounded: SvgIconComponent; +export const LibraryMusicSharp: SvgIconComponent; +export const LibraryMusicTwoTone: SvgIconComponent; +export const Light: SvgIconComponent; +export const LightMode: SvgIconComponent; +export const LightModeOutlined: SvgIconComponent; +export const LightModeRounded: SvgIconComponent; +export const LightModeSharp: SvgIconComponent; +export const LightModeTwoTone: SvgIconComponent; +export const LightOutlined: SvgIconComponent; +export const LightRounded: SvgIconComponent; +export const LightSharp: SvgIconComponent; +export const LightTwoTone: SvgIconComponent; +export const Lightbulb: SvgIconComponent; +export const LightbulbCircle: SvgIconComponent; +export const LightbulbCircleOutlined: SvgIconComponent; +export const LightbulbCircleRounded: SvgIconComponent; +export const LightbulbCircleSharp: SvgIconComponent; +export const LightbulbCircleTwoTone: SvgIconComponent; +export const LightbulbOutlined: SvgIconComponent; +export const LightbulbRounded: SvgIconComponent; +export const LightbulbSharp: SvgIconComponent; +export const LightbulbTwoTone: SvgIconComponent; +export const LineAxis: SvgIconComponent; +export const LineAxisOutlined: SvgIconComponent; +export const LineAxisRounded: SvgIconComponent; +export const LineAxisSharp: SvgIconComponent; +export const LineAxisTwoTone: SvgIconComponent; +export const LineStyle: SvgIconComponent; +export const LineStyleOutlined: SvgIconComponent; +export const LineStyleRounded: SvgIconComponent; +export const LineStyleSharp: SvgIconComponent; +export const LineStyleTwoTone: SvgIconComponent; +export const LineWeight: SvgIconComponent; +export const LineWeightOutlined: SvgIconComponent; +export const LineWeightRounded: SvgIconComponent; +export const LineWeightSharp: SvgIconComponent; +export const LineWeightTwoTone: SvgIconComponent; +export const LinearScale: SvgIconComponent; +export const LinearScaleOutlined: SvgIconComponent; +export const LinearScaleRounded: SvgIconComponent; +export const LinearScaleSharp: SvgIconComponent; +export const LinearScaleTwoTone: SvgIconComponent; +export const Link: SvgIconComponent; +export const LinkOff: SvgIconComponent; +export const LinkOffOutlined: SvgIconComponent; +export const LinkOffRounded: SvgIconComponent; +export const LinkOffSharp: SvgIconComponent; +export const LinkOffTwoTone: SvgIconComponent; +export const LinkOutlined: SvgIconComponent; +export const LinkRounded: SvgIconComponent; +export const LinkSharp: SvgIconComponent; +export const LinkTwoTone: SvgIconComponent; +export const LinkedCamera: SvgIconComponent; +export const LinkedCameraOutlined: SvgIconComponent; +export const LinkedCameraRounded: SvgIconComponent; +export const LinkedCameraSharp: SvgIconComponent; +export const LinkedCameraTwoTone: SvgIconComponent; +export const LinkedIn: SvgIconComponent; +export const Liquor: SvgIconComponent; +export const LiquorOutlined: SvgIconComponent; +export const LiquorRounded: SvgIconComponent; +export const LiquorSharp: SvgIconComponent; +export const LiquorTwoTone: SvgIconComponent; +export const List: SvgIconComponent; +export const ListAlt: SvgIconComponent; +export const ListAltOutlined: SvgIconComponent; +export const ListAltRounded: SvgIconComponent; +export const ListAltSharp: SvgIconComponent; +export const ListAltTwoTone: SvgIconComponent; +export const ListOutlined: SvgIconComponent; +export const ListRounded: SvgIconComponent; +export const ListSharp: SvgIconComponent; +export const ListTwoTone: SvgIconComponent; +export const LiveHelp: SvgIconComponent; +export const LiveHelpOutlined: SvgIconComponent; +export const LiveHelpRounded: SvgIconComponent; +export const LiveHelpSharp: SvgIconComponent; +export const LiveHelpTwoTone: SvgIconComponent; +export const LiveTv: SvgIconComponent; +export const LiveTvOutlined: SvgIconComponent; +export const LiveTvRounded: SvgIconComponent; +export const LiveTvSharp: SvgIconComponent; +export const LiveTvTwoTone: SvgIconComponent; +export const Living: SvgIconComponent; +export const LivingOutlined: SvgIconComponent; +export const LivingRounded: SvgIconComponent; +export const LivingSharp: SvgIconComponent; +export const LivingTwoTone: SvgIconComponent; +export const LocalActivity: SvgIconComponent; +export const LocalActivityOutlined: SvgIconComponent; +export const LocalActivityRounded: SvgIconComponent; +export const LocalActivitySharp: SvgIconComponent; +export const LocalActivityTwoTone: SvgIconComponent; +export const LocalAirport: SvgIconComponent; +export const LocalAirportOutlined: SvgIconComponent; +export const LocalAirportRounded: SvgIconComponent; +export const LocalAirportSharp: SvgIconComponent; +export const LocalAirportTwoTone: SvgIconComponent; +export const LocalAtm: SvgIconComponent; +export const LocalAtmOutlined: SvgIconComponent; +export const LocalAtmRounded: SvgIconComponent; +export const LocalAtmSharp: SvgIconComponent; +export const LocalAtmTwoTone: SvgIconComponent; +export const LocalBar: SvgIconComponent; +export const LocalBarOutlined: SvgIconComponent; +export const LocalBarRounded: SvgIconComponent; +export const LocalBarSharp: SvgIconComponent; +export const LocalBarTwoTone: SvgIconComponent; +export const LocalCafe: SvgIconComponent; +export const LocalCafeOutlined: SvgIconComponent; +export const LocalCafeRounded: SvgIconComponent; +export const LocalCafeSharp: SvgIconComponent; +export const LocalCafeTwoTone: SvgIconComponent; +export const LocalCarWash: SvgIconComponent; +export const LocalCarWashOutlined: SvgIconComponent; +export const LocalCarWashRounded: SvgIconComponent; +export const LocalCarWashSharp: SvgIconComponent; +export const LocalCarWashTwoTone: SvgIconComponent; +export const LocalConvenienceStore: SvgIconComponent; +export const LocalConvenienceStoreOutlined: SvgIconComponent; +export const LocalConvenienceStoreRounded: SvgIconComponent; +export const LocalConvenienceStoreSharp: SvgIconComponent; +export const LocalConvenienceStoreTwoTone: SvgIconComponent; +export const LocalDining: SvgIconComponent; +export const LocalDiningOutlined: SvgIconComponent; +export const LocalDiningRounded: SvgIconComponent; +export const LocalDiningSharp: SvgIconComponent; +export const LocalDiningTwoTone: SvgIconComponent; +export const LocalDrink: SvgIconComponent; +export const LocalDrinkOutlined: SvgIconComponent; +export const LocalDrinkRounded: SvgIconComponent; +export const LocalDrinkSharp: SvgIconComponent; +export const LocalDrinkTwoTone: SvgIconComponent; +export const LocalFireDepartment: SvgIconComponent; +export const LocalFireDepartmentOutlined: SvgIconComponent; +export const LocalFireDepartmentRounded: SvgIconComponent; +export const LocalFireDepartmentSharp: SvgIconComponent; +export const LocalFireDepartmentTwoTone: SvgIconComponent; +export const LocalFlorist: SvgIconComponent; +export const LocalFloristOutlined: SvgIconComponent; +export const LocalFloristRounded: SvgIconComponent; +export const LocalFloristSharp: SvgIconComponent; +export const LocalFloristTwoTone: SvgIconComponent; +export const LocalGasStation: SvgIconComponent; +export const LocalGasStationOutlined: SvgIconComponent; +export const LocalGasStationRounded: SvgIconComponent; +export const LocalGasStationSharp: SvgIconComponent; +export const LocalGasStationTwoTone: SvgIconComponent; +export const LocalGroceryStore: SvgIconComponent; +export const LocalGroceryStoreOutlined: SvgIconComponent; +export const LocalGroceryStoreRounded: SvgIconComponent; +export const LocalGroceryStoreSharp: SvgIconComponent; +export const LocalGroceryStoreTwoTone: SvgIconComponent; +export const LocalHospital: SvgIconComponent; +export const LocalHospitalOutlined: SvgIconComponent; +export const LocalHospitalRounded: SvgIconComponent; +export const LocalHospitalSharp: SvgIconComponent; +export const LocalHospitalTwoTone: SvgIconComponent; +export const LocalHotel: SvgIconComponent; +export const LocalHotelOutlined: SvgIconComponent; +export const LocalHotelRounded: SvgIconComponent; +export const LocalHotelSharp: SvgIconComponent; +export const LocalHotelTwoTone: SvgIconComponent; +export const LocalLaundryService: SvgIconComponent; +export const LocalLaundryServiceOutlined: SvgIconComponent; +export const LocalLaundryServiceRounded: SvgIconComponent; +export const LocalLaundryServiceSharp: SvgIconComponent; +export const LocalLaundryServiceTwoTone: SvgIconComponent; +export const LocalLibrary: SvgIconComponent; +export const LocalLibraryOutlined: SvgIconComponent; +export const LocalLibraryRounded: SvgIconComponent; +export const LocalLibrarySharp: SvgIconComponent; +export const LocalLibraryTwoTone: SvgIconComponent; +export const LocalMall: SvgIconComponent; +export const LocalMallOutlined: SvgIconComponent; +export const LocalMallRounded: SvgIconComponent; +export const LocalMallSharp: SvgIconComponent; +export const LocalMallTwoTone: SvgIconComponent; +export const LocalMovies: SvgIconComponent; +export const LocalMoviesOutlined: SvgIconComponent; +export const LocalMoviesRounded: SvgIconComponent; +export const LocalMoviesSharp: SvgIconComponent; +export const LocalMoviesTwoTone: SvgIconComponent; +export const LocalOffer: SvgIconComponent; +export const LocalOfferOutlined: SvgIconComponent; +export const LocalOfferRounded: SvgIconComponent; +export const LocalOfferSharp: SvgIconComponent; +export const LocalOfferTwoTone: SvgIconComponent; +export const LocalParking: SvgIconComponent; +export const LocalParkingOutlined: SvgIconComponent; +export const LocalParkingRounded: SvgIconComponent; +export const LocalParkingSharp: SvgIconComponent; +export const LocalParkingTwoTone: SvgIconComponent; +export const LocalPharmacy: SvgIconComponent; +export const LocalPharmacyOutlined: SvgIconComponent; +export const LocalPharmacyRounded: SvgIconComponent; +export const LocalPharmacySharp: SvgIconComponent; +export const LocalPharmacyTwoTone: SvgIconComponent; +export const LocalPhone: SvgIconComponent; +export const LocalPhoneOutlined: SvgIconComponent; +export const LocalPhoneRounded: SvgIconComponent; +export const LocalPhoneSharp: SvgIconComponent; +export const LocalPhoneTwoTone: SvgIconComponent; +export const LocalPizza: SvgIconComponent; +export const LocalPizzaOutlined: SvgIconComponent; +export const LocalPizzaRounded: SvgIconComponent; +export const LocalPizzaSharp: SvgIconComponent; +export const LocalPizzaTwoTone: SvgIconComponent; +export const LocalPlay: SvgIconComponent; +export const LocalPlayOutlined: SvgIconComponent; +export const LocalPlayRounded: SvgIconComponent; +export const LocalPlaySharp: SvgIconComponent; +export const LocalPlayTwoTone: SvgIconComponent; +export const LocalPolice: SvgIconComponent; +export const LocalPoliceOutlined: SvgIconComponent; +export const LocalPoliceRounded: SvgIconComponent; +export const LocalPoliceSharp: SvgIconComponent; +export const LocalPoliceTwoTone: SvgIconComponent; +export const LocalPostOffice: SvgIconComponent; +export const LocalPostOfficeOutlined: SvgIconComponent; +export const LocalPostOfficeRounded: SvgIconComponent; +export const LocalPostOfficeSharp: SvgIconComponent; +export const LocalPostOfficeTwoTone: SvgIconComponent; +export const LocalPrintshop: SvgIconComponent; +export const LocalPrintshopOutlined: SvgIconComponent; +export const LocalPrintshopRounded: SvgIconComponent; +export const LocalPrintshopSharp: SvgIconComponent; +export const LocalPrintshopTwoTone: SvgIconComponent; +export const LocalSee: SvgIconComponent; +export const LocalSeeOutlined: SvgIconComponent; +export const LocalSeeRounded: SvgIconComponent; +export const LocalSeeSharp: SvgIconComponent; +export const LocalSeeTwoTone: SvgIconComponent; +export const LocalShipping: SvgIconComponent; +export const LocalShippingOutlined: SvgIconComponent; +export const LocalShippingRounded: SvgIconComponent; +export const LocalShippingSharp: SvgIconComponent; +export const LocalShippingTwoTone: SvgIconComponent; +export const LocalTaxi: SvgIconComponent; +export const LocalTaxiOutlined: SvgIconComponent; +export const LocalTaxiRounded: SvgIconComponent; +export const LocalTaxiSharp: SvgIconComponent; +export const LocalTaxiTwoTone: SvgIconComponent; +export const LocationCity: SvgIconComponent; +export const LocationCityOutlined: SvgIconComponent; +export const LocationCityRounded: SvgIconComponent; +export const LocationCitySharp: SvgIconComponent; +export const LocationCityTwoTone: SvgIconComponent; +export const LocationDisabled: SvgIconComponent; +export const LocationDisabledOutlined: SvgIconComponent; +export const LocationDisabledRounded: SvgIconComponent; +export const LocationDisabledSharp: SvgIconComponent; +export const LocationDisabledTwoTone: SvgIconComponent; +export const LocationOff: SvgIconComponent; +export const LocationOffOutlined: SvgIconComponent; +export const LocationOffRounded: SvgIconComponent; +export const LocationOffSharp: SvgIconComponent; +export const LocationOffTwoTone: SvgIconComponent; +export const LocationOn: SvgIconComponent; +export const LocationOnOutlined: SvgIconComponent; +export const LocationOnRounded: SvgIconComponent; +export const LocationOnSharp: SvgIconComponent; +export const LocationOnTwoTone: SvgIconComponent; +export const LocationSearching: SvgIconComponent; +export const LocationSearchingOutlined: SvgIconComponent; +export const LocationSearchingRounded: SvgIconComponent; +export const LocationSearchingSharp: SvgIconComponent; +export const LocationSearchingTwoTone: SvgIconComponent; +export const Lock: SvgIconComponent; +export const LockClock: SvgIconComponent; +export const LockClockOutlined: SvgIconComponent; +export const LockClockRounded: SvgIconComponent; +export const LockClockSharp: SvgIconComponent; +export const LockClockTwoTone: SvgIconComponent; +export const LockOpen: SvgIconComponent; +export const LockOpenOutlined: SvgIconComponent; +export const LockOpenRounded: SvgIconComponent; +export const LockOpenSharp: SvgIconComponent; +export const LockOpenTwoTone: SvgIconComponent; +export const LockOutlined: SvgIconComponent; +export const LockPerson: SvgIconComponent; +export const LockPersonOutlined: SvgIconComponent; +export const LockPersonRounded: SvgIconComponent; +export const LockPersonSharp: SvgIconComponent; +export const LockPersonTwoTone: SvgIconComponent; +export const LockReset: SvgIconComponent; +export const LockResetOutlined: SvgIconComponent; +export const LockResetRounded: SvgIconComponent; +export const LockResetSharp: SvgIconComponent; +export const LockResetTwoTone: SvgIconComponent; +export const LockRounded: SvgIconComponent; +export const LockSharp: SvgIconComponent; +export const LockTwoTone: SvgIconComponent; +export const Login: SvgIconComponent; +export const LoginOutlined: SvgIconComponent; +export const LoginRounded: SvgIconComponent; +export const LoginSharp: SvgIconComponent; +export const LoginTwoTone: SvgIconComponent; +export const LogoDev: SvgIconComponent; +export const LogoDevOutlined: SvgIconComponent; +export const LogoDevRounded: SvgIconComponent; +export const LogoDevSharp: SvgIconComponent; +export const LogoDevTwoTone: SvgIconComponent; +export const Logout: SvgIconComponent; +export const LogoutOutlined: SvgIconComponent; +export const LogoutRounded: SvgIconComponent; +export const LogoutSharp: SvgIconComponent; +export const LogoutTwoTone: SvgIconComponent; +export const Looks: SvgIconComponent; +export const Looks3: SvgIconComponent; +export const Looks3Outlined: SvgIconComponent; +export const Looks3Rounded: SvgIconComponent; +export const Looks3Sharp: SvgIconComponent; +export const Looks3TwoTone: SvgIconComponent; +export const Looks4: SvgIconComponent; +export const Looks4Outlined: SvgIconComponent; +export const Looks4Rounded: SvgIconComponent; +export const Looks4Sharp: SvgIconComponent; +export const Looks4TwoTone: SvgIconComponent; +export const Looks5: SvgIconComponent; +export const Looks5Outlined: SvgIconComponent; +export const Looks5Rounded: SvgIconComponent; +export const Looks5Sharp: SvgIconComponent; +export const Looks5TwoTone: SvgIconComponent; +export const Looks6: SvgIconComponent; +export const Looks6Outlined: SvgIconComponent; +export const Looks6Rounded: SvgIconComponent; +export const Looks6Sharp: SvgIconComponent; +export const Looks6TwoTone: SvgIconComponent; +export const LooksOne: SvgIconComponent; +export const LooksOneOutlined: SvgIconComponent; +export const LooksOneRounded: SvgIconComponent; +export const LooksOneSharp: SvgIconComponent; +export const LooksOneTwoTone: SvgIconComponent; +export const LooksOutlined: SvgIconComponent; +export const LooksRounded: SvgIconComponent; +export const LooksSharp: SvgIconComponent; +export const LooksTwo: SvgIconComponent; +export const LooksTwoOutlined: SvgIconComponent; +export const LooksTwoRounded: SvgIconComponent; +export const LooksTwoSharp: SvgIconComponent; +export const LooksTwoTone: SvgIconComponent; +export const LooksTwoTwoTone: SvgIconComponent; +export const Loop: SvgIconComponent; +export const LoopOutlined: SvgIconComponent; +export const LoopRounded: SvgIconComponent; +export const LoopSharp: SvgIconComponent; +export const LoopTwoTone: SvgIconComponent; +export const Loupe: SvgIconComponent; +export const LoupeOutlined: SvgIconComponent; +export const LoupeRounded: SvgIconComponent; +export const LoupeSharp: SvgIconComponent; +export const LoupeTwoTone: SvgIconComponent; +export const LowPriority: SvgIconComponent; +export const LowPriorityOutlined: SvgIconComponent; +export const LowPriorityRounded: SvgIconComponent; +export const LowPrioritySharp: SvgIconComponent; +export const LowPriorityTwoTone: SvgIconComponent; +export const Loyalty: SvgIconComponent; +export const LoyaltyOutlined: SvgIconComponent; +export const LoyaltyRounded: SvgIconComponent; +export const LoyaltySharp: SvgIconComponent; +export const LoyaltyTwoTone: SvgIconComponent; +export const LteMobiledata: SvgIconComponent; +export const LteMobiledataOutlined: SvgIconComponent; +export const LteMobiledataRounded: SvgIconComponent; +export const LteMobiledataSharp: SvgIconComponent; +export const LteMobiledataTwoTone: SvgIconComponent; +export const LtePlusMobiledata: SvgIconComponent; +export const LtePlusMobiledataOutlined: SvgIconComponent; +export const LtePlusMobiledataRounded: SvgIconComponent; +export const LtePlusMobiledataSharp: SvgIconComponent; +export const LtePlusMobiledataTwoTone: SvgIconComponent; +export const Luggage: SvgIconComponent; +export const LuggageOutlined: SvgIconComponent; +export const LuggageRounded: SvgIconComponent; +export const LuggageSharp: SvgIconComponent; +export const LuggageTwoTone: SvgIconComponent; +export const LunchDining: SvgIconComponent; +export const LunchDiningOutlined: SvgIconComponent; +export const LunchDiningRounded: SvgIconComponent; +export const LunchDiningSharp: SvgIconComponent; +export const LunchDiningTwoTone: SvgIconComponent; +export const Lyrics: SvgIconComponent; +export const LyricsOutlined: SvgIconComponent; +export const LyricsRounded: SvgIconComponent; +export const LyricsSharp: SvgIconComponent; +export const LyricsTwoTone: SvgIconComponent; +export const MacroOff: SvgIconComponent; +export const MacroOffOutlined: SvgIconComponent; +export const MacroOffRounded: SvgIconComponent; +export const MacroOffSharp: SvgIconComponent; +export const MacroOffTwoTone: SvgIconComponent; +export const Mail: SvgIconComponent; +export const MailLock: SvgIconComponent; +export const MailLockOutlined: SvgIconComponent; +export const MailLockRounded: SvgIconComponent; +export const MailLockSharp: SvgIconComponent; +export const MailLockTwoTone: SvgIconComponent; +export const MailOutline: SvgIconComponent; +export const MailOutlineOutlined: SvgIconComponent; +export const MailOutlineRounded: SvgIconComponent; +export const MailOutlineSharp: SvgIconComponent; +export const MailOutlineTwoTone: SvgIconComponent; +export const MailOutlined: SvgIconComponent; +export const MailRounded: SvgIconComponent; +export const MailSharp: SvgIconComponent; +export const MailTwoTone: SvgIconComponent; +export const Male: SvgIconComponent; +export const MaleOutlined: SvgIconComponent; +export const MaleRounded: SvgIconComponent; +export const MaleSharp: SvgIconComponent; +export const MaleTwoTone: SvgIconComponent; +export const Man: SvgIconComponent; +export const Man2: SvgIconComponent; +export const Man2Outlined: SvgIconComponent; +export const Man2Rounded: SvgIconComponent; +export const Man2Sharp: SvgIconComponent; +export const Man2TwoTone: SvgIconComponent; +export const Man3: SvgIconComponent; +export const Man3Outlined: SvgIconComponent; +export const Man3Rounded: SvgIconComponent; +export const Man3Sharp: SvgIconComponent; +export const Man3TwoTone: SvgIconComponent; +export const Man4: SvgIconComponent; +export const Man4Outlined: SvgIconComponent; +export const Man4Rounded: SvgIconComponent; +export const Man4Sharp: SvgIconComponent; +export const Man4TwoTone: SvgIconComponent; +export const ManOutlined: SvgIconComponent; +export const ManRounded: SvgIconComponent; +export const ManSharp: SvgIconComponent; +export const ManTwoTone: SvgIconComponent; +export const ManageAccounts: SvgIconComponent; +export const ManageAccountsOutlined: SvgIconComponent; +export const ManageAccountsRounded: SvgIconComponent; +export const ManageAccountsSharp: SvgIconComponent; +export const ManageAccountsTwoTone: SvgIconComponent; +export const ManageHistory: SvgIconComponent; +export const ManageHistoryOutlined: SvgIconComponent; +export const ManageHistoryRounded: SvgIconComponent; +export const ManageHistorySharp: SvgIconComponent; +export const ManageHistoryTwoTone: SvgIconComponent; +export const ManageSearch: SvgIconComponent; +export const ManageSearchOutlined: SvgIconComponent; +export const ManageSearchRounded: SvgIconComponent; +export const ManageSearchSharp: SvgIconComponent; +export const ManageSearchTwoTone: SvgIconComponent; +export const Map: SvgIconComponent; +export const MapOutlined: SvgIconComponent; +export const MapRounded: SvgIconComponent; +export const MapSharp: SvgIconComponent; +export const MapTwoTone: SvgIconComponent; +export const MapsHomeWork: SvgIconComponent; +export const MapsHomeWorkOutlined: SvgIconComponent; +export const MapsHomeWorkRounded: SvgIconComponent; +export const MapsHomeWorkSharp: SvgIconComponent; +export const MapsHomeWorkTwoTone: SvgIconComponent; +export const MapsUgc: SvgIconComponent; +export const MapsUgcOutlined: SvgIconComponent; +export const MapsUgcRounded: SvgIconComponent; +export const MapsUgcSharp: SvgIconComponent; +export const MapsUgcTwoTone: SvgIconComponent; +export const Margin: SvgIconComponent; +export const MarginOutlined: SvgIconComponent; +export const MarginRounded: SvgIconComponent; +export const MarginSharp: SvgIconComponent; +export const MarginTwoTone: SvgIconComponent; +export const MarkAsUnread: SvgIconComponent; +export const MarkAsUnreadOutlined: SvgIconComponent; +export const MarkAsUnreadRounded: SvgIconComponent; +export const MarkAsUnreadSharp: SvgIconComponent; +export const MarkAsUnreadTwoTone: SvgIconComponent; +export const MarkChatRead: SvgIconComponent; +export const MarkChatReadOutlined: SvgIconComponent; +export const MarkChatReadRounded: SvgIconComponent; +export const MarkChatReadSharp: SvgIconComponent; +export const MarkChatReadTwoTone: SvgIconComponent; +export const MarkChatUnread: SvgIconComponent; +export const MarkChatUnreadOutlined: SvgIconComponent; +export const MarkChatUnreadRounded: SvgIconComponent; +export const MarkChatUnreadSharp: SvgIconComponent; +export const MarkChatUnreadTwoTone: SvgIconComponent; +export const MarkEmailRead: SvgIconComponent; +export const MarkEmailReadOutlined: SvgIconComponent; +export const MarkEmailReadRounded: SvgIconComponent; +export const MarkEmailReadSharp: SvgIconComponent; +export const MarkEmailReadTwoTone: SvgIconComponent; +export const MarkEmailUnread: SvgIconComponent; +export const MarkEmailUnreadOutlined: SvgIconComponent; +export const MarkEmailUnreadRounded: SvgIconComponent; +export const MarkEmailUnreadSharp: SvgIconComponent; +export const MarkEmailUnreadTwoTone: SvgIconComponent; +export const MarkUnreadChatAlt: SvgIconComponent; +export const MarkUnreadChatAltOutlined: SvgIconComponent; +export const MarkUnreadChatAltRounded: SvgIconComponent; +export const MarkUnreadChatAltSharp: SvgIconComponent; +export const MarkUnreadChatAltTwoTone: SvgIconComponent; +export const Markunread: SvgIconComponent; +export const MarkunreadMailbox: SvgIconComponent; +export const MarkunreadMailboxOutlined: SvgIconComponent; +export const MarkunreadMailboxRounded: SvgIconComponent; +export const MarkunreadMailboxSharp: SvgIconComponent; +export const MarkunreadMailboxTwoTone: SvgIconComponent; +export const MarkunreadOutlined: SvgIconComponent; +export const MarkunreadRounded: SvgIconComponent; +export const MarkunreadSharp: SvgIconComponent; +export const MarkunreadTwoTone: SvgIconComponent; +export const Masks: SvgIconComponent; +export const MasksOutlined: SvgIconComponent; +export const MasksRounded: SvgIconComponent; +export const MasksSharp: SvgIconComponent; +export const MasksTwoTone: SvgIconComponent; +export const Maximize: SvgIconComponent; +export const MaximizeOutlined: SvgIconComponent; +export const MaximizeRounded: SvgIconComponent; +export const MaximizeSharp: SvgIconComponent; +export const MaximizeTwoTone: SvgIconComponent; +export const MediaBluetoothOff: SvgIconComponent; +export const MediaBluetoothOffOutlined: SvgIconComponent; +export const MediaBluetoothOffRounded: SvgIconComponent; +export const MediaBluetoothOffSharp: SvgIconComponent; +export const MediaBluetoothOffTwoTone: SvgIconComponent; +export const MediaBluetoothOn: SvgIconComponent; +export const MediaBluetoothOnOutlined: SvgIconComponent; +export const MediaBluetoothOnRounded: SvgIconComponent; +export const MediaBluetoothOnSharp: SvgIconComponent; +export const MediaBluetoothOnTwoTone: SvgIconComponent; +export const Mediation: SvgIconComponent; +export const MediationOutlined: SvgIconComponent; +export const MediationRounded: SvgIconComponent; +export const MediationSharp: SvgIconComponent; +export const MediationTwoTone: SvgIconComponent; +export const MedicalInformation: SvgIconComponent; +export const MedicalInformationOutlined: SvgIconComponent; +export const MedicalInformationRounded: SvgIconComponent; +export const MedicalInformationSharp: SvgIconComponent; +export const MedicalInformationTwoTone: SvgIconComponent; +export const MedicalServices: SvgIconComponent; +export const MedicalServicesOutlined: SvgIconComponent; +export const MedicalServicesRounded: SvgIconComponent; +export const MedicalServicesSharp: SvgIconComponent; +export const MedicalServicesTwoTone: SvgIconComponent; +export const Medication: SvgIconComponent; +export const MedicationLiquid: SvgIconComponent; +export const MedicationLiquidOutlined: SvgIconComponent; +export const MedicationLiquidRounded: SvgIconComponent; +export const MedicationLiquidSharp: SvgIconComponent; +export const MedicationLiquidTwoTone: SvgIconComponent; +export const MedicationOutlined: SvgIconComponent; +export const MedicationRounded: SvgIconComponent; +export const MedicationSharp: SvgIconComponent; +export const MedicationTwoTone: SvgIconComponent; +export const MeetingRoom: SvgIconComponent; +export const MeetingRoomOutlined: SvgIconComponent; +export const MeetingRoomRounded: SvgIconComponent; +export const MeetingRoomSharp: SvgIconComponent; +export const MeetingRoomTwoTone: SvgIconComponent; +export const Memory: SvgIconComponent; +export const MemoryOutlined: SvgIconComponent; +export const MemoryRounded: SvgIconComponent; +export const MemorySharp: SvgIconComponent; +export const MemoryTwoTone: SvgIconComponent; +export const Menu: SvgIconComponent; +export const MenuBook: SvgIconComponent; +export const MenuBookOutlined: SvgIconComponent; +export const MenuBookRounded: SvgIconComponent; +export const MenuBookSharp: SvgIconComponent; +export const MenuBookTwoTone: SvgIconComponent; +export const MenuOpen: SvgIconComponent; +export const MenuOpenOutlined: SvgIconComponent; +export const MenuOpenRounded: SvgIconComponent; +export const MenuOpenSharp: SvgIconComponent; +export const MenuOpenTwoTone: SvgIconComponent; +export const MenuOutlined: SvgIconComponent; +export const MenuRounded: SvgIconComponent; +export const MenuSharp: SvgIconComponent; +export const MenuTwoTone: SvgIconComponent; +export const Merge: SvgIconComponent; +export const MergeOutlined: SvgIconComponent; +export const MergeRounded: SvgIconComponent; +export const MergeSharp: SvgIconComponent; +export const MergeTwoTone: SvgIconComponent; +export const MergeType: SvgIconComponent; +export const MergeTypeOutlined: SvgIconComponent; +export const MergeTypeRounded: SvgIconComponent; +export const MergeTypeSharp: SvgIconComponent; +export const MergeTypeTwoTone: SvgIconComponent; +export const Message: SvgIconComponent; +export const MessageOutlined: SvgIconComponent; +export const MessageRounded: SvgIconComponent; +export const MessageSharp: SvgIconComponent; +export const MessageTwoTone: SvgIconComponent; +export const Mic: SvgIconComponent; +export const MicExternalOff: SvgIconComponent; +export const MicExternalOffOutlined: SvgIconComponent; +export const MicExternalOffRounded: SvgIconComponent; +export const MicExternalOffSharp: SvgIconComponent; +export const MicExternalOffTwoTone: SvgIconComponent; +export const MicExternalOn: SvgIconComponent; +export const MicExternalOnOutlined: SvgIconComponent; +export const MicExternalOnRounded: SvgIconComponent; +export const MicExternalOnSharp: SvgIconComponent; +export const MicExternalOnTwoTone: SvgIconComponent; +export const MicNone: SvgIconComponent; +export const MicNoneOutlined: SvgIconComponent; +export const MicNoneRounded: SvgIconComponent; +export const MicNoneSharp: SvgIconComponent; +export const MicNoneTwoTone: SvgIconComponent; +export const MicOff: SvgIconComponent; +export const MicOffOutlined: SvgIconComponent; +export const MicOffRounded: SvgIconComponent; +export const MicOffSharp: SvgIconComponent; +export const MicOffTwoTone: SvgIconComponent; +export const MicOutlined: SvgIconComponent; +export const MicRounded: SvgIconComponent; +export const MicSharp: SvgIconComponent; +export const MicTwoTone: SvgIconComponent; +export const Microsoft: SvgIconComponent; +export const Microwave: SvgIconComponent; +export const MicrowaveOutlined: SvgIconComponent; +export const MicrowaveRounded: SvgIconComponent; +export const MicrowaveSharp: SvgIconComponent; +export const MicrowaveTwoTone: SvgIconComponent; +export const MilitaryTech: SvgIconComponent; +export const MilitaryTechOutlined: SvgIconComponent; +export const MilitaryTechRounded: SvgIconComponent; +export const MilitaryTechSharp: SvgIconComponent; +export const MilitaryTechTwoTone: SvgIconComponent; +export const Minimize: SvgIconComponent; +export const MinimizeOutlined: SvgIconComponent; +export const MinimizeRounded: SvgIconComponent; +export const MinimizeSharp: SvgIconComponent; +export const MinimizeTwoTone: SvgIconComponent; +export const MinorCrash: SvgIconComponent; +export const MinorCrashOutlined: SvgIconComponent; +export const MinorCrashRounded: SvgIconComponent; +export const MinorCrashSharp: SvgIconComponent; +export const MinorCrashTwoTone: SvgIconComponent; +export const MiscellaneousServices: SvgIconComponent; +export const MiscellaneousServicesOutlined: SvgIconComponent; +export const MiscellaneousServicesRounded: SvgIconComponent; +export const MiscellaneousServicesSharp: SvgIconComponent; +export const MiscellaneousServicesTwoTone: SvgIconComponent; +export const MissedVideoCall: SvgIconComponent; +export const MissedVideoCallOutlined: SvgIconComponent; +export const MissedVideoCallRounded: SvgIconComponent; +export const MissedVideoCallSharp: SvgIconComponent; +export const MissedVideoCallTwoTone: SvgIconComponent; +export const Mms: SvgIconComponent; +export const MmsOutlined: SvgIconComponent; +export const MmsRounded: SvgIconComponent; +export const MmsSharp: SvgIconComponent; +export const MmsTwoTone: SvgIconComponent; +export const MobileFriendly: SvgIconComponent; +export const MobileFriendlyOutlined: SvgIconComponent; +export const MobileFriendlyRounded: SvgIconComponent; +export const MobileFriendlySharp: SvgIconComponent; +export const MobileFriendlyTwoTone: SvgIconComponent; +export const MobileOff: SvgIconComponent; +export const MobileOffOutlined: SvgIconComponent; +export const MobileOffRounded: SvgIconComponent; +export const MobileOffSharp: SvgIconComponent; +export const MobileOffTwoTone: SvgIconComponent; +export const MobileScreenShare: SvgIconComponent; +export const MobileScreenShareOutlined: SvgIconComponent; +export const MobileScreenShareRounded: SvgIconComponent; +export const MobileScreenShareSharp: SvgIconComponent; +export const MobileScreenShareTwoTone: SvgIconComponent; +export const MobiledataOff: SvgIconComponent; +export const MobiledataOffOutlined: SvgIconComponent; +export const MobiledataOffRounded: SvgIconComponent; +export const MobiledataOffSharp: SvgIconComponent; +export const MobiledataOffTwoTone: SvgIconComponent; +export const Mode: SvgIconComponent; +export const ModeComment: SvgIconComponent; +export const ModeCommentOutlined: SvgIconComponent; +export const ModeCommentRounded: SvgIconComponent; +export const ModeCommentSharp: SvgIconComponent; +export const ModeCommentTwoTone: SvgIconComponent; +export const ModeEdit: SvgIconComponent; +export const ModeEditOutline: SvgIconComponent; +export const ModeEditOutlineOutlined: SvgIconComponent; +export const ModeEditOutlineRounded: SvgIconComponent; +export const ModeEditOutlineSharp: SvgIconComponent; +export const ModeEditOutlineTwoTone: SvgIconComponent; +export const ModeEditOutlined: SvgIconComponent; +export const ModeEditRounded: SvgIconComponent; +export const ModeEditSharp: SvgIconComponent; +export const ModeEditTwoTone: SvgIconComponent; +export const ModeFanOff: SvgIconComponent; +export const ModeFanOffOutlined: SvgIconComponent; +export const ModeFanOffRounded: SvgIconComponent; +export const ModeFanOffSharp: SvgIconComponent; +export const ModeFanOffTwoTone: SvgIconComponent; +export const ModeNight: SvgIconComponent; +export const ModeNightOutlined: SvgIconComponent; +export const ModeNightRounded: SvgIconComponent; +export const ModeNightSharp: SvgIconComponent; +export const ModeNightTwoTone: SvgIconComponent; +export const ModeOfTravel: SvgIconComponent; +export const ModeOfTravelOutlined: SvgIconComponent; +export const ModeOfTravelRounded: SvgIconComponent; +export const ModeOfTravelSharp: SvgIconComponent; +export const ModeOfTravelTwoTone: SvgIconComponent; +export const ModeOutlined: SvgIconComponent; +export const ModeRounded: SvgIconComponent; +export const ModeSharp: SvgIconComponent; +export const ModeStandby: SvgIconComponent; +export const ModeStandbyOutlined: SvgIconComponent; +export const ModeStandbyRounded: SvgIconComponent; +export const ModeStandbySharp: SvgIconComponent; +export const ModeStandbyTwoTone: SvgIconComponent; +export const ModeTwoTone: SvgIconComponent; +export const ModelTraining: SvgIconComponent; +export const ModelTrainingOutlined: SvgIconComponent; +export const ModelTrainingRounded: SvgIconComponent; +export const ModelTrainingSharp: SvgIconComponent; +export const ModelTrainingTwoTone: SvgIconComponent; +export const MonetizationOn: SvgIconComponent; +export const MonetizationOnOutlined: SvgIconComponent; +export const MonetizationOnRounded: SvgIconComponent; +export const MonetizationOnSharp: SvgIconComponent; +export const MonetizationOnTwoTone: SvgIconComponent; +export const Money: SvgIconComponent; +export const MoneyOff: SvgIconComponent; +export const MoneyOffCsred: SvgIconComponent; +export const MoneyOffCsredOutlined: SvgIconComponent; +export const MoneyOffCsredRounded: SvgIconComponent; +export const MoneyOffCsredSharp: SvgIconComponent; +export const MoneyOffCsredTwoTone: SvgIconComponent; +export const MoneyOffOutlined: SvgIconComponent; +export const MoneyOffRounded: SvgIconComponent; +export const MoneyOffSharp: SvgIconComponent; +export const MoneyOffTwoTone: SvgIconComponent; +export const MoneyOutlined: SvgIconComponent; +export const MoneyRounded: SvgIconComponent; +export const MoneySharp: SvgIconComponent; +export const MoneyTwoTone: SvgIconComponent; +export const Monitor: SvgIconComponent; +export const MonitorHeart: SvgIconComponent; +export const MonitorHeartOutlined: SvgIconComponent; +export const MonitorHeartRounded: SvgIconComponent; +export const MonitorHeartSharp: SvgIconComponent; +export const MonitorHeartTwoTone: SvgIconComponent; +export const MonitorOutlined: SvgIconComponent; +export const MonitorRounded: SvgIconComponent; +export const MonitorSharp: SvgIconComponent; +export const MonitorTwoTone: SvgIconComponent; +export const MonitorWeight: SvgIconComponent; +export const MonitorWeightOutlined: SvgIconComponent; +export const MonitorWeightRounded: SvgIconComponent; +export const MonitorWeightSharp: SvgIconComponent; +export const MonitorWeightTwoTone: SvgIconComponent; +export const MonochromePhotos: SvgIconComponent; +export const MonochromePhotosOutlined: SvgIconComponent; +export const MonochromePhotosRounded: SvgIconComponent; +export const MonochromePhotosSharp: SvgIconComponent; +export const MonochromePhotosTwoTone: SvgIconComponent; +export const Mood: SvgIconComponent; +export const MoodBad: SvgIconComponent; +export const MoodBadOutlined: SvgIconComponent; +export const MoodBadRounded: SvgIconComponent; +export const MoodBadSharp: SvgIconComponent; +export const MoodBadTwoTone: SvgIconComponent; +export const MoodOutlined: SvgIconComponent; +export const MoodRounded: SvgIconComponent; +export const MoodSharp: SvgIconComponent; +export const MoodTwoTone: SvgIconComponent; +export const Moped: SvgIconComponent; +export const MopedOutlined: SvgIconComponent; +export const MopedRounded: SvgIconComponent; +export const MopedSharp: SvgIconComponent; +export const MopedTwoTone: SvgIconComponent; +export const More: SvgIconComponent; +export const MoreHoriz: SvgIconComponent; +export const MoreHorizOutlined: SvgIconComponent; +export const MoreHorizRounded: SvgIconComponent; +export const MoreHorizSharp: SvgIconComponent; +export const MoreHorizTwoTone: SvgIconComponent; +export const MoreOutlined: SvgIconComponent; +export const MoreRounded: SvgIconComponent; +export const MoreSharp: SvgIconComponent; +export const MoreTime: SvgIconComponent; +export const MoreTimeOutlined: SvgIconComponent; +export const MoreTimeRounded: SvgIconComponent; +export const MoreTimeSharp: SvgIconComponent; +export const MoreTimeTwoTone: SvgIconComponent; +export const MoreTwoTone: SvgIconComponent; +export const MoreVert: SvgIconComponent; +export const MoreVertOutlined: SvgIconComponent; +export const MoreVertRounded: SvgIconComponent; +export const MoreVertSharp: SvgIconComponent; +export const MoreVertTwoTone: SvgIconComponent; +export const Mosque: SvgIconComponent; +export const MosqueOutlined: SvgIconComponent; +export const MosqueRounded: SvgIconComponent; +export const MosqueSharp: SvgIconComponent; +export const MosqueTwoTone: SvgIconComponent; +export const MotionPhotosAuto: SvgIconComponent; +export const MotionPhotosAutoOutlined: SvgIconComponent; +export const MotionPhotosAutoRounded: SvgIconComponent; +export const MotionPhotosAutoSharp: SvgIconComponent; +export const MotionPhotosAutoTwoTone: SvgIconComponent; +export const MotionPhotosOff: SvgIconComponent; +export const MotionPhotosOffOutlined: SvgIconComponent; +export const MotionPhotosOffRounded: SvgIconComponent; +export const MotionPhotosOffSharp: SvgIconComponent; +export const MotionPhotosOffTwoTone: SvgIconComponent; +export const Mouse: SvgIconComponent; +export const MouseOutlined: SvgIconComponent; +export const MouseRounded: SvgIconComponent; +export const MouseSharp: SvgIconComponent; +export const MouseTwoTone: SvgIconComponent; +export const MoveDown: SvgIconComponent; +export const MoveDownOutlined: SvgIconComponent; +export const MoveDownRounded: SvgIconComponent; +export const MoveDownSharp: SvgIconComponent; +export const MoveDownTwoTone: SvgIconComponent; +export const MoveToInbox: SvgIconComponent; +export const MoveToInboxOutlined: SvgIconComponent; +export const MoveToInboxRounded: SvgIconComponent; +export const MoveToInboxSharp: SvgIconComponent; +export const MoveToInboxTwoTone: SvgIconComponent; +export const MoveUp: SvgIconComponent; +export const MoveUpOutlined: SvgIconComponent; +export const MoveUpRounded: SvgIconComponent; +export const MoveUpSharp: SvgIconComponent; +export const MoveUpTwoTone: SvgIconComponent; +export const Movie: SvgIconComponent; +export const MovieCreation: SvgIconComponent; +export const MovieCreationOutlined: SvgIconComponent; +export const MovieCreationRounded: SvgIconComponent; +export const MovieCreationSharp: SvgIconComponent; +export const MovieCreationTwoTone: SvgIconComponent; +export const MovieFilter: SvgIconComponent; +export const MovieFilterOutlined: SvgIconComponent; +export const MovieFilterRounded: SvgIconComponent; +export const MovieFilterSharp: SvgIconComponent; +export const MovieFilterTwoTone: SvgIconComponent; +export const MovieOutlined: SvgIconComponent; +export const MovieRounded: SvgIconComponent; +export const MovieSharp: SvgIconComponent; +export const MovieTwoTone: SvgIconComponent; +export const Moving: SvgIconComponent; +export const MovingOutlined: SvgIconComponent; +export const MovingRounded: SvgIconComponent; +export const MovingSharp: SvgIconComponent; +export const MovingTwoTone: SvgIconComponent; +export const Mp: SvgIconComponent; +export const MpOutlined: SvgIconComponent; +export const MpRounded: SvgIconComponent; +export const MpSharp: SvgIconComponent; +export const MpTwoTone: SvgIconComponent; +export const MultilineChart: SvgIconComponent; +export const MultilineChartOutlined: SvgIconComponent; +export const MultilineChartRounded: SvgIconComponent; +export const MultilineChartSharp: SvgIconComponent; +export const MultilineChartTwoTone: SvgIconComponent; +export const MultipleStop: SvgIconComponent; +export const MultipleStopOutlined: SvgIconComponent; +export const MultipleStopRounded: SvgIconComponent; +export const MultipleStopSharp: SvgIconComponent; +export const MultipleStopTwoTone: SvgIconComponent; +export const Museum: SvgIconComponent; +export const MuseumOutlined: SvgIconComponent; +export const MuseumRounded: SvgIconComponent; +export const MuseumSharp: SvgIconComponent; +export const MuseumTwoTone: SvgIconComponent; +export const MusicNote: SvgIconComponent; +export const MusicNoteOutlined: SvgIconComponent; +export const MusicNoteRounded: SvgIconComponent; +export const MusicNoteSharp: SvgIconComponent; +export const MusicNoteTwoTone: SvgIconComponent; +export const MusicOff: SvgIconComponent; +export const MusicOffOutlined: SvgIconComponent; +export const MusicOffRounded: SvgIconComponent; +export const MusicOffSharp: SvgIconComponent; +export const MusicOffTwoTone: SvgIconComponent; +export const MusicVideo: SvgIconComponent; +export const MusicVideoOutlined: SvgIconComponent; +export const MusicVideoRounded: SvgIconComponent; +export const MusicVideoSharp: SvgIconComponent; +export const MusicVideoTwoTone: SvgIconComponent; +export const MyLocation: SvgIconComponent; +export const MyLocationOutlined: SvgIconComponent; +export const MyLocationRounded: SvgIconComponent; +export const MyLocationSharp: SvgIconComponent; +export const MyLocationTwoTone: SvgIconComponent; +export const Nat: SvgIconComponent; +export const NatOutlined: SvgIconComponent; +export const NatRounded: SvgIconComponent; +export const NatSharp: SvgIconComponent; +export const NatTwoTone: SvgIconComponent; +export const Nature: SvgIconComponent; +export const NatureOutlined: SvgIconComponent; +export const NaturePeople: SvgIconComponent; +export const NaturePeopleOutlined: SvgIconComponent; +export const NaturePeopleRounded: SvgIconComponent; +export const NaturePeopleSharp: SvgIconComponent; +export const NaturePeopleTwoTone: SvgIconComponent; +export const NatureRounded: SvgIconComponent; +export const NatureSharp: SvgIconComponent; +export const NatureTwoTone: SvgIconComponent; +export const NavigateBefore: SvgIconComponent; +export const NavigateBeforeOutlined: SvgIconComponent; +export const NavigateBeforeRounded: SvgIconComponent; +export const NavigateBeforeSharp: SvgIconComponent; +export const NavigateBeforeTwoTone: SvgIconComponent; +export const NavigateNext: SvgIconComponent; +export const NavigateNextOutlined: SvgIconComponent; +export const NavigateNextRounded: SvgIconComponent; +export const NavigateNextSharp: SvgIconComponent; +export const NavigateNextTwoTone: SvgIconComponent; +export const Navigation: SvgIconComponent; +export const NavigationOutlined: SvgIconComponent; +export const NavigationRounded: SvgIconComponent; +export const NavigationSharp: SvgIconComponent; +export const NavigationTwoTone: SvgIconComponent; +export const NearMe: SvgIconComponent; +export const NearMeDisabled: SvgIconComponent; +export const NearMeDisabledOutlined: SvgIconComponent; +export const NearMeDisabledRounded: SvgIconComponent; +export const NearMeDisabledSharp: SvgIconComponent; +export const NearMeDisabledTwoTone: SvgIconComponent; +export const NearMeOutlined: SvgIconComponent; +export const NearMeRounded: SvgIconComponent; +export const NearMeSharp: SvgIconComponent; +export const NearMeTwoTone: SvgIconComponent; +export const NearbyError: SvgIconComponent; +export const NearbyErrorOutlined: SvgIconComponent; +export const NearbyErrorRounded: SvgIconComponent; +export const NearbyErrorSharp: SvgIconComponent; +export const NearbyErrorTwoTone: SvgIconComponent; +export const NearbyOff: SvgIconComponent; +export const NearbyOffOutlined: SvgIconComponent; +export const NearbyOffRounded: SvgIconComponent; +export const NearbyOffSharp: SvgIconComponent; +export const NearbyOffTwoTone: SvgIconComponent; +export const NestCamWiredStand: SvgIconComponent; +export const NestCamWiredStandOutlined: SvgIconComponent; +export const NestCamWiredStandRounded: SvgIconComponent; +export const NestCamWiredStandSharp: SvgIconComponent; +export const NestCamWiredStandTwoTone: SvgIconComponent; +export const NetworkCell: SvgIconComponent; +export const NetworkCellOutlined: SvgIconComponent; +export const NetworkCellRounded: SvgIconComponent; +export const NetworkCellSharp: SvgIconComponent; +export const NetworkCellTwoTone: SvgIconComponent; +export const NetworkCheck: SvgIconComponent; +export const NetworkCheckOutlined: SvgIconComponent; +export const NetworkCheckRounded: SvgIconComponent; +export const NetworkCheckSharp: SvgIconComponent; +export const NetworkCheckTwoTone: SvgIconComponent; +export const NetworkLocked: SvgIconComponent; +export const NetworkLockedOutlined: SvgIconComponent; +export const NetworkLockedRounded: SvgIconComponent; +export const NetworkLockedSharp: SvgIconComponent; +export const NetworkLockedTwoTone: SvgIconComponent; +export const NetworkPing: SvgIconComponent; +export const NetworkPingOutlined: SvgIconComponent; +export const NetworkPingRounded: SvgIconComponent; +export const NetworkPingSharp: SvgIconComponent; +export const NetworkPingTwoTone: SvgIconComponent; +export const NetworkWifi: SvgIconComponent; +export const NetworkWifi1Bar: SvgIconComponent; +export const NetworkWifi1BarOutlined: SvgIconComponent; +export const NetworkWifi1BarRounded: SvgIconComponent; +export const NetworkWifi1BarSharp: SvgIconComponent; +export const NetworkWifi1BarTwoTone: SvgIconComponent; +export const NetworkWifi2Bar: SvgIconComponent; +export const NetworkWifi2BarOutlined: SvgIconComponent; +export const NetworkWifi2BarRounded: SvgIconComponent; +export const NetworkWifi2BarSharp: SvgIconComponent; +export const NetworkWifi2BarTwoTone: SvgIconComponent; +export const NetworkWifi3Bar: SvgIconComponent; +export const NetworkWifi3BarOutlined: SvgIconComponent; +export const NetworkWifi3BarRounded: SvgIconComponent; +export const NetworkWifi3BarSharp: SvgIconComponent; +export const NetworkWifi3BarTwoTone: SvgIconComponent; +export const NetworkWifiOutlined: SvgIconComponent; +export const NetworkWifiRounded: SvgIconComponent; +export const NetworkWifiSharp: SvgIconComponent; +export const NetworkWifiTwoTone: SvgIconComponent; +export const NewReleases: SvgIconComponent; +export const NewReleasesOutlined: SvgIconComponent; +export const NewReleasesRounded: SvgIconComponent; +export const NewReleasesSharp: SvgIconComponent; +export const NewReleasesTwoTone: SvgIconComponent; +export const Newspaper: SvgIconComponent; +export const NewspaperOutlined: SvgIconComponent; +export const NewspaperRounded: SvgIconComponent; +export const NewspaperSharp: SvgIconComponent; +export const NewspaperTwoTone: SvgIconComponent; +export const NextPlan: SvgIconComponent; +export const NextPlanOutlined: SvgIconComponent; +export const NextPlanRounded: SvgIconComponent; +export const NextPlanSharp: SvgIconComponent; +export const NextPlanTwoTone: SvgIconComponent; +export const NextWeek: SvgIconComponent; +export const NextWeekOutlined: SvgIconComponent; +export const NextWeekRounded: SvgIconComponent; +export const NextWeekSharp: SvgIconComponent; +export const NextWeekTwoTone: SvgIconComponent; +export const Nfc: SvgIconComponent; +export const NfcOutlined: SvgIconComponent; +export const NfcRounded: SvgIconComponent; +export const NfcSharp: SvgIconComponent; +export const NfcTwoTone: SvgIconComponent; +export const NightShelter: SvgIconComponent; +export const NightShelterOutlined: SvgIconComponent; +export const NightShelterRounded: SvgIconComponent; +export const NightShelterSharp: SvgIconComponent; +export const NightShelterTwoTone: SvgIconComponent; +export const Nightlife: SvgIconComponent; +export const NightlifeOutlined: SvgIconComponent; +export const NightlifeRounded: SvgIconComponent; +export const NightlifeSharp: SvgIconComponent; +export const NightlifeTwoTone: SvgIconComponent; +export const Nightlight: SvgIconComponent; +export const NightlightOutlined: SvgIconComponent; +export const NightlightRound: SvgIconComponent; +export const NightlightRoundOutlined: SvgIconComponent; +export const NightlightRoundRounded: SvgIconComponent; +export const NightlightRoundSharp: SvgIconComponent; +export const NightlightRoundTwoTone: SvgIconComponent; +export const NightlightRounded: SvgIconComponent; +export const NightlightSharp: SvgIconComponent; +export const NightlightTwoTone: SvgIconComponent; +export const NightsStay: SvgIconComponent; +export const NightsStayOutlined: SvgIconComponent; +export const NightsStayRounded: SvgIconComponent; +export const NightsStaySharp: SvgIconComponent; +export const NightsStayTwoTone: SvgIconComponent; +export const NineK: SvgIconComponent; +export const NineKOutlined: SvgIconComponent; +export const NineKPlus: SvgIconComponent; +export const NineKPlusOutlined: SvgIconComponent; +export const NineKPlusRounded: SvgIconComponent; +export const NineKPlusSharp: SvgIconComponent; +export const NineKPlusTwoTone: SvgIconComponent; +export const NineKRounded: SvgIconComponent; +export const NineKSharp: SvgIconComponent; +export const NineKTwoTone: SvgIconComponent; +export const NineMp: SvgIconComponent; +export const NineMpOutlined: SvgIconComponent; +export const NineMpRounded: SvgIconComponent; +export const NineMpSharp: SvgIconComponent; +export const NineMpTwoTone: SvgIconComponent; +export const NineteenMp: SvgIconComponent; +export const NineteenMpOutlined: SvgIconComponent; +export const NineteenMpRounded: SvgIconComponent; +export const NineteenMpSharp: SvgIconComponent; +export const NineteenMpTwoTone: SvgIconComponent; +export const NoAccounts: SvgIconComponent; +export const NoAccountsOutlined: SvgIconComponent; +export const NoAccountsRounded: SvgIconComponent; +export const NoAccountsSharp: SvgIconComponent; +export const NoAccountsTwoTone: SvgIconComponent; +export const NoAdultContent: SvgIconComponent; +export const NoAdultContentOutlined: SvgIconComponent; +export const NoAdultContentRounded: SvgIconComponent; +export const NoAdultContentSharp: SvgIconComponent; +export const NoAdultContentTwoTone: SvgIconComponent; +export const NoBackpack: SvgIconComponent; +export const NoBackpackOutlined: SvgIconComponent; +export const NoBackpackRounded: SvgIconComponent; +export const NoBackpackSharp: SvgIconComponent; +export const NoBackpackTwoTone: SvgIconComponent; +export const NoCell: SvgIconComponent; +export const NoCellOutlined: SvgIconComponent; +export const NoCellRounded: SvgIconComponent; +export const NoCellSharp: SvgIconComponent; +export const NoCellTwoTone: SvgIconComponent; +export const NoCrash: SvgIconComponent; +export const NoCrashOutlined: SvgIconComponent; +export const NoCrashRounded: SvgIconComponent; +export const NoCrashSharp: SvgIconComponent; +export const NoCrashTwoTone: SvgIconComponent; +export const NoDrinks: SvgIconComponent; +export const NoDrinksOutlined: SvgIconComponent; +export const NoDrinksRounded: SvgIconComponent; +export const NoDrinksSharp: SvgIconComponent; +export const NoDrinksTwoTone: SvgIconComponent; +export const NoEncryption: SvgIconComponent; +export const NoEncryptionGmailerrorred: SvgIconComponent; +export const NoEncryptionGmailerrorredOutlined: SvgIconComponent; +export const NoEncryptionGmailerrorredRounded: SvgIconComponent; +export const NoEncryptionGmailerrorredSharp: SvgIconComponent; +export const NoEncryptionGmailerrorredTwoTone: SvgIconComponent; +export const NoEncryptionOutlined: SvgIconComponent; +export const NoEncryptionRounded: SvgIconComponent; +export const NoEncryptionSharp: SvgIconComponent; +export const NoEncryptionTwoTone: SvgIconComponent; +export const NoFlash: SvgIconComponent; +export const NoFlashOutlined: SvgIconComponent; +export const NoFlashRounded: SvgIconComponent; +export const NoFlashSharp: SvgIconComponent; +export const NoFlashTwoTone: SvgIconComponent; +export const NoFood: SvgIconComponent; +export const NoFoodOutlined: SvgIconComponent; +export const NoFoodRounded: SvgIconComponent; +export const NoFoodSharp: SvgIconComponent; +export const NoFoodTwoTone: SvgIconComponent; +export const NoLuggage: SvgIconComponent; +export const NoLuggageOutlined: SvgIconComponent; +export const NoLuggageRounded: SvgIconComponent; +export const NoLuggageSharp: SvgIconComponent; +export const NoLuggageTwoTone: SvgIconComponent; +export const NoMeals: SvgIconComponent; +export const NoMealsOutlined: SvgIconComponent; +export const NoMealsRounded: SvgIconComponent; +export const NoMealsSharp: SvgIconComponent; +export const NoMealsTwoTone: SvgIconComponent; +export const NoMeetingRoom: SvgIconComponent; +export const NoMeetingRoomOutlined: SvgIconComponent; +export const NoMeetingRoomRounded: SvgIconComponent; +export const NoMeetingRoomSharp: SvgIconComponent; +export const NoMeetingRoomTwoTone: SvgIconComponent; +export const NoPhotography: SvgIconComponent; +export const NoPhotographyOutlined: SvgIconComponent; +export const NoPhotographyRounded: SvgIconComponent; +export const NoPhotographySharp: SvgIconComponent; +export const NoPhotographyTwoTone: SvgIconComponent; +export const NoSim: SvgIconComponent; +export const NoSimOutlined: SvgIconComponent; +export const NoSimRounded: SvgIconComponent; +export const NoSimSharp: SvgIconComponent; +export const NoSimTwoTone: SvgIconComponent; +export const NoStroller: SvgIconComponent; +export const NoStrollerOutlined: SvgIconComponent; +export const NoStrollerRounded: SvgIconComponent; +export const NoStrollerSharp: SvgIconComponent; +export const NoStrollerTwoTone: SvgIconComponent; +export const NoTransfer: SvgIconComponent; +export const NoTransferOutlined: SvgIconComponent; +export const NoTransferRounded: SvgIconComponent; +export const NoTransferSharp: SvgIconComponent; +export const NoTransferTwoTone: SvgIconComponent; +export const NoiseAware: SvgIconComponent; +export const NoiseAwareOutlined: SvgIconComponent; +export const NoiseAwareRounded: SvgIconComponent; +export const NoiseAwareSharp: SvgIconComponent; +export const NoiseAwareTwoTone: SvgIconComponent; +export const NoiseControlOff: SvgIconComponent; +export const NoiseControlOffOutlined: SvgIconComponent; +export const NoiseControlOffRounded: SvgIconComponent; +export const NoiseControlOffSharp: SvgIconComponent; +export const NoiseControlOffTwoTone: SvgIconComponent; +export const NordicWalking: SvgIconComponent; +export const NordicWalkingOutlined: SvgIconComponent; +export const NordicWalkingRounded: SvgIconComponent; +export const NordicWalkingSharp: SvgIconComponent; +export const NordicWalkingTwoTone: SvgIconComponent; +export const North: SvgIconComponent; +export const NorthEast: SvgIconComponent; +export const NorthEastOutlined: SvgIconComponent; +export const NorthEastRounded: SvgIconComponent; +export const NorthEastSharp: SvgIconComponent; +export const NorthEastTwoTone: SvgIconComponent; +export const NorthOutlined: SvgIconComponent; +export const NorthRounded: SvgIconComponent; +export const NorthSharp: SvgIconComponent; +export const NorthTwoTone: SvgIconComponent; +export const NorthWest: SvgIconComponent; +export const NorthWestOutlined: SvgIconComponent; +export const NorthWestRounded: SvgIconComponent; +export const NorthWestSharp: SvgIconComponent; +export const NorthWestTwoTone: SvgIconComponent; +export const NotAccessible: SvgIconComponent; +export const NotAccessibleOutlined: SvgIconComponent; +export const NotAccessibleRounded: SvgIconComponent; +export const NotAccessibleSharp: SvgIconComponent; +export const NotAccessibleTwoTone: SvgIconComponent; +export const NotInterested: SvgIconComponent; +export const NotInterestedOutlined: SvgIconComponent; +export const NotInterestedRounded: SvgIconComponent; +export const NotInterestedSharp: SvgIconComponent; +export const NotInterestedTwoTone: SvgIconComponent; +export const NotListedLocation: SvgIconComponent; +export const NotListedLocationOutlined: SvgIconComponent; +export const NotListedLocationRounded: SvgIconComponent; +export const NotListedLocationSharp: SvgIconComponent; +export const NotListedLocationTwoTone: SvgIconComponent; +export const NotStarted: SvgIconComponent; +export const NotStartedOutlined: SvgIconComponent; +export const NotStartedRounded: SvgIconComponent; +export const NotStartedSharp: SvgIconComponent; +export const NotStartedTwoTone: SvgIconComponent; +export const Note: SvgIconComponent; +export const NoteAdd: SvgIconComponent; +export const NoteAddOutlined: SvgIconComponent; +export const NoteAddRounded: SvgIconComponent; +export const NoteAddSharp: SvgIconComponent; +export const NoteAddTwoTone: SvgIconComponent; +export const NoteAlt: SvgIconComponent; +export const NoteAltOutlined: SvgIconComponent; +export const NoteAltRounded: SvgIconComponent; +export const NoteAltSharp: SvgIconComponent; +export const NoteAltTwoTone: SvgIconComponent; +export const NoteOutlined: SvgIconComponent; +export const NoteRounded: SvgIconComponent; +export const NoteSharp: SvgIconComponent; +export const NoteTwoTone: SvgIconComponent; +export const Notes: SvgIconComponent; +export const NotesOutlined: SvgIconComponent; +export const NotesRounded: SvgIconComponent; +export const NotesSharp: SvgIconComponent; +export const NotesTwoTone: SvgIconComponent; +export const NotificationAdd: SvgIconComponent; +export const NotificationAddOutlined: SvgIconComponent; +export const NotificationAddRounded: SvgIconComponent; +export const NotificationAddSharp: SvgIconComponent; +export const NotificationAddTwoTone: SvgIconComponent; +export const NotificationImportant: SvgIconComponent; +export const NotificationImportantOutlined: SvgIconComponent; +export const NotificationImportantRounded: SvgIconComponent; +export const NotificationImportantSharp: SvgIconComponent; +export const NotificationImportantTwoTone: SvgIconComponent; +export const Notifications: SvgIconComponent; +export const NotificationsActive: SvgIconComponent; +export const NotificationsActiveOutlined: SvgIconComponent; +export const NotificationsActiveRounded: SvgIconComponent; +export const NotificationsActiveSharp: SvgIconComponent; +export const NotificationsActiveTwoTone: SvgIconComponent; +export const NotificationsNone: SvgIconComponent; +export const NotificationsNoneOutlined: SvgIconComponent; +export const NotificationsNoneRounded: SvgIconComponent; +export const NotificationsNoneSharp: SvgIconComponent; +export const NotificationsNoneTwoTone: SvgIconComponent; +export const NotificationsOff: SvgIconComponent; +export const NotificationsOffOutlined: SvgIconComponent; +export const NotificationsOffRounded: SvgIconComponent; +export const NotificationsOffSharp: SvgIconComponent; +export const NotificationsOffTwoTone: SvgIconComponent; +export const NotificationsOutlined: SvgIconComponent; +export const NotificationsPaused: SvgIconComponent; +export const NotificationsPausedOutlined: SvgIconComponent; +export const NotificationsPausedRounded: SvgIconComponent; +export const NotificationsPausedSharp: SvgIconComponent; +export const NotificationsPausedTwoTone: SvgIconComponent; +export const NotificationsRounded: SvgIconComponent; +export const NotificationsSharp: SvgIconComponent; +export const NotificationsTwoTone: SvgIconComponent; +export const Numbers: SvgIconComponent; +export const NumbersOutlined: SvgIconComponent; +export const NumbersRounded: SvgIconComponent; +export const NumbersSharp: SvgIconComponent; +export const NumbersTwoTone: SvgIconComponent; +export const OfflineBolt: SvgIconComponent; +export const OfflineBoltOutlined: SvgIconComponent; +export const OfflineBoltRounded: SvgIconComponent; +export const OfflineBoltSharp: SvgIconComponent; +export const OfflineBoltTwoTone: SvgIconComponent; +export const OfflinePin: SvgIconComponent; +export const OfflinePinOutlined: SvgIconComponent; +export const OfflinePinRounded: SvgIconComponent; +export const OfflinePinSharp: SvgIconComponent; +export const OfflinePinTwoTone: SvgIconComponent; +export const OfflineShare: SvgIconComponent; +export const OfflineShareOutlined: SvgIconComponent; +export const OfflineShareRounded: SvgIconComponent; +export const OfflineShareSharp: SvgIconComponent; +export const OfflineShareTwoTone: SvgIconComponent; +export const OilBarrel: SvgIconComponent; +export const OilBarrelOutlined: SvgIconComponent; +export const OilBarrelRounded: SvgIconComponent; +export const OilBarrelSharp: SvgIconComponent; +export const OilBarrelTwoTone: SvgIconComponent; +export const OnDeviceTraining: SvgIconComponent; +export const OnDeviceTrainingOutlined: SvgIconComponent; +export const OnDeviceTrainingRounded: SvgIconComponent; +export const OnDeviceTrainingSharp: SvgIconComponent; +export const OnDeviceTrainingTwoTone: SvgIconComponent; +export const OndemandVideo: SvgIconComponent; +export const OndemandVideoOutlined: SvgIconComponent; +export const OndemandVideoRounded: SvgIconComponent; +export const OndemandVideoSharp: SvgIconComponent; +export const OndemandVideoTwoTone: SvgIconComponent; +export const OneK: SvgIconComponent; +export const OneKOutlined: SvgIconComponent; +export const OneKPlus: SvgIconComponent; +export const OneKPlusOutlined: SvgIconComponent; +export const OneKPlusRounded: SvgIconComponent; +export const OneKPlusSharp: SvgIconComponent; +export const OneKPlusTwoTone: SvgIconComponent; +export const OneKRounded: SvgIconComponent; +export const OneKSharp: SvgIconComponent; +export const OneKTwoTone: SvgIconComponent; +export const OneKk: SvgIconComponent; +export const OneKkOutlined: SvgIconComponent; +export const OneKkRounded: SvgIconComponent; +export const OneKkSharp: SvgIconComponent; +export const OneKkTwoTone: SvgIconComponent; +export const OnlinePrediction: SvgIconComponent; +export const OnlinePredictionOutlined: SvgIconComponent; +export const OnlinePredictionRounded: SvgIconComponent; +export const OnlinePredictionSharp: SvgIconComponent; +export const OnlinePredictionTwoTone: SvgIconComponent; +export const Opacity: SvgIconComponent; +export const OpacityOutlined: SvgIconComponent; +export const OpacityRounded: SvgIconComponent; +export const OpacitySharp: SvgIconComponent; +export const OpacityTwoTone: SvgIconComponent; +export const OpenInBrowser: SvgIconComponent; +export const OpenInBrowserOutlined: SvgIconComponent; +export const OpenInBrowserRounded: SvgIconComponent; +export const OpenInBrowserSharp: SvgIconComponent; +export const OpenInBrowserTwoTone: SvgIconComponent; +export const OpenInFull: SvgIconComponent; +export const OpenInFullOutlined: SvgIconComponent; +export const OpenInFullRounded: SvgIconComponent; +export const OpenInFullSharp: SvgIconComponent; +export const OpenInFullTwoTone: SvgIconComponent; +export const OpenInNew: SvgIconComponent; +export const OpenInNewOff: SvgIconComponent; +export const OpenInNewOffOutlined: SvgIconComponent; +export const OpenInNewOffRounded: SvgIconComponent; +export const OpenInNewOffSharp: SvgIconComponent; +export const OpenInNewOffTwoTone: SvgIconComponent; +export const OpenInNewOutlined: SvgIconComponent; +export const OpenInNewRounded: SvgIconComponent; +export const OpenInNewSharp: SvgIconComponent; +export const OpenInNewTwoTone: SvgIconComponent; +export const OpenWith: SvgIconComponent; +export const OpenWithOutlined: SvgIconComponent; +export const OpenWithRounded: SvgIconComponent; +export const OpenWithSharp: SvgIconComponent; +export const OpenWithTwoTone: SvgIconComponent; +export const OtherHouses: SvgIconComponent; +export const OtherHousesOutlined: SvgIconComponent; +export const OtherHousesRounded: SvgIconComponent; +export const OtherHousesSharp: SvgIconComponent; +export const OtherHousesTwoTone: SvgIconComponent; +export const Outbound: SvgIconComponent; +export const OutboundOutlined: SvgIconComponent; +export const OutboundRounded: SvgIconComponent; +export const OutboundSharp: SvgIconComponent; +export const OutboundTwoTone: SvgIconComponent; +export const Outbox: SvgIconComponent; +export const OutboxOutlined: SvgIconComponent; +export const OutboxRounded: SvgIconComponent; +export const OutboxSharp: SvgIconComponent; +export const OutboxTwoTone: SvgIconComponent; +export const OutdoorGrill: SvgIconComponent; +export const OutdoorGrillOutlined: SvgIconComponent; +export const OutdoorGrillRounded: SvgIconComponent; +export const OutdoorGrillSharp: SvgIconComponent; +export const OutdoorGrillTwoTone: SvgIconComponent; +export const Outlet: SvgIconComponent; +export const OutletOutlined: SvgIconComponent; +export const OutletRounded: SvgIconComponent; +export const OutletSharp: SvgIconComponent; +export const OutletTwoTone: SvgIconComponent; +export const OutlinedFlag: SvgIconComponent; +export const OutlinedFlagOutlined: SvgIconComponent; +export const OutlinedFlagRounded: SvgIconComponent; +export const OutlinedFlagSharp: SvgIconComponent; +export const OutlinedFlagTwoTone: SvgIconComponent; +export const Output: SvgIconComponent; +export const OutputOutlined: SvgIconComponent; +export const OutputRounded: SvgIconComponent; +export const OutputSharp: SvgIconComponent; +export const OutputTwoTone: SvgIconComponent; +export const Padding: SvgIconComponent; +export const PaddingOutlined: SvgIconComponent; +export const PaddingRounded: SvgIconComponent; +export const PaddingSharp: SvgIconComponent; +export const PaddingTwoTone: SvgIconComponent; +export const Pages: SvgIconComponent; +export const PagesOutlined: SvgIconComponent; +export const PagesRounded: SvgIconComponent; +export const PagesSharp: SvgIconComponent; +export const PagesTwoTone: SvgIconComponent; +export const Pageview: SvgIconComponent; +export const PageviewOutlined: SvgIconComponent; +export const PageviewRounded: SvgIconComponent; +export const PageviewSharp: SvgIconComponent; +export const PageviewTwoTone: SvgIconComponent; +export const Paid: SvgIconComponent; +export const PaidOutlined: SvgIconComponent; +export const PaidRounded: SvgIconComponent; +export const PaidSharp: SvgIconComponent; +export const PaidTwoTone: SvgIconComponent; +export const Palette: SvgIconComponent; +export const PaletteOutlined: SvgIconComponent; +export const PaletteRounded: SvgIconComponent; +export const PaletteSharp: SvgIconComponent; +export const PaletteTwoTone: SvgIconComponent; +export const PanTool: SvgIconComponent; +export const PanToolAlt: SvgIconComponent; +export const PanToolAltOutlined: SvgIconComponent; +export const PanToolAltRounded: SvgIconComponent; +export const PanToolAltSharp: SvgIconComponent; +export const PanToolAltTwoTone: SvgIconComponent; +export const PanToolOutlined: SvgIconComponent; +export const PanToolRounded: SvgIconComponent; +export const PanToolSharp: SvgIconComponent; +export const PanToolTwoTone: SvgIconComponent; +export const Panorama: SvgIconComponent; +export const PanoramaFishEye: SvgIconComponent; +export const PanoramaFishEyeOutlined: SvgIconComponent; +export const PanoramaFishEyeRounded: SvgIconComponent; +export const PanoramaFishEyeSharp: SvgIconComponent; +export const PanoramaFishEyeTwoTone: SvgIconComponent; +export const PanoramaHorizontal: SvgIconComponent; +export const PanoramaHorizontalOutlined: SvgIconComponent; +export const PanoramaHorizontalRounded: SvgIconComponent; +export const PanoramaHorizontalSelect: SvgIconComponent; +export const PanoramaHorizontalSelectOutlined: SvgIconComponent; +export const PanoramaHorizontalSelectRounded: SvgIconComponent; +export const PanoramaHorizontalSelectSharp: SvgIconComponent; +export const PanoramaHorizontalSelectTwoTone: SvgIconComponent; +export const PanoramaHorizontalSharp: SvgIconComponent; +export const PanoramaHorizontalTwoTone: SvgIconComponent; +export const PanoramaOutlined: SvgIconComponent; +export const PanoramaPhotosphere: SvgIconComponent; +export const PanoramaPhotosphereOutlined: SvgIconComponent; +export const PanoramaPhotosphereRounded: SvgIconComponent; +export const PanoramaPhotosphereSelect: SvgIconComponent; +export const PanoramaPhotosphereSelectOutlined: SvgIconComponent; +export const PanoramaPhotosphereSelectRounded: SvgIconComponent; +export const PanoramaPhotosphereSelectSharp: SvgIconComponent; +export const PanoramaPhotosphereSelectTwoTone: SvgIconComponent; +export const PanoramaPhotosphereSharp: SvgIconComponent; +export const PanoramaPhotosphereTwoTone: SvgIconComponent; +export const PanoramaRounded: SvgIconComponent; +export const PanoramaSharp: SvgIconComponent; +export const PanoramaTwoTone: SvgIconComponent; +export const PanoramaVertical: SvgIconComponent; +export const PanoramaVerticalOutlined: SvgIconComponent; +export const PanoramaVerticalRounded: SvgIconComponent; +export const PanoramaVerticalSelect: SvgIconComponent; +export const PanoramaVerticalSelectOutlined: SvgIconComponent; +export const PanoramaVerticalSelectRounded: SvgIconComponent; +export const PanoramaVerticalSelectSharp: SvgIconComponent; +export const PanoramaVerticalSelectTwoTone: SvgIconComponent; +export const PanoramaVerticalSharp: SvgIconComponent; +export const PanoramaVerticalTwoTone: SvgIconComponent; +export const PanoramaWideAngle: SvgIconComponent; +export const PanoramaWideAngleOutlined: SvgIconComponent; +export const PanoramaWideAngleRounded: SvgIconComponent; +export const PanoramaWideAngleSelect: SvgIconComponent; +export const PanoramaWideAngleSelectOutlined: SvgIconComponent; +export const PanoramaWideAngleSelectRounded: SvgIconComponent; +export const PanoramaWideAngleSelectSharp: SvgIconComponent; +export const PanoramaWideAngleSelectTwoTone: SvgIconComponent; +export const PanoramaWideAngleSharp: SvgIconComponent; +export const PanoramaWideAngleTwoTone: SvgIconComponent; +export const Paragliding: SvgIconComponent; +export const ParaglidingOutlined: SvgIconComponent; +export const ParaglidingRounded: SvgIconComponent; +export const ParaglidingSharp: SvgIconComponent; +export const ParaglidingTwoTone: SvgIconComponent; +export const Park: SvgIconComponent; +export const ParkOutlined: SvgIconComponent; +export const ParkRounded: SvgIconComponent; +export const ParkSharp: SvgIconComponent; +export const ParkTwoTone: SvgIconComponent; +export const PartyMode: SvgIconComponent; +export const PartyModeOutlined: SvgIconComponent; +export const PartyModeRounded: SvgIconComponent; +export const PartyModeSharp: SvgIconComponent; +export const PartyModeTwoTone: SvgIconComponent; +export const Password: SvgIconComponent; +export const PasswordOutlined: SvgIconComponent; +export const PasswordRounded: SvgIconComponent; +export const PasswordSharp: SvgIconComponent; +export const PasswordTwoTone: SvgIconComponent; +export const Pattern: SvgIconComponent; +export const PatternOutlined: SvgIconComponent; +export const PatternRounded: SvgIconComponent; +export const PatternSharp: SvgIconComponent; +export const PatternTwoTone: SvgIconComponent; +export const Pause: SvgIconComponent; +export const PauseCircle: SvgIconComponent; +export const PauseCircleFilled: SvgIconComponent; +export const PauseCircleFilledOutlined: SvgIconComponent; +export const PauseCircleFilledRounded: SvgIconComponent; +export const PauseCircleFilledSharp: SvgIconComponent; +export const PauseCircleFilledTwoTone: SvgIconComponent; +export const PauseCircleOutline: SvgIconComponent; +export const PauseCircleOutlineOutlined: SvgIconComponent; +export const PauseCircleOutlineRounded: SvgIconComponent; +export const PauseCircleOutlineSharp: SvgIconComponent; +export const PauseCircleOutlineTwoTone: SvgIconComponent; +export const PauseCircleOutlined: SvgIconComponent; +export const PauseCircleRounded: SvgIconComponent; +export const PauseCircleSharp: SvgIconComponent; +export const PauseCircleTwoTone: SvgIconComponent; +export const PauseOutlined: SvgIconComponent; +export const PausePresentation: SvgIconComponent; +export const PausePresentationOutlined: SvgIconComponent; +export const PausePresentationRounded: SvgIconComponent; +export const PausePresentationSharp: SvgIconComponent; +export const PausePresentationTwoTone: SvgIconComponent; +export const PauseRounded: SvgIconComponent; +export const PauseSharp: SvgIconComponent; +export const PauseTwoTone: SvgIconComponent; +export const Payment: SvgIconComponent; +export const PaymentOutlined: SvgIconComponent; +export const PaymentRounded: SvgIconComponent; +export const PaymentSharp: SvgIconComponent; +export const PaymentTwoTone: SvgIconComponent; +export const Payments: SvgIconComponent; +export const PaymentsOutlined: SvgIconComponent; +export const PaymentsRounded: SvgIconComponent; +export const PaymentsSharp: SvgIconComponent; +export const PaymentsTwoTone: SvgIconComponent; +export const PedalBike: SvgIconComponent; +export const PedalBikeOutlined: SvgIconComponent; +export const PedalBikeRounded: SvgIconComponent; +export const PedalBikeSharp: SvgIconComponent; +export const PedalBikeTwoTone: SvgIconComponent; +export const Pending: SvgIconComponent; +export const PendingActions: SvgIconComponent; +export const PendingActionsOutlined: SvgIconComponent; +export const PendingActionsRounded: SvgIconComponent; +export const PendingActionsSharp: SvgIconComponent; +export const PendingActionsTwoTone: SvgIconComponent; +export const PendingOutlined: SvgIconComponent; +export const PendingRounded: SvgIconComponent; +export const PendingSharp: SvgIconComponent; +export const PendingTwoTone: SvgIconComponent; +export const Pentagon: SvgIconComponent; +export const PentagonOutlined: SvgIconComponent; +export const PentagonRounded: SvgIconComponent; +export const PentagonSharp: SvgIconComponent; +export const PentagonTwoTone: SvgIconComponent; +export const People: SvgIconComponent; +export const PeopleAlt: SvgIconComponent; +export const PeopleAltOutlined: SvgIconComponent; +export const PeopleAltRounded: SvgIconComponent; +export const PeopleAltSharp: SvgIconComponent; +export const PeopleAltTwoTone: SvgIconComponent; +export const PeopleOutline: SvgIconComponent; +export const PeopleOutlineOutlined: SvgIconComponent; +export const PeopleOutlineRounded: SvgIconComponent; +export const PeopleOutlineSharp: SvgIconComponent; +export const PeopleOutlineTwoTone: SvgIconComponent; +export const PeopleOutlined: SvgIconComponent; +export const PeopleRounded: SvgIconComponent; +export const PeopleSharp: SvgIconComponent; +export const PeopleTwoTone: SvgIconComponent; +export const Percent: SvgIconComponent; +export const PercentOutlined: SvgIconComponent; +export const PercentRounded: SvgIconComponent; +export const PercentSharp: SvgIconComponent; +export const PercentTwoTone: SvgIconComponent; +export const PermCameraMic: SvgIconComponent; +export const PermCameraMicOutlined: SvgIconComponent; +export const PermCameraMicRounded: SvgIconComponent; +export const PermCameraMicSharp: SvgIconComponent; +export const PermCameraMicTwoTone: SvgIconComponent; +export const PermContactCalendar: SvgIconComponent; +export const PermContactCalendarOutlined: SvgIconComponent; +export const PermContactCalendarRounded: SvgIconComponent; +export const PermContactCalendarSharp: SvgIconComponent; +export const PermContactCalendarTwoTone: SvgIconComponent; +export const PermDataSetting: SvgIconComponent; +export const PermDataSettingOutlined: SvgIconComponent; +export const PermDataSettingRounded: SvgIconComponent; +export const PermDataSettingSharp: SvgIconComponent; +export const PermDataSettingTwoTone: SvgIconComponent; +export const PermDeviceInformation: SvgIconComponent; +export const PermDeviceInformationOutlined: SvgIconComponent; +export const PermDeviceInformationRounded: SvgIconComponent; +export const PermDeviceInformationSharp: SvgIconComponent; +export const PermDeviceInformationTwoTone: SvgIconComponent; +export const PermIdentity: SvgIconComponent; +export const PermIdentityOutlined: SvgIconComponent; +export const PermIdentityRounded: SvgIconComponent; +export const PermIdentitySharp: SvgIconComponent; +export const PermIdentityTwoTone: SvgIconComponent; +export const PermMedia: SvgIconComponent; +export const PermMediaOutlined: SvgIconComponent; +export const PermMediaRounded: SvgIconComponent; +export const PermMediaSharp: SvgIconComponent; +export const PermMediaTwoTone: SvgIconComponent; +export const PermPhoneMsg: SvgIconComponent; +export const PermPhoneMsgOutlined: SvgIconComponent; +export const PermPhoneMsgRounded: SvgIconComponent; +export const PermPhoneMsgSharp: SvgIconComponent; +export const PermPhoneMsgTwoTone: SvgIconComponent; +export const PermScanWifi: SvgIconComponent; +export const PermScanWifiOutlined: SvgIconComponent; +export const PermScanWifiRounded: SvgIconComponent; +export const PermScanWifiSharp: SvgIconComponent; +export const PermScanWifiTwoTone: SvgIconComponent; +export const Person: SvgIconComponent; +export const Person2: SvgIconComponent; +export const Person2Outlined: SvgIconComponent; +export const Person2Rounded: SvgIconComponent; +export const Person2Sharp: SvgIconComponent; +export const Person2TwoTone: SvgIconComponent; +export const Person3: SvgIconComponent; +export const Person3Outlined: SvgIconComponent; +export const Person3Rounded: SvgIconComponent; +export const Person3Sharp: SvgIconComponent; +export const Person3TwoTone: SvgIconComponent; +export const Person4: SvgIconComponent; +export const Person4Outlined: SvgIconComponent; +export const Person4Rounded: SvgIconComponent; +export const Person4Sharp: SvgIconComponent; +export const Person4TwoTone: SvgIconComponent; +export const PersonAdd: SvgIconComponent; +export const PersonAddAlt: SvgIconComponent; +export const PersonAddAlt1: SvgIconComponent; +export const PersonAddAlt1Outlined: SvgIconComponent; +export const PersonAddAlt1Rounded: SvgIconComponent; +export const PersonAddAlt1Sharp: SvgIconComponent; +export const PersonAddAlt1TwoTone: SvgIconComponent; +export const PersonAddAltOutlined: SvgIconComponent; +export const PersonAddAltRounded: SvgIconComponent; +export const PersonAddAltSharp: SvgIconComponent; +export const PersonAddAltTwoTone: SvgIconComponent; +export const PersonAddDisabled: SvgIconComponent; +export const PersonAddDisabledOutlined: SvgIconComponent; +export const PersonAddDisabledRounded: SvgIconComponent; +export const PersonAddDisabledSharp: SvgIconComponent; +export const PersonAddDisabledTwoTone: SvgIconComponent; +export const PersonAddOutlined: SvgIconComponent; +export const PersonAddRounded: SvgIconComponent; +export const PersonAddSharp: SvgIconComponent; +export const PersonAddTwoTone: SvgIconComponent; +export const PersonOff: SvgIconComponent; +export const PersonOffOutlined: SvgIconComponent; +export const PersonOffRounded: SvgIconComponent; +export const PersonOffSharp: SvgIconComponent; +export const PersonOffTwoTone: SvgIconComponent; +export const PersonOutline: SvgIconComponent; +export const PersonOutlineOutlined: SvgIconComponent; +export const PersonOutlineRounded: SvgIconComponent; +export const PersonOutlineSharp: SvgIconComponent; +export const PersonOutlineTwoTone: SvgIconComponent; +export const PersonOutlined: SvgIconComponent; +export const PersonPin: SvgIconComponent; +export const PersonPinCircle: SvgIconComponent; +export const PersonPinCircleOutlined: SvgIconComponent; +export const PersonPinCircleRounded: SvgIconComponent; +export const PersonPinCircleSharp: SvgIconComponent; +export const PersonPinCircleTwoTone: SvgIconComponent; +export const PersonPinOutlined: SvgIconComponent; +export const PersonPinRounded: SvgIconComponent; +export const PersonPinSharp: SvgIconComponent; +export const PersonPinTwoTone: SvgIconComponent; +export const PersonRemove: SvgIconComponent; +export const PersonRemoveAlt1: SvgIconComponent; +export const PersonRemoveAlt1Outlined: SvgIconComponent; +export const PersonRemoveAlt1Rounded: SvgIconComponent; +export const PersonRemoveAlt1Sharp: SvgIconComponent; +export const PersonRemoveAlt1TwoTone: SvgIconComponent; +export const PersonRemoveOutlined: SvgIconComponent; +export const PersonRemoveRounded: SvgIconComponent; +export const PersonRemoveSharp: SvgIconComponent; +export const PersonRemoveTwoTone: SvgIconComponent; +export const PersonRounded: SvgIconComponent; +export const PersonSearch: SvgIconComponent; +export const PersonSearchOutlined: SvgIconComponent; +export const PersonSearchRounded: SvgIconComponent; +export const PersonSearchSharp: SvgIconComponent; +export const PersonSearchTwoTone: SvgIconComponent; +export const PersonSharp: SvgIconComponent; +export const PersonTwoTone: SvgIconComponent; +export const PersonalVideo: SvgIconComponent; +export const PersonalVideoOutlined: SvgIconComponent; +export const PersonalVideoRounded: SvgIconComponent; +export const PersonalVideoSharp: SvgIconComponent; +export const PersonalVideoTwoTone: SvgIconComponent; +export const PestControl: SvgIconComponent; +export const PestControlOutlined: SvgIconComponent; +export const PestControlRodent: SvgIconComponent; +export const PestControlRodentOutlined: SvgIconComponent; +export const PestControlRodentRounded: SvgIconComponent; +export const PestControlRodentSharp: SvgIconComponent; +export const PestControlRodentTwoTone: SvgIconComponent; +export const PestControlRounded: SvgIconComponent; +export const PestControlSharp: SvgIconComponent; +export const PestControlTwoTone: SvgIconComponent; +export const Pets: SvgIconComponent; +export const PetsOutlined: SvgIconComponent; +export const PetsRounded: SvgIconComponent; +export const PetsSharp: SvgIconComponent; +export const PetsTwoTone: SvgIconComponent; +export const Phishing: SvgIconComponent; +export const PhishingOutlined: SvgIconComponent; +export const PhishingRounded: SvgIconComponent; +export const PhishingSharp: SvgIconComponent; +export const PhishingTwoTone: SvgIconComponent; +export const Phone: SvgIconComponent; +export const PhoneAndroid: SvgIconComponent; +export const PhoneAndroidOutlined: SvgIconComponent; +export const PhoneAndroidRounded: SvgIconComponent; +export const PhoneAndroidSharp: SvgIconComponent; +export const PhoneAndroidTwoTone: SvgIconComponent; +export const PhoneBluetoothSpeaker: SvgIconComponent; +export const PhoneBluetoothSpeakerOutlined: SvgIconComponent; +export const PhoneBluetoothSpeakerRounded: SvgIconComponent; +export const PhoneBluetoothSpeakerSharp: SvgIconComponent; +export const PhoneBluetoothSpeakerTwoTone: SvgIconComponent; +export const PhoneCallback: SvgIconComponent; +export const PhoneCallbackOutlined: SvgIconComponent; +export const PhoneCallbackRounded: SvgIconComponent; +export const PhoneCallbackSharp: SvgIconComponent; +export const PhoneCallbackTwoTone: SvgIconComponent; +export const PhoneDisabled: SvgIconComponent; +export const PhoneDisabledOutlined: SvgIconComponent; +export const PhoneDisabledRounded: SvgIconComponent; +export const PhoneDisabledSharp: SvgIconComponent; +export const PhoneDisabledTwoTone: SvgIconComponent; +export const PhoneEnabled: SvgIconComponent; +export const PhoneEnabledOutlined: SvgIconComponent; +export const PhoneEnabledRounded: SvgIconComponent; +export const PhoneEnabledSharp: SvgIconComponent; +export const PhoneEnabledTwoTone: SvgIconComponent; +export const PhoneForwarded: SvgIconComponent; +export const PhoneForwardedOutlined: SvgIconComponent; +export const PhoneForwardedRounded: SvgIconComponent; +export const PhoneForwardedSharp: SvgIconComponent; +export const PhoneForwardedTwoTone: SvgIconComponent; +export const PhoneInTalk: SvgIconComponent; +export const PhoneInTalkOutlined: SvgIconComponent; +export const PhoneInTalkRounded: SvgIconComponent; +export const PhoneInTalkSharp: SvgIconComponent; +export const PhoneInTalkTwoTone: SvgIconComponent; +export const PhoneIphone: SvgIconComponent; +export const PhoneIphoneOutlined: SvgIconComponent; +export const PhoneIphoneRounded: SvgIconComponent; +export const PhoneIphoneSharp: SvgIconComponent; +export const PhoneIphoneTwoTone: SvgIconComponent; +export const PhoneLocked: SvgIconComponent; +export const PhoneLockedOutlined: SvgIconComponent; +export const PhoneLockedRounded: SvgIconComponent; +export const PhoneLockedSharp: SvgIconComponent; +export const PhoneLockedTwoTone: SvgIconComponent; +export const PhoneMissed: SvgIconComponent; +export const PhoneMissedOutlined: SvgIconComponent; +export const PhoneMissedRounded: SvgIconComponent; +export const PhoneMissedSharp: SvgIconComponent; +export const PhoneMissedTwoTone: SvgIconComponent; +export const PhoneOutlined: SvgIconComponent; +export const PhonePaused: SvgIconComponent; +export const PhonePausedOutlined: SvgIconComponent; +export const PhonePausedRounded: SvgIconComponent; +export const PhonePausedSharp: SvgIconComponent; +export const PhonePausedTwoTone: SvgIconComponent; +export const PhoneRounded: SvgIconComponent; +export const PhoneSharp: SvgIconComponent; +export const PhoneTwoTone: SvgIconComponent; +export const Phonelink: SvgIconComponent; +export const PhonelinkErase: SvgIconComponent; +export const PhonelinkEraseOutlined: SvgIconComponent; +export const PhonelinkEraseRounded: SvgIconComponent; +export const PhonelinkEraseSharp: SvgIconComponent; +export const PhonelinkEraseTwoTone: SvgIconComponent; +export const PhonelinkLock: SvgIconComponent; +export const PhonelinkLockOutlined: SvgIconComponent; +export const PhonelinkLockRounded: SvgIconComponent; +export const PhonelinkLockSharp: SvgIconComponent; +export const PhonelinkLockTwoTone: SvgIconComponent; +export const PhonelinkOff: SvgIconComponent; +export const PhonelinkOffOutlined: SvgIconComponent; +export const PhonelinkOffRounded: SvgIconComponent; +export const PhonelinkOffSharp: SvgIconComponent; +export const PhonelinkOffTwoTone: SvgIconComponent; +export const PhonelinkOutlined: SvgIconComponent; +export const PhonelinkRing: SvgIconComponent; +export const PhonelinkRingOutlined: SvgIconComponent; +export const PhonelinkRingRounded: SvgIconComponent; +export const PhonelinkRingSharp: SvgIconComponent; +export const PhonelinkRingTwoTone: SvgIconComponent; +export const PhonelinkRounded: SvgIconComponent; +export const PhonelinkSetup: SvgIconComponent; +export const PhonelinkSetupOutlined: SvgIconComponent; +export const PhonelinkSetupRounded: SvgIconComponent; +export const PhonelinkSetupSharp: SvgIconComponent; +export const PhonelinkSetupTwoTone: SvgIconComponent; +export const PhonelinkSharp: SvgIconComponent; +export const PhonelinkTwoTone: SvgIconComponent; +export const Photo: SvgIconComponent; +export const PhotoAlbum: SvgIconComponent; +export const PhotoAlbumOutlined: SvgIconComponent; +export const PhotoAlbumRounded: SvgIconComponent; +export const PhotoAlbumSharp: SvgIconComponent; +export const PhotoAlbumTwoTone: SvgIconComponent; +export const PhotoCamera: SvgIconComponent; +export const PhotoCameraBack: SvgIconComponent; +export const PhotoCameraBackOutlined: SvgIconComponent; +export const PhotoCameraBackRounded: SvgIconComponent; +export const PhotoCameraBackSharp: SvgIconComponent; +export const PhotoCameraBackTwoTone: SvgIconComponent; +export const PhotoCameraFront: SvgIconComponent; +export const PhotoCameraFrontOutlined: SvgIconComponent; +export const PhotoCameraFrontRounded: SvgIconComponent; +export const PhotoCameraFrontSharp: SvgIconComponent; +export const PhotoCameraFrontTwoTone: SvgIconComponent; +export const PhotoCameraOutlined: SvgIconComponent; +export const PhotoCameraRounded: SvgIconComponent; +export const PhotoCameraSharp: SvgIconComponent; +export const PhotoCameraTwoTone: SvgIconComponent; +export const PhotoFilter: SvgIconComponent; +export const PhotoFilterOutlined: SvgIconComponent; +export const PhotoFilterRounded: SvgIconComponent; +export const PhotoFilterSharp: SvgIconComponent; +export const PhotoFilterTwoTone: SvgIconComponent; +export const PhotoLibrary: SvgIconComponent; +export const PhotoLibraryOutlined: SvgIconComponent; +export const PhotoLibraryRounded: SvgIconComponent; +export const PhotoLibrarySharp: SvgIconComponent; +export const PhotoLibraryTwoTone: SvgIconComponent; +export const PhotoOutlined: SvgIconComponent; +export const PhotoRounded: SvgIconComponent; +export const PhotoSharp: SvgIconComponent; +export const PhotoSizeSelectActual: SvgIconComponent; +export const PhotoSizeSelectActualOutlined: SvgIconComponent; +export const PhotoSizeSelectActualRounded: SvgIconComponent; +export const PhotoSizeSelectActualSharp: SvgIconComponent; +export const PhotoSizeSelectActualTwoTone: SvgIconComponent; +export const PhotoSizeSelectLarge: SvgIconComponent; +export const PhotoSizeSelectLargeOutlined: SvgIconComponent; +export const PhotoSizeSelectLargeRounded: SvgIconComponent; +export const PhotoSizeSelectLargeSharp: SvgIconComponent; +export const PhotoSizeSelectLargeTwoTone: SvgIconComponent; +export const PhotoSizeSelectSmall: SvgIconComponent; +export const PhotoSizeSelectSmallOutlined: SvgIconComponent; +export const PhotoSizeSelectSmallRounded: SvgIconComponent; +export const PhotoSizeSelectSmallSharp: SvgIconComponent; +export const PhotoSizeSelectSmallTwoTone: SvgIconComponent; +export const PhotoTwoTone: SvgIconComponent; +export const Php: SvgIconComponent; +export const PhpOutlined: SvgIconComponent; +export const PhpRounded: SvgIconComponent; +export const PhpSharp: SvgIconComponent; +export const PhpTwoTone: SvgIconComponent; +export const Piano: SvgIconComponent; +export const PianoOff: SvgIconComponent; +export const PianoOffOutlined: SvgIconComponent; +export const PianoOffRounded: SvgIconComponent; +export const PianoOffSharp: SvgIconComponent; +export const PianoOffTwoTone: SvgIconComponent; +export const PianoOutlined: SvgIconComponent; +export const PianoRounded: SvgIconComponent; +export const PianoSharp: SvgIconComponent; +export const PianoTwoTone: SvgIconComponent; +export const PictureAsPdf: SvgIconComponent; +export const PictureAsPdfOutlined: SvgIconComponent; +export const PictureAsPdfRounded: SvgIconComponent; +export const PictureAsPdfSharp: SvgIconComponent; +export const PictureAsPdfTwoTone: SvgIconComponent; +export const PictureInPicture: SvgIconComponent; +export const PictureInPictureAlt: SvgIconComponent; +export const PictureInPictureAltOutlined: SvgIconComponent; +export const PictureInPictureAltRounded: SvgIconComponent; +export const PictureInPictureAltSharp: SvgIconComponent; +export const PictureInPictureAltTwoTone: SvgIconComponent; +export const PictureInPictureOutlined: SvgIconComponent; +export const PictureInPictureRounded: SvgIconComponent; +export const PictureInPictureSharp: SvgIconComponent; +export const PictureInPictureTwoTone: SvgIconComponent; +export const PieChart: SvgIconComponent; +export const PieChartOutline: SvgIconComponent; +export const PieChartOutlineOutlined: SvgIconComponent; +export const PieChartOutlineRounded: SvgIconComponent; +export const PieChartOutlineSharp: SvgIconComponent; +export const PieChartOutlineTwoTone: SvgIconComponent; +export const PieChartOutlined: SvgIconComponent; +export const PieChartRounded: SvgIconComponent; +export const PieChartSharp: SvgIconComponent; +export const PieChartTwoTone: SvgIconComponent; +export const Pin: SvgIconComponent; +export const PinDrop: SvgIconComponent; +export const PinDropOutlined: SvgIconComponent; +export const PinDropRounded: SvgIconComponent; +export const PinDropSharp: SvgIconComponent; +export const PinDropTwoTone: SvgIconComponent; +export const PinOutlined: SvgIconComponent; +export const PinRounded: SvgIconComponent; +export const PinSharp: SvgIconComponent; +export const PinTwoTone: SvgIconComponent; +export const Pinch: SvgIconComponent; +export const PinchOutlined: SvgIconComponent; +export const PinchRounded: SvgIconComponent; +export const PinchSharp: SvgIconComponent; +export const PinchTwoTone: SvgIconComponent; +export const Pinterest: SvgIconComponent; +export const PivotTableChart: SvgIconComponent; +export const PivotTableChartOutlined: SvgIconComponent; +export const PivotTableChartRounded: SvgIconComponent; +export const PivotTableChartSharp: SvgIconComponent; +export const PivotTableChartTwoTone: SvgIconComponent; +export const Pix: SvgIconComponent; +export const PixOutlined: SvgIconComponent; +export const PixRounded: SvgIconComponent; +export const PixSharp: SvgIconComponent; +export const PixTwoTone: SvgIconComponent; +export const Place: SvgIconComponent; +export const PlaceOutlined: SvgIconComponent; +export const PlaceRounded: SvgIconComponent; +export const PlaceSharp: SvgIconComponent; +export const PlaceTwoTone: SvgIconComponent; +export const Plagiarism: SvgIconComponent; +export const PlagiarismOutlined: SvgIconComponent; +export const PlagiarismRounded: SvgIconComponent; +export const PlagiarismSharp: SvgIconComponent; +export const PlagiarismTwoTone: SvgIconComponent; +export const PlayArrow: SvgIconComponent; +export const PlayArrowOutlined: SvgIconComponent; +export const PlayArrowRounded: SvgIconComponent; +export const PlayArrowSharp: SvgIconComponent; +export const PlayArrowTwoTone: SvgIconComponent; +export const PlayCircle: SvgIconComponent; +export const PlayCircleFilled: SvgIconComponent; +export const PlayCircleFilledOutlined: SvgIconComponent; +export const PlayCircleFilledRounded: SvgIconComponent; +export const PlayCircleFilledSharp: SvgIconComponent; +export const PlayCircleFilledTwoTone: SvgIconComponent; +export const PlayCircleFilledWhite: SvgIconComponent; +export const PlayCircleFilledWhiteOutlined: SvgIconComponent; +export const PlayCircleFilledWhiteRounded: SvgIconComponent; +export const PlayCircleFilledWhiteSharp: SvgIconComponent; +export const PlayCircleFilledWhiteTwoTone: SvgIconComponent; +export const PlayCircleOutline: SvgIconComponent; +export const PlayCircleOutlineOutlined: SvgIconComponent; +export const PlayCircleOutlineRounded: SvgIconComponent; +export const PlayCircleOutlineSharp: SvgIconComponent; +export const PlayCircleOutlineTwoTone: SvgIconComponent; +export const PlayCircleOutlined: SvgIconComponent; +export const PlayCircleRounded: SvgIconComponent; +export const PlayCircleSharp: SvgIconComponent; +export const PlayCircleTwoTone: SvgIconComponent; +export const PlayDisabled: SvgIconComponent; +export const PlayDisabledOutlined: SvgIconComponent; +export const PlayDisabledRounded: SvgIconComponent; +export const PlayDisabledSharp: SvgIconComponent; +export const PlayDisabledTwoTone: SvgIconComponent; +export const PlayForWork: SvgIconComponent; +export const PlayForWorkOutlined: SvgIconComponent; +export const PlayForWorkRounded: SvgIconComponent; +export const PlayForWorkSharp: SvgIconComponent; +export const PlayForWorkTwoTone: SvgIconComponent; +export const PlayLesson: SvgIconComponent; +export const PlayLessonOutlined: SvgIconComponent; +export const PlayLessonRounded: SvgIconComponent; +export const PlayLessonSharp: SvgIconComponent; +export const PlayLessonTwoTone: SvgIconComponent; +export const PlaylistAdd: SvgIconComponent; +export const PlaylistAddCheck: SvgIconComponent; +export const PlaylistAddCheckCircle: SvgIconComponent; +export const PlaylistAddCheckCircleOutlined: SvgIconComponent; +export const PlaylistAddCheckCircleRounded: SvgIconComponent; +export const PlaylistAddCheckCircleSharp: SvgIconComponent; +export const PlaylistAddCheckCircleTwoTone: SvgIconComponent; +export const PlaylistAddCheckOutlined: SvgIconComponent; +export const PlaylistAddCheckRounded: SvgIconComponent; +export const PlaylistAddCheckSharp: SvgIconComponent; +export const PlaylistAddCheckTwoTone: SvgIconComponent; +export const PlaylistAddCircle: SvgIconComponent; +export const PlaylistAddCircleOutlined: SvgIconComponent; +export const PlaylistAddCircleRounded: SvgIconComponent; +export const PlaylistAddCircleSharp: SvgIconComponent; +export const PlaylistAddCircleTwoTone: SvgIconComponent; +export const PlaylistAddOutlined: SvgIconComponent; +export const PlaylistAddRounded: SvgIconComponent; +export const PlaylistAddSharp: SvgIconComponent; +export const PlaylistAddTwoTone: SvgIconComponent; +export const PlaylistPlay: SvgIconComponent; +export const PlaylistPlayOutlined: SvgIconComponent; +export const PlaylistPlayRounded: SvgIconComponent; +export const PlaylistPlaySharp: SvgIconComponent; +export const PlaylistPlayTwoTone: SvgIconComponent; +export const PlaylistRemove: SvgIconComponent; +export const PlaylistRemoveOutlined: SvgIconComponent; +export const PlaylistRemoveRounded: SvgIconComponent; +export const PlaylistRemoveSharp: SvgIconComponent; +export const PlaylistRemoveTwoTone: SvgIconComponent; +export const Plumbing: SvgIconComponent; +export const PlumbingOutlined: SvgIconComponent; +export const PlumbingRounded: SvgIconComponent; +export const PlumbingSharp: SvgIconComponent; +export const PlumbingTwoTone: SvgIconComponent; +export const PlusOne: SvgIconComponent; +export const PlusOneOutlined: SvgIconComponent; +export const PlusOneRounded: SvgIconComponent; +export const PlusOneSharp: SvgIconComponent; +export const PlusOneTwoTone: SvgIconComponent; +export const Podcasts: SvgIconComponent; +export const PodcastsOutlined: SvgIconComponent; +export const PodcastsRounded: SvgIconComponent; +export const PodcastsSharp: SvgIconComponent; +export const PodcastsTwoTone: SvgIconComponent; +export const PointOfSale: SvgIconComponent; +export const PointOfSaleOutlined: SvgIconComponent; +export const PointOfSaleRounded: SvgIconComponent; +export const PointOfSaleSharp: SvgIconComponent; +export const PointOfSaleTwoTone: SvgIconComponent; +export const Policy: SvgIconComponent; +export const PolicyOutlined: SvgIconComponent; +export const PolicyRounded: SvgIconComponent; +export const PolicySharp: SvgIconComponent; +export const PolicyTwoTone: SvgIconComponent; +export const Poll: SvgIconComponent; +export const PollOutlined: SvgIconComponent; +export const PollRounded: SvgIconComponent; +export const PollSharp: SvgIconComponent; +export const PollTwoTone: SvgIconComponent; +export const Polyline: SvgIconComponent; +export const PolylineOutlined: SvgIconComponent; +export const PolylineRounded: SvgIconComponent; +export const PolylineSharp: SvgIconComponent; +export const PolylineTwoTone: SvgIconComponent; +export const Pool: SvgIconComponent; +export const PoolOutlined: SvgIconComponent; +export const PoolRounded: SvgIconComponent; +export const PoolSharp: SvgIconComponent; +export const PoolTwoTone: SvgIconComponent; +export const PortableWifiOff: SvgIconComponent; +export const PortableWifiOffOutlined: SvgIconComponent; +export const PortableWifiOffRounded: SvgIconComponent; +export const PortableWifiOffSharp: SvgIconComponent; +export const PortableWifiOffTwoTone: SvgIconComponent; +export const Portrait: SvgIconComponent; +export const PortraitOutlined: SvgIconComponent; +export const PortraitRounded: SvgIconComponent; +export const PortraitSharp: SvgIconComponent; +export const PortraitTwoTone: SvgIconComponent; +export const PostAdd: SvgIconComponent; +export const PostAddOutlined: SvgIconComponent; +export const PostAddRounded: SvgIconComponent; +export const PostAddSharp: SvgIconComponent; +export const PostAddTwoTone: SvgIconComponent; +export const Power: SvgIconComponent; +export const PowerInput: SvgIconComponent; +export const PowerInputOutlined: SvgIconComponent; +export const PowerInputRounded: SvgIconComponent; +export const PowerInputSharp: SvgIconComponent; +export const PowerInputTwoTone: SvgIconComponent; +export const PowerOff: SvgIconComponent; +export const PowerOffOutlined: SvgIconComponent; +export const PowerOffRounded: SvgIconComponent; +export const PowerOffSharp: SvgIconComponent; +export const PowerOffTwoTone: SvgIconComponent; +export const PowerOutlined: SvgIconComponent; +export const PowerRounded: SvgIconComponent; +export const PowerSettingsNew: SvgIconComponent; +export const PowerSettingsNewOutlined: SvgIconComponent; +export const PowerSettingsNewRounded: SvgIconComponent; +export const PowerSettingsNewSharp: SvgIconComponent; +export const PowerSettingsNewTwoTone: SvgIconComponent; +export const PowerSharp: SvgIconComponent; +export const PowerTwoTone: SvgIconComponent; +export const PrecisionManufacturing: SvgIconComponent; +export const PrecisionManufacturingOutlined: SvgIconComponent; +export const PrecisionManufacturingRounded: SvgIconComponent; +export const PrecisionManufacturingSharp: SvgIconComponent; +export const PrecisionManufacturingTwoTone: SvgIconComponent; +export const PregnantWoman: SvgIconComponent; +export const PregnantWomanOutlined: SvgIconComponent; +export const PregnantWomanRounded: SvgIconComponent; +export const PregnantWomanSharp: SvgIconComponent; +export const PregnantWomanTwoTone: SvgIconComponent; +export const PresentToAll: SvgIconComponent; +export const PresentToAllOutlined: SvgIconComponent; +export const PresentToAllRounded: SvgIconComponent; +export const PresentToAllSharp: SvgIconComponent; +export const PresentToAllTwoTone: SvgIconComponent; +export const Preview: SvgIconComponent; +export const PreviewOutlined: SvgIconComponent; +export const PreviewRounded: SvgIconComponent; +export const PreviewSharp: SvgIconComponent; +export const PreviewTwoTone: SvgIconComponent; +export const PriceChange: SvgIconComponent; +export const PriceChangeOutlined: SvgIconComponent; +export const PriceChangeRounded: SvgIconComponent; +export const PriceChangeSharp: SvgIconComponent; +export const PriceChangeTwoTone: SvgIconComponent; +export const PriceCheck: SvgIconComponent; +export const PriceCheckOutlined: SvgIconComponent; +export const PriceCheckRounded: SvgIconComponent; +export const PriceCheckSharp: SvgIconComponent; +export const PriceCheckTwoTone: SvgIconComponent; +export const Print: SvgIconComponent; +export const PrintDisabled: SvgIconComponent; +export const PrintDisabledOutlined: SvgIconComponent; +export const PrintDisabledRounded: SvgIconComponent; +export const PrintDisabledSharp: SvgIconComponent; +export const PrintDisabledTwoTone: SvgIconComponent; +export const PrintOutlined: SvgIconComponent; +export const PrintRounded: SvgIconComponent; +export const PrintSharp: SvgIconComponent; +export const PrintTwoTone: SvgIconComponent; +export const PriorityHigh: SvgIconComponent; +export const PriorityHighOutlined: SvgIconComponent; +export const PriorityHighRounded: SvgIconComponent; +export const PriorityHighSharp: SvgIconComponent; +export const PriorityHighTwoTone: SvgIconComponent; +export const PrivacyTip: SvgIconComponent; +export const PrivacyTipOutlined: SvgIconComponent; +export const PrivacyTipRounded: SvgIconComponent; +export const PrivacyTipSharp: SvgIconComponent; +export const PrivacyTipTwoTone: SvgIconComponent; +export const ProductionQuantityLimits: SvgIconComponent; +export const ProductionQuantityLimitsOutlined: SvgIconComponent; +export const ProductionQuantityLimitsRounded: SvgIconComponent; +export const ProductionQuantityLimitsSharp: SvgIconComponent; +export const ProductionQuantityLimitsTwoTone: SvgIconComponent; +export const Propane: SvgIconComponent; +export const PropaneOutlined: SvgIconComponent; +export const PropaneRounded: SvgIconComponent; +export const PropaneSharp: SvgIconComponent; +export const PropaneTank: SvgIconComponent; +export const PropaneTankOutlined: SvgIconComponent; +export const PropaneTankRounded: SvgIconComponent; +export const PropaneTankSharp: SvgIconComponent; +export const PropaneTankTwoTone: SvgIconComponent; +export const PropaneTwoTone: SvgIconComponent; +export const Psychology: SvgIconComponent; +export const PsychologyAlt: SvgIconComponent; +export const PsychologyAltOutlined: SvgIconComponent; +export const PsychologyAltRounded: SvgIconComponent; +export const PsychologyAltSharp: SvgIconComponent; +export const PsychologyAltTwoTone: SvgIconComponent; +export const PsychologyOutlined: SvgIconComponent; +export const PsychologyRounded: SvgIconComponent; +export const PsychologySharp: SvgIconComponent; +export const PsychologyTwoTone: SvgIconComponent; +export const Public: SvgIconComponent; +export const PublicOff: SvgIconComponent; +export const PublicOffOutlined: SvgIconComponent; +export const PublicOffRounded: SvgIconComponent; +export const PublicOffSharp: SvgIconComponent; +export const PublicOffTwoTone: SvgIconComponent; +export const PublicOutlined: SvgIconComponent; +export const PublicRounded: SvgIconComponent; +export const PublicSharp: SvgIconComponent; +export const PublicTwoTone: SvgIconComponent; +export const Publish: SvgIconComponent; +export const PublishOutlined: SvgIconComponent; +export const PublishRounded: SvgIconComponent; +export const PublishSharp: SvgIconComponent; +export const PublishTwoTone: SvgIconComponent; +export const PublishedWithChanges: SvgIconComponent; +export const PublishedWithChangesOutlined: SvgIconComponent; +export const PublishedWithChangesRounded: SvgIconComponent; +export const PublishedWithChangesSharp: SvgIconComponent; +export const PublishedWithChangesTwoTone: SvgIconComponent; +export const PunchClock: SvgIconComponent; +export const PunchClockOutlined: SvgIconComponent; +export const PunchClockRounded: SvgIconComponent; +export const PunchClockSharp: SvgIconComponent; +export const PunchClockTwoTone: SvgIconComponent; +export const PushPin: SvgIconComponent; +export const PushPinOutlined: SvgIconComponent; +export const PushPinRounded: SvgIconComponent; +export const PushPinSharp: SvgIconComponent; +export const PushPinTwoTone: SvgIconComponent; +export const QrCode: SvgIconComponent; +export const QrCode2: SvgIconComponent; +export const QrCode2Outlined: SvgIconComponent; +export const QrCode2Rounded: SvgIconComponent; +export const QrCode2Sharp: SvgIconComponent; +export const QrCode2TwoTone: SvgIconComponent; +export const QrCodeOutlined: SvgIconComponent; +export const QrCodeRounded: SvgIconComponent; +export const QrCodeScanner: SvgIconComponent; +export const QrCodeScannerOutlined: SvgIconComponent; +export const QrCodeScannerRounded: SvgIconComponent; +export const QrCodeScannerSharp: SvgIconComponent; +export const QrCodeScannerTwoTone: SvgIconComponent; +export const QrCodeSharp: SvgIconComponent; +export const QrCodeTwoTone: SvgIconComponent; +export const QueryBuilder: SvgIconComponent; +export const QueryBuilderOutlined: SvgIconComponent; +export const QueryBuilderRounded: SvgIconComponent; +export const QueryBuilderSharp: SvgIconComponent; +export const QueryBuilderTwoTone: SvgIconComponent; +export const QueryStats: SvgIconComponent; +export const QueryStatsOutlined: SvgIconComponent; +export const QueryStatsRounded: SvgIconComponent; +export const QueryStatsSharp: SvgIconComponent; +export const QueryStatsTwoTone: SvgIconComponent; +export const QuestionAnswer: SvgIconComponent; +export const QuestionAnswerOutlined: SvgIconComponent; +export const QuestionAnswerRounded: SvgIconComponent; +export const QuestionAnswerSharp: SvgIconComponent; +export const QuestionAnswerTwoTone: SvgIconComponent; +export const QuestionMark: SvgIconComponent; +export const QuestionMarkOutlined: SvgIconComponent; +export const QuestionMarkRounded: SvgIconComponent; +export const QuestionMarkSharp: SvgIconComponent; +export const QuestionMarkTwoTone: SvgIconComponent; +export const Queue: SvgIconComponent; +export const QueueMusic: SvgIconComponent; +export const QueueMusicOutlined: SvgIconComponent; +export const QueueMusicRounded: SvgIconComponent; +export const QueueMusicSharp: SvgIconComponent; +export const QueueMusicTwoTone: SvgIconComponent; +export const QueueOutlined: SvgIconComponent; +export const QueuePlayNext: SvgIconComponent; +export const QueuePlayNextOutlined: SvgIconComponent; +export const QueuePlayNextRounded: SvgIconComponent; +export const QueuePlayNextSharp: SvgIconComponent; +export const QueuePlayNextTwoTone: SvgIconComponent; +export const QueueRounded: SvgIconComponent; +export const QueueSharp: SvgIconComponent; +export const QueueTwoTone: SvgIconComponent; +export const Quickreply: SvgIconComponent; +export const QuickreplyOutlined: SvgIconComponent; +export const QuickreplyRounded: SvgIconComponent; +export const QuickreplySharp: SvgIconComponent; +export const QuickreplyTwoTone: SvgIconComponent; +export const Quiz: SvgIconComponent; +export const QuizOutlined: SvgIconComponent; +export const QuizRounded: SvgIconComponent; +export const QuizSharp: SvgIconComponent; +export const QuizTwoTone: SvgIconComponent; +export const RMobiledata: SvgIconComponent; +export const RMobiledataOutlined: SvgIconComponent; +export const RMobiledataRounded: SvgIconComponent; +export const RMobiledataSharp: SvgIconComponent; +export const RMobiledataTwoTone: SvgIconComponent; +export const Radar: SvgIconComponent; +export const RadarOutlined: SvgIconComponent; +export const RadarRounded: SvgIconComponent; +export const RadarSharp: SvgIconComponent; +export const RadarTwoTone: SvgIconComponent; +export const Radio: SvgIconComponent; +export const RadioButtonChecked: SvgIconComponent; +export const RadioButtonCheckedOutlined: SvgIconComponent; +export const RadioButtonCheckedRounded: SvgIconComponent; +export const RadioButtonCheckedSharp: SvgIconComponent; +export const RadioButtonCheckedTwoTone: SvgIconComponent; +export const RadioButtonUnchecked: SvgIconComponent; +export const RadioButtonUncheckedOutlined: SvgIconComponent; +export const RadioButtonUncheckedRounded: SvgIconComponent; +export const RadioButtonUncheckedSharp: SvgIconComponent; +export const RadioButtonUncheckedTwoTone: SvgIconComponent; +export const RadioOutlined: SvgIconComponent; +export const RadioRounded: SvgIconComponent; +export const RadioSharp: SvgIconComponent; +export const RadioTwoTone: SvgIconComponent; +export const RailwayAlert: SvgIconComponent; +export const RailwayAlertOutlined: SvgIconComponent; +export const RailwayAlertRounded: SvgIconComponent; +export const RailwayAlertSharp: SvgIconComponent; +export const RailwayAlertTwoTone: SvgIconComponent; +export const RamenDining: SvgIconComponent; +export const RamenDiningOutlined: SvgIconComponent; +export const RamenDiningRounded: SvgIconComponent; +export const RamenDiningSharp: SvgIconComponent; +export const RamenDiningTwoTone: SvgIconComponent; +export const RampLeft: SvgIconComponent; +export const RampLeftOutlined: SvgIconComponent; +export const RampLeftRounded: SvgIconComponent; +export const RampLeftSharp: SvgIconComponent; +export const RampLeftTwoTone: SvgIconComponent; +export const RampRight: SvgIconComponent; +export const RampRightOutlined: SvgIconComponent; +export const RampRightRounded: SvgIconComponent; +export const RampRightSharp: SvgIconComponent; +export const RampRightTwoTone: SvgIconComponent; +export const RateReview: SvgIconComponent; +export const RateReviewOutlined: SvgIconComponent; +export const RateReviewRounded: SvgIconComponent; +export const RateReviewSharp: SvgIconComponent; +export const RateReviewTwoTone: SvgIconComponent; +export const RawOff: SvgIconComponent; +export const RawOffOutlined: SvgIconComponent; +export const RawOffRounded: SvgIconComponent; +export const RawOffSharp: SvgIconComponent; +export const RawOffTwoTone: SvgIconComponent; +export const RawOn: SvgIconComponent; +export const RawOnOutlined: SvgIconComponent; +export const RawOnRounded: SvgIconComponent; +export const RawOnSharp: SvgIconComponent; +export const RawOnTwoTone: SvgIconComponent; +export const ReadMore: SvgIconComponent; +export const ReadMoreOutlined: SvgIconComponent; +export const ReadMoreRounded: SvgIconComponent; +export const ReadMoreSharp: SvgIconComponent; +export const ReadMoreTwoTone: SvgIconComponent; +export const Receipt: SvgIconComponent; +export const ReceiptLong: SvgIconComponent; +export const ReceiptLongOutlined: SvgIconComponent; +export const ReceiptLongRounded: SvgIconComponent; +export const ReceiptLongSharp: SvgIconComponent; +export const ReceiptLongTwoTone: SvgIconComponent; +export const ReceiptOutlined: SvgIconComponent; +export const ReceiptRounded: SvgIconComponent; +export const ReceiptSharp: SvgIconComponent; +export const ReceiptTwoTone: SvgIconComponent; +export const RecentActors: SvgIconComponent; +export const RecentActorsOutlined: SvgIconComponent; +export const RecentActorsRounded: SvgIconComponent; +export const RecentActorsSharp: SvgIconComponent; +export const RecentActorsTwoTone: SvgIconComponent; +export const Recommend: SvgIconComponent; +export const RecommendOutlined: SvgIconComponent; +export const RecommendRounded: SvgIconComponent; +export const RecommendSharp: SvgIconComponent; +export const RecommendTwoTone: SvgIconComponent; +export const RecordVoiceOver: SvgIconComponent; +export const RecordVoiceOverOutlined: SvgIconComponent; +export const RecordVoiceOverRounded: SvgIconComponent; +export const RecordVoiceOverSharp: SvgIconComponent; +export const RecordVoiceOverTwoTone: SvgIconComponent; +export const Rectangle: SvgIconComponent; +export const RectangleOutlined: SvgIconComponent; +export const RectangleRounded: SvgIconComponent; +export const RectangleSharp: SvgIconComponent; +export const RectangleTwoTone: SvgIconComponent; +export const Recycling: SvgIconComponent; +export const RecyclingOutlined: SvgIconComponent; +export const RecyclingRounded: SvgIconComponent; +export const RecyclingSharp: SvgIconComponent; +export const RecyclingTwoTone: SvgIconComponent; +export const Reddit: SvgIconComponent; +export const Redeem: SvgIconComponent; +export const RedeemOutlined: SvgIconComponent; +export const RedeemRounded: SvgIconComponent; +export const RedeemSharp: SvgIconComponent; +export const RedeemTwoTone: SvgIconComponent; +export const Redo: SvgIconComponent; +export const RedoOutlined: SvgIconComponent; +export const RedoRounded: SvgIconComponent; +export const RedoSharp: SvgIconComponent; +export const RedoTwoTone: SvgIconComponent; +export const ReduceCapacity: SvgIconComponent; +export const ReduceCapacityOutlined: SvgIconComponent; +export const ReduceCapacityRounded: SvgIconComponent; +export const ReduceCapacitySharp: SvgIconComponent; +export const ReduceCapacityTwoTone: SvgIconComponent; +export const Refresh: SvgIconComponent; +export const RefreshOutlined: SvgIconComponent; +export const RefreshRounded: SvgIconComponent; +export const RefreshSharp: SvgIconComponent; +export const RefreshTwoTone: SvgIconComponent; +export const RememberMe: SvgIconComponent; +export const RememberMeOutlined: SvgIconComponent; +export const RememberMeRounded: SvgIconComponent; +export const RememberMeSharp: SvgIconComponent; +export const RememberMeTwoTone: SvgIconComponent; +export const Remove: SvgIconComponent; +export const RemoveCircle: SvgIconComponent; +export const RemoveCircleOutline: SvgIconComponent; +export const RemoveCircleOutlineOutlined: SvgIconComponent; +export const RemoveCircleOutlineRounded: SvgIconComponent; +export const RemoveCircleOutlineSharp: SvgIconComponent; +export const RemoveCircleOutlineTwoTone: SvgIconComponent; +export const RemoveCircleOutlined: SvgIconComponent; +export const RemoveCircleRounded: SvgIconComponent; +export const RemoveCircleSharp: SvgIconComponent; +export const RemoveCircleTwoTone: SvgIconComponent; +export const RemoveDone: SvgIconComponent; +export const RemoveDoneOutlined: SvgIconComponent; +export const RemoveDoneRounded: SvgIconComponent; +export const RemoveDoneSharp: SvgIconComponent; +export const RemoveDoneTwoTone: SvgIconComponent; +export const RemoveFromQueue: SvgIconComponent; +export const RemoveFromQueueOutlined: SvgIconComponent; +export const RemoveFromQueueRounded: SvgIconComponent; +export const RemoveFromQueueSharp: SvgIconComponent; +export const RemoveFromQueueTwoTone: SvgIconComponent; +export const RemoveModerator: SvgIconComponent; +export const RemoveModeratorOutlined: SvgIconComponent; +export const RemoveModeratorRounded: SvgIconComponent; +export const RemoveModeratorSharp: SvgIconComponent; +export const RemoveModeratorTwoTone: SvgIconComponent; +export const RemoveOutlined: SvgIconComponent; +export const RemoveRedEye: SvgIconComponent; +export const RemoveRedEyeOutlined: SvgIconComponent; +export const RemoveRedEyeRounded: SvgIconComponent; +export const RemoveRedEyeSharp: SvgIconComponent; +export const RemoveRedEyeTwoTone: SvgIconComponent; +export const RemoveRoad: SvgIconComponent; +export const RemoveRoadOutlined: SvgIconComponent; +export const RemoveRoadRounded: SvgIconComponent; +export const RemoveRoadSharp: SvgIconComponent; +export const RemoveRoadTwoTone: SvgIconComponent; +export const RemoveRounded: SvgIconComponent; +export const RemoveSharp: SvgIconComponent; +export const RemoveShoppingCart: SvgIconComponent; +export const RemoveShoppingCartOutlined: SvgIconComponent; +export const RemoveShoppingCartRounded: SvgIconComponent; +export const RemoveShoppingCartSharp: SvgIconComponent; +export const RemoveShoppingCartTwoTone: SvgIconComponent; +export const RemoveTwoTone: SvgIconComponent; +export const Reorder: SvgIconComponent; +export const ReorderOutlined: SvgIconComponent; +export const ReorderRounded: SvgIconComponent; +export const ReorderSharp: SvgIconComponent; +export const ReorderTwoTone: SvgIconComponent; +export const Repartition: SvgIconComponent; +export const RepartitionOutlined: SvgIconComponent; +export const RepartitionRounded: SvgIconComponent; +export const RepartitionSharp: SvgIconComponent; +export const RepartitionTwoTone: SvgIconComponent; +export const Repeat: SvgIconComponent; +export const RepeatOn: SvgIconComponent; +export const RepeatOnOutlined: SvgIconComponent; +export const RepeatOnRounded: SvgIconComponent; +export const RepeatOnSharp: SvgIconComponent; +export const RepeatOnTwoTone: SvgIconComponent; +export const RepeatOne: SvgIconComponent; +export const RepeatOneOn: SvgIconComponent; +export const RepeatOneOnOutlined: SvgIconComponent; +export const RepeatOneOnRounded: SvgIconComponent; +export const RepeatOneOnSharp: SvgIconComponent; +export const RepeatOneOnTwoTone: SvgIconComponent; +export const RepeatOneOutlined: SvgIconComponent; +export const RepeatOneRounded: SvgIconComponent; +export const RepeatOneSharp: SvgIconComponent; +export const RepeatOneTwoTone: SvgIconComponent; +export const RepeatOutlined: SvgIconComponent; +export const RepeatRounded: SvgIconComponent; +export const RepeatSharp: SvgIconComponent; +export const RepeatTwoTone: SvgIconComponent; +export const Replay: SvgIconComponent; +export const Replay10: SvgIconComponent; +export const Replay10Outlined: SvgIconComponent; +export const Replay10Rounded: SvgIconComponent; +export const Replay10Sharp: SvgIconComponent; +export const Replay10TwoTone: SvgIconComponent; +export const Replay30: SvgIconComponent; +export const Replay30Outlined: SvgIconComponent; +export const Replay30Rounded: SvgIconComponent; +export const Replay30Sharp: SvgIconComponent; +export const Replay30TwoTone: SvgIconComponent; +export const Replay5: SvgIconComponent; +export const Replay5Outlined: SvgIconComponent; +export const Replay5Rounded: SvgIconComponent; +export const Replay5Sharp: SvgIconComponent; +export const Replay5TwoTone: SvgIconComponent; +export const ReplayCircleFilled: SvgIconComponent; +export const ReplayCircleFilledOutlined: SvgIconComponent; +export const ReplayCircleFilledRounded: SvgIconComponent; +export const ReplayCircleFilledSharp: SvgIconComponent; +export const ReplayCircleFilledTwoTone: SvgIconComponent; +export const ReplayOutlined: SvgIconComponent; +export const ReplayRounded: SvgIconComponent; +export const ReplaySharp: SvgIconComponent; +export const ReplayTwoTone: SvgIconComponent; +export const Reply: SvgIconComponent; +export const ReplyAll: SvgIconComponent; +export const ReplyAllOutlined: SvgIconComponent; +export const ReplyAllRounded: SvgIconComponent; +export const ReplyAllSharp: SvgIconComponent; +export const ReplyAllTwoTone: SvgIconComponent; +export const ReplyOutlined: SvgIconComponent; +export const ReplyRounded: SvgIconComponent; +export const ReplySharp: SvgIconComponent; +export const ReplyTwoTone: SvgIconComponent; +export const Report: SvgIconComponent; +export const ReportGmailerrorred: SvgIconComponent; +export const ReportGmailerrorredOutlined: SvgIconComponent; +export const ReportGmailerrorredRounded: SvgIconComponent; +export const ReportGmailerrorredSharp: SvgIconComponent; +export const ReportGmailerrorredTwoTone: SvgIconComponent; +export const ReportOff: SvgIconComponent; +export const ReportOffOutlined: SvgIconComponent; +export const ReportOffRounded: SvgIconComponent; +export const ReportOffSharp: SvgIconComponent; +export const ReportOffTwoTone: SvgIconComponent; +export const ReportOutlined: SvgIconComponent; +export const ReportProblem: SvgIconComponent; +export const ReportProblemOutlined: SvgIconComponent; +export const ReportProblemRounded: SvgIconComponent; +export const ReportProblemSharp: SvgIconComponent; +export const ReportProblemTwoTone: SvgIconComponent; +export const ReportRounded: SvgIconComponent; +export const ReportSharp: SvgIconComponent; +export const ReportTwoTone: SvgIconComponent; +export const RequestPage: SvgIconComponent; +export const RequestPageOutlined: SvgIconComponent; +export const RequestPageRounded: SvgIconComponent; +export const RequestPageSharp: SvgIconComponent; +export const RequestPageTwoTone: SvgIconComponent; +export const RequestQuote: SvgIconComponent; +export const RequestQuoteOutlined: SvgIconComponent; +export const RequestQuoteRounded: SvgIconComponent; +export const RequestQuoteSharp: SvgIconComponent; +export const RequestQuoteTwoTone: SvgIconComponent; +export const ResetTv: SvgIconComponent; +export const ResetTvOutlined: SvgIconComponent; +export const ResetTvRounded: SvgIconComponent; +export const ResetTvSharp: SvgIconComponent; +export const ResetTvTwoTone: SvgIconComponent; +export const RestartAlt: SvgIconComponent; +export const RestartAltOutlined: SvgIconComponent; +export const RestartAltRounded: SvgIconComponent; +export const RestartAltSharp: SvgIconComponent; +export const RestartAltTwoTone: SvgIconComponent; +export const Restaurant: SvgIconComponent; +export const RestaurantMenu: SvgIconComponent; +export const RestaurantMenuOutlined: SvgIconComponent; +export const RestaurantMenuRounded: SvgIconComponent; +export const RestaurantMenuSharp: SvgIconComponent; +export const RestaurantMenuTwoTone: SvgIconComponent; +export const RestaurantOutlined: SvgIconComponent; +export const RestaurantRounded: SvgIconComponent; +export const RestaurantSharp: SvgIconComponent; +export const RestaurantTwoTone: SvgIconComponent; +export const Restore: SvgIconComponent; +export const RestoreFromTrash: SvgIconComponent; +export const RestoreFromTrashOutlined: SvgIconComponent; +export const RestoreFromTrashRounded: SvgIconComponent; +export const RestoreFromTrashSharp: SvgIconComponent; +export const RestoreFromTrashTwoTone: SvgIconComponent; +export const RestoreOutlined: SvgIconComponent; +export const RestorePage: SvgIconComponent; +export const RestorePageOutlined: SvgIconComponent; +export const RestorePageRounded: SvgIconComponent; +export const RestorePageSharp: SvgIconComponent; +export const RestorePageTwoTone: SvgIconComponent; +export const RestoreRounded: SvgIconComponent; +export const RestoreSharp: SvgIconComponent; +export const RestoreTwoTone: SvgIconComponent; +export const Reviews: SvgIconComponent; +export const ReviewsOutlined: SvgIconComponent; +export const ReviewsRounded: SvgIconComponent; +export const ReviewsSharp: SvgIconComponent; +export const ReviewsTwoTone: SvgIconComponent; +export const RiceBowl: SvgIconComponent; +export const RiceBowlOutlined: SvgIconComponent; +export const RiceBowlRounded: SvgIconComponent; +export const RiceBowlSharp: SvgIconComponent; +export const RiceBowlTwoTone: SvgIconComponent; +export const RingVolume: SvgIconComponent; +export const RingVolumeOutlined: SvgIconComponent; +export const RingVolumeRounded: SvgIconComponent; +export const RingVolumeSharp: SvgIconComponent; +export const RingVolumeTwoTone: SvgIconComponent; +export const Rocket: SvgIconComponent; +export const RocketLaunch: SvgIconComponent; +export const RocketLaunchOutlined: SvgIconComponent; +export const RocketLaunchRounded: SvgIconComponent; +export const RocketLaunchSharp: SvgIconComponent; +export const RocketLaunchTwoTone: SvgIconComponent; +export const RocketOutlined: SvgIconComponent; +export const RocketRounded: SvgIconComponent; +export const RocketSharp: SvgIconComponent; +export const RocketTwoTone: SvgIconComponent; +export const RollerShades: SvgIconComponent; +export const RollerShadesClosed: SvgIconComponent; +export const RollerShadesClosedOutlined: SvgIconComponent; +export const RollerShadesClosedRounded: SvgIconComponent; +export const RollerShadesClosedSharp: SvgIconComponent; +export const RollerShadesClosedTwoTone: SvgIconComponent; +export const RollerShadesOutlined: SvgIconComponent; +export const RollerShadesRounded: SvgIconComponent; +export const RollerShadesSharp: SvgIconComponent; +export const RollerShadesTwoTone: SvgIconComponent; +export const RollerSkating: SvgIconComponent; +export const RollerSkatingOutlined: SvgIconComponent; +export const RollerSkatingRounded: SvgIconComponent; +export const RollerSkatingSharp: SvgIconComponent; +export const RollerSkatingTwoTone: SvgIconComponent; +export const Roofing: SvgIconComponent; +export const RoofingOutlined: SvgIconComponent; +export const RoofingRounded: SvgIconComponent; +export const RoofingSharp: SvgIconComponent; +export const RoofingTwoTone: SvgIconComponent; +export const Room: SvgIconComponent; +export const RoomOutlined: SvgIconComponent; +export const RoomPreferences: SvgIconComponent; +export const RoomPreferencesOutlined: SvgIconComponent; +export const RoomPreferencesRounded: SvgIconComponent; +export const RoomPreferencesSharp: SvgIconComponent; +export const RoomPreferencesTwoTone: SvgIconComponent; +export const RoomRounded: SvgIconComponent; +export const RoomService: SvgIconComponent; +export const RoomServiceOutlined: SvgIconComponent; +export const RoomServiceRounded: SvgIconComponent; +export const RoomServiceSharp: SvgIconComponent; +export const RoomServiceTwoTone: SvgIconComponent; +export const RoomSharp: SvgIconComponent; +export const RoomTwoTone: SvgIconComponent; +export const Rotate90DegreesCcw: SvgIconComponent; +export const Rotate90DegreesCcwOutlined: SvgIconComponent; +export const Rotate90DegreesCcwRounded: SvgIconComponent; +export const Rotate90DegreesCcwSharp: SvgIconComponent; +export const Rotate90DegreesCcwTwoTone: SvgIconComponent; +export const Rotate90DegreesCw: SvgIconComponent; +export const Rotate90DegreesCwOutlined: SvgIconComponent; +export const Rotate90DegreesCwRounded: SvgIconComponent; +export const Rotate90DegreesCwSharp: SvgIconComponent; +export const Rotate90DegreesCwTwoTone: SvgIconComponent; +export const RotateLeft: SvgIconComponent; +export const RotateLeftOutlined: SvgIconComponent; +export const RotateLeftRounded: SvgIconComponent; +export const RotateLeftSharp: SvgIconComponent; +export const RotateLeftTwoTone: SvgIconComponent; +export const RotateRight: SvgIconComponent; +export const RotateRightOutlined: SvgIconComponent; +export const RotateRightRounded: SvgIconComponent; +export const RotateRightSharp: SvgIconComponent; +export const RotateRightTwoTone: SvgIconComponent; +export const RoundaboutLeft: SvgIconComponent; +export const RoundaboutLeftOutlined: SvgIconComponent; +export const RoundaboutLeftRounded: SvgIconComponent; +export const RoundaboutLeftSharp: SvgIconComponent; +export const RoundaboutLeftTwoTone: SvgIconComponent; +export const RoundaboutRight: SvgIconComponent; +export const RoundaboutRightOutlined: SvgIconComponent; +export const RoundaboutRightRounded: SvgIconComponent; +export const RoundaboutRightSharp: SvgIconComponent; +export const RoundaboutRightTwoTone: SvgIconComponent; +export const RoundedCorner: SvgIconComponent; +export const RoundedCornerOutlined: SvgIconComponent; +export const RoundedCornerRounded: SvgIconComponent; +export const RoundedCornerSharp: SvgIconComponent; +export const RoundedCornerTwoTone: SvgIconComponent; +export const Route: SvgIconComponent; +export const RouteOutlined: SvgIconComponent; +export const RouteRounded: SvgIconComponent; +export const RouteSharp: SvgIconComponent; +export const RouteTwoTone: SvgIconComponent; +export const Router: SvgIconComponent; +export const RouterOutlined: SvgIconComponent; +export const RouterRounded: SvgIconComponent; +export const RouterSharp: SvgIconComponent; +export const RouterTwoTone: SvgIconComponent; +export const Rowing: SvgIconComponent; +export const RowingOutlined: SvgIconComponent; +export const RowingRounded: SvgIconComponent; +export const RowingSharp: SvgIconComponent; +export const RowingTwoTone: SvgIconComponent; +export const RssFeed: SvgIconComponent; +export const RssFeedOutlined: SvgIconComponent; +export const RssFeedRounded: SvgIconComponent; +export const RssFeedSharp: SvgIconComponent; +export const RssFeedTwoTone: SvgIconComponent; +export const Rsvp: SvgIconComponent; +export const RsvpOutlined: SvgIconComponent; +export const RsvpRounded: SvgIconComponent; +export const RsvpSharp: SvgIconComponent; +export const RsvpTwoTone: SvgIconComponent; +export const Rtt: SvgIconComponent; +export const RttOutlined: SvgIconComponent; +export const RttRounded: SvgIconComponent; +export const RttSharp: SvgIconComponent; +export const RttTwoTone: SvgIconComponent; +export const Rule: SvgIconComponent; +export const RuleFolder: SvgIconComponent; +export const RuleFolderOutlined: SvgIconComponent; +export const RuleFolderRounded: SvgIconComponent; +export const RuleFolderSharp: SvgIconComponent; +export const RuleFolderTwoTone: SvgIconComponent; +export const RuleOutlined: SvgIconComponent; +export const RuleRounded: SvgIconComponent; +export const RuleSharp: SvgIconComponent; +export const RuleTwoTone: SvgIconComponent; +export const RunCircle: SvgIconComponent; +export const RunCircleOutlined: SvgIconComponent; +export const RunCircleRounded: SvgIconComponent; +export const RunCircleSharp: SvgIconComponent; +export const RunCircleTwoTone: SvgIconComponent; +export const RunningWithErrors: SvgIconComponent; +export const RunningWithErrorsOutlined: SvgIconComponent; +export const RunningWithErrorsRounded: SvgIconComponent; +export const RunningWithErrorsSharp: SvgIconComponent; +export const RunningWithErrorsTwoTone: SvgIconComponent; +export const RvHookup: SvgIconComponent; +export const RvHookupOutlined: SvgIconComponent; +export const RvHookupRounded: SvgIconComponent; +export const RvHookupSharp: SvgIconComponent; +export const RvHookupTwoTone: SvgIconComponent; +export const SafetyCheck: SvgIconComponent; +export const SafetyCheckOutlined: SvgIconComponent; +export const SafetyCheckRounded: SvgIconComponent; +export const SafetyCheckSharp: SvgIconComponent; +export const SafetyCheckTwoTone: SvgIconComponent; +export const SafetyDivider: SvgIconComponent; +export const SafetyDividerOutlined: SvgIconComponent; +export const SafetyDividerRounded: SvgIconComponent; +export const SafetyDividerSharp: SvgIconComponent; +export const SafetyDividerTwoTone: SvgIconComponent; +export const Sailing: SvgIconComponent; +export const SailingOutlined: SvgIconComponent; +export const SailingRounded: SvgIconComponent; +export const SailingSharp: SvgIconComponent; +export const SailingTwoTone: SvgIconComponent; +export const Sanitizer: SvgIconComponent; +export const SanitizerOutlined: SvgIconComponent; +export const SanitizerRounded: SvgIconComponent; +export const SanitizerSharp: SvgIconComponent; +export const SanitizerTwoTone: SvgIconComponent; +export const Satellite: SvgIconComponent; +export const SatelliteAlt: SvgIconComponent; +export const SatelliteAltOutlined: SvgIconComponent; +export const SatelliteAltRounded: SvgIconComponent; +export const SatelliteAltSharp: SvgIconComponent; +export const SatelliteAltTwoTone: SvgIconComponent; +export const SatelliteOutlined: SvgIconComponent; +export const SatelliteRounded: SvgIconComponent; +export const SatelliteSharp: SvgIconComponent; +export const SatelliteTwoTone: SvgIconComponent; +export const Save: SvgIconComponent; +export const SaveAlt: SvgIconComponent; +export const SaveAltOutlined: SvgIconComponent; +export const SaveAltRounded: SvgIconComponent; +export const SaveAltSharp: SvgIconComponent; +export const SaveAltTwoTone: SvgIconComponent; +export const SaveAs: SvgIconComponent; +export const SaveAsOutlined: SvgIconComponent; +export const SaveAsRounded: SvgIconComponent; +export const SaveAsSharp: SvgIconComponent; +export const SaveAsTwoTone: SvgIconComponent; +export const SaveOutlined: SvgIconComponent; +export const SaveRounded: SvgIconComponent; +export const SaveSharp: SvgIconComponent; +export const SaveTwoTone: SvgIconComponent; +export const SavedSearch: SvgIconComponent; +export const SavedSearchOutlined: SvgIconComponent; +export const SavedSearchRounded: SvgIconComponent; +export const SavedSearchSharp: SvgIconComponent; +export const SavedSearchTwoTone: SvgIconComponent; +export const Savings: SvgIconComponent; +export const SavingsOutlined: SvgIconComponent; +export const SavingsRounded: SvgIconComponent; +export const SavingsSharp: SvgIconComponent; +export const SavingsTwoTone: SvgIconComponent; +export const Scale: SvgIconComponent; +export const ScaleOutlined: SvgIconComponent; +export const ScaleRounded: SvgIconComponent; +export const ScaleSharp: SvgIconComponent; +export const ScaleTwoTone: SvgIconComponent; +export const Scanner: SvgIconComponent; +export const ScannerOutlined: SvgIconComponent; +export const ScannerRounded: SvgIconComponent; +export const ScannerSharp: SvgIconComponent; +export const ScannerTwoTone: SvgIconComponent; +export const ScatterPlot: SvgIconComponent; +export const ScatterPlotOutlined: SvgIconComponent; +export const ScatterPlotRounded: SvgIconComponent; +export const ScatterPlotSharp: SvgIconComponent; +export const ScatterPlotTwoTone: SvgIconComponent; +export const Schedule: SvgIconComponent; +export const ScheduleOutlined: SvgIconComponent; +export const ScheduleRounded: SvgIconComponent; +export const ScheduleSend: SvgIconComponent; +export const ScheduleSendOutlined: SvgIconComponent; +export const ScheduleSendRounded: SvgIconComponent; +export const ScheduleSendSharp: SvgIconComponent; +export const ScheduleSendTwoTone: SvgIconComponent; +export const ScheduleSharp: SvgIconComponent; +export const ScheduleTwoTone: SvgIconComponent; +export const Schema: SvgIconComponent; +export const SchemaOutlined: SvgIconComponent; +export const SchemaRounded: SvgIconComponent; +export const SchemaSharp: SvgIconComponent; +export const SchemaTwoTone: SvgIconComponent; +export const School: SvgIconComponent; +export const SchoolOutlined: SvgIconComponent; +export const SchoolRounded: SvgIconComponent; +export const SchoolSharp: SvgIconComponent; +export const SchoolTwoTone: SvgIconComponent; +export const Science: SvgIconComponent; +export const ScienceOutlined: SvgIconComponent; +export const ScienceRounded: SvgIconComponent; +export const ScienceSharp: SvgIconComponent; +export const ScienceTwoTone: SvgIconComponent; +export const Score: SvgIconComponent; +export const ScoreOutlined: SvgIconComponent; +export const ScoreRounded: SvgIconComponent; +export const ScoreSharp: SvgIconComponent; +export const ScoreTwoTone: SvgIconComponent; +export const Scoreboard: SvgIconComponent; +export const ScoreboardOutlined: SvgIconComponent; +export const ScoreboardRounded: SvgIconComponent; +export const ScoreboardSharp: SvgIconComponent; +export const ScoreboardTwoTone: SvgIconComponent; +export const ScreenLockLandscape: SvgIconComponent; +export const ScreenLockLandscapeOutlined: SvgIconComponent; +export const ScreenLockLandscapeRounded: SvgIconComponent; +export const ScreenLockLandscapeSharp: SvgIconComponent; +export const ScreenLockLandscapeTwoTone: SvgIconComponent; +export const ScreenLockPortrait: SvgIconComponent; +export const ScreenLockPortraitOutlined: SvgIconComponent; +export const ScreenLockPortraitRounded: SvgIconComponent; +export const ScreenLockPortraitSharp: SvgIconComponent; +export const ScreenLockPortraitTwoTone: SvgIconComponent; +export const ScreenLockRotation: SvgIconComponent; +export const ScreenLockRotationOutlined: SvgIconComponent; +export const ScreenLockRotationRounded: SvgIconComponent; +export const ScreenLockRotationSharp: SvgIconComponent; +export const ScreenLockRotationTwoTone: SvgIconComponent; +export const ScreenRotation: SvgIconComponent; +export const ScreenRotationAlt: SvgIconComponent; +export const ScreenRotationAltOutlined: SvgIconComponent; +export const ScreenRotationAltRounded: SvgIconComponent; +export const ScreenRotationAltSharp: SvgIconComponent; +export const ScreenRotationAltTwoTone: SvgIconComponent; +export const ScreenRotationOutlined: SvgIconComponent; +export const ScreenRotationRounded: SvgIconComponent; +export const ScreenRotationSharp: SvgIconComponent; +export const ScreenRotationTwoTone: SvgIconComponent; +export const ScreenSearchDesktop: SvgIconComponent; +export const ScreenSearchDesktopOutlined: SvgIconComponent; +export const ScreenSearchDesktopRounded: SvgIconComponent; +export const ScreenSearchDesktopSharp: SvgIconComponent; +export const ScreenSearchDesktopTwoTone: SvgIconComponent; +export const ScreenShare: SvgIconComponent; +export const ScreenShareOutlined: SvgIconComponent; +export const ScreenShareRounded: SvgIconComponent; +export const ScreenShareSharp: SvgIconComponent; +export const ScreenShareTwoTone: SvgIconComponent; +export const Screenshot: SvgIconComponent; +export const ScreenshotMonitor: SvgIconComponent; +export const ScreenshotMonitorOutlined: SvgIconComponent; +export const ScreenshotMonitorRounded: SvgIconComponent; +export const ScreenshotMonitorSharp: SvgIconComponent; +export const ScreenshotMonitorTwoTone: SvgIconComponent; +export const ScreenshotOutlined: SvgIconComponent; +export const ScreenshotRounded: SvgIconComponent; +export const ScreenshotSharp: SvgIconComponent; +export const ScreenshotTwoTone: SvgIconComponent; +export const ScubaDiving: SvgIconComponent; +export const ScubaDivingOutlined: SvgIconComponent; +export const ScubaDivingRounded: SvgIconComponent; +export const ScubaDivingSharp: SvgIconComponent; +export const ScubaDivingTwoTone: SvgIconComponent; +export const Sd: SvgIconComponent; +export const SdCard: SvgIconComponent; +export const SdCardAlert: SvgIconComponent; +export const SdCardAlertOutlined: SvgIconComponent; +export const SdCardAlertRounded: SvgIconComponent; +export const SdCardAlertSharp: SvgIconComponent; +export const SdCardAlertTwoTone: SvgIconComponent; +export const SdCardOutlined: SvgIconComponent; +export const SdCardRounded: SvgIconComponent; +export const SdCardSharp: SvgIconComponent; +export const SdCardTwoTone: SvgIconComponent; +export const SdOutlined: SvgIconComponent; +export const SdRounded: SvgIconComponent; +export const SdSharp: SvgIconComponent; +export const SdStorage: SvgIconComponent; +export const SdStorageOutlined: SvgIconComponent; +export const SdStorageRounded: SvgIconComponent; +export const SdStorageSharp: SvgIconComponent; +export const SdStorageTwoTone: SvgIconComponent; +export const SdTwoTone: SvgIconComponent; +export const Search: SvgIconComponent; +export const SearchOff: SvgIconComponent; +export const SearchOffOutlined: SvgIconComponent; +export const SearchOffRounded: SvgIconComponent; +export const SearchOffSharp: SvgIconComponent; +export const SearchOffTwoTone: SvgIconComponent; +export const SearchOutlined: SvgIconComponent; +export const SearchRounded: SvgIconComponent; +export const SearchSharp: SvgIconComponent; +export const SearchTwoTone: SvgIconComponent; +export const Security: SvgIconComponent; +export const SecurityOutlined: SvgIconComponent; +export const SecurityRounded: SvgIconComponent; +export const SecuritySharp: SvgIconComponent; +export const SecurityTwoTone: SvgIconComponent; +export const SecurityUpdate: SvgIconComponent; +export const SecurityUpdateGood: SvgIconComponent; +export const SecurityUpdateGoodOutlined: SvgIconComponent; +export const SecurityUpdateGoodRounded: SvgIconComponent; +export const SecurityUpdateGoodSharp: SvgIconComponent; +export const SecurityUpdateGoodTwoTone: SvgIconComponent; +export const SecurityUpdateOutlined: SvgIconComponent; +export const SecurityUpdateRounded: SvgIconComponent; +export const SecurityUpdateSharp: SvgIconComponent; +export const SecurityUpdateTwoTone: SvgIconComponent; +export const SecurityUpdateWarning: SvgIconComponent; +export const SecurityUpdateWarningOutlined: SvgIconComponent; +export const SecurityUpdateWarningRounded: SvgIconComponent; +export const SecurityUpdateWarningSharp: SvgIconComponent; +export const SecurityUpdateWarningTwoTone: SvgIconComponent; +export const Segment: SvgIconComponent; +export const SegmentOutlined: SvgIconComponent; +export const SegmentRounded: SvgIconComponent; +export const SegmentSharp: SvgIconComponent; +export const SegmentTwoTone: SvgIconComponent; +export const SelectAll: SvgIconComponent; +export const SelectAllOutlined: SvgIconComponent; +export const SelectAllRounded: SvgIconComponent; +export const SelectAllSharp: SvgIconComponent; +export const SelectAllTwoTone: SvgIconComponent; +export const SelfImprovement: SvgIconComponent; +export const SelfImprovementOutlined: SvgIconComponent; +export const SelfImprovementRounded: SvgIconComponent; +export const SelfImprovementSharp: SvgIconComponent; +export const SelfImprovementTwoTone: SvgIconComponent; +export const Sell: SvgIconComponent; +export const SellOutlined: SvgIconComponent; +export const SellRounded: SvgIconComponent; +export const SellSharp: SvgIconComponent; +export const SellTwoTone: SvgIconComponent; +export const Send: SvgIconComponent; +export const SendAndArchive: SvgIconComponent; +export const SendAndArchiveOutlined: SvgIconComponent; +export const SendAndArchiveRounded: SvgIconComponent; +export const SendAndArchiveSharp: SvgIconComponent; +export const SendAndArchiveTwoTone: SvgIconComponent; +export const SendOutlined: SvgIconComponent; +export const SendRounded: SvgIconComponent; +export const SendSharp: SvgIconComponent; +export const SendTimeExtension: SvgIconComponent; +export const SendTimeExtensionOutlined: SvgIconComponent; +export const SendTimeExtensionRounded: SvgIconComponent; +export const SendTimeExtensionSharp: SvgIconComponent; +export const SendTimeExtensionTwoTone: SvgIconComponent; +export const SendToMobile: SvgIconComponent; +export const SendToMobileOutlined: SvgIconComponent; +export const SendToMobileRounded: SvgIconComponent; +export const SendToMobileSharp: SvgIconComponent; +export const SendToMobileTwoTone: SvgIconComponent; +export const SendTwoTone: SvgIconComponent; +export const SensorDoor: SvgIconComponent; +export const SensorDoorOutlined: SvgIconComponent; +export const SensorDoorRounded: SvgIconComponent; +export const SensorDoorSharp: SvgIconComponent; +export const SensorDoorTwoTone: SvgIconComponent; +export const SensorOccupied: SvgIconComponent; +export const SensorOccupiedOutlined: SvgIconComponent; +export const SensorOccupiedRounded: SvgIconComponent; +export const SensorOccupiedSharp: SvgIconComponent; +export const SensorOccupiedTwoTone: SvgIconComponent; +export const SensorWindow: SvgIconComponent; +export const SensorWindowOutlined: SvgIconComponent; +export const SensorWindowRounded: SvgIconComponent; +export const SensorWindowSharp: SvgIconComponent; +export const SensorWindowTwoTone: SvgIconComponent; +export const Sensors: SvgIconComponent; +export const SensorsOff: SvgIconComponent; +export const SensorsOffOutlined: SvgIconComponent; +export const SensorsOffRounded: SvgIconComponent; +export const SensorsOffSharp: SvgIconComponent; +export const SensorsOffTwoTone: SvgIconComponent; +export const SensorsOutlined: SvgIconComponent; +export const SensorsRounded: SvgIconComponent; +export const SensorsSharp: SvgIconComponent; +export const SensorsTwoTone: SvgIconComponent; +export const SentimentDissatisfied: SvgIconComponent; +export const SentimentDissatisfiedOutlined: SvgIconComponent; +export const SentimentDissatisfiedRounded: SvgIconComponent; +export const SentimentDissatisfiedSharp: SvgIconComponent; +export const SentimentDissatisfiedTwoTone: SvgIconComponent; +export const SentimentNeutral: SvgIconComponent; +export const SentimentNeutralOutlined: SvgIconComponent; +export const SentimentNeutralRounded: SvgIconComponent; +export const SentimentNeutralSharp: SvgIconComponent; +export const SentimentNeutralTwoTone: SvgIconComponent; +export const SentimentSatisfied: SvgIconComponent; +export const SentimentSatisfiedAlt: SvgIconComponent; +export const SentimentSatisfiedAltOutlined: SvgIconComponent; +export const SentimentSatisfiedAltRounded: SvgIconComponent; +export const SentimentSatisfiedAltSharp: SvgIconComponent; +export const SentimentSatisfiedAltTwoTone: SvgIconComponent; +export const SentimentSatisfiedOutlined: SvgIconComponent; +export const SentimentSatisfiedRounded: SvgIconComponent; +export const SentimentSatisfiedSharp: SvgIconComponent; +export const SentimentSatisfiedTwoTone: SvgIconComponent; +export const SentimentVeryDissatisfied: SvgIconComponent; +export const SentimentVeryDissatisfiedOutlined: SvgIconComponent; +export const SentimentVeryDissatisfiedRounded: SvgIconComponent; +export const SentimentVeryDissatisfiedSharp: SvgIconComponent; +export const SentimentVeryDissatisfiedTwoTone: SvgIconComponent; +export const SentimentVerySatisfied: SvgIconComponent; +export const SentimentVerySatisfiedOutlined: SvgIconComponent; +export const SentimentVerySatisfiedRounded: SvgIconComponent; +export const SentimentVerySatisfiedSharp: SvgIconComponent; +export const SentimentVerySatisfiedTwoTone: SvgIconComponent; +export const SetMeal: SvgIconComponent; +export const SetMealOutlined: SvgIconComponent; +export const SetMealRounded: SvgIconComponent; +export const SetMealSharp: SvgIconComponent; +export const SetMealTwoTone: SvgIconComponent; +export const Settings: SvgIconComponent; +export const SettingsAccessibility: SvgIconComponent; +export const SettingsAccessibilityOutlined: SvgIconComponent; +export const SettingsAccessibilityRounded: SvgIconComponent; +export const SettingsAccessibilitySharp: SvgIconComponent; +export const SettingsAccessibilityTwoTone: SvgIconComponent; +export const SettingsApplications: SvgIconComponent; +export const SettingsApplicationsOutlined: SvgIconComponent; +export const SettingsApplicationsRounded: SvgIconComponent; +export const SettingsApplicationsSharp: SvgIconComponent; +export const SettingsApplicationsTwoTone: SvgIconComponent; +export const SettingsBackupRestore: SvgIconComponent; +export const SettingsBackupRestoreOutlined: SvgIconComponent; +export const SettingsBackupRestoreRounded: SvgIconComponent; +export const SettingsBackupRestoreSharp: SvgIconComponent; +export const SettingsBackupRestoreTwoTone: SvgIconComponent; +export const SettingsBluetooth: SvgIconComponent; +export const SettingsBluetoothOutlined: SvgIconComponent; +export const SettingsBluetoothRounded: SvgIconComponent; +export const SettingsBluetoothSharp: SvgIconComponent; +export const SettingsBluetoothTwoTone: SvgIconComponent; +export const SettingsBrightness: SvgIconComponent; +export const SettingsBrightnessOutlined: SvgIconComponent; +export const SettingsBrightnessRounded: SvgIconComponent; +export const SettingsBrightnessSharp: SvgIconComponent; +export const SettingsBrightnessTwoTone: SvgIconComponent; +export const SettingsCell: SvgIconComponent; +export const SettingsCellOutlined: SvgIconComponent; +export const SettingsCellRounded: SvgIconComponent; +export const SettingsCellSharp: SvgIconComponent; +export const SettingsCellTwoTone: SvgIconComponent; +export const SettingsEthernet: SvgIconComponent; +export const SettingsEthernetOutlined: SvgIconComponent; +export const SettingsEthernetRounded: SvgIconComponent; +export const SettingsEthernetSharp: SvgIconComponent; +export const SettingsEthernetTwoTone: SvgIconComponent; +export const SettingsInputAntenna: SvgIconComponent; +export const SettingsInputAntennaOutlined: SvgIconComponent; +export const SettingsInputAntennaRounded: SvgIconComponent; +export const SettingsInputAntennaSharp: SvgIconComponent; +export const SettingsInputAntennaTwoTone: SvgIconComponent; +export const SettingsInputComponent: SvgIconComponent; +export const SettingsInputComponentOutlined: SvgIconComponent; +export const SettingsInputComponentRounded: SvgIconComponent; +export const SettingsInputComponentSharp: SvgIconComponent; +export const SettingsInputComponentTwoTone: SvgIconComponent; +export const SettingsInputComposite: SvgIconComponent; +export const SettingsInputCompositeOutlined: SvgIconComponent; +export const SettingsInputCompositeRounded: SvgIconComponent; +export const SettingsInputCompositeSharp: SvgIconComponent; +export const SettingsInputCompositeTwoTone: SvgIconComponent; +export const SettingsInputHdmi: SvgIconComponent; +export const SettingsInputHdmiOutlined: SvgIconComponent; +export const SettingsInputHdmiRounded: SvgIconComponent; +export const SettingsInputHdmiSharp: SvgIconComponent; +export const SettingsInputHdmiTwoTone: SvgIconComponent; +export const SettingsInputSvideo: SvgIconComponent; +export const SettingsInputSvideoOutlined: SvgIconComponent; +export const SettingsInputSvideoRounded: SvgIconComponent; +export const SettingsInputSvideoSharp: SvgIconComponent; +export const SettingsInputSvideoTwoTone: SvgIconComponent; +export const SettingsOutlined: SvgIconComponent; +export const SettingsOverscan: SvgIconComponent; +export const SettingsOverscanOutlined: SvgIconComponent; +export const SettingsOverscanRounded: SvgIconComponent; +export const SettingsOverscanSharp: SvgIconComponent; +export const SettingsOverscanTwoTone: SvgIconComponent; +export const SettingsPhone: SvgIconComponent; +export const SettingsPhoneOutlined: SvgIconComponent; +export const SettingsPhoneRounded: SvgIconComponent; +export const SettingsPhoneSharp: SvgIconComponent; +export const SettingsPhoneTwoTone: SvgIconComponent; +export const SettingsPower: SvgIconComponent; +export const SettingsPowerOutlined: SvgIconComponent; +export const SettingsPowerRounded: SvgIconComponent; +export const SettingsPowerSharp: SvgIconComponent; +export const SettingsPowerTwoTone: SvgIconComponent; +export const SettingsRemote: SvgIconComponent; +export const SettingsRemoteOutlined: SvgIconComponent; +export const SettingsRemoteRounded: SvgIconComponent; +export const SettingsRemoteSharp: SvgIconComponent; +export const SettingsRemoteTwoTone: SvgIconComponent; +export const SettingsRounded: SvgIconComponent; +export const SettingsSharp: SvgIconComponent; +export const SettingsSuggest: SvgIconComponent; +export const SettingsSuggestOutlined: SvgIconComponent; +export const SettingsSuggestRounded: SvgIconComponent; +export const SettingsSuggestSharp: SvgIconComponent; +export const SettingsSuggestTwoTone: SvgIconComponent; +export const SettingsSystemDaydream: SvgIconComponent; +export const SettingsSystemDaydreamOutlined: SvgIconComponent; +export const SettingsSystemDaydreamRounded: SvgIconComponent; +export const SettingsSystemDaydreamSharp: SvgIconComponent; +export const SettingsSystemDaydreamTwoTone: SvgIconComponent; +export const SettingsTwoTone: SvgIconComponent; +export const SettingsVoice: SvgIconComponent; +export const SettingsVoiceOutlined: SvgIconComponent; +export const SettingsVoiceRounded: SvgIconComponent; +export const SettingsVoiceSharp: SvgIconComponent; +export const SettingsVoiceTwoTone: SvgIconComponent; +export const SevenK: SvgIconComponent; +export const SevenKOutlined: SvgIconComponent; +export const SevenKPlus: SvgIconComponent; +export const SevenKPlusOutlined: SvgIconComponent; +export const SevenKPlusRounded: SvgIconComponent; +export const SevenKPlusSharp: SvgIconComponent; +export const SevenKPlusTwoTone: SvgIconComponent; +export const SevenKRounded: SvgIconComponent; +export const SevenKSharp: SvgIconComponent; +export const SevenKTwoTone: SvgIconComponent; +export const SevenMp: SvgIconComponent; +export const SevenMpOutlined: SvgIconComponent; +export const SevenMpRounded: SvgIconComponent; +export const SevenMpSharp: SvgIconComponent; +export const SevenMpTwoTone: SvgIconComponent; +export const SeventeenMp: SvgIconComponent; +export const SeventeenMpOutlined: SvgIconComponent; +export const SeventeenMpRounded: SvgIconComponent; +export const SeventeenMpSharp: SvgIconComponent; +export const SeventeenMpTwoTone: SvgIconComponent; +export const SevereCold: SvgIconComponent; +export const SevereColdOutlined: SvgIconComponent; +export const SevereColdRounded: SvgIconComponent; +export const SevereColdSharp: SvgIconComponent; +export const SevereColdTwoTone: SvgIconComponent; +export const ShapeLine: SvgIconComponent; +export const ShapeLineOutlined: SvgIconComponent; +export const ShapeLineRounded: SvgIconComponent; +export const ShapeLineSharp: SvgIconComponent; +export const ShapeLineTwoTone: SvgIconComponent; +export const Share: SvgIconComponent; +export const ShareLocation: SvgIconComponent; +export const ShareLocationOutlined: SvgIconComponent; +export const ShareLocationRounded: SvgIconComponent; +export const ShareLocationSharp: SvgIconComponent; +export const ShareLocationTwoTone: SvgIconComponent; +export const ShareOutlined: SvgIconComponent; +export const ShareRounded: SvgIconComponent; +export const ShareSharp: SvgIconComponent; +export const ShareTwoTone: SvgIconComponent; +export const Shield: SvgIconComponent; +export const ShieldMoon: SvgIconComponent; +export const ShieldMoonOutlined: SvgIconComponent; +export const ShieldMoonRounded: SvgIconComponent; +export const ShieldMoonSharp: SvgIconComponent; +export const ShieldMoonTwoTone: SvgIconComponent; +export const ShieldOutlined: SvgIconComponent; +export const ShieldRounded: SvgIconComponent; +export const ShieldSharp: SvgIconComponent; +export const ShieldTwoTone: SvgIconComponent; +export const Shop: SvgIconComponent; +export const Shop2: SvgIconComponent; +export const Shop2Outlined: SvgIconComponent; +export const Shop2Rounded: SvgIconComponent; +export const Shop2Sharp: SvgIconComponent; +export const Shop2TwoTone: SvgIconComponent; +export const ShopOutlined: SvgIconComponent; +export const ShopRounded: SvgIconComponent; +export const ShopSharp: SvgIconComponent; +export const ShopTwo: SvgIconComponent; +export const ShopTwoOutlined: SvgIconComponent; +export const ShopTwoRounded: SvgIconComponent; +export const ShopTwoSharp: SvgIconComponent; +export const ShopTwoTone: SvgIconComponent; +export const ShopTwoTwoTone: SvgIconComponent; +export const ShoppingBag: SvgIconComponent; +export const ShoppingBagOutlined: SvgIconComponent; +export const ShoppingBagRounded: SvgIconComponent; +export const ShoppingBagSharp: SvgIconComponent; +export const ShoppingBagTwoTone: SvgIconComponent; +export const ShoppingBasket: SvgIconComponent; +export const ShoppingBasketOutlined: SvgIconComponent; +export const ShoppingBasketRounded: SvgIconComponent; +export const ShoppingBasketSharp: SvgIconComponent; +export const ShoppingBasketTwoTone: SvgIconComponent; +export const ShoppingCart: SvgIconComponent; +export const ShoppingCartCheckout: SvgIconComponent; +export const ShoppingCartCheckoutOutlined: SvgIconComponent; +export const ShoppingCartCheckoutRounded: SvgIconComponent; +export const ShoppingCartCheckoutSharp: SvgIconComponent; +export const ShoppingCartCheckoutTwoTone: SvgIconComponent; +export const ShoppingCartOutlined: SvgIconComponent; +export const ShoppingCartRounded: SvgIconComponent; +export const ShoppingCartSharp: SvgIconComponent; +export const ShoppingCartTwoTone: SvgIconComponent; +export const ShortText: SvgIconComponent; +export const ShortTextOutlined: SvgIconComponent; +export const ShortTextRounded: SvgIconComponent; +export const ShortTextSharp: SvgIconComponent; +export const ShortTextTwoTone: SvgIconComponent; +export const Shortcut: SvgIconComponent; +export const ShortcutOutlined: SvgIconComponent; +export const ShortcutRounded: SvgIconComponent; +export const ShortcutSharp: SvgIconComponent; +export const ShortcutTwoTone: SvgIconComponent; +export const ShowChart: SvgIconComponent; +export const ShowChartOutlined: SvgIconComponent; +export const ShowChartRounded: SvgIconComponent; +export const ShowChartSharp: SvgIconComponent; +export const ShowChartTwoTone: SvgIconComponent; +export const Shower: SvgIconComponent; +export const ShowerOutlined: SvgIconComponent; +export const ShowerRounded: SvgIconComponent; +export const ShowerSharp: SvgIconComponent; +export const ShowerTwoTone: SvgIconComponent; +export const Shuffle: SvgIconComponent; +export const ShuffleOn: SvgIconComponent; +export const ShuffleOnOutlined: SvgIconComponent; +export const ShuffleOnRounded: SvgIconComponent; +export const ShuffleOnSharp: SvgIconComponent; +export const ShuffleOnTwoTone: SvgIconComponent; +export const ShuffleOutlined: SvgIconComponent; +export const ShuffleRounded: SvgIconComponent; +export const ShuffleSharp: SvgIconComponent; +export const ShuffleTwoTone: SvgIconComponent; +export const ShutterSpeed: SvgIconComponent; +export const ShutterSpeedOutlined: SvgIconComponent; +export const ShutterSpeedRounded: SvgIconComponent; +export const ShutterSpeedSharp: SvgIconComponent; +export const ShutterSpeedTwoTone: SvgIconComponent; +export const Sick: SvgIconComponent; +export const SickOutlined: SvgIconComponent; +export const SickRounded: SvgIconComponent; +export const SickSharp: SvgIconComponent; +export const SickTwoTone: SvgIconComponent; +export const SignLanguage: SvgIconComponent; +export const SignLanguageOutlined: SvgIconComponent; +export const SignLanguageRounded: SvgIconComponent; +export const SignLanguageSharp: SvgIconComponent; +export const SignLanguageTwoTone: SvgIconComponent; +export const SignalCellular0Bar: SvgIconComponent; +export const SignalCellular0BarOutlined: SvgIconComponent; +export const SignalCellular0BarRounded: SvgIconComponent; +export const SignalCellular0BarSharp: SvgIconComponent; +export const SignalCellular0BarTwoTone: SvgIconComponent; +export const SignalCellular1Bar: SvgIconComponent; +export const SignalCellular1BarOutlined: SvgIconComponent; +export const SignalCellular1BarRounded: SvgIconComponent; +export const SignalCellular1BarSharp: SvgIconComponent; +export const SignalCellular1BarTwoTone: SvgIconComponent; +export const SignalCellular2Bar: SvgIconComponent; +export const SignalCellular2BarOutlined: SvgIconComponent; +export const SignalCellular2BarRounded: SvgIconComponent; +export const SignalCellular2BarSharp: SvgIconComponent; +export const SignalCellular2BarTwoTone: SvgIconComponent; +export const SignalCellular3Bar: SvgIconComponent; +export const SignalCellular3BarOutlined: SvgIconComponent; +export const SignalCellular3BarRounded: SvgIconComponent; +export const SignalCellular3BarSharp: SvgIconComponent; +export const SignalCellular3BarTwoTone: SvgIconComponent; +export const SignalCellular4Bar: SvgIconComponent; +export const SignalCellular4BarOutlined: SvgIconComponent; +export const SignalCellular4BarRounded: SvgIconComponent; +export const SignalCellular4BarSharp: SvgIconComponent; +export const SignalCellular4BarTwoTone: SvgIconComponent; +export const SignalCellularAlt: SvgIconComponent; +export const SignalCellularAlt1Bar: SvgIconComponent; +export const SignalCellularAlt1BarOutlined: SvgIconComponent; +export const SignalCellularAlt1BarRounded: SvgIconComponent; +export const SignalCellularAlt1BarSharp: SvgIconComponent; +export const SignalCellularAlt1BarTwoTone: SvgIconComponent; +export const SignalCellularAlt2Bar: SvgIconComponent; +export const SignalCellularAlt2BarOutlined: SvgIconComponent; +export const SignalCellularAlt2BarRounded: SvgIconComponent; +export const SignalCellularAlt2BarSharp: SvgIconComponent; +export const SignalCellularAlt2BarTwoTone: SvgIconComponent; +export const SignalCellularAltOutlined: SvgIconComponent; +export const SignalCellularAltRounded: SvgIconComponent; +export const SignalCellularAltSharp: SvgIconComponent; +export const SignalCellularAltTwoTone: SvgIconComponent; +export const SignalCellularConnectedNoInternet0Bar: SvgIconComponent; +export const SignalCellularConnectedNoInternet0BarOutlined: SvgIconComponent; +export const SignalCellularConnectedNoInternet0BarRounded: SvgIconComponent; +export const SignalCellularConnectedNoInternet0BarSharp: SvgIconComponent; +export const SignalCellularConnectedNoInternet0BarTwoTone: SvgIconComponent; +export const SignalCellularConnectedNoInternet1Bar: SvgIconComponent; +export const SignalCellularConnectedNoInternet1BarOutlined: SvgIconComponent; +export const SignalCellularConnectedNoInternet1BarRounded: SvgIconComponent; +export const SignalCellularConnectedNoInternet1BarSharp: SvgIconComponent; +export const SignalCellularConnectedNoInternet1BarTwoTone: SvgIconComponent; +export const SignalCellularConnectedNoInternet2Bar: SvgIconComponent; +export const SignalCellularConnectedNoInternet2BarOutlined: SvgIconComponent; +export const SignalCellularConnectedNoInternet2BarRounded: SvgIconComponent; +export const SignalCellularConnectedNoInternet2BarSharp: SvgIconComponent; +export const SignalCellularConnectedNoInternet2BarTwoTone: SvgIconComponent; +export const SignalCellularConnectedNoInternet3Bar: SvgIconComponent; +export const SignalCellularConnectedNoInternet3BarOutlined: SvgIconComponent; +export const SignalCellularConnectedNoInternet3BarRounded: SvgIconComponent; +export const SignalCellularConnectedNoInternet3BarSharp: SvgIconComponent; +export const SignalCellularConnectedNoInternet3BarTwoTone: SvgIconComponent; +export const SignalCellularConnectedNoInternet4Bar: SvgIconComponent; +export const SignalCellularConnectedNoInternet4BarOutlined: SvgIconComponent; +export const SignalCellularConnectedNoInternet4BarRounded: SvgIconComponent; +export const SignalCellularConnectedNoInternet4BarSharp: SvgIconComponent; +export const SignalCellularConnectedNoInternet4BarTwoTone: SvgIconComponent; +export const SignalCellularNoSim: SvgIconComponent; +export const SignalCellularNoSimOutlined: SvgIconComponent; +export const SignalCellularNoSimRounded: SvgIconComponent; +export const SignalCellularNoSimSharp: SvgIconComponent; +export const SignalCellularNoSimTwoTone: SvgIconComponent; +export const SignalCellularNodata: SvgIconComponent; +export const SignalCellularNodataOutlined: SvgIconComponent; +export const SignalCellularNodataRounded: SvgIconComponent; +export const SignalCellularNodataSharp: SvgIconComponent; +export const SignalCellularNodataTwoTone: SvgIconComponent; +export const SignalCellularNull: SvgIconComponent; +export const SignalCellularNullOutlined: SvgIconComponent; +export const SignalCellularNullRounded: SvgIconComponent; +export const SignalCellularNullSharp: SvgIconComponent; +export const SignalCellularNullTwoTone: SvgIconComponent; +export const SignalCellularOff: SvgIconComponent; +export const SignalCellularOffOutlined: SvgIconComponent; +export const SignalCellularOffRounded: SvgIconComponent; +export const SignalCellularOffSharp: SvgIconComponent; +export const SignalCellularOffTwoTone: SvgIconComponent; +export const SignalWifi0Bar: SvgIconComponent; +export const SignalWifi0BarOutlined: SvgIconComponent; +export const SignalWifi0BarRounded: SvgIconComponent; +export const SignalWifi0BarSharp: SvgIconComponent; +export const SignalWifi0BarTwoTone: SvgIconComponent; +export const SignalWifi1Bar: SvgIconComponent; +export const SignalWifi1BarLock: SvgIconComponent; +export const SignalWifi1BarLockOutlined: SvgIconComponent; +export const SignalWifi1BarLockRounded: SvgIconComponent; +export const SignalWifi1BarLockSharp: SvgIconComponent; +export const SignalWifi1BarLockTwoTone: SvgIconComponent; +export const SignalWifi1BarOutlined: SvgIconComponent; +export const SignalWifi1BarRounded: SvgIconComponent; +export const SignalWifi1BarSharp: SvgIconComponent; +export const SignalWifi1BarTwoTone: SvgIconComponent; +export const SignalWifi2Bar: SvgIconComponent; +export const SignalWifi2BarLock: SvgIconComponent; +export const SignalWifi2BarLockOutlined: SvgIconComponent; +export const SignalWifi2BarLockRounded: SvgIconComponent; +export const SignalWifi2BarLockSharp: SvgIconComponent; +export const SignalWifi2BarLockTwoTone: SvgIconComponent; +export const SignalWifi2BarOutlined: SvgIconComponent; +export const SignalWifi2BarRounded: SvgIconComponent; +export const SignalWifi2BarSharp: SvgIconComponent; +export const SignalWifi2BarTwoTone: SvgIconComponent; +export const SignalWifi3Bar: SvgIconComponent; +export const SignalWifi3BarLock: SvgIconComponent; +export const SignalWifi3BarLockOutlined: SvgIconComponent; +export const SignalWifi3BarLockRounded: SvgIconComponent; +export const SignalWifi3BarLockSharp: SvgIconComponent; +export const SignalWifi3BarLockTwoTone: SvgIconComponent; +export const SignalWifi3BarOutlined: SvgIconComponent; +export const SignalWifi3BarRounded: SvgIconComponent; +export const SignalWifi3BarSharp: SvgIconComponent; +export const SignalWifi3BarTwoTone: SvgIconComponent; +export const SignalWifi4Bar: SvgIconComponent; +export const SignalWifi4BarLock: SvgIconComponent; +export const SignalWifi4BarLockOutlined: SvgIconComponent; +export const SignalWifi4BarLockRounded: SvgIconComponent; +export const SignalWifi4BarLockSharp: SvgIconComponent; +export const SignalWifi4BarLockTwoTone: SvgIconComponent; +export const SignalWifi4BarOutlined: SvgIconComponent; +export const SignalWifi4BarRounded: SvgIconComponent; +export const SignalWifi4BarSharp: SvgIconComponent; +export const SignalWifi4BarTwoTone: SvgIconComponent; +export const SignalWifiBad: SvgIconComponent; +export const SignalWifiBadOutlined: SvgIconComponent; +export const SignalWifiBadRounded: SvgIconComponent; +export const SignalWifiBadSharp: SvgIconComponent; +export const SignalWifiBadTwoTone: SvgIconComponent; +export const SignalWifiConnectedNoInternet4: SvgIconComponent; +export const SignalWifiConnectedNoInternet4Outlined: SvgIconComponent; +export const SignalWifiConnectedNoInternet4Rounded: SvgIconComponent; +export const SignalWifiConnectedNoInternet4Sharp: SvgIconComponent; +export const SignalWifiConnectedNoInternet4TwoTone: SvgIconComponent; +export const SignalWifiOff: SvgIconComponent; +export const SignalWifiOffOutlined: SvgIconComponent; +export const SignalWifiOffRounded: SvgIconComponent; +export const SignalWifiOffSharp: SvgIconComponent; +export const SignalWifiOffTwoTone: SvgIconComponent; +export const SignalWifiStatusbar4Bar: SvgIconComponent; +export const SignalWifiStatusbar4BarOutlined: SvgIconComponent; +export const SignalWifiStatusbar4BarRounded: SvgIconComponent; +export const SignalWifiStatusbar4BarSharp: SvgIconComponent; +export const SignalWifiStatusbar4BarTwoTone: SvgIconComponent; +export const SignalWifiStatusbarConnectedNoInternet4: SvgIconComponent; +export const SignalWifiStatusbarConnectedNoInternet4Outlined: SvgIconComponent; +export const SignalWifiStatusbarConnectedNoInternet4Rounded: SvgIconComponent; +export const SignalWifiStatusbarConnectedNoInternet4Sharp: SvgIconComponent; +export const SignalWifiStatusbarConnectedNoInternet4TwoTone: SvgIconComponent; +export const SignalWifiStatusbarNull: SvgIconComponent; +export const SignalWifiStatusbarNullOutlined: SvgIconComponent; +export const SignalWifiStatusbarNullRounded: SvgIconComponent; +export const SignalWifiStatusbarNullSharp: SvgIconComponent; +export const SignalWifiStatusbarNullTwoTone: SvgIconComponent; +export const Signpost: SvgIconComponent; +export const SignpostOutlined: SvgIconComponent; +export const SignpostRounded: SvgIconComponent; +export const SignpostSharp: SvgIconComponent; +export const SignpostTwoTone: SvgIconComponent; +export const SimCard: SvgIconComponent; +export const SimCardAlert: SvgIconComponent; +export const SimCardAlertOutlined: SvgIconComponent; +export const SimCardAlertRounded: SvgIconComponent; +export const SimCardAlertSharp: SvgIconComponent; +export const SimCardAlertTwoTone: SvgIconComponent; +export const SimCardDownload: SvgIconComponent; +export const SimCardDownloadOutlined: SvgIconComponent; +export const SimCardDownloadRounded: SvgIconComponent; +export const SimCardDownloadSharp: SvgIconComponent; +export const SimCardDownloadTwoTone: SvgIconComponent; +export const SimCardOutlined: SvgIconComponent; +export const SimCardRounded: SvgIconComponent; +export const SimCardSharp: SvgIconComponent; +export const SimCardTwoTone: SvgIconComponent; +export const SingleBed: SvgIconComponent; +export const SingleBedOutlined: SvgIconComponent; +export const SingleBedRounded: SvgIconComponent; +export const SingleBedSharp: SvgIconComponent; +export const SingleBedTwoTone: SvgIconComponent; +export const Sip: SvgIconComponent; +export const SipOutlined: SvgIconComponent; +export const SipRounded: SvgIconComponent; +export const SipSharp: SvgIconComponent; +export const SipTwoTone: SvgIconComponent; +export const SixK: SvgIconComponent; +export const SixKOutlined: SvgIconComponent; +export const SixKPlus: SvgIconComponent; +export const SixKPlusOutlined: SvgIconComponent; +export const SixKPlusRounded: SvgIconComponent; +export const SixKPlusSharp: SvgIconComponent; +export const SixKPlusTwoTone: SvgIconComponent; +export const SixKRounded: SvgIconComponent; +export const SixKSharp: SvgIconComponent; +export const SixKTwoTone: SvgIconComponent; +export const SixMp: SvgIconComponent; +export const SixMpOutlined: SvgIconComponent; +export const SixMpRounded: SvgIconComponent; +export const SixMpSharp: SvgIconComponent; +export const SixMpTwoTone: SvgIconComponent; +export const SixteenMp: SvgIconComponent; +export const SixteenMpOutlined: SvgIconComponent; +export const SixteenMpRounded: SvgIconComponent; +export const SixteenMpSharp: SvgIconComponent; +export const SixteenMpTwoTone: SvgIconComponent; +export const SixtyFps: SvgIconComponent; +export const SixtyFpsOutlined: SvgIconComponent; +export const SixtyFpsRounded: SvgIconComponent; +export const SixtyFpsSelect: SvgIconComponent; +export const SixtyFpsSelectOutlined: SvgIconComponent; +export const SixtyFpsSelectRounded: SvgIconComponent; +export const SixtyFpsSelectSharp: SvgIconComponent; +export const SixtyFpsSelectTwoTone: SvgIconComponent; +export const SixtyFpsSharp: SvgIconComponent; +export const SixtyFpsTwoTone: SvgIconComponent; +export const Skateboarding: SvgIconComponent; +export const SkateboardingOutlined: SvgIconComponent; +export const SkateboardingRounded: SvgIconComponent; +export const SkateboardingSharp: SvgIconComponent; +export const SkateboardingTwoTone: SvgIconComponent; +export const SkipNext: SvgIconComponent; +export const SkipNextOutlined: SvgIconComponent; +export const SkipNextRounded: SvgIconComponent; +export const SkipNextSharp: SvgIconComponent; +export const SkipNextTwoTone: SvgIconComponent; +export const SkipPrevious: SvgIconComponent; +export const SkipPreviousOutlined: SvgIconComponent; +export const SkipPreviousRounded: SvgIconComponent; +export const SkipPreviousSharp: SvgIconComponent; +export const SkipPreviousTwoTone: SvgIconComponent; +export const Sledding: SvgIconComponent; +export const SleddingOutlined: SvgIconComponent; +export const SleddingRounded: SvgIconComponent; +export const SleddingSharp: SvgIconComponent; +export const SleddingTwoTone: SvgIconComponent; +export const Slideshow: SvgIconComponent; +export const SlideshowOutlined: SvgIconComponent; +export const SlideshowRounded: SvgIconComponent; +export const SlideshowSharp: SvgIconComponent; +export const SlideshowTwoTone: SvgIconComponent; +export const SlowMotionVideo: SvgIconComponent; +export const SlowMotionVideoOutlined: SvgIconComponent; +export const SlowMotionVideoRounded: SvgIconComponent; +export const SlowMotionVideoSharp: SvgIconComponent; +export const SlowMotionVideoTwoTone: SvgIconComponent; +export const SmartButton: SvgIconComponent; +export const SmartButtonOutlined: SvgIconComponent; +export const SmartButtonRounded: SvgIconComponent; +export const SmartButtonSharp: SvgIconComponent; +export const SmartButtonTwoTone: SvgIconComponent; +export const SmartDisplay: SvgIconComponent; +export const SmartDisplayOutlined: SvgIconComponent; +export const SmartDisplayRounded: SvgIconComponent; +export const SmartDisplaySharp: SvgIconComponent; +export const SmartDisplayTwoTone: SvgIconComponent; +export const SmartScreen: SvgIconComponent; +export const SmartScreenOutlined: SvgIconComponent; +export const SmartScreenRounded: SvgIconComponent; +export const SmartScreenSharp: SvgIconComponent; +export const SmartScreenTwoTone: SvgIconComponent; +export const SmartToy: SvgIconComponent; +export const SmartToyOutlined: SvgIconComponent; +export const SmartToyRounded: SvgIconComponent; +export const SmartToySharp: SvgIconComponent; +export const SmartToyTwoTone: SvgIconComponent; +export const Smartphone: SvgIconComponent; +export const SmartphoneOutlined: SvgIconComponent; +export const SmartphoneRounded: SvgIconComponent; +export const SmartphoneSharp: SvgIconComponent; +export const SmartphoneTwoTone: SvgIconComponent; +export const SmokeFree: SvgIconComponent; +export const SmokeFreeOutlined: SvgIconComponent; +export const SmokeFreeRounded: SvgIconComponent; +export const SmokeFreeSharp: SvgIconComponent; +export const SmokeFreeTwoTone: SvgIconComponent; +export const SmokingRooms: SvgIconComponent; +export const SmokingRoomsOutlined: SvgIconComponent; +export const SmokingRoomsRounded: SvgIconComponent; +export const SmokingRoomsSharp: SvgIconComponent; +export const SmokingRoomsTwoTone: SvgIconComponent; +export const Sms: SvgIconComponent; +export const SmsFailed: SvgIconComponent; +export const SmsFailedOutlined: SvgIconComponent; +export const SmsFailedRounded: SvgIconComponent; +export const SmsFailedSharp: SvgIconComponent; +export const SmsFailedTwoTone: SvgIconComponent; +export const SmsOutlined: SvgIconComponent; +export const SmsRounded: SvgIconComponent; +export const SmsSharp: SvgIconComponent; +export const SmsTwoTone: SvgIconComponent; +export const SnippetFolder: SvgIconComponent; +export const SnippetFolderOutlined: SvgIconComponent; +export const SnippetFolderRounded: SvgIconComponent; +export const SnippetFolderSharp: SvgIconComponent; +export const SnippetFolderTwoTone: SvgIconComponent; +export const Snooze: SvgIconComponent; +export const SnoozeOutlined: SvgIconComponent; +export const SnoozeRounded: SvgIconComponent; +export const SnoozeSharp: SvgIconComponent; +export const SnoozeTwoTone: SvgIconComponent; +export const Snowboarding: SvgIconComponent; +export const SnowboardingOutlined: SvgIconComponent; +export const SnowboardingRounded: SvgIconComponent; +export const SnowboardingSharp: SvgIconComponent; +export const SnowboardingTwoTone: SvgIconComponent; +export const Snowmobile: SvgIconComponent; +export const SnowmobileOutlined: SvgIconComponent; +export const SnowmobileRounded: SvgIconComponent; +export const SnowmobileSharp: SvgIconComponent; +export const SnowmobileTwoTone: SvgIconComponent; +export const Snowshoeing: SvgIconComponent; +export const SnowshoeingOutlined: SvgIconComponent; +export const SnowshoeingRounded: SvgIconComponent; +export const SnowshoeingSharp: SvgIconComponent; +export const SnowshoeingTwoTone: SvgIconComponent; +export const Soap: SvgIconComponent; +export const SoapOutlined: SvgIconComponent; +export const SoapRounded: SvgIconComponent; +export const SoapSharp: SvgIconComponent; +export const SoapTwoTone: SvgIconComponent; +export const SocialDistance: SvgIconComponent; +export const SocialDistanceOutlined: SvgIconComponent; +export const SocialDistanceRounded: SvgIconComponent; +export const SocialDistanceSharp: SvgIconComponent; +export const SocialDistanceTwoTone: SvgIconComponent; +export const SolarPower: SvgIconComponent; +export const SolarPowerOutlined: SvgIconComponent; +export const SolarPowerRounded: SvgIconComponent; +export const SolarPowerSharp: SvgIconComponent; +export const SolarPowerTwoTone: SvgIconComponent; +export const Sort: SvgIconComponent; +export const SortByAlpha: SvgIconComponent; +export const SortByAlphaOutlined: SvgIconComponent; +export const SortByAlphaRounded: SvgIconComponent; +export const SortByAlphaSharp: SvgIconComponent; +export const SortByAlphaTwoTone: SvgIconComponent; +export const SortOutlined: SvgIconComponent; +export const SortRounded: SvgIconComponent; +export const SortSharp: SvgIconComponent; +export const SortTwoTone: SvgIconComponent; +export const Sos: SvgIconComponent; +export const SosOutlined: SvgIconComponent; +export const SosRounded: SvgIconComponent; +export const SosSharp: SvgIconComponent; +export const SosTwoTone: SvgIconComponent; +export const SoupKitchen: SvgIconComponent; +export const SoupKitchenOutlined: SvgIconComponent; +export const SoupKitchenRounded: SvgIconComponent; +export const SoupKitchenSharp: SvgIconComponent; +export const SoupKitchenTwoTone: SvgIconComponent; +export const Source: SvgIconComponent; +export const SourceOutlined: SvgIconComponent; +export const SourceRounded: SvgIconComponent; +export const SourceSharp: SvgIconComponent; +export const SourceTwoTone: SvgIconComponent; +export const South: SvgIconComponent; +export const SouthAmerica: SvgIconComponent; +export const SouthAmericaOutlined: SvgIconComponent; +export const SouthAmericaRounded: SvgIconComponent; +export const SouthAmericaSharp: SvgIconComponent; +export const SouthAmericaTwoTone: SvgIconComponent; +export const SouthEast: SvgIconComponent; +export const SouthEastOutlined: SvgIconComponent; +export const SouthEastRounded: SvgIconComponent; +export const SouthEastSharp: SvgIconComponent; +export const SouthEastTwoTone: SvgIconComponent; +export const SouthOutlined: SvgIconComponent; +export const SouthRounded: SvgIconComponent; +export const SouthSharp: SvgIconComponent; +export const SouthTwoTone: SvgIconComponent; +export const SouthWest: SvgIconComponent; +export const SouthWestOutlined: SvgIconComponent; +export const SouthWestRounded: SvgIconComponent; +export const SouthWestSharp: SvgIconComponent; +export const SouthWestTwoTone: SvgIconComponent; +export const Spa: SvgIconComponent; +export const SpaOutlined: SvgIconComponent; +export const SpaRounded: SvgIconComponent; +export const SpaSharp: SvgIconComponent; +export const SpaTwoTone: SvgIconComponent; +export const SpaceBar: SvgIconComponent; +export const SpaceBarOutlined: SvgIconComponent; +export const SpaceBarRounded: SvgIconComponent; +export const SpaceBarSharp: SvgIconComponent; +export const SpaceBarTwoTone: SvgIconComponent; +export const SpaceDashboard: SvgIconComponent; +export const SpaceDashboardOutlined: SvgIconComponent; +export const SpaceDashboardRounded: SvgIconComponent; +export const SpaceDashboardSharp: SvgIconComponent; +export const SpaceDashboardTwoTone: SvgIconComponent; +export const SpatialAudio: SvgIconComponent; +export const SpatialAudioOff: SvgIconComponent; +export const SpatialAudioOffOutlined: SvgIconComponent; +export const SpatialAudioOffRounded: SvgIconComponent; +export const SpatialAudioOffSharp: SvgIconComponent; +export const SpatialAudioOffTwoTone: SvgIconComponent; +export const SpatialAudioOutlined: SvgIconComponent; +export const SpatialAudioRounded: SvgIconComponent; +export const SpatialAudioSharp: SvgIconComponent; +export const SpatialAudioTwoTone: SvgIconComponent; +export const SpatialTracking: SvgIconComponent; +export const SpatialTrackingOutlined: SvgIconComponent; +export const SpatialTrackingRounded: SvgIconComponent; +export const SpatialTrackingSharp: SvgIconComponent; +export const SpatialTrackingTwoTone: SvgIconComponent; +export const Speaker: SvgIconComponent; +export const SpeakerGroup: SvgIconComponent; +export const SpeakerGroupOutlined: SvgIconComponent; +export const SpeakerGroupRounded: SvgIconComponent; +export const SpeakerGroupSharp: SvgIconComponent; +export const SpeakerGroupTwoTone: SvgIconComponent; +export const SpeakerNotes: SvgIconComponent; +export const SpeakerNotesOff: SvgIconComponent; +export const SpeakerNotesOffOutlined: SvgIconComponent; +export const SpeakerNotesOffRounded: SvgIconComponent; +export const SpeakerNotesOffSharp: SvgIconComponent; +export const SpeakerNotesOffTwoTone: SvgIconComponent; +export const SpeakerNotesOutlined: SvgIconComponent; +export const SpeakerNotesRounded: SvgIconComponent; +export const SpeakerNotesSharp: SvgIconComponent; +export const SpeakerNotesTwoTone: SvgIconComponent; +export const SpeakerOutlined: SvgIconComponent; +export const SpeakerPhone: SvgIconComponent; +export const SpeakerPhoneOutlined: SvgIconComponent; +export const SpeakerPhoneRounded: SvgIconComponent; +export const SpeakerPhoneSharp: SvgIconComponent; +export const SpeakerPhoneTwoTone: SvgIconComponent; +export const SpeakerRounded: SvgIconComponent; +export const SpeakerSharp: SvgIconComponent; +export const SpeakerTwoTone: SvgIconComponent; +export const Speed: SvgIconComponent; +export const SpeedOutlined: SvgIconComponent; +export const SpeedRounded: SvgIconComponent; +export const SpeedSharp: SvgIconComponent; +export const SpeedTwoTone: SvgIconComponent; +export const Spellcheck: SvgIconComponent; +export const SpellcheckOutlined: SvgIconComponent; +export const SpellcheckRounded: SvgIconComponent; +export const SpellcheckSharp: SvgIconComponent; +export const SpellcheckTwoTone: SvgIconComponent; +export const Splitscreen: SvgIconComponent; +export const SplitscreenOutlined: SvgIconComponent; +export const SplitscreenRounded: SvgIconComponent; +export const SplitscreenSharp: SvgIconComponent; +export const SplitscreenTwoTone: SvgIconComponent; +export const Spoke: SvgIconComponent; +export const SpokeOutlined: SvgIconComponent; +export const SpokeRounded: SvgIconComponent; +export const SpokeSharp: SvgIconComponent; +export const SpokeTwoTone: SvgIconComponent; +export const Sports: SvgIconComponent; +export const SportsBar: SvgIconComponent; +export const SportsBarOutlined: SvgIconComponent; +export const SportsBarRounded: SvgIconComponent; +export const SportsBarSharp: SvgIconComponent; +export const SportsBarTwoTone: SvgIconComponent; +export const SportsBaseball: SvgIconComponent; +export const SportsBaseballOutlined: SvgIconComponent; +export const SportsBaseballRounded: SvgIconComponent; +export const SportsBaseballSharp: SvgIconComponent; +export const SportsBaseballTwoTone: SvgIconComponent; +export const SportsBasketball: SvgIconComponent; +export const SportsBasketballOutlined: SvgIconComponent; +export const SportsBasketballRounded: SvgIconComponent; +export const SportsBasketballSharp: SvgIconComponent; +export const SportsBasketballTwoTone: SvgIconComponent; +export const SportsCricket: SvgIconComponent; +export const SportsCricketOutlined: SvgIconComponent; +export const SportsCricketRounded: SvgIconComponent; +export const SportsCricketSharp: SvgIconComponent; +export const SportsCricketTwoTone: SvgIconComponent; +export const SportsEsports: SvgIconComponent; +export const SportsEsportsOutlined: SvgIconComponent; +export const SportsEsportsRounded: SvgIconComponent; +export const SportsEsportsSharp: SvgIconComponent; +export const SportsEsportsTwoTone: SvgIconComponent; +export const SportsFootball: SvgIconComponent; +export const SportsFootballOutlined: SvgIconComponent; +export const SportsFootballRounded: SvgIconComponent; +export const SportsFootballSharp: SvgIconComponent; +export const SportsFootballTwoTone: SvgIconComponent; +export const SportsGolf: SvgIconComponent; +export const SportsGolfOutlined: SvgIconComponent; +export const SportsGolfRounded: SvgIconComponent; +export const SportsGolfSharp: SvgIconComponent; +export const SportsGolfTwoTone: SvgIconComponent; +export const SportsGymnastics: SvgIconComponent; +export const SportsGymnasticsOutlined: SvgIconComponent; +export const SportsGymnasticsRounded: SvgIconComponent; +export const SportsGymnasticsSharp: SvgIconComponent; +export const SportsGymnasticsTwoTone: SvgIconComponent; +export const SportsHandball: SvgIconComponent; +export const SportsHandballOutlined: SvgIconComponent; +export const SportsHandballRounded: SvgIconComponent; +export const SportsHandballSharp: SvgIconComponent; +export const SportsHandballTwoTone: SvgIconComponent; +export const SportsHockey: SvgIconComponent; +export const SportsHockeyOutlined: SvgIconComponent; +export const SportsHockeyRounded: SvgIconComponent; +export const SportsHockeySharp: SvgIconComponent; +export const SportsHockeyTwoTone: SvgIconComponent; +export const SportsKabaddi: SvgIconComponent; +export const SportsKabaddiOutlined: SvgIconComponent; +export const SportsKabaddiRounded: SvgIconComponent; +export const SportsKabaddiSharp: SvgIconComponent; +export const SportsKabaddiTwoTone: SvgIconComponent; +export const SportsMartialArts: SvgIconComponent; +export const SportsMartialArtsOutlined: SvgIconComponent; +export const SportsMartialArtsRounded: SvgIconComponent; +export const SportsMartialArtsSharp: SvgIconComponent; +export const SportsMartialArtsTwoTone: SvgIconComponent; +export const SportsMma: SvgIconComponent; +export const SportsMmaOutlined: SvgIconComponent; +export const SportsMmaRounded: SvgIconComponent; +export const SportsMmaSharp: SvgIconComponent; +export const SportsMmaTwoTone: SvgIconComponent; +export const SportsMotorsports: SvgIconComponent; +export const SportsMotorsportsOutlined: SvgIconComponent; +export const SportsMotorsportsRounded: SvgIconComponent; +export const SportsMotorsportsSharp: SvgIconComponent; +export const SportsMotorsportsTwoTone: SvgIconComponent; +export const SportsOutlined: SvgIconComponent; +export const SportsRounded: SvgIconComponent; +export const SportsRugby: SvgIconComponent; +export const SportsRugbyOutlined: SvgIconComponent; +export const SportsRugbyRounded: SvgIconComponent; +export const SportsRugbySharp: SvgIconComponent; +export const SportsRugbyTwoTone: SvgIconComponent; +export const SportsScore: SvgIconComponent; +export const SportsScoreOutlined: SvgIconComponent; +export const SportsScoreRounded: SvgIconComponent; +export const SportsScoreSharp: SvgIconComponent; +export const SportsScoreTwoTone: SvgIconComponent; +export const SportsSharp: SvgIconComponent; +export const SportsSoccer: SvgIconComponent; +export const SportsSoccerOutlined: SvgIconComponent; +export const SportsSoccerRounded: SvgIconComponent; +export const SportsSoccerSharp: SvgIconComponent; +export const SportsSoccerTwoTone: SvgIconComponent; +export const SportsTennis: SvgIconComponent; +export const SportsTennisOutlined: SvgIconComponent; +export const SportsTennisRounded: SvgIconComponent; +export const SportsTennisSharp: SvgIconComponent; +export const SportsTennisTwoTone: SvgIconComponent; +export const SportsTwoTone: SvgIconComponent; +export const SportsVolleyball: SvgIconComponent; +export const SportsVolleyballOutlined: SvgIconComponent; +export const SportsVolleyballRounded: SvgIconComponent; +export const SportsVolleyballSharp: SvgIconComponent; +export const SportsVolleyballTwoTone: SvgIconComponent; +export const Square: SvgIconComponent; +export const SquareFoot: SvgIconComponent; +export const SquareFootOutlined: SvgIconComponent; +export const SquareFootRounded: SvgIconComponent; +export const SquareFootSharp: SvgIconComponent; +export const SquareFootTwoTone: SvgIconComponent; +export const SquareOutlined: SvgIconComponent; +export const SquareRounded: SvgIconComponent; +export const SquareSharp: SvgIconComponent; +export const SquareTwoTone: SvgIconComponent; +export const SsidChart: SvgIconComponent; +export const SsidChartOutlined: SvgIconComponent; +export const SsidChartRounded: SvgIconComponent; +export const SsidChartSharp: SvgIconComponent; +export const SsidChartTwoTone: SvgIconComponent; +export const StackedBarChart: SvgIconComponent; +export const StackedBarChartOutlined: SvgIconComponent; +export const StackedBarChartRounded: SvgIconComponent; +export const StackedBarChartSharp: SvgIconComponent; +export const StackedBarChartTwoTone: SvgIconComponent; +export const StackedLineChart: SvgIconComponent; +export const StackedLineChartOutlined: SvgIconComponent; +export const StackedLineChartRounded: SvgIconComponent; +export const StackedLineChartSharp: SvgIconComponent; +export const StackedLineChartTwoTone: SvgIconComponent; +export const Stadium: SvgIconComponent; +export const StadiumOutlined: SvgIconComponent; +export const StadiumRounded: SvgIconComponent; +export const StadiumSharp: SvgIconComponent; +export const StadiumTwoTone: SvgIconComponent; +export const Stairs: SvgIconComponent; +export const StairsOutlined: SvgIconComponent; +export const StairsRounded: SvgIconComponent; +export const StairsSharp: SvgIconComponent; +export const StairsTwoTone: SvgIconComponent; +export const Star: SvgIconComponent; +export const StarBorder: SvgIconComponent; +export const StarBorderOutlined: SvgIconComponent; +export const StarBorderPurple500: SvgIconComponent; +export const StarBorderPurple500Outlined: SvgIconComponent; +export const StarBorderPurple500Rounded: SvgIconComponent; +export const StarBorderPurple500Sharp: SvgIconComponent; +export const StarBorderPurple500TwoTone: SvgIconComponent; +export const StarBorderRounded: SvgIconComponent; +export const StarBorderSharp: SvgIconComponent; +export const StarBorderTwoTone: SvgIconComponent; +export const StarHalf: SvgIconComponent; +export const StarHalfOutlined: SvgIconComponent; +export const StarHalfRounded: SvgIconComponent; +export const StarHalfSharp: SvgIconComponent; +export const StarHalfTwoTone: SvgIconComponent; +export const StarOutline: SvgIconComponent; +export const StarOutlineOutlined: SvgIconComponent; +export const StarOutlineRounded: SvgIconComponent; +export const StarOutlineSharp: SvgIconComponent; +export const StarOutlineTwoTone: SvgIconComponent; +export const StarOutlined: SvgIconComponent; +export const StarPurple500: SvgIconComponent; +export const StarPurple500Outlined: SvgIconComponent; +export const StarPurple500Rounded: SvgIconComponent; +export const StarPurple500Sharp: SvgIconComponent; +export const StarPurple500TwoTone: SvgIconComponent; +export const StarRate: SvgIconComponent; +export const StarRateOutlined: SvgIconComponent; +export const StarRateRounded: SvgIconComponent; +export const StarRateSharp: SvgIconComponent; +export const StarRateTwoTone: SvgIconComponent; +export const StarRounded: SvgIconComponent; +export const StarSharp: SvgIconComponent; +export const StarTwoTone: SvgIconComponent; +export const Stars: SvgIconComponent; +export const StarsOutlined: SvgIconComponent; +export const StarsRounded: SvgIconComponent; +export const StarsSharp: SvgIconComponent; +export const StarsTwoTone: SvgIconComponent; +export const Start: SvgIconComponent; +export const StartOutlined: SvgIconComponent; +export const StartRounded: SvgIconComponent; +export const StartSharp: SvgIconComponent; +export const StartTwoTone: SvgIconComponent; +export const StayCurrentLandscape: SvgIconComponent; +export const StayCurrentLandscapeOutlined: SvgIconComponent; +export const StayCurrentLandscapeRounded: SvgIconComponent; +export const StayCurrentLandscapeSharp: SvgIconComponent; +export const StayCurrentLandscapeTwoTone: SvgIconComponent; +export const StayCurrentPortrait: SvgIconComponent; +export const StayCurrentPortraitOutlined: SvgIconComponent; +export const StayCurrentPortraitRounded: SvgIconComponent; +export const StayCurrentPortraitSharp: SvgIconComponent; +export const StayCurrentPortraitTwoTone: SvgIconComponent; +export const StayPrimaryLandscape: SvgIconComponent; +export const StayPrimaryLandscapeOutlined: SvgIconComponent; +export const StayPrimaryLandscapeRounded: SvgIconComponent; +export const StayPrimaryLandscapeSharp: SvgIconComponent; +export const StayPrimaryLandscapeTwoTone: SvgIconComponent; +export const StayPrimaryPortrait: SvgIconComponent; +export const StayPrimaryPortraitOutlined: SvgIconComponent; +export const StayPrimaryPortraitRounded: SvgIconComponent; +export const StayPrimaryPortraitSharp: SvgIconComponent; +export const StayPrimaryPortraitTwoTone: SvgIconComponent; +export const StickyNote2: SvgIconComponent; +export const StickyNote2Outlined: SvgIconComponent; +export const StickyNote2Rounded: SvgIconComponent; +export const StickyNote2Sharp: SvgIconComponent; +export const StickyNote2TwoTone: SvgIconComponent; +export const Stop: SvgIconComponent; +export const StopCircle: SvgIconComponent; +export const StopCircleOutlined: SvgIconComponent; +export const StopCircleRounded: SvgIconComponent; +export const StopCircleSharp: SvgIconComponent; +export const StopCircleTwoTone: SvgIconComponent; +export const StopOutlined: SvgIconComponent; +export const StopRounded: SvgIconComponent; +export const StopScreenShare: SvgIconComponent; +export const StopScreenShareOutlined: SvgIconComponent; +export const StopScreenShareRounded: SvgIconComponent; +export const StopScreenShareSharp: SvgIconComponent; +export const StopScreenShareTwoTone: SvgIconComponent; +export const StopSharp: SvgIconComponent; +export const StopTwoTone: SvgIconComponent; +export const Storage: SvgIconComponent; +export const StorageOutlined: SvgIconComponent; +export const StorageRounded: SvgIconComponent; +export const StorageSharp: SvgIconComponent; +export const StorageTwoTone: SvgIconComponent; +export const Store: SvgIconComponent; +export const StoreMallDirectory: SvgIconComponent; +export const StoreMallDirectoryOutlined: SvgIconComponent; +export const StoreMallDirectoryRounded: SvgIconComponent; +export const StoreMallDirectorySharp: SvgIconComponent; +export const StoreMallDirectoryTwoTone: SvgIconComponent; +export const StoreOutlined: SvgIconComponent; +export const StoreRounded: SvgIconComponent; +export const StoreSharp: SvgIconComponent; +export const StoreTwoTone: SvgIconComponent; +export const Storefront: SvgIconComponent; +export const StorefrontOutlined: SvgIconComponent; +export const StorefrontRounded: SvgIconComponent; +export const StorefrontSharp: SvgIconComponent; +export const StorefrontTwoTone: SvgIconComponent; +export const Storm: SvgIconComponent; +export const StormOutlined: SvgIconComponent; +export const StormRounded: SvgIconComponent; +export const StormSharp: SvgIconComponent; +export const StormTwoTone: SvgIconComponent; +export const Straight: SvgIconComponent; +export const StraightOutlined: SvgIconComponent; +export const StraightRounded: SvgIconComponent; +export const StraightSharp: SvgIconComponent; +export const StraightTwoTone: SvgIconComponent; +export const Straighten: SvgIconComponent; +export const StraightenOutlined: SvgIconComponent; +export const StraightenRounded: SvgIconComponent; +export const StraightenSharp: SvgIconComponent; +export const StraightenTwoTone: SvgIconComponent; +export const Stream: SvgIconComponent; +export const StreamOutlined: SvgIconComponent; +export const StreamRounded: SvgIconComponent; +export const StreamSharp: SvgIconComponent; +export const StreamTwoTone: SvgIconComponent; +export const Streetview: SvgIconComponent; +export const StreetviewOutlined: SvgIconComponent; +export const StreetviewRounded: SvgIconComponent; +export const StreetviewSharp: SvgIconComponent; +export const StreetviewTwoTone: SvgIconComponent; +export const StrikethroughS: SvgIconComponent; +export const StrikethroughSOutlined: SvgIconComponent; +export const StrikethroughSRounded: SvgIconComponent; +export const StrikethroughSSharp: SvgIconComponent; +export const StrikethroughSTwoTone: SvgIconComponent; +export const Stroller: SvgIconComponent; +export const StrollerOutlined: SvgIconComponent; +export const StrollerRounded: SvgIconComponent; +export const StrollerSharp: SvgIconComponent; +export const StrollerTwoTone: SvgIconComponent; +export const Style: SvgIconComponent; +export const StyleOutlined: SvgIconComponent; +export const StyleRounded: SvgIconComponent; +export const StyleSharp: SvgIconComponent; +export const StyleTwoTone: SvgIconComponent; +export const SubdirectoryArrowLeft: SvgIconComponent; +export const SubdirectoryArrowLeftOutlined: SvgIconComponent; +export const SubdirectoryArrowLeftRounded: SvgIconComponent; +export const SubdirectoryArrowLeftSharp: SvgIconComponent; +export const SubdirectoryArrowLeftTwoTone: SvgIconComponent; +export const SubdirectoryArrowRight: SvgIconComponent; +export const SubdirectoryArrowRightOutlined: SvgIconComponent; +export const SubdirectoryArrowRightRounded: SvgIconComponent; +export const SubdirectoryArrowRightSharp: SvgIconComponent; +export const SubdirectoryArrowRightTwoTone: SvgIconComponent; +export const Subject: SvgIconComponent; +export const SubjectOutlined: SvgIconComponent; +export const SubjectRounded: SvgIconComponent; +export const SubjectSharp: SvgIconComponent; +export const SubjectTwoTone: SvgIconComponent; +export const Subscript: SvgIconComponent; +export const SubscriptOutlined: SvgIconComponent; +export const SubscriptRounded: SvgIconComponent; +export const SubscriptSharp: SvgIconComponent; +export const SubscriptTwoTone: SvgIconComponent; +export const Subscriptions: SvgIconComponent; +export const SubscriptionsOutlined: SvgIconComponent; +export const SubscriptionsRounded: SvgIconComponent; +export const SubscriptionsSharp: SvgIconComponent; +export const SubscriptionsTwoTone: SvgIconComponent; +export const Subtitles: SvgIconComponent; +export const SubtitlesOff: SvgIconComponent; +export const SubtitlesOffOutlined: SvgIconComponent; +export const SubtitlesOffRounded: SvgIconComponent; +export const SubtitlesOffSharp: SvgIconComponent; +export const SubtitlesOffTwoTone: SvgIconComponent; +export const SubtitlesOutlined: SvgIconComponent; +export const SubtitlesRounded: SvgIconComponent; +export const SubtitlesSharp: SvgIconComponent; +export const SubtitlesTwoTone: SvgIconComponent; +export const Subway: SvgIconComponent; +export const SubwayOutlined: SvgIconComponent; +export const SubwayRounded: SvgIconComponent; +export const SubwaySharp: SvgIconComponent; +export const SubwayTwoTone: SvgIconComponent; +export const Summarize: SvgIconComponent; +export const SummarizeOutlined: SvgIconComponent; +export const SummarizeRounded: SvgIconComponent; +export const SummarizeSharp: SvgIconComponent; +export const SummarizeTwoTone: SvgIconComponent; +export const Superscript: SvgIconComponent; +export const SuperscriptOutlined: SvgIconComponent; +export const SuperscriptRounded: SvgIconComponent; +export const SuperscriptSharp: SvgIconComponent; +export const SuperscriptTwoTone: SvgIconComponent; +export const SupervisedUserCircle: SvgIconComponent; +export const SupervisedUserCircleOutlined: SvgIconComponent; +export const SupervisedUserCircleRounded: SvgIconComponent; +export const SupervisedUserCircleSharp: SvgIconComponent; +export const SupervisedUserCircleTwoTone: SvgIconComponent; +export const SupervisorAccount: SvgIconComponent; +export const SupervisorAccountOutlined: SvgIconComponent; +export const SupervisorAccountRounded: SvgIconComponent; +export const SupervisorAccountSharp: SvgIconComponent; +export const SupervisorAccountTwoTone: SvgIconComponent; +export const Support: SvgIconComponent; +export const SupportAgent: SvgIconComponent; +export const SupportAgentOutlined: SvgIconComponent; +export const SupportAgentRounded: SvgIconComponent; +export const SupportAgentSharp: SvgIconComponent; +export const SupportAgentTwoTone: SvgIconComponent; +export const SupportOutlined: SvgIconComponent; +export const SupportRounded: SvgIconComponent; +export const SupportSharp: SvgIconComponent; +export const SupportTwoTone: SvgIconComponent; +export const Surfing: SvgIconComponent; +export const SurfingOutlined: SvgIconComponent; +export const SurfingRounded: SvgIconComponent; +export const SurfingSharp: SvgIconComponent; +export const SurfingTwoTone: SvgIconComponent; +export const SurroundSound: SvgIconComponent; +export const SurroundSoundOutlined: SvgIconComponent; +export const SurroundSoundRounded: SvgIconComponent; +export const SurroundSoundSharp: SvgIconComponent; +export const SurroundSoundTwoTone: SvgIconComponent; +export const SwapCalls: SvgIconComponent; +export const SwapCallsOutlined: SvgIconComponent; +export const SwapCallsRounded: SvgIconComponent; +export const SwapCallsSharp: SvgIconComponent; +export const SwapCallsTwoTone: SvgIconComponent; +export const SwapHoriz: SvgIconComponent; +export const SwapHorizOutlined: SvgIconComponent; +export const SwapHorizRounded: SvgIconComponent; +export const SwapHorizSharp: SvgIconComponent; +export const SwapHorizTwoTone: SvgIconComponent; +export const SwapHorizontalCircle: SvgIconComponent; +export const SwapHorizontalCircleOutlined: SvgIconComponent; +export const SwapHorizontalCircleRounded: SvgIconComponent; +export const SwapHorizontalCircleSharp: SvgIconComponent; +export const SwapHorizontalCircleTwoTone: SvgIconComponent; +export const SwapVert: SvgIconComponent; +export const SwapVertOutlined: SvgIconComponent; +export const SwapVertRounded: SvgIconComponent; +export const SwapVertSharp: SvgIconComponent; +export const SwapVertTwoTone: SvgIconComponent; +export const SwapVerticalCircle: SvgIconComponent; +export const SwapVerticalCircleOutlined: SvgIconComponent; +export const SwapVerticalCircleRounded: SvgIconComponent; +export const SwapVerticalCircleSharp: SvgIconComponent; +export const SwapVerticalCircleTwoTone: SvgIconComponent; +export const Swipe: SvgIconComponent; +export const SwipeDown: SvgIconComponent; +export const SwipeDownAlt: SvgIconComponent; +export const SwipeDownAltOutlined: SvgIconComponent; +export const SwipeDownAltRounded: SvgIconComponent; +export const SwipeDownAltSharp: SvgIconComponent; +export const SwipeDownAltTwoTone: SvgIconComponent; +export const SwipeDownOutlined: SvgIconComponent; +export const SwipeDownRounded: SvgIconComponent; +export const SwipeDownSharp: SvgIconComponent; +export const SwipeDownTwoTone: SvgIconComponent; +export const SwipeLeft: SvgIconComponent; +export const SwipeLeftAlt: SvgIconComponent; +export const SwipeLeftAltOutlined: SvgIconComponent; +export const SwipeLeftAltRounded: SvgIconComponent; +export const SwipeLeftAltSharp: SvgIconComponent; +export const SwipeLeftAltTwoTone: SvgIconComponent; +export const SwipeLeftOutlined: SvgIconComponent; +export const SwipeLeftRounded: SvgIconComponent; +export const SwipeLeftSharp: SvgIconComponent; +export const SwipeLeftTwoTone: SvgIconComponent; +export const SwipeOutlined: SvgIconComponent; +export const SwipeRight: SvgIconComponent; +export const SwipeRightAlt: SvgIconComponent; +export const SwipeRightAltOutlined: SvgIconComponent; +export const SwipeRightAltRounded: SvgIconComponent; +export const SwipeRightAltSharp: SvgIconComponent; +export const SwipeRightAltTwoTone: SvgIconComponent; +export const SwipeRightOutlined: SvgIconComponent; +export const SwipeRightRounded: SvgIconComponent; +export const SwipeRightSharp: SvgIconComponent; +export const SwipeRightTwoTone: SvgIconComponent; +export const SwipeRounded: SvgIconComponent; +export const SwipeSharp: SvgIconComponent; +export const SwipeTwoTone: SvgIconComponent; +export const SwipeUp: SvgIconComponent; +export const SwipeUpAlt: SvgIconComponent; +export const SwipeUpAltOutlined: SvgIconComponent; +export const SwipeUpAltRounded: SvgIconComponent; +export const SwipeUpAltSharp: SvgIconComponent; +export const SwipeUpAltTwoTone: SvgIconComponent; +export const SwipeUpOutlined: SvgIconComponent; +export const SwipeUpRounded: SvgIconComponent; +export const SwipeUpSharp: SvgIconComponent; +export const SwipeUpTwoTone: SvgIconComponent; +export const SwipeVertical: SvgIconComponent; +export const SwipeVerticalOutlined: SvgIconComponent; +export const SwipeVerticalRounded: SvgIconComponent; +export const SwipeVerticalSharp: SvgIconComponent; +export const SwipeVerticalTwoTone: SvgIconComponent; +export const SwitchAccessShortcut: SvgIconComponent; +export const SwitchAccessShortcutAdd: SvgIconComponent; +export const SwitchAccessShortcutAddOutlined: SvgIconComponent; +export const SwitchAccessShortcutAddRounded: SvgIconComponent; +export const SwitchAccessShortcutAddSharp: SvgIconComponent; +export const SwitchAccessShortcutAddTwoTone: SvgIconComponent; +export const SwitchAccessShortcutOutlined: SvgIconComponent; +export const SwitchAccessShortcutRounded: SvgIconComponent; +export const SwitchAccessShortcutSharp: SvgIconComponent; +export const SwitchAccessShortcutTwoTone: SvgIconComponent; +export const SwitchAccount: SvgIconComponent; +export const SwitchAccountOutlined: SvgIconComponent; +export const SwitchAccountRounded: SvgIconComponent; +export const SwitchAccountSharp: SvgIconComponent; +export const SwitchAccountTwoTone: SvgIconComponent; +export const SwitchCamera: SvgIconComponent; +export const SwitchCameraOutlined: SvgIconComponent; +export const SwitchCameraRounded: SvgIconComponent; +export const SwitchCameraSharp: SvgIconComponent; +export const SwitchCameraTwoTone: SvgIconComponent; +export const SwitchLeft: SvgIconComponent; +export const SwitchLeftOutlined: SvgIconComponent; +export const SwitchLeftRounded: SvgIconComponent; +export const SwitchLeftSharp: SvgIconComponent; +export const SwitchLeftTwoTone: SvgIconComponent; +export const SwitchRight: SvgIconComponent; +export const SwitchRightOutlined: SvgIconComponent; +export const SwitchRightRounded: SvgIconComponent; +export const SwitchRightSharp: SvgIconComponent; +export const SwitchRightTwoTone: SvgIconComponent; +export const SwitchVideo: SvgIconComponent; +export const SwitchVideoOutlined: SvgIconComponent; +export const SwitchVideoRounded: SvgIconComponent; +export const SwitchVideoSharp: SvgIconComponent; +export const SwitchVideoTwoTone: SvgIconComponent; +export const Synagogue: SvgIconComponent; +export const SynagogueOutlined: SvgIconComponent; +export const SynagogueRounded: SvgIconComponent; +export const SynagogueSharp: SvgIconComponent; +export const SynagogueTwoTone: SvgIconComponent; +export const Sync: SvgIconComponent; +export const SyncAlt: SvgIconComponent; +export const SyncAltOutlined: SvgIconComponent; +export const SyncAltRounded: SvgIconComponent; +export const SyncAltSharp: SvgIconComponent; +export const SyncAltTwoTone: SvgIconComponent; +export const SyncDisabled: SvgIconComponent; +export const SyncDisabledOutlined: SvgIconComponent; +export const SyncDisabledRounded: SvgIconComponent; +export const SyncDisabledSharp: SvgIconComponent; +export const SyncDisabledTwoTone: SvgIconComponent; +export const SyncLock: SvgIconComponent; +export const SyncLockOutlined: SvgIconComponent; +export const SyncLockRounded: SvgIconComponent; +export const SyncLockSharp: SvgIconComponent; +export const SyncLockTwoTone: SvgIconComponent; +export const SyncOutlined: SvgIconComponent; +export const SyncProblem: SvgIconComponent; +export const SyncProblemOutlined: SvgIconComponent; +export const SyncProblemRounded: SvgIconComponent; +export const SyncProblemSharp: SvgIconComponent; +export const SyncProblemTwoTone: SvgIconComponent; +export const SyncRounded: SvgIconComponent; +export const SyncSharp: SvgIconComponent; +export const SyncTwoTone: SvgIconComponent; +export const SystemSecurityUpdate: SvgIconComponent; +export const SystemSecurityUpdateGood: SvgIconComponent; +export const SystemSecurityUpdateGoodOutlined: SvgIconComponent; +export const SystemSecurityUpdateGoodRounded: SvgIconComponent; +export const SystemSecurityUpdateGoodSharp: SvgIconComponent; +export const SystemSecurityUpdateGoodTwoTone: SvgIconComponent; +export const SystemSecurityUpdateOutlined: SvgIconComponent; +export const SystemSecurityUpdateRounded: SvgIconComponent; +export const SystemSecurityUpdateSharp: SvgIconComponent; +export const SystemSecurityUpdateTwoTone: SvgIconComponent; +export const SystemSecurityUpdateWarning: SvgIconComponent; +export const SystemSecurityUpdateWarningOutlined: SvgIconComponent; +export const SystemSecurityUpdateWarningRounded: SvgIconComponent; +export const SystemSecurityUpdateWarningSharp: SvgIconComponent; +export const SystemSecurityUpdateWarningTwoTone: SvgIconComponent; +export const SystemUpdate: SvgIconComponent; +export const SystemUpdateAlt: SvgIconComponent; +export const SystemUpdateAltOutlined: SvgIconComponent; +export const SystemUpdateAltRounded: SvgIconComponent; +export const SystemUpdateAltSharp: SvgIconComponent; +export const SystemUpdateAltTwoTone: SvgIconComponent; +export const SystemUpdateOutlined: SvgIconComponent; +export const SystemUpdateRounded: SvgIconComponent; +export const SystemUpdateSharp: SvgIconComponent; +export const SystemUpdateTwoTone: SvgIconComponent; +export const Tab: SvgIconComponent; +export const TabOutlined: SvgIconComponent; +export const TabRounded: SvgIconComponent; +export const TabSharp: SvgIconComponent; +export const TabTwoTone: SvgIconComponent; +export const TabUnselected: SvgIconComponent; +export const TabUnselectedOutlined: SvgIconComponent; +export const TabUnselectedRounded: SvgIconComponent; +export const TabUnselectedSharp: SvgIconComponent; +export const TabUnselectedTwoTone: SvgIconComponent; +export const TableBar: SvgIconComponent; +export const TableBarOutlined: SvgIconComponent; +export const TableBarRounded: SvgIconComponent; +export const TableBarSharp: SvgIconComponent; +export const TableBarTwoTone: SvgIconComponent; +export const TableChart: SvgIconComponent; +export const TableChartOutlined: SvgIconComponent; +export const TableChartRounded: SvgIconComponent; +export const TableChartSharp: SvgIconComponent; +export const TableChartTwoTone: SvgIconComponent; +export const TableRestaurant: SvgIconComponent; +export const TableRestaurantOutlined: SvgIconComponent; +export const TableRestaurantRounded: SvgIconComponent; +export const TableRestaurantSharp: SvgIconComponent; +export const TableRestaurantTwoTone: SvgIconComponent; +export const TableRows: SvgIconComponent; +export const TableRowsOutlined: SvgIconComponent; +export const TableRowsRounded: SvgIconComponent; +export const TableRowsSharp: SvgIconComponent; +export const TableRowsTwoTone: SvgIconComponent; +export const TableView: SvgIconComponent; +export const TableViewOutlined: SvgIconComponent; +export const TableViewRounded: SvgIconComponent; +export const TableViewSharp: SvgIconComponent; +export const TableViewTwoTone: SvgIconComponent; +export const Tablet: SvgIconComponent; +export const TabletAndroid: SvgIconComponent; +export const TabletAndroidOutlined: SvgIconComponent; +export const TabletAndroidRounded: SvgIconComponent; +export const TabletAndroidSharp: SvgIconComponent; +export const TabletAndroidTwoTone: SvgIconComponent; +export const TabletMac: SvgIconComponent; +export const TabletMacOutlined: SvgIconComponent; +export const TabletMacRounded: SvgIconComponent; +export const TabletMacSharp: SvgIconComponent; +export const TabletMacTwoTone: SvgIconComponent; +export const TabletOutlined: SvgIconComponent; +export const TabletRounded: SvgIconComponent; +export const TabletSharp: SvgIconComponent; +export const TabletTwoTone: SvgIconComponent; +export const Tag: SvgIconComponent; +export const TagFaces: SvgIconComponent; +export const TagFacesOutlined: SvgIconComponent; +export const TagFacesRounded: SvgIconComponent; +export const TagFacesSharp: SvgIconComponent; +export const TagFacesTwoTone: SvgIconComponent; +export const TagOutlined: SvgIconComponent; +export const TagRounded: SvgIconComponent; +export const TagSharp: SvgIconComponent; +export const TagTwoTone: SvgIconComponent; +export const TakeoutDining: SvgIconComponent; +export const TakeoutDiningOutlined: SvgIconComponent; +export const TakeoutDiningRounded: SvgIconComponent; +export const TakeoutDiningSharp: SvgIconComponent; +export const TakeoutDiningTwoTone: SvgIconComponent; +export const TapAndPlay: SvgIconComponent; +export const TapAndPlayOutlined: SvgIconComponent; +export const TapAndPlayRounded: SvgIconComponent; +export const TapAndPlaySharp: SvgIconComponent; +export const TapAndPlayTwoTone: SvgIconComponent; +export const Tapas: SvgIconComponent; +export const TapasOutlined: SvgIconComponent; +export const TapasRounded: SvgIconComponent; +export const TapasSharp: SvgIconComponent; +export const TapasTwoTone: SvgIconComponent; +export const Task: SvgIconComponent; +export const TaskAlt: SvgIconComponent; +export const TaskAltOutlined: SvgIconComponent; +export const TaskAltRounded: SvgIconComponent; +export const TaskAltSharp: SvgIconComponent; +export const TaskAltTwoTone: SvgIconComponent; +export const TaskOutlined: SvgIconComponent; +export const TaskRounded: SvgIconComponent; +export const TaskSharp: SvgIconComponent; +export const TaskTwoTone: SvgIconComponent; +export const TaxiAlert: SvgIconComponent; +export const TaxiAlertOutlined: SvgIconComponent; +export const TaxiAlertRounded: SvgIconComponent; +export const TaxiAlertSharp: SvgIconComponent; +export const TaxiAlertTwoTone: SvgIconComponent; +export const Telegram: SvgIconComponent; +export const TempleBuddhist: SvgIconComponent; +export const TempleBuddhistOutlined: SvgIconComponent; +export const TempleBuddhistRounded: SvgIconComponent; +export const TempleBuddhistSharp: SvgIconComponent; +export const TempleBuddhistTwoTone: SvgIconComponent; +export const TempleHindu: SvgIconComponent; +export const TempleHinduOutlined: SvgIconComponent; +export const TempleHinduRounded: SvgIconComponent; +export const TempleHinduSharp: SvgIconComponent; +export const TempleHinduTwoTone: SvgIconComponent; +export const TenMp: SvgIconComponent; +export const TenMpOutlined: SvgIconComponent; +export const TenMpRounded: SvgIconComponent; +export const TenMpSharp: SvgIconComponent; +export const TenMpTwoTone: SvgIconComponent; +export const Terminal: SvgIconComponent; +export const TerminalOutlined: SvgIconComponent; +export const TerminalRounded: SvgIconComponent; +export const TerminalSharp: SvgIconComponent; +export const TerminalTwoTone: SvgIconComponent; +export const Terrain: SvgIconComponent; +export const TerrainOutlined: SvgIconComponent; +export const TerrainRounded: SvgIconComponent; +export const TerrainSharp: SvgIconComponent; +export const TerrainTwoTone: SvgIconComponent; +export const TextDecrease: SvgIconComponent; +export const TextDecreaseOutlined: SvgIconComponent; +export const TextDecreaseRounded: SvgIconComponent; +export const TextDecreaseSharp: SvgIconComponent; +export const TextDecreaseTwoTone: SvgIconComponent; +export const TextFields: SvgIconComponent; +export const TextFieldsOutlined: SvgIconComponent; +export const TextFieldsRounded: SvgIconComponent; +export const TextFieldsSharp: SvgIconComponent; +export const TextFieldsTwoTone: SvgIconComponent; +export const TextFormat: SvgIconComponent; +export const TextFormatOutlined: SvgIconComponent; +export const TextFormatRounded: SvgIconComponent; +export const TextFormatSharp: SvgIconComponent; +export const TextFormatTwoTone: SvgIconComponent; +export const TextIncrease: SvgIconComponent; +export const TextIncreaseOutlined: SvgIconComponent; +export const TextIncreaseRounded: SvgIconComponent; +export const TextIncreaseSharp: SvgIconComponent; +export const TextIncreaseTwoTone: SvgIconComponent; +export const TextRotateUp: SvgIconComponent; +export const TextRotateUpOutlined: SvgIconComponent; +export const TextRotateUpRounded: SvgIconComponent; +export const TextRotateUpSharp: SvgIconComponent; +export const TextRotateUpTwoTone: SvgIconComponent; +export const TextRotateVertical: SvgIconComponent; +export const TextRotateVerticalOutlined: SvgIconComponent; +export const TextRotateVerticalRounded: SvgIconComponent; +export const TextRotateVerticalSharp: SvgIconComponent; +export const TextRotateVerticalTwoTone: SvgIconComponent; +export const TextRotationAngledown: SvgIconComponent; +export const TextRotationAngledownOutlined: SvgIconComponent; +export const TextRotationAngledownRounded: SvgIconComponent; +export const TextRotationAngledownSharp: SvgIconComponent; +export const TextRotationAngledownTwoTone: SvgIconComponent; +export const TextRotationAngleup: SvgIconComponent; +export const TextRotationAngleupOutlined: SvgIconComponent; +export const TextRotationAngleupRounded: SvgIconComponent; +export const TextRotationAngleupSharp: SvgIconComponent; +export const TextRotationAngleupTwoTone: SvgIconComponent; +export const TextRotationDown: SvgIconComponent; +export const TextRotationDownOutlined: SvgIconComponent; +export const TextRotationDownRounded: SvgIconComponent; +export const TextRotationDownSharp: SvgIconComponent; +export const TextRotationDownTwoTone: SvgIconComponent; +export const TextRotationNone: SvgIconComponent; +export const TextRotationNoneOutlined: SvgIconComponent; +export const TextRotationNoneRounded: SvgIconComponent; +export const TextRotationNoneSharp: SvgIconComponent; +export const TextRotationNoneTwoTone: SvgIconComponent; +export const TextSnippet: SvgIconComponent; +export const TextSnippetOutlined: SvgIconComponent; +export const TextSnippetRounded: SvgIconComponent; +export const TextSnippetSharp: SvgIconComponent; +export const TextSnippetTwoTone: SvgIconComponent; +export const Textsms: SvgIconComponent; +export const TextsmsOutlined: SvgIconComponent; +export const TextsmsRounded: SvgIconComponent; +export const TextsmsSharp: SvgIconComponent; +export const TextsmsTwoTone: SvgIconComponent; +export const Texture: SvgIconComponent; +export const TextureOutlined: SvgIconComponent; +export const TextureRounded: SvgIconComponent; +export const TextureSharp: SvgIconComponent; +export const TextureTwoTone: SvgIconComponent; +export const TheaterComedy: SvgIconComponent; +export const TheaterComedyOutlined: SvgIconComponent; +export const TheaterComedyRounded: SvgIconComponent; +export const TheaterComedySharp: SvgIconComponent; +export const TheaterComedyTwoTone: SvgIconComponent; +export const Theaters: SvgIconComponent; +export const TheatersOutlined: SvgIconComponent; +export const TheatersRounded: SvgIconComponent; +export const TheatersSharp: SvgIconComponent; +export const TheatersTwoTone: SvgIconComponent; +export const Thermostat: SvgIconComponent; +export const ThermostatAuto: SvgIconComponent; +export const ThermostatAutoOutlined: SvgIconComponent; +export const ThermostatAutoRounded: SvgIconComponent; +export const ThermostatAutoSharp: SvgIconComponent; +export const ThermostatAutoTwoTone: SvgIconComponent; +export const ThermostatOutlined: SvgIconComponent; +export const ThermostatRounded: SvgIconComponent; +export const ThermostatSharp: SvgIconComponent; +export const ThermostatTwoTone: SvgIconComponent; +export const ThirteenMp: SvgIconComponent; +export const ThirteenMpOutlined: SvgIconComponent; +export const ThirteenMpRounded: SvgIconComponent; +export const ThirteenMpSharp: SvgIconComponent; +export const ThirteenMpTwoTone: SvgIconComponent; +export const ThirtyFps: SvgIconComponent; +export const ThirtyFpsOutlined: SvgIconComponent; +export const ThirtyFpsRounded: SvgIconComponent; +export const ThirtyFpsSelect: SvgIconComponent; +export const ThirtyFpsSelectOutlined: SvgIconComponent; +export const ThirtyFpsSelectRounded: SvgIconComponent; +export const ThirtyFpsSelectSharp: SvgIconComponent; +export const ThirtyFpsSelectTwoTone: SvgIconComponent; +export const ThirtyFpsSharp: SvgIconComponent; +export const ThirtyFpsTwoTone: SvgIconComponent; +export const ThreeDRotation: SvgIconComponent; +export const ThreeDRotationOutlined: SvgIconComponent; +export const ThreeDRotationRounded: SvgIconComponent; +export const ThreeDRotationSharp: SvgIconComponent; +export const ThreeDRotationTwoTone: SvgIconComponent; +export const ThreeGMobiledata: SvgIconComponent; +export const ThreeGMobiledataOutlined: SvgIconComponent; +export const ThreeGMobiledataRounded: SvgIconComponent; +export const ThreeGMobiledataSharp: SvgIconComponent; +export const ThreeGMobiledataTwoTone: SvgIconComponent; +export const ThreeK: SvgIconComponent; +export const ThreeKOutlined: SvgIconComponent; +export const ThreeKPlus: SvgIconComponent; +export const ThreeKPlusOutlined: SvgIconComponent; +export const ThreeKPlusRounded: SvgIconComponent; +export const ThreeKPlusSharp: SvgIconComponent; +export const ThreeKPlusTwoTone: SvgIconComponent; +export const ThreeKRounded: SvgIconComponent; +export const ThreeKSharp: SvgIconComponent; +export const ThreeKTwoTone: SvgIconComponent; +export const ThreeMp: SvgIconComponent; +export const ThreeMpOutlined: SvgIconComponent; +export const ThreeMpRounded: SvgIconComponent; +export const ThreeMpSharp: SvgIconComponent; +export const ThreeMpTwoTone: SvgIconComponent; +export const ThreeP: SvgIconComponent; +export const ThreePOutlined: SvgIconComponent; +export const ThreePRounded: SvgIconComponent; +export const ThreePSharp: SvgIconComponent; +export const ThreePTwoTone: SvgIconComponent; +export const ThreeSixty: SvgIconComponent; +export const ThreeSixtyOutlined: SvgIconComponent; +export const ThreeSixtyRounded: SvgIconComponent; +export const ThreeSixtySharp: SvgIconComponent; +export const ThreeSixtyTwoTone: SvgIconComponent; +export const ThumbDown: SvgIconComponent; +export const ThumbDownAlt: SvgIconComponent; +export const ThumbDownAltOutlined: SvgIconComponent; +export const ThumbDownAltRounded: SvgIconComponent; +export const ThumbDownAltSharp: SvgIconComponent; +export const ThumbDownAltTwoTone: SvgIconComponent; +export const ThumbDownOffAlt: SvgIconComponent; +export const ThumbDownOffAltOutlined: SvgIconComponent; +export const ThumbDownOffAltRounded: SvgIconComponent; +export const ThumbDownOffAltSharp: SvgIconComponent; +export const ThumbDownOffAltTwoTone: SvgIconComponent; +export const ThumbDownOutlined: SvgIconComponent; +export const ThumbDownRounded: SvgIconComponent; +export const ThumbDownSharp: SvgIconComponent; +export const ThumbDownTwoTone: SvgIconComponent; +export const ThumbUp: SvgIconComponent; +export const ThumbUpAlt: SvgIconComponent; +export const ThumbUpAltOutlined: SvgIconComponent; +export const ThumbUpAltRounded: SvgIconComponent; +export const ThumbUpAltSharp: SvgIconComponent; +export const ThumbUpAltTwoTone: SvgIconComponent; +export const ThumbUpOffAlt: SvgIconComponent; +export const ThumbUpOffAltOutlined: SvgIconComponent; +export const ThumbUpOffAltRounded: SvgIconComponent; +export const ThumbUpOffAltSharp: SvgIconComponent; +export const ThumbUpOffAltTwoTone: SvgIconComponent; +export const ThumbUpOutlined: SvgIconComponent; +export const ThumbUpRounded: SvgIconComponent; +export const ThumbUpSharp: SvgIconComponent; +export const ThumbUpTwoTone: SvgIconComponent; +export const ThumbsUpDown: SvgIconComponent; +export const ThumbsUpDownOutlined: SvgIconComponent; +export const ThumbsUpDownRounded: SvgIconComponent; +export const ThumbsUpDownSharp: SvgIconComponent; +export const ThumbsUpDownTwoTone: SvgIconComponent; +export const Thunderstorm: SvgIconComponent; +export const ThunderstormOutlined: SvgIconComponent; +export const ThunderstormRounded: SvgIconComponent; +export const ThunderstormSharp: SvgIconComponent; +export const ThunderstormTwoTone: SvgIconComponent; +export const TimeToLeave: SvgIconComponent; +export const TimeToLeaveOutlined: SvgIconComponent; +export const TimeToLeaveRounded: SvgIconComponent; +export const TimeToLeaveSharp: SvgIconComponent; +export const TimeToLeaveTwoTone: SvgIconComponent; +export const Timelapse: SvgIconComponent; +export const TimelapseOutlined: SvgIconComponent; +export const TimelapseRounded: SvgIconComponent; +export const TimelapseSharp: SvgIconComponent; +export const TimelapseTwoTone: SvgIconComponent; +export const Timeline: SvgIconComponent; +export const TimelineOutlined: SvgIconComponent; +export const TimelineRounded: SvgIconComponent; +export const TimelineSharp: SvgIconComponent; +export const TimelineTwoTone: SvgIconComponent; +export const Timer: SvgIconComponent; +export const Timer10: SvgIconComponent; +export const Timer10Outlined: SvgIconComponent; +export const Timer10Rounded: SvgIconComponent; +export const Timer10Select: SvgIconComponent; +export const Timer10SelectOutlined: SvgIconComponent; +export const Timer10SelectRounded: SvgIconComponent; +export const Timer10SelectSharp: SvgIconComponent; +export const Timer10SelectTwoTone: SvgIconComponent; +export const Timer10Sharp: SvgIconComponent; +export const Timer10TwoTone: SvgIconComponent; +export const Timer3: SvgIconComponent; +export const Timer3Outlined: SvgIconComponent; +export const Timer3Rounded: SvgIconComponent; +export const Timer3Select: SvgIconComponent; +export const Timer3SelectOutlined: SvgIconComponent; +export const Timer3SelectRounded: SvgIconComponent; +export const Timer3SelectSharp: SvgIconComponent; +export const Timer3SelectTwoTone: SvgIconComponent; +export const Timer3Sharp: SvgIconComponent; +export const Timer3TwoTone: SvgIconComponent; +export const TimerOff: SvgIconComponent; +export const TimerOffOutlined: SvgIconComponent; +export const TimerOffRounded: SvgIconComponent; +export const TimerOffSharp: SvgIconComponent; +export const TimerOffTwoTone: SvgIconComponent; +export const TimerOutlined: SvgIconComponent; +export const TimerRounded: SvgIconComponent; +export const TimerSharp: SvgIconComponent; +export const TimerTwoTone: SvgIconComponent; +export const TimesOneMobiledata: SvgIconComponent; +export const TimesOneMobiledataOutlined: SvgIconComponent; +export const TimesOneMobiledataRounded: SvgIconComponent; +export const TimesOneMobiledataSharp: SvgIconComponent; +export const TimesOneMobiledataTwoTone: SvgIconComponent; +export const TipsAndUpdates: SvgIconComponent; +export const TipsAndUpdatesOutlined: SvgIconComponent; +export const TipsAndUpdatesRounded: SvgIconComponent; +export const TipsAndUpdatesSharp: SvgIconComponent; +export const TipsAndUpdatesTwoTone: SvgIconComponent; +export const TireRepair: SvgIconComponent; +export const TireRepairOutlined: SvgIconComponent; +export const TireRepairRounded: SvgIconComponent; +export const TireRepairSharp: SvgIconComponent; +export const TireRepairTwoTone: SvgIconComponent; +export const Title: SvgIconComponent; +export const TitleOutlined: SvgIconComponent; +export const TitleRounded: SvgIconComponent; +export const TitleSharp: SvgIconComponent; +export const TitleTwoTone: SvgIconComponent; +export const Toc: SvgIconComponent; +export const TocOutlined: SvgIconComponent; +export const TocRounded: SvgIconComponent; +export const TocSharp: SvgIconComponent; +export const TocTwoTone: SvgIconComponent; +export const Today: SvgIconComponent; +export const TodayOutlined: SvgIconComponent; +export const TodayRounded: SvgIconComponent; +export const TodaySharp: SvgIconComponent; +export const TodayTwoTone: SvgIconComponent; +export const ToggleOff: SvgIconComponent; +export const ToggleOffOutlined: SvgIconComponent; +export const ToggleOffRounded: SvgIconComponent; +export const ToggleOffSharp: SvgIconComponent; +export const ToggleOffTwoTone: SvgIconComponent; +export const ToggleOn: SvgIconComponent; +export const ToggleOnOutlined: SvgIconComponent; +export const ToggleOnRounded: SvgIconComponent; +export const ToggleOnSharp: SvgIconComponent; +export const ToggleOnTwoTone: SvgIconComponent; +export const Token: SvgIconComponent; +export const TokenOutlined: SvgIconComponent; +export const TokenRounded: SvgIconComponent; +export const TokenSharp: SvgIconComponent; +export const TokenTwoTone: SvgIconComponent; +export const Toll: SvgIconComponent; +export const TollOutlined: SvgIconComponent; +export const TollRounded: SvgIconComponent; +export const TollSharp: SvgIconComponent; +export const TollTwoTone: SvgIconComponent; +export const Tonality: SvgIconComponent; +export const TonalityOutlined: SvgIconComponent; +export const TonalityRounded: SvgIconComponent; +export const TonalitySharp: SvgIconComponent; +export const TonalityTwoTone: SvgIconComponent; +export const Topic: SvgIconComponent; +export const TopicOutlined: SvgIconComponent; +export const TopicRounded: SvgIconComponent; +export const TopicSharp: SvgIconComponent; +export const TopicTwoTone: SvgIconComponent; +export const Tornado: SvgIconComponent; +export const TornadoOutlined: SvgIconComponent; +export const TornadoRounded: SvgIconComponent; +export const TornadoSharp: SvgIconComponent; +export const TornadoTwoTone: SvgIconComponent; +export const TouchApp: SvgIconComponent; +export const TouchAppOutlined: SvgIconComponent; +export const TouchAppRounded: SvgIconComponent; +export const TouchAppSharp: SvgIconComponent; +export const TouchAppTwoTone: SvgIconComponent; +export const Tour: SvgIconComponent; +export const TourOutlined: SvgIconComponent; +export const TourRounded: SvgIconComponent; +export const TourSharp: SvgIconComponent; +export const TourTwoTone: SvgIconComponent; +export const Toys: SvgIconComponent; +export const ToysOutlined: SvgIconComponent; +export const ToysRounded: SvgIconComponent; +export const ToysSharp: SvgIconComponent; +export const ToysTwoTone: SvgIconComponent; +export const TrackChanges: SvgIconComponent; +export const TrackChangesOutlined: SvgIconComponent; +export const TrackChangesRounded: SvgIconComponent; +export const TrackChangesSharp: SvgIconComponent; +export const TrackChangesTwoTone: SvgIconComponent; +export const Traffic: SvgIconComponent; +export const TrafficOutlined: SvgIconComponent; +export const TrafficRounded: SvgIconComponent; +export const TrafficSharp: SvgIconComponent; +export const TrafficTwoTone: SvgIconComponent; +export const Train: SvgIconComponent; +export const TrainOutlined: SvgIconComponent; +export const TrainRounded: SvgIconComponent; +export const TrainSharp: SvgIconComponent; +export const TrainTwoTone: SvgIconComponent; +export const Tram: SvgIconComponent; +export const TramOutlined: SvgIconComponent; +export const TramRounded: SvgIconComponent; +export const TramSharp: SvgIconComponent; +export const TramTwoTone: SvgIconComponent; +export const Transcribe: SvgIconComponent; +export const TranscribeOutlined: SvgIconComponent; +export const TranscribeRounded: SvgIconComponent; +export const TranscribeSharp: SvgIconComponent; +export const TranscribeTwoTone: SvgIconComponent; +export const TransferWithinAStation: SvgIconComponent; +export const TransferWithinAStationOutlined: SvgIconComponent; +export const TransferWithinAStationRounded: SvgIconComponent; +export const TransferWithinAStationSharp: SvgIconComponent; +export const TransferWithinAStationTwoTone: SvgIconComponent; +export const Transform: SvgIconComponent; +export const TransformOutlined: SvgIconComponent; +export const TransformRounded: SvgIconComponent; +export const TransformSharp: SvgIconComponent; +export const TransformTwoTone: SvgIconComponent; +export const Transgender: SvgIconComponent; +export const TransgenderOutlined: SvgIconComponent; +export const TransgenderRounded: SvgIconComponent; +export const TransgenderSharp: SvgIconComponent; +export const TransgenderTwoTone: SvgIconComponent; +export const TransitEnterexit: SvgIconComponent; +export const TransitEnterexitOutlined: SvgIconComponent; +export const TransitEnterexitRounded: SvgIconComponent; +export const TransitEnterexitSharp: SvgIconComponent; +export const TransitEnterexitTwoTone: SvgIconComponent; +export const Translate: SvgIconComponent; +export const TranslateOutlined: SvgIconComponent; +export const TranslateRounded: SvgIconComponent; +export const TranslateSharp: SvgIconComponent; +export const TranslateTwoTone: SvgIconComponent; +export const TravelExplore: SvgIconComponent; +export const TravelExploreOutlined: SvgIconComponent; +export const TravelExploreRounded: SvgIconComponent; +export const TravelExploreSharp: SvgIconComponent; +export const TravelExploreTwoTone: SvgIconComponent; +export const TrendingDown: SvgIconComponent; +export const TrendingDownOutlined: SvgIconComponent; +export const TrendingDownRounded: SvgIconComponent; +export const TrendingDownSharp: SvgIconComponent; +export const TrendingDownTwoTone: SvgIconComponent; +export const TrendingFlat: SvgIconComponent; +export const TrendingFlatOutlined: SvgIconComponent; +export const TrendingFlatRounded: SvgIconComponent; +export const TrendingFlatSharp: SvgIconComponent; +export const TrendingFlatTwoTone: SvgIconComponent; +export const TrendingUp: SvgIconComponent; +export const TrendingUpOutlined: SvgIconComponent; +export const TrendingUpRounded: SvgIconComponent; +export const TrendingUpSharp: SvgIconComponent; +export const TrendingUpTwoTone: SvgIconComponent; +export const TripOrigin: SvgIconComponent; +export const TripOriginOutlined: SvgIconComponent; +export const TripOriginRounded: SvgIconComponent; +export const TripOriginSharp: SvgIconComponent; +export const TripOriginTwoTone: SvgIconComponent; +export const Troubleshoot: SvgIconComponent; +export const TroubleshootOutlined: SvgIconComponent; +export const TroubleshootRounded: SvgIconComponent; +export const TroubleshootSharp: SvgIconComponent; +export const TroubleshootTwoTone: SvgIconComponent; +export const Try: SvgIconComponent; +export const TryOutlined: SvgIconComponent; +export const TryRounded: SvgIconComponent; +export const TrySharp: SvgIconComponent; +export const TryTwoTone: SvgIconComponent; +export const Tsunami: SvgIconComponent; +export const TsunamiOutlined: SvgIconComponent; +export const TsunamiRounded: SvgIconComponent; +export const TsunamiSharp: SvgIconComponent; +export const TsunamiTwoTone: SvgIconComponent; +export const Tty: SvgIconComponent; +export const TtyOutlined: SvgIconComponent; +export const TtyRounded: SvgIconComponent; +export const TtySharp: SvgIconComponent; +export const TtyTwoTone: SvgIconComponent; +export const Tune: SvgIconComponent; +export const TuneOutlined: SvgIconComponent; +export const TuneRounded: SvgIconComponent; +export const TuneSharp: SvgIconComponent; +export const TuneTwoTone: SvgIconComponent; +export const Tungsten: SvgIconComponent; +export const TungstenOutlined: SvgIconComponent; +export const TungstenRounded: SvgIconComponent; +export const TungstenSharp: SvgIconComponent; +export const TungstenTwoTone: SvgIconComponent; +export const TurnLeft: SvgIconComponent; +export const TurnLeftOutlined: SvgIconComponent; +export const TurnLeftRounded: SvgIconComponent; +export const TurnLeftSharp: SvgIconComponent; +export const TurnLeftTwoTone: SvgIconComponent; +export const TurnRight: SvgIconComponent; +export const TurnRightOutlined: SvgIconComponent; +export const TurnRightRounded: SvgIconComponent; +export const TurnRightSharp: SvgIconComponent; +export const TurnRightTwoTone: SvgIconComponent; +export const TurnSharpLeft: SvgIconComponent; +export const TurnSharpLeftOutlined: SvgIconComponent; +export const TurnSharpLeftRounded: SvgIconComponent; +export const TurnSharpLeftSharp: SvgIconComponent; +export const TurnSharpLeftTwoTone: SvgIconComponent; +export const TurnSharpRight: SvgIconComponent; +export const TurnSharpRightOutlined: SvgIconComponent; +export const TurnSharpRightRounded: SvgIconComponent; +export const TurnSharpRightSharp: SvgIconComponent; +export const TurnSharpRightTwoTone: SvgIconComponent; +export const TurnSlightLeft: SvgIconComponent; +export const TurnSlightLeftOutlined: SvgIconComponent; +export const TurnSlightLeftRounded: SvgIconComponent; +export const TurnSlightLeftSharp: SvgIconComponent; +export const TurnSlightLeftTwoTone: SvgIconComponent; +export const TurnSlightRight: SvgIconComponent; +export const TurnSlightRightOutlined: SvgIconComponent; +export const TurnSlightRightRounded: SvgIconComponent; +export const TurnSlightRightSharp: SvgIconComponent; +export const TurnSlightRightTwoTone: SvgIconComponent; +export const TurnedIn: SvgIconComponent; +export const TurnedInNot: SvgIconComponent; +export const TurnedInNotOutlined: SvgIconComponent; +export const TurnedInNotRounded: SvgIconComponent; +export const TurnedInNotSharp: SvgIconComponent; +export const TurnedInNotTwoTone: SvgIconComponent; +export const TurnedInOutlined: SvgIconComponent; +export const TurnedInRounded: SvgIconComponent; +export const TurnedInSharp: SvgIconComponent; +export const TurnedInTwoTone: SvgIconComponent; +export const Tv: SvgIconComponent; +export const TvOff: SvgIconComponent; +export const TvOffOutlined: SvgIconComponent; +export const TvOffRounded: SvgIconComponent; +export const TvOffSharp: SvgIconComponent; +export const TvOffTwoTone: SvgIconComponent; +export const TvOutlined: SvgIconComponent; +export const TvRounded: SvgIconComponent; +export const TvSharp: SvgIconComponent; +export const TvTwoTone: SvgIconComponent; +export const TwelveMp: SvgIconComponent; +export const TwelveMpOutlined: SvgIconComponent; +export const TwelveMpRounded: SvgIconComponent; +export const TwelveMpSharp: SvgIconComponent; +export const TwelveMpTwoTone: SvgIconComponent; +export const TwentyFourMp: SvgIconComponent; +export const TwentyFourMpOutlined: SvgIconComponent; +export const TwentyFourMpRounded: SvgIconComponent; +export const TwentyFourMpSharp: SvgIconComponent; +export const TwentyFourMpTwoTone: SvgIconComponent; +export const TwentyOneMp: SvgIconComponent; +export const TwentyOneMpOutlined: SvgIconComponent; +export const TwentyOneMpRounded: SvgIconComponent; +export const TwentyOneMpSharp: SvgIconComponent; +export const TwentyOneMpTwoTone: SvgIconComponent; +export const TwentyThreeMp: SvgIconComponent; +export const TwentyThreeMpOutlined: SvgIconComponent; +export const TwentyThreeMpRounded: SvgIconComponent; +export const TwentyThreeMpSharp: SvgIconComponent; +export const TwentyThreeMpTwoTone: SvgIconComponent; +export const TwentyTwoMp: SvgIconComponent; +export const TwentyTwoMpOutlined: SvgIconComponent; +export const TwentyTwoMpRounded: SvgIconComponent; +export const TwentyTwoMpSharp: SvgIconComponent; +export const TwentyTwoMpTwoTone: SvgIconComponent; +export const TwentyZeroMp: SvgIconComponent; +export const TwentyZeroMpOutlined: SvgIconComponent; +export const TwentyZeroMpRounded: SvgIconComponent; +export const TwentyZeroMpSharp: SvgIconComponent; +export const TwentyZeroMpTwoTone: SvgIconComponent; +export const Twitter: SvgIconComponent; +export const TwoK: SvgIconComponent; +export const TwoKOutlined: SvgIconComponent; +export const TwoKPlus: SvgIconComponent; +export const TwoKPlusOutlined: SvgIconComponent; +export const TwoKPlusRounded: SvgIconComponent; +export const TwoKPlusSharp: SvgIconComponent; +export const TwoKPlusTwoTone: SvgIconComponent; +export const TwoKRounded: SvgIconComponent; +export const TwoKSharp: SvgIconComponent; +export const TwoKTwoTone: SvgIconComponent; +export const TwoMp: SvgIconComponent; +export const TwoMpOutlined: SvgIconComponent; +export const TwoMpRounded: SvgIconComponent; +export const TwoMpSharp: SvgIconComponent; +export const TwoMpTwoTone: SvgIconComponent; +export const TwoWheeler: SvgIconComponent; +export const TwoWheelerOutlined: SvgIconComponent; +export const TwoWheelerRounded: SvgIconComponent; +export const TwoWheelerSharp: SvgIconComponent; +export const TwoWheelerTwoTone: SvgIconComponent; +export const TypeSpecimen: SvgIconComponent; +export const TypeSpecimenOutlined: SvgIconComponent; +export const TypeSpecimenRounded: SvgIconComponent; +export const TypeSpecimenSharp: SvgIconComponent; +export const TypeSpecimenTwoTone: SvgIconComponent; +export const UTurnLeft: SvgIconComponent; +export const UTurnLeftOutlined: SvgIconComponent; +export const UTurnLeftRounded: SvgIconComponent; +export const UTurnLeftSharp: SvgIconComponent; +export const UTurnLeftTwoTone: SvgIconComponent; +export const UTurnRight: SvgIconComponent; +export const UTurnRightOutlined: SvgIconComponent; +export const UTurnRightRounded: SvgIconComponent; +export const UTurnRightSharp: SvgIconComponent; +export const UTurnRightTwoTone: SvgIconComponent; +export const Umbrella: SvgIconComponent; +export const UmbrellaOutlined: SvgIconComponent; +export const UmbrellaRounded: SvgIconComponent; +export const UmbrellaSharp: SvgIconComponent; +export const UmbrellaTwoTone: SvgIconComponent; +export const Unarchive: SvgIconComponent; +export const UnarchiveOutlined: SvgIconComponent; +export const UnarchiveRounded: SvgIconComponent; +export const UnarchiveSharp: SvgIconComponent; +export const UnarchiveTwoTone: SvgIconComponent; +export const Undo: SvgIconComponent; +export const UndoOutlined: SvgIconComponent; +export const UndoRounded: SvgIconComponent; +export const UndoSharp: SvgIconComponent; +export const UndoTwoTone: SvgIconComponent; +export const UnfoldLess: SvgIconComponent; +export const UnfoldLessDouble: SvgIconComponent; +export const UnfoldLessDoubleOutlined: SvgIconComponent; +export const UnfoldLessDoubleRounded: SvgIconComponent; +export const UnfoldLessDoubleSharp: SvgIconComponent; +export const UnfoldLessDoubleTwoTone: SvgIconComponent; +export const UnfoldLessOutlined: SvgIconComponent; +export const UnfoldLessRounded: SvgIconComponent; +export const UnfoldLessSharp: SvgIconComponent; +export const UnfoldLessTwoTone: SvgIconComponent; +export const UnfoldMore: SvgIconComponent; +export const UnfoldMoreDouble: SvgIconComponent; +export const UnfoldMoreDoubleOutlined: SvgIconComponent; +export const UnfoldMoreDoubleRounded: SvgIconComponent; +export const UnfoldMoreDoubleSharp: SvgIconComponent; +export const UnfoldMoreDoubleTwoTone: SvgIconComponent; +export const UnfoldMoreOutlined: SvgIconComponent; +export const UnfoldMoreRounded: SvgIconComponent; +export const UnfoldMoreSharp: SvgIconComponent; +export const UnfoldMoreTwoTone: SvgIconComponent; +export const Unpublished: SvgIconComponent; +export const UnpublishedOutlined: SvgIconComponent; +export const UnpublishedRounded: SvgIconComponent; +export const UnpublishedSharp: SvgIconComponent; +export const UnpublishedTwoTone: SvgIconComponent; +export const Unsubscribe: SvgIconComponent; +export const UnsubscribeOutlined: SvgIconComponent; +export const UnsubscribeRounded: SvgIconComponent; +export const UnsubscribeSharp: SvgIconComponent; +export const UnsubscribeTwoTone: SvgIconComponent; +export const Upcoming: SvgIconComponent; +export const UpcomingOutlined: SvgIconComponent; +export const UpcomingRounded: SvgIconComponent; +export const UpcomingSharp: SvgIconComponent; +export const UpcomingTwoTone: SvgIconComponent; +export const Update: SvgIconComponent; +export const UpdateDisabled: SvgIconComponent; +export const UpdateDisabledOutlined: SvgIconComponent; +export const UpdateDisabledRounded: SvgIconComponent; +export const UpdateDisabledSharp: SvgIconComponent; +export const UpdateDisabledTwoTone: SvgIconComponent; +export const UpdateOutlined: SvgIconComponent; +export const UpdateRounded: SvgIconComponent; +export const UpdateSharp: SvgIconComponent; +export const UpdateTwoTone: SvgIconComponent; +export const Upgrade: SvgIconComponent; +export const UpgradeOutlined: SvgIconComponent; +export const UpgradeRounded: SvgIconComponent; +export const UpgradeSharp: SvgIconComponent; +export const UpgradeTwoTone: SvgIconComponent; +export const Upload: SvgIconComponent; +export const UploadFile: SvgIconComponent; +export const UploadFileOutlined: SvgIconComponent; +export const UploadFileRounded: SvgIconComponent; +export const UploadFileSharp: SvgIconComponent; +export const UploadFileTwoTone: SvgIconComponent; +export const UploadOutlined: SvgIconComponent; +export const UploadRounded: SvgIconComponent; +export const UploadSharp: SvgIconComponent; +export const UploadTwoTone: SvgIconComponent; +export const Usb: SvgIconComponent; +export const UsbOff: SvgIconComponent; +export const UsbOffOutlined: SvgIconComponent; +export const UsbOffRounded: SvgIconComponent; +export const UsbOffSharp: SvgIconComponent; +export const UsbOffTwoTone: SvgIconComponent; +export const UsbOutlined: SvgIconComponent; +export const UsbRounded: SvgIconComponent; +export const UsbSharp: SvgIconComponent; +export const UsbTwoTone: SvgIconComponent; +export const Vaccines: SvgIconComponent; +export const VaccinesOutlined: SvgIconComponent; +export const VaccinesRounded: SvgIconComponent; +export const VaccinesSharp: SvgIconComponent; +export const VaccinesTwoTone: SvgIconComponent; +export const VapeFree: SvgIconComponent; +export const VapeFreeOutlined: SvgIconComponent; +export const VapeFreeRounded: SvgIconComponent; +export const VapeFreeSharp: SvgIconComponent; +export const VapeFreeTwoTone: SvgIconComponent; +export const VapingRooms: SvgIconComponent; +export const VapingRoomsOutlined: SvgIconComponent; +export const VapingRoomsRounded: SvgIconComponent; +export const VapingRoomsSharp: SvgIconComponent; +export const VapingRoomsTwoTone: SvgIconComponent; +export const Verified: SvgIconComponent; +export const VerifiedOutlined: SvgIconComponent; +export const VerifiedRounded: SvgIconComponent; +export const VerifiedSharp: SvgIconComponent; +export const VerifiedTwoTone: SvgIconComponent; +export const VerifiedUser: SvgIconComponent; +export const VerifiedUserOutlined: SvgIconComponent; +export const VerifiedUserRounded: SvgIconComponent; +export const VerifiedUserSharp: SvgIconComponent; +export const VerifiedUserTwoTone: SvgIconComponent; +export const VerticalAlignBottom: SvgIconComponent; +export const VerticalAlignBottomOutlined: SvgIconComponent; +export const VerticalAlignBottomRounded: SvgIconComponent; +export const VerticalAlignBottomSharp: SvgIconComponent; +export const VerticalAlignBottomTwoTone: SvgIconComponent; +export const VerticalAlignCenter: SvgIconComponent; +export const VerticalAlignCenterOutlined: SvgIconComponent; +export const VerticalAlignCenterRounded: SvgIconComponent; +export const VerticalAlignCenterSharp: SvgIconComponent; +export const VerticalAlignCenterTwoTone: SvgIconComponent; +export const VerticalAlignTop: SvgIconComponent; +export const VerticalAlignTopOutlined: SvgIconComponent; +export const VerticalAlignTopRounded: SvgIconComponent; +export const VerticalAlignTopSharp: SvgIconComponent; +export const VerticalAlignTopTwoTone: SvgIconComponent; +export const VerticalShades: SvgIconComponent; +export const VerticalShadesClosed: SvgIconComponent; +export const VerticalShadesClosedOutlined: SvgIconComponent; +export const VerticalShadesClosedRounded: SvgIconComponent; +export const VerticalShadesClosedSharp: SvgIconComponent; +export const VerticalShadesClosedTwoTone: SvgIconComponent; +export const VerticalShadesOutlined: SvgIconComponent; +export const VerticalShadesRounded: SvgIconComponent; +export const VerticalShadesSharp: SvgIconComponent; +export const VerticalShadesTwoTone: SvgIconComponent; +export const VerticalSplit: SvgIconComponent; +export const VerticalSplitOutlined: SvgIconComponent; +export const VerticalSplitRounded: SvgIconComponent; +export const VerticalSplitSharp: SvgIconComponent; +export const VerticalSplitTwoTone: SvgIconComponent; +export const Vibration: SvgIconComponent; +export const VibrationOutlined: SvgIconComponent; +export const VibrationRounded: SvgIconComponent; +export const VibrationSharp: SvgIconComponent; +export const VibrationTwoTone: SvgIconComponent; +export const VideoCall: SvgIconComponent; +export const VideoCallOutlined: SvgIconComponent; +export const VideoCallRounded: SvgIconComponent; +export const VideoCallSharp: SvgIconComponent; +export const VideoCallTwoTone: SvgIconComponent; +export const VideoCameraBack: SvgIconComponent; +export const VideoCameraBackOutlined: SvgIconComponent; +export const VideoCameraBackRounded: SvgIconComponent; +export const VideoCameraBackSharp: SvgIconComponent; +export const VideoCameraBackTwoTone: SvgIconComponent; +export const VideoCameraFront: SvgIconComponent; +export const VideoCameraFrontOutlined: SvgIconComponent; +export const VideoCameraFrontRounded: SvgIconComponent; +export const VideoCameraFrontSharp: SvgIconComponent; +export const VideoCameraFrontTwoTone: SvgIconComponent; +export const VideoChat: SvgIconComponent; +export const VideoChatOutlined: SvgIconComponent; +export const VideoChatRounded: SvgIconComponent; +export const VideoChatSharp: SvgIconComponent; +export const VideoChatTwoTone: SvgIconComponent; +export const VideoFile: SvgIconComponent; +export const VideoFileOutlined: SvgIconComponent; +export const VideoFileRounded: SvgIconComponent; +export const VideoFileSharp: SvgIconComponent; +export const VideoFileTwoTone: SvgIconComponent; +export const VideoLabel: SvgIconComponent; +export const VideoLabelOutlined: SvgIconComponent; +export const VideoLabelRounded: SvgIconComponent; +export const VideoLabelSharp: SvgIconComponent; +export const VideoLabelTwoTone: SvgIconComponent; +export const VideoLibrary: SvgIconComponent; +export const VideoLibraryOutlined: SvgIconComponent; +export const VideoLibraryRounded: SvgIconComponent; +export const VideoLibrarySharp: SvgIconComponent; +export const VideoLibraryTwoTone: SvgIconComponent; +export const VideoSettings: SvgIconComponent; +export const VideoSettingsOutlined: SvgIconComponent; +export const VideoSettingsRounded: SvgIconComponent; +export const VideoSettingsSharp: SvgIconComponent; +export const VideoSettingsTwoTone: SvgIconComponent; +export const VideoStable: SvgIconComponent; +export const VideoStableOutlined: SvgIconComponent; +export const VideoStableRounded: SvgIconComponent; +export const VideoStableSharp: SvgIconComponent; +export const VideoStableTwoTone: SvgIconComponent; +export const Videocam: SvgIconComponent; +export const VideocamOff: SvgIconComponent; +export const VideocamOffOutlined: SvgIconComponent; +export const VideocamOffRounded: SvgIconComponent; +export const VideocamOffSharp: SvgIconComponent; +export const VideocamOffTwoTone: SvgIconComponent; +export const VideocamOutlined: SvgIconComponent; +export const VideocamRounded: SvgIconComponent; +export const VideocamSharp: SvgIconComponent; +export const VideocamTwoTone: SvgIconComponent; +export const VideogameAsset: SvgIconComponent; +export const VideogameAssetOff: SvgIconComponent; +export const VideogameAssetOffOutlined: SvgIconComponent; +export const VideogameAssetOffRounded: SvgIconComponent; +export const VideogameAssetOffSharp: SvgIconComponent; +export const VideogameAssetOffTwoTone: SvgIconComponent; +export const VideogameAssetOutlined: SvgIconComponent; +export const VideogameAssetRounded: SvgIconComponent; +export const VideogameAssetSharp: SvgIconComponent; +export const VideogameAssetTwoTone: SvgIconComponent; +export const ViewAgenda: SvgIconComponent; +export const ViewAgendaOutlined: SvgIconComponent; +export const ViewAgendaRounded: SvgIconComponent; +export const ViewAgendaSharp: SvgIconComponent; +export const ViewAgendaTwoTone: SvgIconComponent; +export const ViewArray: SvgIconComponent; +export const ViewArrayOutlined: SvgIconComponent; +export const ViewArrayRounded: SvgIconComponent; +export const ViewArraySharp: SvgIconComponent; +export const ViewArrayTwoTone: SvgIconComponent; +export const ViewCarousel: SvgIconComponent; +export const ViewCarouselOutlined: SvgIconComponent; +export const ViewCarouselRounded: SvgIconComponent; +export const ViewCarouselSharp: SvgIconComponent; +export const ViewCarouselTwoTone: SvgIconComponent; +export const ViewColumn: SvgIconComponent; +export const ViewColumnOutlined: SvgIconComponent; +export const ViewColumnRounded: SvgIconComponent; +export const ViewColumnSharp: SvgIconComponent; +export const ViewColumnTwoTone: SvgIconComponent; +export const ViewComfy: SvgIconComponent; +export const ViewComfyAlt: SvgIconComponent; +export const ViewComfyAltOutlined: SvgIconComponent; +export const ViewComfyAltRounded: SvgIconComponent; +export const ViewComfyAltSharp: SvgIconComponent; +export const ViewComfyAltTwoTone: SvgIconComponent; +export const ViewComfyOutlined: SvgIconComponent; +export const ViewComfyRounded: SvgIconComponent; +export const ViewComfySharp: SvgIconComponent; +export const ViewComfyTwoTone: SvgIconComponent; +export const ViewCompact: SvgIconComponent; +export const ViewCompactAlt: SvgIconComponent; +export const ViewCompactAltOutlined: SvgIconComponent; +export const ViewCompactAltRounded: SvgIconComponent; +export const ViewCompactAltSharp: SvgIconComponent; +export const ViewCompactAltTwoTone: SvgIconComponent; +export const ViewCompactOutlined: SvgIconComponent; +export const ViewCompactRounded: SvgIconComponent; +export const ViewCompactSharp: SvgIconComponent; +export const ViewCompactTwoTone: SvgIconComponent; +export const ViewCozy: SvgIconComponent; +export const ViewCozyOutlined: SvgIconComponent; +export const ViewCozyRounded: SvgIconComponent; +export const ViewCozySharp: SvgIconComponent; +export const ViewCozyTwoTone: SvgIconComponent; +export const ViewDay: SvgIconComponent; +export const ViewDayOutlined: SvgIconComponent; +export const ViewDayRounded: SvgIconComponent; +export const ViewDaySharp: SvgIconComponent; +export const ViewDayTwoTone: SvgIconComponent; +export const ViewHeadline: SvgIconComponent; +export const ViewHeadlineOutlined: SvgIconComponent; +export const ViewHeadlineRounded: SvgIconComponent; +export const ViewHeadlineSharp: SvgIconComponent; +export const ViewHeadlineTwoTone: SvgIconComponent; +export const ViewInAr: SvgIconComponent; +export const ViewInArOutlined: SvgIconComponent; +export const ViewInArRounded: SvgIconComponent; +export const ViewInArSharp: SvgIconComponent; +export const ViewInArTwoTone: SvgIconComponent; +export const ViewKanban: SvgIconComponent; +export const ViewKanbanOutlined: SvgIconComponent; +export const ViewKanbanRounded: SvgIconComponent; +export const ViewKanbanSharp: SvgIconComponent; +export const ViewKanbanTwoTone: SvgIconComponent; +export const ViewList: SvgIconComponent; +export const ViewListOutlined: SvgIconComponent; +export const ViewListRounded: SvgIconComponent; +export const ViewListSharp: SvgIconComponent; +export const ViewListTwoTone: SvgIconComponent; +export const ViewModule: SvgIconComponent; +export const ViewModuleOutlined: SvgIconComponent; +export const ViewModuleRounded: SvgIconComponent; +export const ViewModuleSharp: SvgIconComponent; +export const ViewModuleTwoTone: SvgIconComponent; +export const ViewQuilt: SvgIconComponent; +export const ViewQuiltOutlined: SvgIconComponent; +export const ViewQuiltRounded: SvgIconComponent; +export const ViewQuiltSharp: SvgIconComponent; +export const ViewQuiltTwoTone: SvgIconComponent; +export const ViewSidebar: SvgIconComponent; +export const ViewSidebarOutlined: SvgIconComponent; +export const ViewSidebarRounded: SvgIconComponent; +export const ViewSidebarSharp: SvgIconComponent; +export const ViewSidebarTwoTone: SvgIconComponent; +export const ViewStream: SvgIconComponent; +export const ViewStreamOutlined: SvgIconComponent; +export const ViewStreamRounded: SvgIconComponent; +export const ViewStreamSharp: SvgIconComponent; +export const ViewStreamTwoTone: SvgIconComponent; +export const ViewTimeline: SvgIconComponent; +export const ViewTimelineOutlined: SvgIconComponent; +export const ViewTimelineRounded: SvgIconComponent; +export const ViewTimelineSharp: SvgIconComponent; +export const ViewTimelineTwoTone: SvgIconComponent; +export const ViewWeek: SvgIconComponent; +export const ViewWeekOutlined: SvgIconComponent; +export const ViewWeekRounded: SvgIconComponent; +export const ViewWeekSharp: SvgIconComponent; +export const ViewWeekTwoTone: SvgIconComponent; +export const Vignette: SvgIconComponent; +export const VignetteOutlined: SvgIconComponent; +export const VignetteRounded: SvgIconComponent; +export const VignetteSharp: SvgIconComponent; +export const VignetteTwoTone: SvgIconComponent; +export const Villa: SvgIconComponent; +export const VillaOutlined: SvgIconComponent; +export const VillaRounded: SvgIconComponent; +export const VillaSharp: SvgIconComponent; +export const VillaTwoTone: SvgIconComponent; +export const Visibility: SvgIconComponent; +export const VisibilityOff: SvgIconComponent; +export const VisibilityOffOutlined: SvgIconComponent; +export const VisibilityOffRounded: SvgIconComponent; +export const VisibilityOffSharp: SvgIconComponent; +export const VisibilityOffTwoTone: SvgIconComponent; +export const VisibilityOutlined: SvgIconComponent; +export const VisibilityRounded: SvgIconComponent; +export const VisibilitySharp: SvgIconComponent; +export const VisibilityTwoTone: SvgIconComponent; +export const VoiceChat: SvgIconComponent; +export const VoiceChatOutlined: SvgIconComponent; +export const VoiceChatRounded: SvgIconComponent; +export const VoiceChatSharp: SvgIconComponent; +export const VoiceChatTwoTone: SvgIconComponent; +export const VoiceOverOff: SvgIconComponent; +export const VoiceOverOffOutlined: SvgIconComponent; +export const VoiceOverOffRounded: SvgIconComponent; +export const VoiceOverOffSharp: SvgIconComponent; +export const VoiceOverOffTwoTone: SvgIconComponent; +export const Voicemail: SvgIconComponent; +export const VoicemailOutlined: SvgIconComponent; +export const VoicemailRounded: SvgIconComponent; +export const VoicemailSharp: SvgIconComponent; +export const VoicemailTwoTone: SvgIconComponent; +export const Volcano: SvgIconComponent; +export const VolcanoOutlined: SvgIconComponent; +export const VolcanoRounded: SvgIconComponent; +export const VolcanoSharp: SvgIconComponent; +export const VolcanoTwoTone: SvgIconComponent; +export const VolumeDown: SvgIconComponent; +export const VolumeDownOutlined: SvgIconComponent; +export const VolumeDownRounded: SvgIconComponent; +export const VolumeDownSharp: SvgIconComponent; +export const VolumeDownTwoTone: SvgIconComponent; +export const VolumeMute: SvgIconComponent; +export const VolumeMuteOutlined: SvgIconComponent; +export const VolumeMuteRounded: SvgIconComponent; +export const VolumeMuteSharp: SvgIconComponent; +export const VolumeMuteTwoTone: SvgIconComponent; +export const VolumeOff: SvgIconComponent; +export const VolumeOffOutlined: SvgIconComponent; +export const VolumeOffRounded: SvgIconComponent; +export const VolumeOffSharp: SvgIconComponent; +export const VolumeOffTwoTone: SvgIconComponent; +export const VolumeUp: SvgIconComponent; +export const VolumeUpOutlined: SvgIconComponent; +export const VolumeUpRounded: SvgIconComponent; +export const VolumeUpSharp: SvgIconComponent; +export const VolumeUpTwoTone: SvgIconComponent; +export const VolunteerActivism: SvgIconComponent; +export const VolunteerActivismOutlined: SvgIconComponent; +export const VolunteerActivismRounded: SvgIconComponent; +export const VolunteerActivismSharp: SvgIconComponent; +export const VolunteerActivismTwoTone: SvgIconComponent; +export const VpnKey: SvgIconComponent; +export const VpnKeyOff: SvgIconComponent; +export const VpnKeyOffOutlined: SvgIconComponent; +export const VpnKeyOffRounded: SvgIconComponent; +export const VpnKeyOffSharp: SvgIconComponent; +export const VpnKeyOffTwoTone: SvgIconComponent; +export const VpnKeyOutlined: SvgIconComponent; +export const VpnKeyRounded: SvgIconComponent; +export const VpnKeySharp: SvgIconComponent; +export const VpnKeyTwoTone: SvgIconComponent; +export const VpnLock: SvgIconComponent; +export const VpnLockOutlined: SvgIconComponent; +export const VpnLockRounded: SvgIconComponent; +export const VpnLockSharp: SvgIconComponent; +export const VpnLockTwoTone: SvgIconComponent; +export const Vrpano: SvgIconComponent; +export const VrpanoOutlined: SvgIconComponent; +export const VrpanoRounded: SvgIconComponent; +export const VrpanoSharp: SvgIconComponent; +export const VrpanoTwoTone: SvgIconComponent; +export const Wallet: SvgIconComponent; +export const WalletOutlined: SvgIconComponent; +export const WalletRounded: SvgIconComponent; +export const WalletSharp: SvgIconComponent; +export const WalletTwoTone: SvgIconComponent; +export const Wallpaper: SvgIconComponent; +export const WallpaperOutlined: SvgIconComponent; +export const WallpaperRounded: SvgIconComponent; +export const WallpaperSharp: SvgIconComponent; +export const WallpaperTwoTone: SvgIconComponent; +export const Warehouse: SvgIconComponent; +export const WarehouseOutlined: SvgIconComponent; +export const WarehouseRounded: SvgIconComponent; +export const WarehouseSharp: SvgIconComponent; +export const WarehouseTwoTone: SvgIconComponent; +export const Warning: SvgIconComponent; +export const WarningAmber: SvgIconComponent; +export const WarningAmberOutlined: SvgIconComponent; +export const WarningAmberRounded: SvgIconComponent; +export const WarningAmberSharp: SvgIconComponent; +export const WarningAmberTwoTone: SvgIconComponent; +export const WarningOutlined: SvgIconComponent; +export const WarningRounded: SvgIconComponent; +export const WarningSharp: SvgIconComponent; +export const WarningTwoTone: SvgIconComponent; +export const Wash: SvgIconComponent; +export const WashOutlined: SvgIconComponent; +export const WashRounded: SvgIconComponent; +export const WashSharp: SvgIconComponent; +export const WashTwoTone: SvgIconComponent; +export const Watch: SvgIconComponent; +export const WatchLater: SvgIconComponent; +export const WatchLaterOutlined: SvgIconComponent; +export const WatchLaterRounded: SvgIconComponent; +export const WatchLaterSharp: SvgIconComponent; +export const WatchLaterTwoTone: SvgIconComponent; +export const WatchOff: SvgIconComponent; +export const WatchOffOutlined: SvgIconComponent; +export const WatchOffRounded: SvgIconComponent; +export const WatchOffSharp: SvgIconComponent; +export const WatchOffTwoTone: SvgIconComponent; +export const WatchOutlined: SvgIconComponent; +export const WatchRounded: SvgIconComponent; +export const WatchSharp: SvgIconComponent; +export const WatchTwoTone: SvgIconComponent; +export const Water: SvgIconComponent; +export const WaterDamage: SvgIconComponent; +export const WaterDamageOutlined: SvgIconComponent; +export const WaterDamageRounded: SvgIconComponent; +export const WaterDamageSharp: SvgIconComponent; +export const WaterDamageTwoTone: SvgIconComponent; +export const WaterDrop: SvgIconComponent; +export const WaterDropOutlined: SvgIconComponent; +export const WaterDropRounded: SvgIconComponent; +export const WaterDropSharp: SvgIconComponent; +export const WaterDropTwoTone: SvgIconComponent; +export const WaterOutlined: SvgIconComponent; +export const WaterRounded: SvgIconComponent; +export const WaterSharp: SvgIconComponent; +export const WaterTwoTone: SvgIconComponent; +export const WaterfallChart: SvgIconComponent; +export const WaterfallChartOutlined: SvgIconComponent; +export const WaterfallChartRounded: SvgIconComponent; +export const WaterfallChartSharp: SvgIconComponent; +export const WaterfallChartTwoTone: SvgIconComponent; +export const Waves: SvgIconComponent; +export const WavesOutlined: SvgIconComponent; +export const WavesRounded: SvgIconComponent; +export const WavesSharp: SvgIconComponent; +export const WavesTwoTone: SvgIconComponent; +export const WavingHand: SvgIconComponent; +export const WavingHandOutlined: SvgIconComponent; +export const WavingHandRounded: SvgIconComponent; +export const WavingHandSharp: SvgIconComponent; +export const WavingHandTwoTone: SvgIconComponent; +export const WbAuto: SvgIconComponent; +export const WbAutoOutlined: SvgIconComponent; +export const WbAutoRounded: SvgIconComponent; +export const WbAutoSharp: SvgIconComponent; +export const WbAutoTwoTone: SvgIconComponent; +export const WbCloudy: SvgIconComponent; +export const WbCloudyOutlined: SvgIconComponent; +export const WbCloudyRounded: SvgIconComponent; +export const WbCloudySharp: SvgIconComponent; +export const WbCloudyTwoTone: SvgIconComponent; +export const WbIncandescent: SvgIconComponent; +export const WbIncandescentOutlined: SvgIconComponent; +export const WbIncandescentRounded: SvgIconComponent; +export const WbIncandescentSharp: SvgIconComponent; +export const WbIncandescentTwoTone: SvgIconComponent; +export const WbIridescent: SvgIconComponent; +export const WbIridescentOutlined: SvgIconComponent; +export const WbIridescentRounded: SvgIconComponent; +export const WbIridescentSharp: SvgIconComponent; +export const WbIridescentTwoTone: SvgIconComponent; +export const WbShade: SvgIconComponent; +export const WbShadeOutlined: SvgIconComponent; +export const WbShadeRounded: SvgIconComponent; +export const WbShadeSharp: SvgIconComponent; +export const WbShadeTwoTone: SvgIconComponent; +export const WbSunny: SvgIconComponent; +export const WbSunnyOutlined: SvgIconComponent; +export const WbSunnyRounded: SvgIconComponent; +export const WbSunnySharp: SvgIconComponent; +export const WbSunnyTwoTone: SvgIconComponent; +export const WbTwilight: SvgIconComponent; +export const WbTwilightOutlined: SvgIconComponent; +export const WbTwilightRounded: SvgIconComponent; +export const WbTwilightSharp: SvgIconComponent; +export const WbTwilightTwoTone: SvgIconComponent; +export const Wc: SvgIconComponent; +export const WcOutlined: SvgIconComponent; +export const WcRounded: SvgIconComponent; +export const WcSharp: SvgIconComponent; +export const WcTwoTone: SvgIconComponent; +export const Web: SvgIconComponent; +export const WebAsset: SvgIconComponent; +export const WebAssetOff: SvgIconComponent; +export const WebAssetOffOutlined: SvgIconComponent; +export const WebAssetOffRounded: SvgIconComponent; +export const WebAssetOffSharp: SvgIconComponent; +export const WebAssetOffTwoTone: SvgIconComponent; +export const WebAssetOutlined: SvgIconComponent; +export const WebAssetRounded: SvgIconComponent; +export const WebAssetSharp: SvgIconComponent; +export const WebAssetTwoTone: SvgIconComponent; +export const WebOutlined: SvgIconComponent; +export const WebRounded: SvgIconComponent; +export const WebSharp: SvgIconComponent; +export const WebStories: SvgIconComponent; +export const WebStoriesOutlined: SvgIconComponent; +export const WebStoriesRounded: SvgIconComponent; +export const WebStoriesSharp: SvgIconComponent; +export const WebStoriesTwoTone: SvgIconComponent; +export const WebTwoTone: SvgIconComponent; +export const Webhook: SvgIconComponent; +export const WebhookOutlined: SvgIconComponent; +export const WebhookRounded: SvgIconComponent; +export const WebhookSharp: SvgIconComponent; +export const WebhookTwoTone: SvgIconComponent; +export const Weekend: SvgIconComponent; +export const WeekendOutlined: SvgIconComponent; +export const WeekendRounded: SvgIconComponent; +export const WeekendSharp: SvgIconComponent; +export const WeekendTwoTone: SvgIconComponent; +export const West: SvgIconComponent; +export const WestOutlined: SvgIconComponent; +export const WestRounded: SvgIconComponent; +export const WestSharp: SvgIconComponent; +export const WestTwoTone: SvgIconComponent; +export const WhatsApp: SvgIconComponent; +export const Whatshot: SvgIconComponent; +export const WhatshotOutlined: SvgIconComponent; +export const WhatshotRounded: SvgIconComponent; +export const WhatshotSharp: SvgIconComponent; +export const WhatshotTwoTone: SvgIconComponent; +export const WheelchairPickup: SvgIconComponent; +export const WheelchairPickupOutlined: SvgIconComponent; +export const WheelchairPickupRounded: SvgIconComponent; +export const WheelchairPickupSharp: SvgIconComponent; +export const WheelchairPickupTwoTone: SvgIconComponent; +export const WhereToVote: SvgIconComponent; +export const WhereToVoteOutlined: SvgIconComponent; +export const WhereToVoteRounded: SvgIconComponent; +export const WhereToVoteSharp: SvgIconComponent; +export const WhereToVoteTwoTone: SvgIconComponent; +export const Widgets: SvgIconComponent; +export const WidgetsOutlined: SvgIconComponent; +export const WidgetsRounded: SvgIconComponent; +export const WidgetsSharp: SvgIconComponent; +export const WidgetsTwoTone: SvgIconComponent; +export const WidthFull: SvgIconComponent; +export const WidthFullOutlined: SvgIconComponent; +export const WidthFullRounded: SvgIconComponent; +export const WidthFullSharp: SvgIconComponent; +export const WidthFullTwoTone: SvgIconComponent; +export const WidthNormal: SvgIconComponent; +export const WidthNormalOutlined: SvgIconComponent; +export const WidthNormalRounded: SvgIconComponent; +export const WidthNormalSharp: SvgIconComponent; +export const WidthNormalTwoTone: SvgIconComponent; +export const WidthWide: SvgIconComponent; +export const WidthWideOutlined: SvgIconComponent; +export const WidthWideRounded: SvgIconComponent; +export const WidthWideSharp: SvgIconComponent; +export const WidthWideTwoTone: SvgIconComponent; +export const Wifi: SvgIconComponent; +export const Wifi1Bar: SvgIconComponent; +export const Wifi1BarOutlined: SvgIconComponent; +export const Wifi1BarRounded: SvgIconComponent; +export const Wifi1BarSharp: SvgIconComponent; +export const Wifi1BarTwoTone: SvgIconComponent; +export const Wifi2Bar: SvgIconComponent; +export const Wifi2BarOutlined: SvgIconComponent; +export const Wifi2BarRounded: SvgIconComponent; +export const Wifi2BarSharp: SvgIconComponent; +export const Wifi2BarTwoTone: SvgIconComponent; +export const WifiCalling: SvgIconComponent; +export const WifiCalling3: SvgIconComponent; +export const WifiCalling3Outlined: SvgIconComponent; +export const WifiCalling3Rounded: SvgIconComponent; +export const WifiCalling3Sharp: SvgIconComponent; +export const WifiCalling3TwoTone: SvgIconComponent; +export const WifiCallingOutlined: SvgIconComponent; +export const WifiCallingRounded: SvgIconComponent; +export const WifiCallingSharp: SvgIconComponent; +export const WifiCallingTwoTone: SvgIconComponent; +export const WifiChannel: SvgIconComponent; +export const WifiChannelOutlined: SvgIconComponent; +export const WifiChannelRounded: SvgIconComponent; +export const WifiChannelSharp: SvgIconComponent; +export const WifiChannelTwoTone: SvgIconComponent; +export const WifiFind: SvgIconComponent; +export const WifiFindOutlined: SvgIconComponent; +export const WifiFindRounded: SvgIconComponent; +export const WifiFindSharp: SvgIconComponent; +export const WifiFindTwoTone: SvgIconComponent; +export const WifiLock: SvgIconComponent; +export const WifiLockOutlined: SvgIconComponent; +export const WifiLockRounded: SvgIconComponent; +export const WifiLockSharp: SvgIconComponent; +export const WifiLockTwoTone: SvgIconComponent; +export const WifiOff: SvgIconComponent; +export const WifiOffOutlined: SvgIconComponent; +export const WifiOffRounded: SvgIconComponent; +export const WifiOffSharp: SvgIconComponent; +export const WifiOffTwoTone: SvgIconComponent; +export const WifiOutlined: SvgIconComponent; +export const WifiPassword: SvgIconComponent; +export const WifiPasswordOutlined: SvgIconComponent; +export const WifiPasswordRounded: SvgIconComponent; +export const WifiPasswordSharp: SvgIconComponent; +export const WifiPasswordTwoTone: SvgIconComponent; +export const WifiProtectedSetup: SvgIconComponent; +export const WifiProtectedSetupOutlined: SvgIconComponent; +export const WifiProtectedSetupRounded: SvgIconComponent; +export const WifiProtectedSetupSharp: SvgIconComponent; +export const WifiProtectedSetupTwoTone: SvgIconComponent; +export const WifiRounded: SvgIconComponent; +export const WifiSharp: SvgIconComponent; +export const WifiTethering: SvgIconComponent; +export const WifiTetheringError: SvgIconComponent; +export const WifiTetheringErrorOutlined: SvgIconComponent; +export const WifiTetheringErrorRounded: SvgIconComponent; +export const WifiTetheringErrorRoundedOutlined: SvgIconComponent; +export const WifiTetheringErrorRoundedRounded: SvgIconComponent; +export const WifiTetheringErrorRoundedSharp: SvgIconComponent; +export const WifiTetheringErrorRoundedTwoTone: SvgIconComponent; +export const WifiTetheringErrorSharp: SvgIconComponent; +export const WifiTetheringErrorTwoTone: SvgIconComponent; +export const WifiTetheringOff: SvgIconComponent; +export const WifiTetheringOffOutlined: SvgIconComponent; +export const WifiTetheringOffRounded: SvgIconComponent; +export const WifiTetheringOffSharp: SvgIconComponent; +export const WifiTetheringOffTwoTone: SvgIconComponent; +export const WifiTetheringOutlined: SvgIconComponent; +export const WifiTetheringRounded: SvgIconComponent; +export const WifiTetheringSharp: SvgIconComponent; +export const WifiTetheringTwoTone: SvgIconComponent; +export const WifiTwoTone: SvgIconComponent; +export const WindPower: SvgIconComponent; +export const WindPowerOutlined: SvgIconComponent; +export const WindPowerRounded: SvgIconComponent; +export const WindPowerSharp: SvgIconComponent; +export const WindPowerTwoTone: SvgIconComponent; +export const Window: SvgIconComponent; +export const WindowOutlined: SvgIconComponent; +export const WindowRounded: SvgIconComponent; +export const WindowSharp: SvgIconComponent; +export const WindowTwoTone: SvgIconComponent; +export const WineBar: SvgIconComponent; +export const WineBarOutlined: SvgIconComponent; +export const WineBarRounded: SvgIconComponent; +export const WineBarSharp: SvgIconComponent; +export const WineBarTwoTone: SvgIconComponent; +export const Woman: SvgIconComponent; +export const Woman2: SvgIconComponent; +export const Woman2Outlined: SvgIconComponent; +export const Woman2Rounded: SvgIconComponent; +export const Woman2Sharp: SvgIconComponent; +export const Woman2TwoTone: SvgIconComponent; +export const WomanOutlined: SvgIconComponent; +export const WomanRounded: SvgIconComponent; +export const WomanSharp: SvgIconComponent; +export const WomanTwoTone: SvgIconComponent; +export const Work: SvgIconComponent; +export const WorkHistory: SvgIconComponent; +export const WorkHistoryOutlined: SvgIconComponent; +export const WorkHistoryRounded: SvgIconComponent; +export const WorkHistorySharp: SvgIconComponent; +export const WorkHistoryTwoTone: SvgIconComponent; +export const WorkOff: SvgIconComponent; +export const WorkOffOutlined: SvgIconComponent; +export const WorkOffRounded: SvgIconComponent; +export const WorkOffSharp: SvgIconComponent; +export const WorkOffTwoTone: SvgIconComponent; +export const WorkOutline: SvgIconComponent; +export const WorkOutlineOutlined: SvgIconComponent; +export const WorkOutlineRounded: SvgIconComponent; +export const WorkOutlineSharp: SvgIconComponent; +export const WorkOutlineTwoTone: SvgIconComponent; +export const WorkOutlined: SvgIconComponent; +export const WorkRounded: SvgIconComponent; +export const WorkSharp: SvgIconComponent; +export const WorkTwoTone: SvgIconComponent; +export const WorkspacePremium: SvgIconComponent; +export const WorkspacePremiumOutlined: SvgIconComponent; +export const WorkspacePremiumRounded: SvgIconComponent; +export const WorkspacePremiumSharp: SvgIconComponent; +export const WorkspacePremiumTwoTone: SvgIconComponent; +export const Workspaces: SvgIconComponent; +export const WorkspacesOutlined: SvgIconComponent; +export const WorkspacesRounded: SvgIconComponent; +export const WorkspacesSharp: SvgIconComponent; +export const WorkspacesTwoTone: SvgIconComponent; +export const WrapText: SvgIconComponent; +export const WrapTextOutlined: SvgIconComponent; +export const WrapTextRounded: SvgIconComponent; +export const WrapTextSharp: SvgIconComponent; +export const WrapTextTwoTone: SvgIconComponent; +export const WrongLocation: SvgIconComponent; +export const WrongLocationOutlined: SvgIconComponent; +export const WrongLocationRounded: SvgIconComponent; +export const WrongLocationSharp: SvgIconComponent; +export const WrongLocationTwoTone: SvgIconComponent; +export const Wysiwyg: SvgIconComponent; +export const WysiwygOutlined: SvgIconComponent; +export const WysiwygRounded: SvgIconComponent; +export const WysiwygSharp: SvgIconComponent; +export const WysiwygTwoTone: SvgIconComponent; +export const X: SvgIconComponent; +export const Yard: SvgIconComponent; +export const YardOutlined: SvgIconComponent; +export const YardRounded: SvgIconComponent; +export const YardSharp: SvgIconComponent; +export const YardTwoTone: SvgIconComponent; +export const YouTube: SvgIconComponent; +export const YoutubeSearchedFor: SvgIconComponent; +export const YoutubeSearchedForOutlined: SvgIconComponent; +export const YoutubeSearchedForRounded: SvgIconComponent; +export const YoutubeSearchedForSharp: SvgIconComponent; +export const YoutubeSearchedForTwoTone: SvgIconComponent; +export const ZoomIn: SvgIconComponent; +export const ZoomInMap: SvgIconComponent; +export const ZoomInMapOutlined: SvgIconComponent; +export const ZoomInMapRounded: SvgIconComponent; +export const ZoomInMapSharp: SvgIconComponent; +export const ZoomInMapTwoTone: SvgIconComponent; +export const ZoomInOutlined: SvgIconComponent; +export const ZoomInRounded: SvgIconComponent; +export const ZoomInSharp: SvgIconComponent; +export const ZoomInTwoTone: SvgIconComponent; +export const ZoomOut: SvgIconComponent; +export const ZoomOutMap: SvgIconComponent; +export const ZoomOutMapOutlined: SvgIconComponent; +export const ZoomOutMapRounded: SvgIconComponent; +export const ZoomOutMapSharp: SvgIconComponent; +export const ZoomOutMapTwoTone: SvgIconComponent; +export const ZoomOutOutlined: SvgIconComponent; +export const ZoomOutRounded: SvgIconComponent; +export const ZoomOutSharp: SvgIconComponent; +export const ZoomOutTwoTone: SvgIconComponent; diff --git a/packages/mui-icons-material/lib/icon.d.ts b/packages/mui-icons-material/lib/icon.d.ts new file mode 100644 index 00000000000000..1144a68cb289e6 --- /dev/null +++ b/packages/mui-icons-material/lib/icon.d.ts @@ -0,0 +1 @@ +export { default } from '@mui/material/SvgIcon'; \ No newline at end of file diff --git a/packages/mui-icons-material/lib/index.d.ts b/packages/mui-icons-material/lib/index.d.ts new file mode 100644 index 00000000000000..6888afc615b35f --- /dev/null +++ b/packages/mui-icons-material/lib/index.d.ts @@ -0,0 +1,10621 @@ + +import SvgIcon from '@mui/material/SvgIcon'; + +type SvgIconComponent = typeof SvgIcon; + +export const Abc: SvgIconComponent; +export const AbcOutlined: SvgIconComponent; +export const AbcRounded: SvgIconComponent; +export const AbcSharp: SvgIconComponent; +export const AbcTwoTone: SvgIconComponent; +export const AcUnit: SvgIconComponent; +export const AcUnitOutlined: SvgIconComponent; +export const AcUnitRounded: SvgIconComponent; +export const AcUnitSharp: SvgIconComponent; +export const AcUnitTwoTone: SvgIconComponent; +export const AccessAlarm: SvgIconComponent; +export const AccessAlarmOutlined: SvgIconComponent; +export const AccessAlarmRounded: SvgIconComponent; +export const AccessAlarmSharp: SvgIconComponent; +export const AccessAlarmTwoTone: SvgIconComponent; +export const AccessAlarms: SvgIconComponent; +export const AccessAlarmsOutlined: SvgIconComponent; +export const AccessAlarmsRounded: SvgIconComponent; +export const AccessAlarmsSharp: SvgIconComponent; +export const AccessAlarmsTwoTone: SvgIconComponent; +export const AccessTime: SvgIconComponent; +export const AccessTimeFilled: SvgIconComponent; +export const AccessTimeFilledOutlined: SvgIconComponent; +export const AccessTimeFilledRounded: SvgIconComponent; +export const AccessTimeFilledSharp: SvgIconComponent; +export const AccessTimeFilledTwoTone: SvgIconComponent; +export const AccessTimeOutlined: SvgIconComponent; +export const AccessTimeRounded: SvgIconComponent; +export const AccessTimeSharp: SvgIconComponent; +export const AccessTimeTwoTone: SvgIconComponent; +export const Accessibility: SvgIconComponent; +export const AccessibilityNew: SvgIconComponent; +export const AccessibilityNewOutlined: SvgIconComponent; +export const AccessibilityNewRounded: SvgIconComponent; +export const AccessibilityNewSharp: SvgIconComponent; +export const AccessibilityNewTwoTone: SvgIconComponent; +export const AccessibilityOutlined: SvgIconComponent; +export const AccessibilityRounded: SvgIconComponent; +export const AccessibilitySharp: SvgIconComponent; +export const AccessibilityTwoTone: SvgIconComponent; +export const Accessible: SvgIconComponent; +export const AccessibleForward: SvgIconComponent; +export const AccessibleForwardOutlined: SvgIconComponent; +export const AccessibleForwardRounded: SvgIconComponent; +export const AccessibleForwardSharp: SvgIconComponent; +export const AccessibleForwardTwoTone: SvgIconComponent; +export const AccessibleOutlined: SvgIconComponent; +export const AccessibleRounded: SvgIconComponent; +export const AccessibleSharp: SvgIconComponent; +export const AccessibleTwoTone: SvgIconComponent; +export const AccountBalance: SvgIconComponent; +export const AccountBalanceOutlined: SvgIconComponent; +export const AccountBalanceRounded: SvgIconComponent; +export const AccountBalanceSharp: SvgIconComponent; +export const AccountBalanceTwoTone: SvgIconComponent; +export const AccountBalanceWallet: SvgIconComponent; +export const AccountBalanceWalletOutlined: SvgIconComponent; +export const AccountBalanceWalletRounded: SvgIconComponent; +export const AccountBalanceWalletSharp: SvgIconComponent; +export const AccountBalanceWalletTwoTone: SvgIconComponent; +export const AccountBox: SvgIconComponent; +export const AccountBoxOutlined: SvgIconComponent; +export const AccountBoxRounded: SvgIconComponent; +export const AccountBoxSharp: SvgIconComponent; +export const AccountBoxTwoTone: SvgIconComponent; +export const AccountCircle: SvgIconComponent; +export const AccountCircleOutlined: SvgIconComponent; +export const AccountCircleRounded: SvgIconComponent; +export const AccountCircleSharp: SvgIconComponent; +export const AccountCircleTwoTone: SvgIconComponent; +export const AccountTree: SvgIconComponent; +export const AccountTreeOutlined: SvgIconComponent; +export const AccountTreeRounded: SvgIconComponent; +export const AccountTreeSharp: SvgIconComponent; +export const AccountTreeTwoTone: SvgIconComponent; +export const AdUnits: SvgIconComponent; +export const AdUnitsOutlined: SvgIconComponent; +export const AdUnitsRounded: SvgIconComponent; +export const AdUnitsSharp: SvgIconComponent; +export const AdUnitsTwoTone: SvgIconComponent; +export const Adb: SvgIconComponent; +export const AdbOutlined: SvgIconComponent; +export const AdbRounded: SvgIconComponent; +export const AdbSharp: SvgIconComponent; +export const AdbTwoTone: SvgIconComponent; +export const Add: SvgIconComponent; +export const AddAPhoto: SvgIconComponent; +export const AddAPhotoOutlined: SvgIconComponent; +export const AddAPhotoRounded: SvgIconComponent; +export const AddAPhotoSharp: SvgIconComponent; +export const AddAPhotoTwoTone: SvgIconComponent; +export const AddAlarm: SvgIconComponent; +export const AddAlarmOutlined: SvgIconComponent; +export const AddAlarmRounded: SvgIconComponent; +export const AddAlarmSharp: SvgIconComponent; +export const AddAlarmTwoTone: SvgIconComponent; +export const AddAlert: SvgIconComponent; +export const AddAlertOutlined: SvgIconComponent; +export const AddAlertRounded: SvgIconComponent; +export const AddAlertSharp: SvgIconComponent; +export const AddAlertTwoTone: SvgIconComponent; +export const AddBox: SvgIconComponent; +export const AddBoxOutlined: SvgIconComponent; +export const AddBoxRounded: SvgIconComponent; +export const AddBoxSharp: SvgIconComponent; +export const AddBoxTwoTone: SvgIconComponent; +export const AddBusiness: SvgIconComponent; +export const AddBusinessOutlined: SvgIconComponent; +export const AddBusinessRounded: SvgIconComponent; +export const AddBusinessSharp: SvgIconComponent; +export const AddBusinessTwoTone: SvgIconComponent; +export const AddCard: SvgIconComponent; +export const AddCardOutlined: SvgIconComponent; +export const AddCardRounded: SvgIconComponent; +export const AddCardSharp: SvgIconComponent; +export const AddCardTwoTone: SvgIconComponent; +export const AddCircle: SvgIconComponent; +export const AddCircleOutline: SvgIconComponent; +export const AddCircleOutlineOutlined: SvgIconComponent; +export const AddCircleOutlineRounded: SvgIconComponent; +export const AddCircleOutlineSharp: SvgIconComponent; +export const AddCircleOutlineTwoTone: SvgIconComponent; +export const AddCircleOutlined: SvgIconComponent; +export const AddCircleRounded: SvgIconComponent; +export const AddCircleSharp: SvgIconComponent; +export const AddCircleTwoTone: SvgIconComponent; +export const AddComment: SvgIconComponent; +export const AddCommentOutlined: SvgIconComponent; +export const AddCommentRounded: SvgIconComponent; +export const AddCommentSharp: SvgIconComponent; +export const AddCommentTwoTone: SvgIconComponent; +export const AddHome: SvgIconComponent; +export const AddHomeOutlined: SvgIconComponent; +export const AddHomeRounded: SvgIconComponent; +export const AddHomeSharp: SvgIconComponent; +export const AddHomeTwoTone: SvgIconComponent; +export const AddHomeWork: SvgIconComponent; +export const AddHomeWorkOutlined: SvgIconComponent; +export const AddHomeWorkRounded: SvgIconComponent; +export const AddHomeWorkSharp: SvgIconComponent; +export const AddHomeWorkTwoTone: SvgIconComponent; +export const AddIcCall: SvgIconComponent; +export const AddIcCallOutlined: SvgIconComponent; +export const AddIcCallRounded: SvgIconComponent; +export const AddIcCallSharp: SvgIconComponent; +export const AddIcCallTwoTone: SvgIconComponent; +export const AddLink: SvgIconComponent; +export const AddLinkOutlined: SvgIconComponent; +export const AddLinkRounded: SvgIconComponent; +export const AddLinkSharp: SvgIconComponent; +export const AddLinkTwoTone: SvgIconComponent; +export const AddLocation: SvgIconComponent; +export const AddLocationAlt: SvgIconComponent; +export const AddLocationAltOutlined: SvgIconComponent; +export const AddLocationAltRounded: SvgIconComponent; +export const AddLocationAltSharp: SvgIconComponent; +export const AddLocationAltTwoTone: SvgIconComponent; +export const AddLocationOutlined: SvgIconComponent; +export const AddLocationRounded: SvgIconComponent; +export const AddLocationSharp: SvgIconComponent; +export const AddLocationTwoTone: SvgIconComponent; +export const AddModerator: SvgIconComponent; +export const AddModeratorOutlined: SvgIconComponent; +export const AddModeratorRounded: SvgIconComponent; +export const AddModeratorSharp: SvgIconComponent; +export const AddModeratorTwoTone: SvgIconComponent; +export const AddOutlined: SvgIconComponent; +export const AddPhotoAlternate: SvgIconComponent; +export const AddPhotoAlternateOutlined: SvgIconComponent; +export const AddPhotoAlternateRounded: SvgIconComponent; +export const AddPhotoAlternateSharp: SvgIconComponent; +export const AddPhotoAlternateTwoTone: SvgIconComponent; +export const AddReaction: SvgIconComponent; +export const AddReactionOutlined: SvgIconComponent; +export const AddReactionRounded: SvgIconComponent; +export const AddReactionSharp: SvgIconComponent; +export const AddReactionTwoTone: SvgIconComponent; +export const AddRoad: SvgIconComponent; +export const AddRoadOutlined: SvgIconComponent; +export const AddRoadRounded: SvgIconComponent; +export const AddRoadSharp: SvgIconComponent; +export const AddRoadTwoTone: SvgIconComponent; +export const AddRounded: SvgIconComponent; +export const AddSharp: SvgIconComponent; +export const AddShoppingCart: SvgIconComponent; +export const AddShoppingCartOutlined: SvgIconComponent; +export const AddShoppingCartRounded: SvgIconComponent; +export const AddShoppingCartSharp: SvgIconComponent; +export const AddShoppingCartTwoTone: SvgIconComponent; +export const AddTask: SvgIconComponent; +export const AddTaskOutlined: SvgIconComponent; +export const AddTaskRounded: SvgIconComponent; +export const AddTaskSharp: SvgIconComponent; +export const AddTaskTwoTone: SvgIconComponent; +export const AddToDrive: SvgIconComponent; +export const AddToDriveOutlined: SvgIconComponent; +export const AddToDriveRounded: SvgIconComponent; +export const AddToDriveSharp: SvgIconComponent; +export const AddToDriveTwoTone: SvgIconComponent; +export const AddToHomeScreen: SvgIconComponent; +export const AddToHomeScreenOutlined: SvgIconComponent; +export const AddToHomeScreenRounded: SvgIconComponent; +export const AddToHomeScreenSharp: SvgIconComponent; +export const AddToHomeScreenTwoTone: SvgIconComponent; +export const AddToPhotos: SvgIconComponent; +export const AddToPhotosOutlined: SvgIconComponent; +export const AddToPhotosRounded: SvgIconComponent; +export const AddToPhotosSharp: SvgIconComponent; +export const AddToPhotosTwoTone: SvgIconComponent; +export const AddToQueue: SvgIconComponent; +export const AddToQueueOutlined: SvgIconComponent; +export const AddToQueueRounded: SvgIconComponent; +export const AddToQueueSharp: SvgIconComponent; +export const AddToQueueTwoTone: SvgIconComponent; +export const AddTwoTone: SvgIconComponent; +export const Addchart: SvgIconComponent; +export const AddchartOutlined: SvgIconComponent; +export const AddchartRounded: SvgIconComponent; +export const AddchartSharp: SvgIconComponent; +export const AddchartTwoTone: SvgIconComponent; +export const AdfScanner: SvgIconComponent; +export const AdfScannerOutlined: SvgIconComponent; +export const AdfScannerRounded: SvgIconComponent; +export const AdfScannerSharp: SvgIconComponent; +export const AdfScannerTwoTone: SvgIconComponent; +export const Adjust: SvgIconComponent; +export const AdjustOutlined: SvgIconComponent; +export const AdjustRounded: SvgIconComponent; +export const AdjustSharp: SvgIconComponent; +export const AdjustTwoTone: SvgIconComponent; +export const AdminPanelSettings: SvgIconComponent; +export const AdminPanelSettingsOutlined: SvgIconComponent; +export const AdminPanelSettingsRounded: SvgIconComponent; +export const AdminPanelSettingsSharp: SvgIconComponent; +export const AdminPanelSettingsTwoTone: SvgIconComponent; +export const AdsClick: SvgIconComponent; +export const AdsClickOutlined: SvgIconComponent; +export const AdsClickRounded: SvgIconComponent; +export const AdsClickSharp: SvgIconComponent; +export const AdsClickTwoTone: SvgIconComponent; +export const Agriculture: SvgIconComponent; +export const AgricultureOutlined: SvgIconComponent; +export const AgricultureRounded: SvgIconComponent; +export const AgricultureSharp: SvgIconComponent; +export const AgricultureTwoTone: SvgIconComponent; +export const Air: SvgIconComponent; +export const AirOutlined: SvgIconComponent; +export const AirRounded: SvgIconComponent; +export const AirSharp: SvgIconComponent; +export const AirTwoTone: SvgIconComponent; +export const AirlineSeatFlat: SvgIconComponent; +export const AirlineSeatFlatAngled: SvgIconComponent; +export const AirlineSeatFlatAngledOutlined: SvgIconComponent; +export const AirlineSeatFlatAngledRounded: SvgIconComponent; +export const AirlineSeatFlatAngledSharp: SvgIconComponent; +export const AirlineSeatFlatAngledTwoTone: SvgIconComponent; +export const AirlineSeatFlatOutlined: SvgIconComponent; +export const AirlineSeatFlatRounded: SvgIconComponent; +export const AirlineSeatFlatSharp: SvgIconComponent; +export const AirlineSeatFlatTwoTone: SvgIconComponent; +export const AirlineSeatIndividualSuite: SvgIconComponent; +export const AirlineSeatIndividualSuiteOutlined: SvgIconComponent; +export const AirlineSeatIndividualSuiteRounded: SvgIconComponent; +export const AirlineSeatIndividualSuiteSharp: SvgIconComponent; +export const AirlineSeatIndividualSuiteTwoTone: SvgIconComponent; +export const AirlineSeatLegroomExtra: SvgIconComponent; +export const AirlineSeatLegroomExtraOutlined: SvgIconComponent; +export const AirlineSeatLegroomExtraRounded: SvgIconComponent; +export const AirlineSeatLegroomExtraSharp: SvgIconComponent; +export const AirlineSeatLegroomExtraTwoTone: SvgIconComponent; +export const AirlineSeatLegroomNormal: SvgIconComponent; +export const AirlineSeatLegroomNormalOutlined: SvgIconComponent; +export const AirlineSeatLegroomNormalRounded: SvgIconComponent; +export const AirlineSeatLegroomNormalSharp: SvgIconComponent; +export const AirlineSeatLegroomNormalTwoTone: SvgIconComponent; +export const AirlineSeatLegroomReduced: SvgIconComponent; +export const AirlineSeatLegroomReducedOutlined: SvgIconComponent; +export const AirlineSeatLegroomReducedRounded: SvgIconComponent; +export const AirlineSeatLegroomReducedSharp: SvgIconComponent; +export const AirlineSeatLegroomReducedTwoTone: SvgIconComponent; +export const AirlineSeatReclineExtra: SvgIconComponent; +export const AirlineSeatReclineExtraOutlined: SvgIconComponent; +export const AirlineSeatReclineExtraRounded: SvgIconComponent; +export const AirlineSeatReclineExtraSharp: SvgIconComponent; +export const AirlineSeatReclineExtraTwoTone: SvgIconComponent; +export const AirlineSeatReclineNormal: SvgIconComponent; +export const AirlineSeatReclineNormalOutlined: SvgIconComponent; +export const AirlineSeatReclineNormalRounded: SvgIconComponent; +export const AirlineSeatReclineNormalSharp: SvgIconComponent; +export const AirlineSeatReclineNormalTwoTone: SvgIconComponent; +export const AirlineStops: SvgIconComponent; +export const AirlineStopsOutlined: SvgIconComponent; +export const AirlineStopsRounded: SvgIconComponent; +export const AirlineStopsSharp: SvgIconComponent; +export const AirlineStopsTwoTone: SvgIconComponent; +export const Airlines: SvgIconComponent; +export const AirlinesOutlined: SvgIconComponent; +export const AirlinesRounded: SvgIconComponent; +export const AirlinesSharp: SvgIconComponent; +export const AirlinesTwoTone: SvgIconComponent; +export const AirplaneTicket: SvgIconComponent; +export const AirplaneTicketOutlined: SvgIconComponent; +export const AirplaneTicketRounded: SvgIconComponent; +export const AirplaneTicketSharp: SvgIconComponent; +export const AirplaneTicketTwoTone: SvgIconComponent; +export const AirplanemodeActive: SvgIconComponent; +export const AirplanemodeActiveOutlined: SvgIconComponent; +export const AirplanemodeActiveRounded: SvgIconComponent; +export const AirplanemodeActiveSharp: SvgIconComponent; +export const AirplanemodeActiveTwoTone: SvgIconComponent; +export const AirplanemodeInactive: SvgIconComponent; +export const AirplanemodeInactiveOutlined: SvgIconComponent; +export const AirplanemodeInactiveRounded: SvgIconComponent; +export const AirplanemodeInactiveSharp: SvgIconComponent; +export const AirplanemodeInactiveTwoTone: SvgIconComponent; +export const Airplay: SvgIconComponent; +export const AirplayOutlined: SvgIconComponent; +export const AirplayRounded: SvgIconComponent; +export const AirplaySharp: SvgIconComponent; +export const AirplayTwoTone: SvgIconComponent; +export const AirportShuttle: SvgIconComponent; +export const AirportShuttleOutlined: SvgIconComponent; +export const AirportShuttleRounded: SvgIconComponent; +export const AirportShuttleSharp: SvgIconComponent; +export const AirportShuttleTwoTone: SvgIconComponent; +export const Alarm: SvgIconComponent; +export const AlarmAdd: SvgIconComponent; +export const AlarmAddOutlined: SvgIconComponent; +export const AlarmAddRounded: SvgIconComponent; +export const AlarmAddSharp: SvgIconComponent; +export const AlarmAddTwoTone: SvgIconComponent; +export const AlarmOff: SvgIconComponent; +export const AlarmOffOutlined: SvgIconComponent; +export const AlarmOffRounded: SvgIconComponent; +export const AlarmOffSharp: SvgIconComponent; +export const AlarmOffTwoTone: SvgIconComponent; +export const AlarmOn: SvgIconComponent; +export const AlarmOnOutlined: SvgIconComponent; +export const AlarmOnRounded: SvgIconComponent; +export const AlarmOnSharp: SvgIconComponent; +export const AlarmOnTwoTone: SvgIconComponent; +export const AlarmOutlined: SvgIconComponent; +export const AlarmRounded: SvgIconComponent; +export const AlarmSharp: SvgIconComponent; +export const AlarmTwoTone: SvgIconComponent; +export const Album: SvgIconComponent; +export const AlbumOutlined: SvgIconComponent; +export const AlbumRounded: SvgIconComponent; +export const AlbumSharp: SvgIconComponent; +export const AlbumTwoTone: SvgIconComponent; +export const AlignHorizontalCenter: SvgIconComponent; +export const AlignHorizontalCenterOutlined: SvgIconComponent; +export const AlignHorizontalCenterRounded: SvgIconComponent; +export const AlignHorizontalCenterSharp: SvgIconComponent; +export const AlignHorizontalCenterTwoTone: SvgIconComponent; +export const AlignHorizontalLeft: SvgIconComponent; +export const AlignHorizontalLeftOutlined: SvgIconComponent; +export const AlignHorizontalLeftRounded: SvgIconComponent; +export const AlignHorizontalLeftSharp: SvgIconComponent; +export const AlignHorizontalLeftTwoTone: SvgIconComponent; +export const AlignHorizontalRight: SvgIconComponent; +export const AlignHorizontalRightOutlined: SvgIconComponent; +export const AlignHorizontalRightRounded: SvgIconComponent; +export const AlignHorizontalRightSharp: SvgIconComponent; +export const AlignHorizontalRightTwoTone: SvgIconComponent; +export const AlignVerticalBottom: SvgIconComponent; +export const AlignVerticalBottomOutlined: SvgIconComponent; +export const AlignVerticalBottomRounded: SvgIconComponent; +export const AlignVerticalBottomSharp: SvgIconComponent; +export const AlignVerticalBottomTwoTone: SvgIconComponent; +export const AlignVerticalCenter: SvgIconComponent; +export const AlignVerticalCenterOutlined: SvgIconComponent; +export const AlignVerticalCenterRounded: SvgIconComponent; +export const AlignVerticalCenterSharp: SvgIconComponent; +export const AlignVerticalCenterTwoTone: SvgIconComponent; +export const AlignVerticalTop: SvgIconComponent; +export const AlignVerticalTopOutlined: SvgIconComponent; +export const AlignVerticalTopRounded: SvgIconComponent; +export const AlignVerticalTopSharp: SvgIconComponent; +export const AlignVerticalTopTwoTone: SvgIconComponent; +export const AllInbox: SvgIconComponent; +export const AllInboxOutlined: SvgIconComponent; +export const AllInboxRounded: SvgIconComponent; +export const AllInboxSharp: SvgIconComponent; +export const AllInboxTwoTone: SvgIconComponent; +export const AllInclusive: SvgIconComponent; +export const AllInclusiveOutlined: SvgIconComponent; +export const AllInclusiveRounded: SvgIconComponent; +export const AllInclusiveSharp: SvgIconComponent; +export const AllInclusiveTwoTone: SvgIconComponent; +export const AllOut: SvgIconComponent; +export const AllOutOutlined: SvgIconComponent; +export const AllOutRounded: SvgIconComponent; +export const AllOutSharp: SvgIconComponent; +export const AllOutTwoTone: SvgIconComponent; +export const AltRoute: SvgIconComponent; +export const AltRouteOutlined: SvgIconComponent; +export const AltRouteRounded: SvgIconComponent; +export const AltRouteSharp: SvgIconComponent; +export const AltRouteTwoTone: SvgIconComponent; +export const AlternateEmail: SvgIconComponent; +export const AlternateEmailOutlined: SvgIconComponent; +export const AlternateEmailRounded: SvgIconComponent; +export const AlternateEmailSharp: SvgIconComponent; +export const AlternateEmailTwoTone: SvgIconComponent; +export const Analytics: SvgIconComponent; +export const AnalyticsOutlined: SvgIconComponent; +export const AnalyticsRounded: SvgIconComponent; +export const AnalyticsSharp: SvgIconComponent; +export const AnalyticsTwoTone: SvgIconComponent; +export const Anchor: SvgIconComponent; +export const AnchorOutlined: SvgIconComponent; +export const AnchorRounded: SvgIconComponent; +export const AnchorSharp: SvgIconComponent; +export const AnchorTwoTone: SvgIconComponent; +export const Android: SvgIconComponent; +export const AndroidOutlined: SvgIconComponent; +export const AndroidRounded: SvgIconComponent; +export const AndroidSharp: SvgIconComponent; +export const AndroidTwoTone: SvgIconComponent; +export const Animation: SvgIconComponent; +export const AnimationOutlined: SvgIconComponent; +export const AnimationRounded: SvgIconComponent; +export const AnimationSharp: SvgIconComponent; +export const AnimationTwoTone: SvgIconComponent; +export const Announcement: SvgIconComponent; +export const AnnouncementOutlined: SvgIconComponent; +export const AnnouncementRounded: SvgIconComponent; +export const AnnouncementSharp: SvgIconComponent; +export const AnnouncementTwoTone: SvgIconComponent; +export const Aod: SvgIconComponent; +export const AodOutlined: SvgIconComponent; +export const AodRounded: SvgIconComponent; +export const AodSharp: SvgIconComponent; +export const AodTwoTone: SvgIconComponent; +export const Apartment: SvgIconComponent; +export const ApartmentOutlined: SvgIconComponent; +export const ApartmentRounded: SvgIconComponent; +export const ApartmentSharp: SvgIconComponent; +export const ApartmentTwoTone: SvgIconComponent; +export const Api: SvgIconComponent; +export const ApiOutlined: SvgIconComponent; +export const ApiRounded: SvgIconComponent; +export const ApiSharp: SvgIconComponent; +export const ApiTwoTone: SvgIconComponent; +export const AppBlocking: SvgIconComponent; +export const AppBlockingOutlined: SvgIconComponent; +export const AppBlockingRounded: SvgIconComponent; +export const AppBlockingSharp: SvgIconComponent; +export const AppBlockingTwoTone: SvgIconComponent; +export const AppRegistration: SvgIconComponent; +export const AppRegistrationOutlined: SvgIconComponent; +export const AppRegistrationRounded: SvgIconComponent; +export const AppRegistrationSharp: SvgIconComponent; +export const AppRegistrationTwoTone: SvgIconComponent; +export const AppSettingsAlt: SvgIconComponent; +export const AppSettingsAltOutlined: SvgIconComponent; +export const AppSettingsAltRounded: SvgIconComponent; +export const AppSettingsAltSharp: SvgIconComponent; +export const AppSettingsAltTwoTone: SvgIconComponent; +export const AppShortcut: SvgIconComponent; +export const AppShortcutOutlined: SvgIconComponent; +export const AppShortcutRounded: SvgIconComponent; +export const AppShortcutSharp: SvgIconComponent; +export const AppShortcutTwoTone: SvgIconComponent; +export const Apple: SvgIconComponent; +export const Approval: SvgIconComponent; +export const ApprovalOutlined: SvgIconComponent; +export const ApprovalRounded: SvgIconComponent; +export const ApprovalSharp: SvgIconComponent; +export const ApprovalTwoTone: SvgIconComponent; +export const Apps: SvgIconComponent; +export const AppsOutage: SvgIconComponent; +export const AppsOutageOutlined: SvgIconComponent; +export const AppsOutageRounded: SvgIconComponent; +export const AppsOutageSharp: SvgIconComponent; +export const AppsOutageTwoTone: SvgIconComponent; +export const AppsOutlined: SvgIconComponent; +export const AppsRounded: SvgIconComponent; +export const AppsSharp: SvgIconComponent; +export const AppsTwoTone: SvgIconComponent; +export const Architecture: SvgIconComponent; +export const ArchitectureOutlined: SvgIconComponent; +export const ArchitectureRounded: SvgIconComponent; +export const ArchitectureSharp: SvgIconComponent; +export const ArchitectureTwoTone: SvgIconComponent; +export const Archive: SvgIconComponent; +export const ArchiveOutlined: SvgIconComponent; +export const ArchiveRounded: SvgIconComponent; +export const ArchiveSharp: SvgIconComponent; +export const ArchiveTwoTone: SvgIconComponent; +export const ArrowBack: SvgIconComponent; +export const ArrowBackIos: SvgIconComponent; +export const ArrowBackIosNew: SvgIconComponent; +export const ArrowBackIosNewOutlined: SvgIconComponent; +export const ArrowBackIosNewRounded: SvgIconComponent; +export const ArrowBackIosNewSharp: SvgIconComponent; +export const ArrowBackIosNewTwoTone: SvgIconComponent; +export const ArrowBackIosOutlined: SvgIconComponent; +export const ArrowBackIosRounded: SvgIconComponent; +export const ArrowBackIosSharp: SvgIconComponent; +export const ArrowBackIosTwoTone: SvgIconComponent; +export const ArrowBackOutlined: SvgIconComponent; +export const ArrowBackRounded: SvgIconComponent; +export const ArrowBackSharp: SvgIconComponent; +export const ArrowBackTwoTone: SvgIconComponent; +export const ArrowCircleDown: SvgIconComponent; +export const ArrowCircleDownOutlined: SvgIconComponent; +export const ArrowCircleDownRounded: SvgIconComponent; +export const ArrowCircleDownSharp: SvgIconComponent; +export const ArrowCircleDownTwoTone: SvgIconComponent; +export const ArrowCircleLeft: SvgIconComponent; +export const ArrowCircleLeftOutlined: SvgIconComponent; +export const ArrowCircleLeftRounded: SvgIconComponent; +export const ArrowCircleLeftSharp: SvgIconComponent; +export const ArrowCircleLeftTwoTone: SvgIconComponent; +export const ArrowCircleRight: SvgIconComponent; +export const ArrowCircleRightOutlined: SvgIconComponent; +export const ArrowCircleRightRounded: SvgIconComponent; +export const ArrowCircleRightSharp: SvgIconComponent; +export const ArrowCircleRightTwoTone: SvgIconComponent; +export const ArrowCircleUp: SvgIconComponent; +export const ArrowCircleUpOutlined: SvgIconComponent; +export const ArrowCircleUpRounded: SvgIconComponent; +export const ArrowCircleUpSharp: SvgIconComponent; +export const ArrowCircleUpTwoTone: SvgIconComponent; +export const ArrowDownward: SvgIconComponent; +export const ArrowDownwardOutlined: SvgIconComponent; +export const ArrowDownwardRounded: SvgIconComponent; +export const ArrowDownwardSharp: SvgIconComponent; +export const ArrowDownwardTwoTone: SvgIconComponent; +export const ArrowDropDown: SvgIconComponent; +export const ArrowDropDownCircle: SvgIconComponent; +export const ArrowDropDownCircleOutlined: SvgIconComponent; +export const ArrowDropDownCircleRounded: SvgIconComponent; +export const ArrowDropDownCircleSharp: SvgIconComponent; +export const ArrowDropDownCircleTwoTone: SvgIconComponent; +export const ArrowDropDownOutlined: SvgIconComponent; +export const ArrowDropDownRounded: SvgIconComponent; +export const ArrowDropDownSharp: SvgIconComponent; +export const ArrowDropDownTwoTone: SvgIconComponent; +export const ArrowDropUp: SvgIconComponent; +export const ArrowDropUpOutlined: SvgIconComponent; +export const ArrowDropUpRounded: SvgIconComponent; +export const ArrowDropUpSharp: SvgIconComponent; +export const ArrowDropUpTwoTone: SvgIconComponent; +export const ArrowForward: SvgIconComponent; +export const ArrowForwardIos: SvgIconComponent; +export const ArrowForwardIosOutlined: SvgIconComponent; +export const ArrowForwardIosRounded: SvgIconComponent; +export const ArrowForwardIosSharp: SvgIconComponent; +export const ArrowForwardIosTwoTone: SvgIconComponent; +export const ArrowForwardOutlined: SvgIconComponent; +export const ArrowForwardRounded: SvgIconComponent; +export const ArrowForwardSharp: SvgIconComponent; +export const ArrowForwardTwoTone: SvgIconComponent; +export const ArrowLeft: SvgIconComponent; +export const ArrowLeftOutlined: SvgIconComponent; +export const ArrowLeftRounded: SvgIconComponent; +export const ArrowLeftSharp: SvgIconComponent; +export const ArrowLeftTwoTone: SvgIconComponent; +export const ArrowOutward: SvgIconComponent; +export const ArrowOutwardOutlined: SvgIconComponent; +export const ArrowOutwardRounded: SvgIconComponent; +export const ArrowOutwardSharp: SvgIconComponent; +export const ArrowOutwardTwoTone: SvgIconComponent; +export const ArrowRight: SvgIconComponent; +export const ArrowRightAlt: SvgIconComponent; +export const ArrowRightAltOutlined: SvgIconComponent; +export const ArrowRightAltRounded: SvgIconComponent; +export const ArrowRightAltSharp: SvgIconComponent; +export const ArrowRightAltTwoTone: SvgIconComponent; +export const ArrowRightOutlined: SvgIconComponent; +export const ArrowRightRounded: SvgIconComponent; +export const ArrowRightSharp: SvgIconComponent; +export const ArrowRightTwoTone: SvgIconComponent; +export const ArrowUpward: SvgIconComponent; +export const ArrowUpwardOutlined: SvgIconComponent; +export const ArrowUpwardRounded: SvgIconComponent; +export const ArrowUpwardSharp: SvgIconComponent; +export const ArrowUpwardTwoTone: SvgIconComponent; +export const ArtTrack: SvgIconComponent; +export const ArtTrackOutlined: SvgIconComponent; +export const ArtTrackRounded: SvgIconComponent; +export const ArtTrackSharp: SvgIconComponent; +export const ArtTrackTwoTone: SvgIconComponent; +export const Article: SvgIconComponent; +export const ArticleOutlined: SvgIconComponent; +export const ArticleRounded: SvgIconComponent; +export const ArticleSharp: SvgIconComponent; +export const ArticleTwoTone: SvgIconComponent; +export const AspectRatio: SvgIconComponent; +export const AspectRatioOutlined: SvgIconComponent; +export const AspectRatioRounded: SvgIconComponent; +export const AspectRatioSharp: SvgIconComponent; +export const AspectRatioTwoTone: SvgIconComponent; +export const Assessment: SvgIconComponent; +export const AssessmentOutlined: SvgIconComponent; +export const AssessmentRounded: SvgIconComponent; +export const AssessmentSharp: SvgIconComponent; +export const AssessmentTwoTone: SvgIconComponent; +export const Assignment: SvgIconComponent; +export const AssignmentInd: SvgIconComponent; +export const AssignmentIndOutlined: SvgIconComponent; +export const AssignmentIndRounded: SvgIconComponent; +export const AssignmentIndSharp: SvgIconComponent; +export const AssignmentIndTwoTone: SvgIconComponent; +export const AssignmentLate: SvgIconComponent; +export const AssignmentLateOutlined: SvgIconComponent; +export const AssignmentLateRounded: SvgIconComponent; +export const AssignmentLateSharp: SvgIconComponent; +export const AssignmentLateTwoTone: SvgIconComponent; +export const AssignmentOutlined: SvgIconComponent; +export const AssignmentReturn: SvgIconComponent; +export const AssignmentReturnOutlined: SvgIconComponent; +export const AssignmentReturnRounded: SvgIconComponent; +export const AssignmentReturnSharp: SvgIconComponent; +export const AssignmentReturnTwoTone: SvgIconComponent; +export const AssignmentReturned: SvgIconComponent; +export const AssignmentReturnedOutlined: SvgIconComponent; +export const AssignmentReturnedRounded: SvgIconComponent; +export const AssignmentReturnedSharp: SvgIconComponent; +export const AssignmentReturnedTwoTone: SvgIconComponent; +export const AssignmentRounded: SvgIconComponent; +export const AssignmentSharp: SvgIconComponent; +export const AssignmentTurnedIn: SvgIconComponent; +export const AssignmentTurnedInOutlined: SvgIconComponent; +export const AssignmentTurnedInRounded: SvgIconComponent; +export const AssignmentTurnedInSharp: SvgIconComponent; +export const AssignmentTurnedInTwoTone: SvgIconComponent; +export const AssignmentTwoTone: SvgIconComponent; +export const AssistWalker: SvgIconComponent; +export const AssistWalkerOutlined: SvgIconComponent; +export const AssistWalkerRounded: SvgIconComponent; +export const AssistWalkerSharp: SvgIconComponent; +export const AssistWalkerTwoTone: SvgIconComponent; +export const Assistant: SvgIconComponent; +export const AssistantDirection: SvgIconComponent; +export const AssistantDirectionOutlined: SvgIconComponent; +export const AssistantDirectionRounded: SvgIconComponent; +export const AssistantDirectionSharp: SvgIconComponent; +export const AssistantDirectionTwoTone: SvgIconComponent; +export const AssistantOutlined: SvgIconComponent; +export const AssistantPhoto: SvgIconComponent; +export const AssistantPhotoOutlined: SvgIconComponent; +export const AssistantPhotoRounded: SvgIconComponent; +export const AssistantPhotoSharp: SvgIconComponent; +export const AssistantPhotoTwoTone: SvgIconComponent; +export const AssistantRounded: SvgIconComponent; +export const AssistantSharp: SvgIconComponent; +export const AssistantTwoTone: SvgIconComponent; +export const AssuredWorkload: SvgIconComponent; +export const AssuredWorkloadOutlined: SvgIconComponent; +export const AssuredWorkloadRounded: SvgIconComponent; +export const AssuredWorkloadSharp: SvgIconComponent; +export const AssuredWorkloadTwoTone: SvgIconComponent; +export const Atm: SvgIconComponent; +export const AtmOutlined: SvgIconComponent; +export const AtmRounded: SvgIconComponent; +export const AtmSharp: SvgIconComponent; +export const AtmTwoTone: SvgIconComponent; +export const AttachEmail: SvgIconComponent; +export const AttachEmailOutlined: SvgIconComponent; +export const AttachEmailRounded: SvgIconComponent; +export const AttachEmailSharp: SvgIconComponent; +export const AttachEmailTwoTone: SvgIconComponent; +export const AttachFile: SvgIconComponent; +export const AttachFileOutlined: SvgIconComponent; +export const AttachFileRounded: SvgIconComponent; +export const AttachFileSharp: SvgIconComponent; +export const AttachFileTwoTone: SvgIconComponent; +export const AttachMoney: SvgIconComponent; +export const AttachMoneyOutlined: SvgIconComponent; +export const AttachMoneyRounded: SvgIconComponent; +export const AttachMoneySharp: SvgIconComponent; +export const AttachMoneyTwoTone: SvgIconComponent; +export const Attachment: SvgIconComponent; +export const AttachmentOutlined: SvgIconComponent; +export const AttachmentRounded: SvgIconComponent; +export const AttachmentSharp: SvgIconComponent; +export const AttachmentTwoTone: SvgIconComponent; +export const Attractions: SvgIconComponent; +export const AttractionsOutlined: SvgIconComponent; +export const AttractionsRounded: SvgIconComponent; +export const AttractionsSharp: SvgIconComponent; +export const AttractionsTwoTone: SvgIconComponent; +export const Attribution: SvgIconComponent; +export const AttributionOutlined: SvgIconComponent; +export const AttributionRounded: SvgIconComponent; +export const AttributionSharp: SvgIconComponent; +export const AttributionTwoTone: SvgIconComponent; +export const AudioFile: SvgIconComponent; +export const AudioFileOutlined: SvgIconComponent; +export const AudioFileRounded: SvgIconComponent; +export const AudioFileSharp: SvgIconComponent; +export const AudioFileTwoTone: SvgIconComponent; +export const Audiotrack: SvgIconComponent; +export const AudiotrackOutlined: SvgIconComponent; +export const AudiotrackRounded: SvgIconComponent; +export const AudiotrackSharp: SvgIconComponent; +export const AudiotrackTwoTone: SvgIconComponent; +export const AutoAwesome: SvgIconComponent; +export const AutoAwesomeMosaic: SvgIconComponent; +export const AutoAwesomeMosaicOutlined: SvgIconComponent; +export const AutoAwesomeMosaicRounded: SvgIconComponent; +export const AutoAwesomeMosaicSharp: SvgIconComponent; +export const AutoAwesomeMosaicTwoTone: SvgIconComponent; +export const AutoAwesomeMotion: SvgIconComponent; +export const AutoAwesomeMotionOutlined: SvgIconComponent; +export const AutoAwesomeMotionRounded: SvgIconComponent; +export const AutoAwesomeMotionSharp: SvgIconComponent; +export const AutoAwesomeMotionTwoTone: SvgIconComponent; +export const AutoAwesomeOutlined: SvgIconComponent; +export const AutoAwesomeRounded: SvgIconComponent; +export const AutoAwesomeSharp: SvgIconComponent; +export const AutoAwesomeTwoTone: SvgIconComponent; +export const AutoDelete: SvgIconComponent; +export const AutoDeleteOutlined: SvgIconComponent; +export const AutoDeleteRounded: SvgIconComponent; +export const AutoDeleteSharp: SvgIconComponent; +export const AutoDeleteTwoTone: SvgIconComponent; +export const AutoFixHigh: SvgIconComponent; +export const AutoFixHighOutlined: SvgIconComponent; +export const AutoFixHighRounded: SvgIconComponent; +export const AutoFixHighSharp: SvgIconComponent; +export const AutoFixHighTwoTone: SvgIconComponent; +export const AutoFixNormal: SvgIconComponent; +export const AutoFixNormalOutlined: SvgIconComponent; +export const AutoFixNormalRounded: SvgIconComponent; +export const AutoFixNormalSharp: SvgIconComponent; +export const AutoFixNormalTwoTone: SvgIconComponent; +export const AutoFixOff: SvgIconComponent; +export const AutoFixOffOutlined: SvgIconComponent; +export const AutoFixOffRounded: SvgIconComponent; +export const AutoFixOffSharp: SvgIconComponent; +export const AutoFixOffTwoTone: SvgIconComponent; +export const AutoGraph: SvgIconComponent; +export const AutoGraphOutlined: SvgIconComponent; +export const AutoGraphRounded: SvgIconComponent; +export const AutoGraphSharp: SvgIconComponent; +export const AutoGraphTwoTone: SvgIconComponent; +export const AutoMode: SvgIconComponent; +export const AutoModeOutlined: SvgIconComponent; +export const AutoModeRounded: SvgIconComponent; +export const AutoModeSharp: SvgIconComponent; +export const AutoModeTwoTone: SvgIconComponent; +export const AutoStories: SvgIconComponent; +export const AutoStoriesOutlined: SvgIconComponent; +export const AutoStoriesRounded: SvgIconComponent; +export const AutoStoriesSharp: SvgIconComponent; +export const AutoStoriesTwoTone: SvgIconComponent; +export const AutofpsSelect: SvgIconComponent; +export const AutofpsSelectOutlined: SvgIconComponent; +export const AutofpsSelectRounded: SvgIconComponent; +export const AutofpsSelectSharp: SvgIconComponent; +export const AutofpsSelectTwoTone: SvgIconComponent; +export const Autorenew: SvgIconComponent; +export const AutorenewOutlined: SvgIconComponent; +export const AutorenewRounded: SvgIconComponent; +export const AutorenewSharp: SvgIconComponent; +export const AutorenewTwoTone: SvgIconComponent; +export const AvTimer: SvgIconComponent; +export const AvTimerOutlined: SvgIconComponent; +export const AvTimerRounded: SvgIconComponent; +export const AvTimerSharp: SvgIconComponent; +export const AvTimerTwoTone: SvgIconComponent; +export const BabyChangingStation: SvgIconComponent; +export const BabyChangingStationOutlined: SvgIconComponent; +export const BabyChangingStationRounded: SvgIconComponent; +export const BabyChangingStationSharp: SvgIconComponent; +export const BabyChangingStationTwoTone: SvgIconComponent; +export const BackHand: SvgIconComponent; +export const BackHandOutlined: SvgIconComponent; +export const BackHandRounded: SvgIconComponent; +export const BackHandSharp: SvgIconComponent; +export const BackHandTwoTone: SvgIconComponent; +export const Backpack: SvgIconComponent; +export const BackpackOutlined: SvgIconComponent; +export const BackpackRounded: SvgIconComponent; +export const BackpackSharp: SvgIconComponent; +export const BackpackTwoTone: SvgIconComponent; +export const Backspace: SvgIconComponent; +export const BackspaceOutlined: SvgIconComponent; +export const BackspaceRounded: SvgIconComponent; +export const BackspaceSharp: SvgIconComponent; +export const BackspaceTwoTone: SvgIconComponent; +export const Backup: SvgIconComponent; +export const BackupOutlined: SvgIconComponent; +export const BackupRounded: SvgIconComponent; +export const BackupSharp: SvgIconComponent; +export const BackupTable: SvgIconComponent; +export const BackupTableOutlined: SvgIconComponent; +export const BackupTableRounded: SvgIconComponent; +export const BackupTableSharp: SvgIconComponent; +export const BackupTableTwoTone: SvgIconComponent; +export const BackupTwoTone: SvgIconComponent; +export const Badge: SvgIconComponent; +export const BadgeOutlined: SvgIconComponent; +export const BadgeRounded: SvgIconComponent; +export const BadgeSharp: SvgIconComponent; +export const BadgeTwoTone: SvgIconComponent; +export const BakeryDining: SvgIconComponent; +export const BakeryDiningOutlined: SvgIconComponent; +export const BakeryDiningRounded: SvgIconComponent; +export const BakeryDiningSharp: SvgIconComponent; +export const BakeryDiningTwoTone: SvgIconComponent; +export const Balance: SvgIconComponent; +export const BalanceOutlined: SvgIconComponent; +export const BalanceRounded: SvgIconComponent; +export const BalanceSharp: SvgIconComponent; +export const BalanceTwoTone: SvgIconComponent; +export const Balcony: SvgIconComponent; +export const BalconyOutlined: SvgIconComponent; +export const BalconyRounded: SvgIconComponent; +export const BalconySharp: SvgIconComponent; +export const BalconyTwoTone: SvgIconComponent; +export const Ballot: SvgIconComponent; +export const BallotOutlined: SvgIconComponent; +export const BallotRounded: SvgIconComponent; +export const BallotSharp: SvgIconComponent; +export const BallotTwoTone: SvgIconComponent; +export const BarChart: SvgIconComponent; +export const BarChartOutlined: SvgIconComponent; +export const BarChartRounded: SvgIconComponent; +export const BarChartSharp: SvgIconComponent; +export const BarChartTwoTone: SvgIconComponent; +export const BatchPrediction: SvgIconComponent; +export const BatchPredictionOutlined: SvgIconComponent; +export const BatchPredictionRounded: SvgIconComponent; +export const BatchPredictionSharp: SvgIconComponent; +export const BatchPredictionTwoTone: SvgIconComponent; +export const Bathroom: SvgIconComponent; +export const BathroomOutlined: SvgIconComponent; +export const BathroomRounded: SvgIconComponent; +export const BathroomSharp: SvgIconComponent; +export const BathroomTwoTone: SvgIconComponent; +export const Bathtub: SvgIconComponent; +export const BathtubOutlined: SvgIconComponent; +export const BathtubRounded: SvgIconComponent; +export const BathtubSharp: SvgIconComponent; +export const BathtubTwoTone: SvgIconComponent; +export const Battery0Bar: SvgIconComponent; +export const Battery0BarOutlined: SvgIconComponent; +export const Battery0BarRounded: SvgIconComponent; +export const Battery0BarSharp: SvgIconComponent; +export const Battery0BarTwoTone: SvgIconComponent; +export const Battery1Bar: SvgIconComponent; +export const Battery1BarOutlined: SvgIconComponent; +export const Battery1BarRounded: SvgIconComponent; +export const Battery1BarSharp: SvgIconComponent; +export const Battery1BarTwoTone: SvgIconComponent; +export const Battery20: SvgIconComponent; +export const Battery20Outlined: SvgIconComponent; +export const Battery20Rounded: SvgIconComponent; +export const Battery20Sharp: SvgIconComponent; +export const Battery20TwoTone: SvgIconComponent; +export const Battery2Bar: SvgIconComponent; +export const Battery2BarOutlined: SvgIconComponent; +export const Battery2BarRounded: SvgIconComponent; +export const Battery2BarSharp: SvgIconComponent; +export const Battery2BarTwoTone: SvgIconComponent; +export const Battery30: SvgIconComponent; +export const Battery30Outlined: SvgIconComponent; +export const Battery30Rounded: SvgIconComponent; +export const Battery30Sharp: SvgIconComponent; +export const Battery30TwoTone: SvgIconComponent; +export const Battery3Bar: SvgIconComponent; +export const Battery3BarOutlined: SvgIconComponent; +export const Battery3BarRounded: SvgIconComponent; +export const Battery3BarSharp: SvgIconComponent; +export const Battery3BarTwoTone: SvgIconComponent; +export const Battery4Bar: SvgIconComponent; +export const Battery4BarOutlined: SvgIconComponent; +export const Battery4BarRounded: SvgIconComponent; +export const Battery4BarSharp: SvgIconComponent; +export const Battery4BarTwoTone: SvgIconComponent; +export const Battery50: SvgIconComponent; +export const Battery50Outlined: SvgIconComponent; +export const Battery50Rounded: SvgIconComponent; +export const Battery50Sharp: SvgIconComponent; +export const Battery50TwoTone: SvgIconComponent; +export const Battery5Bar: SvgIconComponent; +export const Battery5BarOutlined: SvgIconComponent; +export const Battery5BarRounded: SvgIconComponent; +export const Battery5BarSharp: SvgIconComponent; +export const Battery5BarTwoTone: SvgIconComponent; +export const Battery60: SvgIconComponent; +export const Battery60Outlined: SvgIconComponent; +export const Battery60Rounded: SvgIconComponent; +export const Battery60Sharp: SvgIconComponent; +export const Battery60TwoTone: SvgIconComponent; +export const Battery6Bar: SvgIconComponent; +export const Battery6BarOutlined: SvgIconComponent; +export const Battery6BarRounded: SvgIconComponent; +export const Battery6BarSharp: SvgIconComponent; +export const Battery6BarTwoTone: SvgIconComponent; +export const Battery80: SvgIconComponent; +export const Battery80Outlined: SvgIconComponent; +export const Battery80Rounded: SvgIconComponent; +export const Battery80Sharp: SvgIconComponent; +export const Battery80TwoTone: SvgIconComponent; +export const Battery90: SvgIconComponent; +export const Battery90Outlined: SvgIconComponent; +export const Battery90Rounded: SvgIconComponent; +export const Battery90Sharp: SvgIconComponent; +export const Battery90TwoTone: SvgIconComponent; +export const BatteryAlert: SvgIconComponent; +export const BatteryAlertOutlined: SvgIconComponent; +export const BatteryAlertRounded: SvgIconComponent; +export const BatteryAlertSharp: SvgIconComponent; +export const BatteryAlertTwoTone: SvgIconComponent; +export const BatteryCharging20: SvgIconComponent; +export const BatteryCharging20Outlined: SvgIconComponent; +export const BatteryCharging20Rounded: SvgIconComponent; +export const BatteryCharging20Sharp: SvgIconComponent; +export const BatteryCharging20TwoTone: SvgIconComponent; +export const BatteryCharging30: SvgIconComponent; +export const BatteryCharging30Outlined: SvgIconComponent; +export const BatteryCharging30Rounded: SvgIconComponent; +export const BatteryCharging30Sharp: SvgIconComponent; +export const BatteryCharging30TwoTone: SvgIconComponent; +export const BatteryCharging50: SvgIconComponent; +export const BatteryCharging50Outlined: SvgIconComponent; +export const BatteryCharging50Rounded: SvgIconComponent; +export const BatteryCharging50Sharp: SvgIconComponent; +export const BatteryCharging50TwoTone: SvgIconComponent; +export const BatteryCharging60: SvgIconComponent; +export const BatteryCharging60Outlined: SvgIconComponent; +export const BatteryCharging60Rounded: SvgIconComponent; +export const BatteryCharging60Sharp: SvgIconComponent; +export const BatteryCharging60TwoTone: SvgIconComponent; +export const BatteryCharging80: SvgIconComponent; +export const BatteryCharging80Outlined: SvgIconComponent; +export const BatteryCharging80Rounded: SvgIconComponent; +export const BatteryCharging80Sharp: SvgIconComponent; +export const BatteryCharging80TwoTone: SvgIconComponent; +export const BatteryCharging90: SvgIconComponent; +export const BatteryCharging90Outlined: SvgIconComponent; +export const BatteryCharging90Rounded: SvgIconComponent; +export const BatteryCharging90Sharp: SvgIconComponent; +export const BatteryCharging90TwoTone: SvgIconComponent; +export const BatteryChargingFull: SvgIconComponent; +export const BatteryChargingFullOutlined: SvgIconComponent; +export const BatteryChargingFullRounded: SvgIconComponent; +export const BatteryChargingFullSharp: SvgIconComponent; +export const BatteryChargingFullTwoTone: SvgIconComponent; +export const BatteryFull: SvgIconComponent; +export const BatteryFullOutlined: SvgIconComponent; +export const BatteryFullRounded: SvgIconComponent; +export const BatteryFullSharp: SvgIconComponent; +export const BatteryFullTwoTone: SvgIconComponent; +export const BatterySaver: SvgIconComponent; +export const BatterySaverOutlined: SvgIconComponent; +export const BatterySaverRounded: SvgIconComponent; +export const BatterySaverSharp: SvgIconComponent; +export const BatterySaverTwoTone: SvgIconComponent; +export const BatteryStd: SvgIconComponent; +export const BatteryStdOutlined: SvgIconComponent; +export const BatteryStdRounded: SvgIconComponent; +export const BatteryStdSharp: SvgIconComponent; +export const BatteryStdTwoTone: SvgIconComponent; +export const BatteryUnknown: SvgIconComponent; +export const BatteryUnknownOutlined: SvgIconComponent; +export const BatteryUnknownRounded: SvgIconComponent; +export const BatteryUnknownSharp: SvgIconComponent; +export const BatteryUnknownTwoTone: SvgIconComponent; +export const BeachAccess: SvgIconComponent; +export const BeachAccessOutlined: SvgIconComponent; +export const BeachAccessRounded: SvgIconComponent; +export const BeachAccessSharp: SvgIconComponent; +export const BeachAccessTwoTone: SvgIconComponent; +export const Bed: SvgIconComponent; +export const BedOutlined: SvgIconComponent; +export const BedRounded: SvgIconComponent; +export const BedSharp: SvgIconComponent; +export const BedTwoTone: SvgIconComponent; +export const BedroomBaby: SvgIconComponent; +export const BedroomBabyOutlined: SvgIconComponent; +export const BedroomBabyRounded: SvgIconComponent; +export const BedroomBabySharp: SvgIconComponent; +export const BedroomBabyTwoTone: SvgIconComponent; +export const BedroomChild: SvgIconComponent; +export const BedroomChildOutlined: SvgIconComponent; +export const BedroomChildRounded: SvgIconComponent; +export const BedroomChildSharp: SvgIconComponent; +export const BedroomChildTwoTone: SvgIconComponent; +export const BedroomParent: SvgIconComponent; +export const BedroomParentOutlined: SvgIconComponent; +export const BedroomParentRounded: SvgIconComponent; +export const BedroomParentSharp: SvgIconComponent; +export const BedroomParentTwoTone: SvgIconComponent; +export const Bedtime: SvgIconComponent; +export const BedtimeOff: SvgIconComponent; +export const BedtimeOffOutlined: SvgIconComponent; +export const BedtimeOffRounded: SvgIconComponent; +export const BedtimeOffSharp: SvgIconComponent; +export const BedtimeOffTwoTone: SvgIconComponent; +export const BedtimeOutlined: SvgIconComponent; +export const BedtimeRounded: SvgIconComponent; +export const BedtimeSharp: SvgIconComponent; +export const BedtimeTwoTone: SvgIconComponent; +export const Beenhere: SvgIconComponent; +export const BeenhereOutlined: SvgIconComponent; +export const BeenhereRounded: SvgIconComponent; +export const BeenhereSharp: SvgIconComponent; +export const BeenhereTwoTone: SvgIconComponent; +export const Bento: SvgIconComponent; +export const BentoOutlined: SvgIconComponent; +export const BentoRounded: SvgIconComponent; +export const BentoSharp: SvgIconComponent; +export const BentoTwoTone: SvgIconComponent; +export const BikeScooter: SvgIconComponent; +export const BikeScooterOutlined: SvgIconComponent; +export const BikeScooterRounded: SvgIconComponent; +export const BikeScooterSharp: SvgIconComponent; +export const BikeScooterTwoTone: SvgIconComponent; +export const Biotech: SvgIconComponent; +export const BiotechOutlined: SvgIconComponent; +export const BiotechRounded: SvgIconComponent; +export const BiotechSharp: SvgIconComponent; +export const BiotechTwoTone: SvgIconComponent; +export const Blender: SvgIconComponent; +export const BlenderOutlined: SvgIconComponent; +export const BlenderRounded: SvgIconComponent; +export const BlenderSharp: SvgIconComponent; +export const BlenderTwoTone: SvgIconComponent; +export const Blind: SvgIconComponent; +export const BlindOutlined: SvgIconComponent; +export const BlindRounded: SvgIconComponent; +export const BlindSharp: SvgIconComponent; +export const BlindTwoTone: SvgIconComponent; +export const Blinds: SvgIconComponent; +export const BlindsClosed: SvgIconComponent; +export const BlindsClosedOutlined: SvgIconComponent; +export const BlindsClosedRounded: SvgIconComponent; +export const BlindsClosedSharp: SvgIconComponent; +export const BlindsClosedTwoTone: SvgIconComponent; +export const BlindsOutlined: SvgIconComponent; +export const BlindsRounded: SvgIconComponent; +export const BlindsSharp: SvgIconComponent; +export const BlindsTwoTone: SvgIconComponent; +export const Block: SvgIconComponent; +export const BlockOutlined: SvgIconComponent; +export const BlockRounded: SvgIconComponent; +export const BlockSharp: SvgIconComponent; +export const BlockTwoTone: SvgIconComponent; +export const Bloodtype: SvgIconComponent; +export const BloodtypeOutlined: SvgIconComponent; +export const BloodtypeRounded: SvgIconComponent; +export const BloodtypeSharp: SvgIconComponent; +export const BloodtypeTwoTone: SvgIconComponent; +export const Bluetooth: SvgIconComponent; +export const BluetoothAudio: SvgIconComponent; +export const BluetoothAudioOutlined: SvgIconComponent; +export const BluetoothAudioRounded: SvgIconComponent; +export const BluetoothAudioSharp: SvgIconComponent; +export const BluetoothAudioTwoTone: SvgIconComponent; +export const BluetoothConnected: SvgIconComponent; +export const BluetoothConnectedOutlined: SvgIconComponent; +export const BluetoothConnectedRounded: SvgIconComponent; +export const BluetoothConnectedSharp: SvgIconComponent; +export const BluetoothConnectedTwoTone: SvgIconComponent; +export const BluetoothDisabled: SvgIconComponent; +export const BluetoothDisabledOutlined: SvgIconComponent; +export const BluetoothDisabledRounded: SvgIconComponent; +export const BluetoothDisabledSharp: SvgIconComponent; +export const BluetoothDisabledTwoTone: SvgIconComponent; +export const BluetoothDrive: SvgIconComponent; +export const BluetoothDriveOutlined: SvgIconComponent; +export const BluetoothDriveRounded: SvgIconComponent; +export const BluetoothDriveSharp: SvgIconComponent; +export const BluetoothDriveTwoTone: SvgIconComponent; +export const BluetoothOutlined: SvgIconComponent; +export const BluetoothRounded: SvgIconComponent; +export const BluetoothSearching: SvgIconComponent; +export const BluetoothSearchingOutlined: SvgIconComponent; +export const BluetoothSearchingRounded: SvgIconComponent; +export const BluetoothSearchingSharp: SvgIconComponent; +export const BluetoothSearchingTwoTone: SvgIconComponent; +export const BluetoothSharp: SvgIconComponent; +export const BluetoothTwoTone: SvgIconComponent; +export const BlurCircular: SvgIconComponent; +export const BlurCircularOutlined: SvgIconComponent; +export const BlurCircularRounded: SvgIconComponent; +export const BlurCircularSharp: SvgIconComponent; +export const BlurCircularTwoTone: SvgIconComponent; +export const BlurLinear: SvgIconComponent; +export const BlurLinearOutlined: SvgIconComponent; +export const BlurLinearRounded: SvgIconComponent; +export const BlurLinearSharp: SvgIconComponent; +export const BlurLinearTwoTone: SvgIconComponent; +export const BlurOff: SvgIconComponent; +export const BlurOffOutlined: SvgIconComponent; +export const BlurOffRounded: SvgIconComponent; +export const BlurOffSharp: SvgIconComponent; +export const BlurOffTwoTone: SvgIconComponent; +export const BlurOn: SvgIconComponent; +export const BlurOnOutlined: SvgIconComponent; +export const BlurOnRounded: SvgIconComponent; +export const BlurOnSharp: SvgIconComponent; +export const BlurOnTwoTone: SvgIconComponent; +export const Bolt: SvgIconComponent; +export const BoltOutlined: SvgIconComponent; +export const BoltRounded: SvgIconComponent; +export const BoltSharp: SvgIconComponent; +export const BoltTwoTone: SvgIconComponent; +export const Book: SvgIconComponent; +export const BookOnline: SvgIconComponent; +export const BookOnlineOutlined: SvgIconComponent; +export const BookOnlineRounded: SvgIconComponent; +export const BookOnlineSharp: SvgIconComponent; +export const BookOnlineTwoTone: SvgIconComponent; +export const BookOutlined: SvgIconComponent; +export const BookRounded: SvgIconComponent; +export const BookSharp: SvgIconComponent; +export const BookTwoTone: SvgIconComponent; +export const Bookmark: SvgIconComponent; +export const BookmarkAdd: SvgIconComponent; +export const BookmarkAddOutlined: SvgIconComponent; +export const BookmarkAddRounded: SvgIconComponent; +export const BookmarkAddSharp: SvgIconComponent; +export const BookmarkAddTwoTone: SvgIconComponent; +export const BookmarkAdded: SvgIconComponent; +export const BookmarkAddedOutlined: SvgIconComponent; +export const BookmarkAddedRounded: SvgIconComponent; +export const BookmarkAddedSharp: SvgIconComponent; +export const BookmarkAddedTwoTone: SvgIconComponent; +export const BookmarkBorder: SvgIconComponent; +export const BookmarkBorderOutlined: SvgIconComponent; +export const BookmarkBorderRounded: SvgIconComponent; +export const BookmarkBorderSharp: SvgIconComponent; +export const BookmarkBorderTwoTone: SvgIconComponent; +export const BookmarkOutlined: SvgIconComponent; +export const BookmarkRemove: SvgIconComponent; +export const BookmarkRemoveOutlined: SvgIconComponent; +export const BookmarkRemoveRounded: SvgIconComponent; +export const BookmarkRemoveSharp: SvgIconComponent; +export const BookmarkRemoveTwoTone: SvgIconComponent; +export const BookmarkRounded: SvgIconComponent; +export const BookmarkSharp: SvgIconComponent; +export const BookmarkTwoTone: SvgIconComponent; +export const Bookmarks: SvgIconComponent; +export const BookmarksOutlined: SvgIconComponent; +export const BookmarksRounded: SvgIconComponent; +export const BookmarksSharp: SvgIconComponent; +export const BookmarksTwoTone: SvgIconComponent; +export const BorderAll: SvgIconComponent; +export const BorderAllOutlined: SvgIconComponent; +export const BorderAllRounded: SvgIconComponent; +export const BorderAllSharp: SvgIconComponent; +export const BorderAllTwoTone: SvgIconComponent; +export const BorderBottom: SvgIconComponent; +export const BorderBottomOutlined: SvgIconComponent; +export const BorderBottomRounded: SvgIconComponent; +export const BorderBottomSharp: SvgIconComponent; +export const BorderBottomTwoTone: SvgIconComponent; +export const BorderClear: SvgIconComponent; +export const BorderClearOutlined: SvgIconComponent; +export const BorderClearRounded: SvgIconComponent; +export const BorderClearSharp: SvgIconComponent; +export const BorderClearTwoTone: SvgIconComponent; +export const BorderColor: SvgIconComponent; +export const BorderColorOutlined: SvgIconComponent; +export const BorderColorRounded: SvgIconComponent; +export const BorderColorSharp: SvgIconComponent; +export const BorderColorTwoTone: SvgIconComponent; +export const BorderHorizontal: SvgIconComponent; +export const BorderHorizontalOutlined: SvgIconComponent; +export const BorderHorizontalRounded: SvgIconComponent; +export const BorderHorizontalSharp: SvgIconComponent; +export const BorderHorizontalTwoTone: SvgIconComponent; +export const BorderInner: SvgIconComponent; +export const BorderInnerOutlined: SvgIconComponent; +export const BorderInnerRounded: SvgIconComponent; +export const BorderInnerSharp: SvgIconComponent; +export const BorderInnerTwoTone: SvgIconComponent; +export const BorderLeft: SvgIconComponent; +export const BorderLeftOutlined: SvgIconComponent; +export const BorderLeftRounded: SvgIconComponent; +export const BorderLeftSharp: SvgIconComponent; +export const BorderLeftTwoTone: SvgIconComponent; +export const BorderOuter: SvgIconComponent; +export const BorderOuterOutlined: SvgIconComponent; +export const BorderOuterRounded: SvgIconComponent; +export const BorderOuterSharp: SvgIconComponent; +export const BorderOuterTwoTone: SvgIconComponent; +export const BorderRight: SvgIconComponent; +export const BorderRightOutlined: SvgIconComponent; +export const BorderRightRounded: SvgIconComponent; +export const BorderRightSharp: SvgIconComponent; +export const BorderRightTwoTone: SvgIconComponent; +export const BorderStyle: SvgIconComponent; +export const BorderStyleOutlined: SvgIconComponent; +export const BorderStyleRounded: SvgIconComponent; +export const BorderStyleSharp: SvgIconComponent; +export const BorderStyleTwoTone: SvgIconComponent; +export const BorderTop: SvgIconComponent; +export const BorderTopOutlined: SvgIconComponent; +export const BorderTopRounded: SvgIconComponent; +export const BorderTopSharp: SvgIconComponent; +export const BorderTopTwoTone: SvgIconComponent; +export const BorderVertical: SvgIconComponent; +export const BorderVerticalOutlined: SvgIconComponent; +export const BorderVerticalRounded: SvgIconComponent; +export const BorderVerticalSharp: SvgIconComponent; +export const BorderVerticalTwoTone: SvgIconComponent; +export const Boy: SvgIconComponent; +export const BoyOutlined: SvgIconComponent; +export const BoyRounded: SvgIconComponent; +export const BoySharp: SvgIconComponent; +export const BoyTwoTone: SvgIconComponent; +export const BrandingWatermark: SvgIconComponent; +export const BrandingWatermarkOutlined: SvgIconComponent; +export const BrandingWatermarkRounded: SvgIconComponent; +export const BrandingWatermarkSharp: SvgIconComponent; +export const BrandingWatermarkTwoTone: SvgIconComponent; +export const BreakfastDining: SvgIconComponent; +export const BreakfastDiningOutlined: SvgIconComponent; +export const BreakfastDiningRounded: SvgIconComponent; +export const BreakfastDiningSharp: SvgIconComponent; +export const BreakfastDiningTwoTone: SvgIconComponent; +export const Brightness1: SvgIconComponent; +export const Brightness1Outlined: SvgIconComponent; +export const Brightness1Rounded: SvgIconComponent; +export const Brightness1Sharp: SvgIconComponent; +export const Brightness1TwoTone: SvgIconComponent; +export const Brightness2: SvgIconComponent; +export const Brightness2Outlined: SvgIconComponent; +export const Brightness2Rounded: SvgIconComponent; +export const Brightness2Sharp: SvgIconComponent; +export const Brightness2TwoTone: SvgIconComponent; +export const Brightness3: SvgIconComponent; +export const Brightness3Outlined: SvgIconComponent; +export const Brightness3Rounded: SvgIconComponent; +export const Brightness3Sharp: SvgIconComponent; +export const Brightness3TwoTone: SvgIconComponent; +export const Brightness4: SvgIconComponent; +export const Brightness4Outlined: SvgIconComponent; +export const Brightness4Rounded: SvgIconComponent; +export const Brightness4Sharp: SvgIconComponent; +export const Brightness4TwoTone: SvgIconComponent; +export const Brightness5: SvgIconComponent; +export const Brightness5Outlined: SvgIconComponent; +export const Brightness5Rounded: SvgIconComponent; +export const Brightness5Sharp: SvgIconComponent; +export const Brightness5TwoTone: SvgIconComponent; +export const Brightness6: SvgIconComponent; +export const Brightness6Outlined: SvgIconComponent; +export const Brightness6Rounded: SvgIconComponent; +export const Brightness6Sharp: SvgIconComponent; +export const Brightness6TwoTone: SvgIconComponent; +export const Brightness7: SvgIconComponent; +export const Brightness7Outlined: SvgIconComponent; +export const Brightness7Rounded: SvgIconComponent; +export const Brightness7Sharp: SvgIconComponent; +export const Brightness7TwoTone: SvgIconComponent; +export const BrightnessAuto: SvgIconComponent; +export const BrightnessAutoOutlined: SvgIconComponent; +export const BrightnessAutoRounded: SvgIconComponent; +export const BrightnessAutoSharp: SvgIconComponent; +export const BrightnessAutoTwoTone: SvgIconComponent; +export const BrightnessHigh: SvgIconComponent; +export const BrightnessHighOutlined: SvgIconComponent; +export const BrightnessHighRounded: SvgIconComponent; +export const BrightnessHighSharp: SvgIconComponent; +export const BrightnessHighTwoTone: SvgIconComponent; +export const BrightnessLow: SvgIconComponent; +export const BrightnessLowOutlined: SvgIconComponent; +export const BrightnessLowRounded: SvgIconComponent; +export const BrightnessLowSharp: SvgIconComponent; +export const BrightnessLowTwoTone: SvgIconComponent; +export const BrightnessMedium: SvgIconComponent; +export const BrightnessMediumOutlined: SvgIconComponent; +export const BrightnessMediumRounded: SvgIconComponent; +export const BrightnessMediumSharp: SvgIconComponent; +export const BrightnessMediumTwoTone: SvgIconComponent; +export const BroadcastOnHome: SvgIconComponent; +export const BroadcastOnHomeOutlined: SvgIconComponent; +export const BroadcastOnHomeRounded: SvgIconComponent; +export const BroadcastOnHomeSharp: SvgIconComponent; +export const BroadcastOnHomeTwoTone: SvgIconComponent; +export const BroadcastOnPersonal: SvgIconComponent; +export const BroadcastOnPersonalOutlined: SvgIconComponent; +export const BroadcastOnPersonalRounded: SvgIconComponent; +export const BroadcastOnPersonalSharp: SvgIconComponent; +export const BroadcastOnPersonalTwoTone: SvgIconComponent; +export const BrokenImage: SvgIconComponent; +export const BrokenImageOutlined: SvgIconComponent; +export const BrokenImageRounded: SvgIconComponent; +export const BrokenImageSharp: SvgIconComponent; +export const BrokenImageTwoTone: SvgIconComponent; +export const BrowseGallery: SvgIconComponent; +export const BrowseGalleryOutlined: SvgIconComponent; +export const BrowseGalleryRounded: SvgIconComponent; +export const BrowseGallerySharp: SvgIconComponent; +export const BrowseGalleryTwoTone: SvgIconComponent; +export const BrowserNotSupported: SvgIconComponent; +export const BrowserNotSupportedOutlined: SvgIconComponent; +export const BrowserNotSupportedRounded: SvgIconComponent; +export const BrowserNotSupportedSharp: SvgIconComponent; +export const BrowserNotSupportedTwoTone: SvgIconComponent; +export const BrowserUpdated: SvgIconComponent; +export const BrowserUpdatedOutlined: SvgIconComponent; +export const BrowserUpdatedRounded: SvgIconComponent; +export const BrowserUpdatedSharp: SvgIconComponent; +export const BrowserUpdatedTwoTone: SvgIconComponent; +export const BrunchDining: SvgIconComponent; +export const BrunchDiningOutlined: SvgIconComponent; +export const BrunchDiningRounded: SvgIconComponent; +export const BrunchDiningSharp: SvgIconComponent; +export const BrunchDiningTwoTone: SvgIconComponent; +export const Brush: SvgIconComponent; +export const BrushOutlined: SvgIconComponent; +export const BrushRounded: SvgIconComponent; +export const BrushSharp: SvgIconComponent; +export const BrushTwoTone: SvgIconComponent; +export const BubbleChart: SvgIconComponent; +export const BubbleChartOutlined: SvgIconComponent; +export const BubbleChartRounded: SvgIconComponent; +export const BubbleChartSharp: SvgIconComponent; +export const BubbleChartTwoTone: SvgIconComponent; +export const BugReport: SvgIconComponent; +export const BugReportOutlined: SvgIconComponent; +export const BugReportRounded: SvgIconComponent; +export const BugReportSharp: SvgIconComponent; +export const BugReportTwoTone: SvgIconComponent; +export const Build: SvgIconComponent; +export const BuildCircle: SvgIconComponent; +export const BuildCircleOutlined: SvgIconComponent; +export const BuildCircleRounded: SvgIconComponent; +export const BuildCircleSharp: SvgIconComponent; +export const BuildCircleTwoTone: SvgIconComponent; +export const BuildOutlined: SvgIconComponent; +export const BuildRounded: SvgIconComponent; +export const BuildSharp: SvgIconComponent; +export const BuildTwoTone: SvgIconComponent; +export const Bungalow: SvgIconComponent; +export const BungalowOutlined: SvgIconComponent; +export const BungalowRounded: SvgIconComponent; +export const BungalowSharp: SvgIconComponent; +export const BungalowTwoTone: SvgIconComponent; +export const BurstMode: SvgIconComponent; +export const BurstModeOutlined: SvgIconComponent; +export const BurstModeRounded: SvgIconComponent; +export const BurstModeSharp: SvgIconComponent; +export const BurstModeTwoTone: SvgIconComponent; +export const BusAlert: SvgIconComponent; +export const BusAlertOutlined: SvgIconComponent; +export const BusAlertRounded: SvgIconComponent; +export const BusAlertSharp: SvgIconComponent; +export const BusAlertTwoTone: SvgIconComponent; +export const Business: SvgIconComponent; +export const BusinessCenter: SvgIconComponent; +export const BusinessCenterOutlined: SvgIconComponent; +export const BusinessCenterRounded: SvgIconComponent; +export const BusinessCenterSharp: SvgIconComponent; +export const BusinessCenterTwoTone: SvgIconComponent; +export const BusinessOutlined: SvgIconComponent; +export const BusinessRounded: SvgIconComponent; +export const BusinessSharp: SvgIconComponent; +export const BusinessTwoTone: SvgIconComponent; +export const Cabin: SvgIconComponent; +export const CabinOutlined: SvgIconComponent; +export const CabinRounded: SvgIconComponent; +export const CabinSharp: SvgIconComponent; +export const CabinTwoTone: SvgIconComponent; +export const Cable: SvgIconComponent; +export const CableOutlined: SvgIconComponent; +export const CableRounded: SvgIconComponent; +export const CableSharp: SvgIconComponent; +export const CableTwoTone: SvgIconComponent; +export const Cached: SvgIconComponent; +export const CachedOutlined: SvgIconComponent; +export const CachedRounded: SvgIconComponent; +export const CachedSharp: SvgIconComponent; +export const CachedTwoTone: SvgIconComponent; +export const Cake: SvgIconComponent; +export const CakeOutlined: SvgIconComponent; +export const CakeRounded: SvgIconComponent; +export const CakeSharp: SvgIconComponent; +export const CakeTwoTone: SvgIconComponent; +export const Calculate: SvgIconComponent; +export const CalculateOutlined: SvgIconComponent; +export const CalculateRounded: SvgIconComponent; +export const CalculateSharp: SvgIconComponent; +export const CalculateTwoTone: SvgIconComponent; +export const CalendarMonth: SvgIconComponent; +export const CalendarMonthOutlined: SvgIconComponent; +export const CalendarMonthRounded: SvgIconComponent; +export const CalendarMonthSharp: SvgIconComponent; +export const CalendarMonthTwoTone: SvgIconComponent; +export const CalendarToday: SvgIconComponent; +export const CalendarTodayOutlined: SvgIconComponent; +export const CalendarTodayRounded: SvgIconComponent; +export const CalendarTodaySharp: SvgIconComponent; +export const CalendarTodayTwoTone: SvgIconComponent; +export const CalendarViewDay: SvgIconComponent; +export const CalendarViewDayOutlined: SvgIconComponent; +export const CalendarViewDayRounded: SvgIconComponent; +export const CalendarViewDaySharp: SvgIconComponent; +export const CalendarViewDayTwoTone: SvgIconComponent; +export const CalendarViewMonth: SvgIconComponent; +export const CalendarViewMonthOutlined: SvgIconComponent; +export const CalendarViewMonthRounded: SvgIconComponent; +export const CalendarViewMonthSharp: SvgIconComponent; +export const CalendarViewMonthTwoTone: SvgIconComponent; +export const CalendarViewWeek: SvgIconComponent; +export const CalendarViewWeekOutlined: SvgIconComponent; +export const CalendarViewWeekRounded: SvgIconComponent; +export const CalendarViewWeekSharp: SvgIconComponent; +export const CalendarViewWeekTwoTone: SvgIconComponent; +export const Call: SvgIconComponent; +export const CallEnd: SvgIconComponent; +export const CallEndOutlined: SvgIconComponent; +export const CallEndRounded: SvgIconComponent; +export const CallEndSharp: SvgIconComponent; +export const CallEndTwoTone: SvgIconComponent; +export const CallMade: SvgIconComponent; +export const CallMadeOutlined: SvgIconComponent; +export const CallMadeRounded: SvgIconComponent; +export const CallMadeSharp: SvgIconComponent; +export const CallMadeTwoTone: SvgIconComponent; +export const CallMerge: SvgIconComponent; +export const CallMergeOutlined: SvgIconComponent; +export const CallMergeRounded: SvgIconComponent; +export const CallMergeSharp: SvgIconComponent; +export const CallMergeTwoTone: SvgIconComponent; +export const CallMissed: SvgIconComponent; +export const CallMissedOutgoing: SvgIconComponent; +export const CallMissedOutgoingOutlined: SvgIconComponent; +export const CallMissedOutgoingRounded: SvgIconComponent; +export const CallMissedOutgoingSharp: SvgIconComponent; +export const CallMissedOutgoingTwoTone: SvgIconComponent; +export const CallMissedOutlined: SvgIconComponent; +export const CallMissedRounded: SvgIconComponent; +export const CallMissedSharp: SvgIconComponent; +export const CallMissedTwoTone: SvgIconComponent; +export const CallOutlined: SvgIconComponent; +export const CallReceived: SvgIconComponent; +export const CallReceivedOutlined: SvgIconComponent; +export const CallReceivedRounded: SvgIconComponent; +export const CallReceivedSharp: SvgIconComponent; +export const CallReceivedTwoTone: SvgIconComponent; +export const CallRounded: SvgIconComponent; +export const CallSharp: SvgIconComponent; +export const CallSplit: SvgIconComponent; +export const CallSplitOutlined: SvgIconComponent; +export const CallSplitRounded: SvgIconComponent; +export const CallSplitSharp: SvgIconComponent; +export const CallSplitTwoTone: SvgIconComponent; +export const CallToAction: SvgIconComponent; +export const CallToActionOutlined: SvgIconComponent; +export const CallToActionRounded: SvgIconComponent; +export const CallToActionSharp: SvgIconComponent; +export const CallToActionTwoTone: SvgIconComponent; +export const CallTwoTone: SvgIconComponent; +export const Camera: SvgIconComponent; +export const CameraAlt: SvgIconComponent; +export const CameraAltOutlined: SvgIconComponent; +export const CameraAltRounded: SvgIconComponent; +export const CameraAltSharp: SvgIconComponent; +export const CameraAltTwoTone: SvgIconComponent; +export const CameraEnhance: SvgIconComponent; +export const CameraEnhanceOutlined: SvgIconComponent; +export const CameraEnhanceRounded: SvgIconComponent; +export const CameraEnhanceSharp: SvgIconComponent; +export const CameraEnhanceTwoTone: SvgIconComponent; +export const CameraFront: SvgIconComponent; +export const CameraFrontOutlined: SvgIconComponent; +export const CameraFrontRounded: SvgIconComponent; +export const CameraFrontSharp: SvgIconComponent; +export const CameraFrontTwoTone: SvgIconComponent; +export const CameraIndoor: SvgIconComponent; +export const CameraIndoorOutlined: SvgIconComponent; +export const CameraIndoorRounded: SvgIconComponent; +export const CameraIndoorSharp: SvgIconComponent; +export const CameraIndoorTwoTone: SvgIconComponent; +export const CameraOutdoor: SvgIconComponent; +export const CameraOutdoorOutlined: SvgIconComponent; +export const CameraOutdoorRounded: SvgIconComponent; +export const CameraOutdoorSharp: SvgIconComponent; +export const CameraOutdoorTwoTone: SvgIconComponent; +export const CameraOutlined: SvgIconComponent; +export const CameraRear: SvgIconComponent; +export const CameraRearOutlined: SvgIconComponent; +export const CameraRearRounded: SvgIconComponent; +export const CameraRearSharp: SvgIconComponent; +export const CameraRearTwoTone: SvgIconComponent; +export const CameraRoll: SvgIconComponent; +export const CameraRollOutlined: SvgIconComponent; +export const CameraRollRounded: SvgIconComponent; +export const CameraRollSharp: SvgIconComponent; +export const CameraRollTwoTone: SvgIconComponent; +export const CameraRounded: SvgIconComponent; +export const CameraSharp: SvgIconComponent; +export const CameraTwoTone: SvgIconComponent; +export const Cameraswitch: SvgIconComponent; +export const CameraswitchOutlined: SvgIconComponent; +export const CameraswitchRounded: SvgIconComponent; +export const CameraswitchSharp: SvgIconComponent; +export const CameraswitchTwoTone: SvgIconComponent; +export const Campaign: SvgIconComponent; +export const CampaignOutlined: SvgIconComponent; +export const CampaignRounded: SvgIconComponent; +export const CampaignSharp: SvgIconComponent; +export const CampaignTwoTone: SvgIconComponent; +export const Cancel: SvgIconComponent; +export const CancelOutlined: SvgIconComponent; +export const CancelPresentation: SvgIconComponent; +export const CancelPresentationOutlined: SvgIconComponent; +export const CancelPresentationRounded: SvgIconComponent; +export const CancelPresentationSharp: SvgIconComponent; +export const CancelPresentationTwoTone: SvgIconComponent; +export const CancelRounded: SvgIconComponent; +export const CancelScheduleSend: SvgIconComponent; +export const CancelScheduleSendOutlined: SvgIconComponent; +export const CancelScheduleSendRounded: SvgIconComponent; +export const CancelScheduleSendSharp: SvgIconComponent; +export const CancelScheduleSendTwoTone: SvgIconComponent; +export const CancelSharp: SvgIconComponent; +export const CancelTwoTone: SvgIconComponent; +export const CandlestickChart: SvgIconComponent; +export const CandlestickChartOutlined: SvgIconComponent; +export const CandlestickChartRounded: SvgIconComponent; +export const CandlestickChartSharp: SvgIconComponent; +export const CandlestickChartTwoTone: SvgIconComponent; +export const CarCrash: SvgIconComponent; +export const CarCrashOutlined: SvgIconComponent; +export const CarCrashRounded: SvgIconComponent; +export const CarCrashSharp: SvgIconComponent; +export const CarCrashTwoTone: SvgIconComponent; +export const CarRental: SvgIconComponent; +export const CarRentalOutlined: SvgIconComponent; +export const CarRentalRounded: SvgIconComponent; +export const CarRentalSharp: SvgIconComponent; +export const CarRentalTwoTone: SvgIconComponent; +export const CarRepair: SvgIconComponent; +export const CarRepairOutlined: SvgIconComponent; +export const CarRepairRounded: SvgIconComponent; +export const CarRepairSharp: SvgIconComponent; +export const CarRepairTwoTone: SvgIconComponent; +export const CardGiftcard: SvgIconComponent; +export const CardGiftcardOutlined: SvgIconComponent; +export const CardGiftcardRounded: SvgIconComponent; +export const CardGiftcardSharp: SvgIconComponent; +export const CardGiftcardTwoTone: SvgIconComponent; +export const CardMembership: SvgIconComponent; +export const CardMembershipOutlined: SvgIconComponent; +export const CardMembershipRounded: SvgIconComponent; +export const CardMembershipSharp: SvgIconComponent; +export const CardMembershipTwoTone: SvgIconComponent; +export const CardTravel: SvgIconComponent; +export const CardTravelOutlined: SvgIconComponent; +export const CardTravelRounded: SvgIconComponent; +export const CardTravelSharp: SvgIconComponent; +export const CardTravelTwoTone: SvgIconComponent; +export const Carpenter: SvgIconComponent; +export const CarpenterOutlined: SvgIconComponent; +export const CarpenterRounded: SvgIconComponent; +export const CarpenterSharp: SvgIconComponent; +export const CarpenterTwoTone: SvgIconComponent; +export const Cases: SvgIconComponent; +export const CasesOutlined: SvgIconComponent; +export const CasesRounded: SvgIconComponent; +export const CasesSharp: SvgIconComponent; +export const CasesTwoTone: SvgIconComponent; +export const Casino: SvgIconComponent; +export const CasinoOutlined: SvgIconComponent; +export const CasinoRounded: SvgIconComponent; +export const CasinoSharp: SvgIconComponent; +export const CasinoTwoTone: SvgIconComponent; +export const Cast: SvgIconComponent; +export const CastConnected: SvgIconComponent; +export const CastConnectedOutlined: SvgIconComponent; +export const CastConnectedRounded: SvgIconComponent; +export const CastConnectedSharp: SvgIconComponent; +export const CastConnectedTwoTone: SvgIconComponent; +export const CastForEducation: SvgIconComponent; +export const CastForEducationOutlined: SvgIconComponent; +export const CastForEducationRounded: SvgIconComponent; +export const CastForEducationSharp: SvgIconComponent; +export const CastForEducationTwoTone: SvgIconComponent; +export const CastOutlined: SvgIconComponent; +export const CastRounded: SvgIconComponent; +export const CastSharp: SvgIconComponent; +export const CastTwoTone: SvgIconComponent; +export const Castle: SvgIconComponent; +export const CastleOutlined: SvgIconComponent; +export const CastleRounded: SvgIconComponent; +export const CastleSharp: SvgIconComponent; +export const CastleTwoTone: SvgIconComponent; +export const CatchingPokemon: SvgIconComponent; +export const CatchingPokemonOutlined: SvgIconComponent; +export const CatchingPokemonRounded: SvgIconComponent; +export const CatchingPokemonSharp: SvgIconComponent; +export const CatchingPokemonTwoTone: SvgIconComponent; +export const Category: SvgIconComponent; +export const CategoryOutlined: SvgIconComponent; +export const CategoryRounded: SvgIconComponent; +export const CategorySharp: SvgIconComponent; +export const CategoryTwoTone: SvgIconComponent; +export const Celebration: SvgIconComponent; +export const CelebrationOutlined: SvgIconComponent; +export const CelebrationRounded: SvgIconComponent; +export const CelebrationSharp: SvgIconComponent; +export const CelebrationTwoTone: SvgIconComponent; +export const CellTower: SvgIconComponent; +export const CellTowerOutlined: SvgIconComponent; +export const CellTowerRounded: SvgIconComponent; +export const CellTowerSharp: SvgIconComponent; +export const CellTowerTwoTone: SvgIconComponent; +export const CellWifi: SvgIconComponent; +export const CellWifiOutlined: SvgIconComponent; +export const CellWifiRounded: SvgIconComponent; +export const CellWifiSharp: SvgIconComponent; +export const CellWifiTwoTone: SvgIconComponent; +export const CenterFocusStrong: SvgIconComponent; +export const CenterFocusStrongOutlined: SvgIconComponent; +export const CenterFocusStrongRounded: SvgIconComponent; +export const CenterFocusStrongSharp: SvgIconComponent; +export const CenterFocusStrongTwoTone: SvgIconComponent; +export const CenterFocusWeak: SvgIconComponent; +export const CenterFocusWeakOutlined: SvgIconComponent; +export const CenterFocusWeakRounded: SvgIconComponent; +export const CenterFocusWeakSharp: SvgIconComponent; +export const CenterFocusWeakTwoTone: SvgIconComponent; +export const Chair: SvgIconComponent; +export const ChairAlt: SvgIconComponent; +export const ChairAltOutlined: SvgIconComponent; +export const ChairAltRounded: SvgIconComponent; +export const ChairAltSharp: SvgIconComponent; +export const ChairAltTwoTone: SvgIconComponent; +export const ChairOutlined: SvgIconComponent; +export const ChairRounded: SvgIconComponent; +export const ChairSharp: SvgIconComponent; +export const ChairTwoTone: SvgIconComponent; +export const Chalet: SvgIconComponent; +export const ChaletOutlined: SvgIconComponent; +export const ChaletRounded: SvgIconComponent; +export const ChaletSharp: SvgIconComponent; +export const ChaletTwoTone: SvgIconComponent; +export const ChangeCircle: SvgIconComponent; +export const ChangeCircleOutlined: SvgIconComponent; +export const ChangeCircleRounded: SvgIconComponent; +export const ChangeCircleSharp: SvgIconComponent; +export const ChangeCircleTwoTone: SvgIconComponent; +export const ChangeHistory: SvgIconComponent; +export const ChangeHistoryOutlined: SvgIconComponent; +export const ChangeHistoryRounded: SvgIconComponent; +export const ChangeHistorySharp: SvgIconComponent; +export const ChangeHistoryTwoTone: SvgIconComponent; +export const ChargingStation: SvgIconComponent; +export const ChargingStationOutlined: SvgIconComponent; +export const ChargingStationRounded: SvgIconComponent; +export const ChargingStationSharp: SvgIconComponent; +export const ChargingStationTwoTone: SvgIconComponent; +export const Chat: SvgIconComponent; +export const ChatBubble: SvgIconComponent; +export const ChatBubbleOutline: SvgIconComponent; +export const ChatBubbleOutlineOutlined: SvgIconComponent; +export const ChatBubbleOutlineRounded: SvgIconComponent; +export const ChatBubbleOutlineSharp: SvgIconComponent; +export const ChatBubbleOutlineTwoTone: SvgIconComponent; +export const ChatBubbleOutlined: SvgIconComponent; +export const ChatBubbleRounded: SvgIconComponent; +export const ChatBubbleSharp: SvgIconComponent; +export const ChatBubbleTwoTone: SvgIconComponent; +export const ChatOutlined: SvgIconComponent; +export const ChatRounded: SvgIconComponent; +export const ChatSharp: SvgIconComponent; +export const ChatTwoTone: SvgIconComponent; +export const Check: SvgIconComponent; +export const CheckBox: SvgIconComponent; +export const CheckBoxOutlineBlank: SvgIconComponent; +export const CheckBoxOutlineBlankOutlined: SvgIconComponent; +export const CheckBoxOutlineBlankRounded: SvgIconComponent; +export const CheckBoxOutlineBlankSharp: SvgIconComponent; +export const CheckBoxOutlineBlankTwoTone: SvgIconComponent; +export const CheckBoxOutlined: SvgIconComponent; +export const CheckBoxRounded: SvgIconComponent; +export const CheckBoxSharp: SvgIconComponent; +export const CheckBoxTwoTone: SvgIconComponent; +export const CheckCircle: SvgIconComponent; +export const CheckCircleOutline: SvgIconComponent; +export const CheckCircleOutlineOutlined: SvgIconComponent; +export const CheckCircleOutlineRounded: SvgIconComponent; +export const CheckCircleOutlineSharp: SvgIconComponent; +export const CheckCircleOutlineTwoTone: SvgIconComponent; +export const CheckCircleOutlined: SvgIconComponent; +export const CheckCircleRounded: SvgIconComponent; +export const CheckCircleSharp: SvgIconComponent; +export const CheckCircleTwoTone: SvgIconComponent; +export const CheckOutlined: SvgIconComponent; +export const CheckRounded: SvgIconComponent; +export const CheckSharp: SvgIconComponent; +export const CheckTwoTone: SvgIconComponent; +export const Checklist: SvgIconComponent; +export const ChecklistOutlined: SvgIconComponent; +export const ChecklistRounded: SvgIconComponent; +export const ChecklistRtl: SvgIconComponent; +export const ChecklistRtlOutlined: SvgIconComponent; +export const ChecklistRtlRounded: SvgIconComponent; +export const ChecklistRtlSharp: SvgIconComponent; +export const ChecklistRtlTwoTone: SvgIconComponent; +export const ChecklistSharp: SvgIconComponent; +export const ChecklistTwoTone: SvgIconComponent; +export const Checkroom: SvgIconComponent; +export const CheckroomOutlined: SvgIconComponent; +export const CheckroomRounded: SvgIconComponent; +export const CheckroomSharp: SvgIconComponent; +export const CheckroomTwoTone: SvgIconComponent; +export const ChevronLeft: SvgIconComponent; +export const ChevronLeftOutlined: SvgIconComponent; +export const ChevronLeftRounded: SvgIconComponent; +export const ChevronLeftSharp: SvgIconComponent; +export const ChevronLeftTwoTone: SvgIconComponent; +export const ChevronRight: SvgIconComponent; +export const ChevronRightOutlined: SvgIconComponent; +export const ChevronRightRounded: SvgIconComponent; +export const ChevronRightSharp: SvgIconComponent; +export const ChevronRightTwoTone: SvgIconComponent; +export const ChildCare: SvgIconComponent; +export const ChildCareOutlined: SvgIconComponent; +export const ChildCareRounded: SvgIconComponent; +export const ChildCareSharp: SvgIconComponent; +export const ChildCareTwoTone: SvgIconComponent; +export const ChildFriendly: SvgIconComponent; +export const ChildFriendlyOutlined: SvgIconComponent; +export const ChildFriendlyRounded: SvgIconComponent; +export const ChildFriendlySharp: SvgIconComponent; +export const ChildFriendlyTwoTone: SvgIconComponent; +export const ChromeReaderMode: SvgIconComponent; +export const ChromeReaderModeOutlined: SvgIconComponent; +export const ChromeReaderModeRounded: SvgIconComponent; +export const ChromeReaderModeSharp: SvgIconComponent; +export const ChromeReaderModeTwoTone: SvgIconComponent; +export const Church: SvgIconComponent; +export const ChurchOutlined: SvgIconComponent; +export const ChurchRounded: SvgIconComponent; +export const ChurchSharp: SvgIconComponent; +export const ChurchTwoTone: SvgIconComponent; +export const Circle: SvgIconComponent; +export const CircleNotifications: SvgIconComponent; +export const CircleNotificationsOutlined: SvgIconComponent; +export const CircleNotificationsRounded: SvgIconComponent; +export const CircleNotificationsSharp: SvgIconComponent; +export const CircleNotificationsTwoTone: SvgIconComponent; +export const CircleOutlined: SvgIconComponent; +export const CircleRounded: SvgIconComponent; +export const CircleSharp: SvgIconComponent; +export const CircleTwoTone: SvgIconComponent; +export const Class: SvgIconComponent; +export const ClassOutlined: SvgIconComponent; +export const ClassRounded: SvgIconComponent; +export const ClassSharp: SvgIconComponent; +export const ClassTwoTone: SvgIconComponent; +export const CleanHands: SvgIconComponent; +export const CleanHandsOutlined: SvgIconComponent; +export const CleanHandsRounded: SvgIconComponent; +export const CleanHandsSharp: SvgIconComponent; +export const CleanHandsTwoTone: SvgIconComponent; +export const CleaningServices: SvgIconComponent; +export const CleaningServicesOutlined: SvgIconComponent; +export const CleaningServicesRounded: SvgIconComponent; +export const CleaningServicesSharp: SvgIconComponent; +export const CleaningServicesTwoTone: SvgIconComponent; +export const Clear: SvgIconComponent; +export const ClearAll: SvgIconComponent; +export const ClearAllOutlined: SvgIconComponent; +export const ClearAllRounded: SvgIconComponent; +export const ClearAllSharp: SvgIconComponent; +export const ClearAllTwoTone: SvgIconComponent; +export const ClearOutlined: SvgIconComponent; +export const ClearRounded: SvgIconComponent; +export const ClearSharp: SvgIconComponent; +export const ClearTwoTone: SvgIconComponent; +export const Close: SvgIconComponent; +export const CloseFullscreen: SvgIconComponent; +export const CloseFullscreenOutlined: SvgIconComponent; +export const CloseFullscreenRounded: SvgIconComponent; +export const CloseFullscreenSharp: SvgIconComponent; +export const CloseFullscreenTwoTone: SvgIconComponent; +export const CloseOutlined: SvgIconComponent; +export const CloseRounded: SvgIconComponent; +export const CloseSharp: SvgIconComponent; +export const CloseTwoTone: SvgIconComponent; +export const ClosedCaption: SvgIconComponent; +export const ClosedCaptionDisabled: SvgIconComponent; +export const ClosedCaptionDisabledOutlined: SvgIconComponent; +export const ClosedCaptionDisabledRounded: SvgIconComponent; +export const ClosedCaptionDisabledSharp: SvgIconComponent; +export const ClosedCaptionDisabledTwoTone: SvgIconComponent; +export const ClosedCaptionOff: SvgIconComponent; +export const ClosedCaptionOffOutlined: SvgIconComponent; +export const ClosedCaptionOffRounded: SvgIconComponent; +export const ClosedCaptionOffSharp: SvgIconComponent; +export const ClosedCaptionOffTwoTone: SvgIconComponent; +export const ClosedCaptionOutlined: SvgIconComponent; +export const ClosedCaptionRounded: SvgIconComponent; +export const ClosedCaptionSharp: SvgIconComponent; +export const ClosedCaptionTwoTone: SvgIconComponent; +export const Cloud: SvgIconComponent; +export const CloudCircle: SvgIconComponent; +export const CloudCircleOutlined: SvgIconComponent; +export const CloudCircleRounded: SvgIconComponent; +export const CloudCircleSharp: SvgIconComponent; +export const CloudCircleTwoTone: SvgIconComponent; +export const CloudDone: SvgIconComponent; +export const CloudDoneOutlined: SvgIconComponent; +export const CloudDoneRounded: SvgIconComponent; +export const CloudDoneSharp: SvgIconComponent; +export const CloudDoneTwoTone: SvgIconComponent; +export const CloudDownload: SvgIconComponent; +export const CloudDownloadOutlined: SvgIconComponent; +export const CloudDownloadRounded: SvgIconComponent; +export const CloudDownloadSharp: SvgIconComponent; +export const CloudDownloadTwoTone: SvgIconComponent; +export const CloudOff: SvgIconComponent; +export const CloudOffOutlined: SvgIconComponent; +export const CloudOffRounded: SvgIconComponent; +export const CloudOffSharp: SvgIconComponent; +export const CloudOffTwoTone: SvgIconComponent; +export const CloudOutlined: SvgIconComponent; +export const CloudQueue: SvgIconComponent; +export const CloudQueueOutlined: SvgIconComponent; +export const CloudQueueRounded: SvgIconComponent; +export const CloudQueueSharp: SvgIconComponent; +export const CloudQueueTwoTone: SvgIconComponent; +export const CloudRounded: SvgIconComponent; +export const CloudSharp: SvgIconComponent; +export const CloudSync: SvgIconComponent; +export const CloudSyncOutlined: SvgIconComponent; +export const CloudSyncRounded: SvgIconComponent; +export const CloudSyncSharp: SvgIconComponent; +export const CloudSyncTwoTone: SvgIconComponent; +export const CloudTwoTone: SvgIconComponent; +export const CloudUpload: SvgIconComponent; +export const CloudUploadOutlined: SvgIconComponent; +export const CloudUploadRounded: SvgIconComponent; +export const CloudUploadSharp: SvgIconComponent; +export const CloudUploadTwoTone: SvgIconComponent; +export const Co2: SvgIconComponent; +export const Co2Outlined: SvgIconComponent; +export const Co2Rounded: SvgIconComponent; +export const Co2Sharp: SvgIconComponent; +export const Co2TwoTone: SvgIconComponent; +export const CoPresent: SvgIconComponent; +export const CoPresentOutlined: SvgIconComponent; +export const CoPresentRounded: SvgIconComponent; +export const CoPresentSharp: SvgIconComponent; +export const CoPresentTwoTone: SvgIconComponent; +export const Code: SvgIconComponent; +export const CodeOff: SvgIconComponent; +export const CodeOffOutlined: SvgIconComponent; +export const CodeOffRounded: SvgIconComponent; +export const CodeOffSharp: SvgIconComponent; +export const CodeOffTwoTone: SvgIconComponent; +export const CodeOutlined: SvgIconComponent; +export const CodeRounded: SvgIconComponent; +export const CodeSharp: SvgIconComponent; +export const CodeTwoTone: SvgIconComponent; +export const Coffee: SvgIconComponent; +export const CoffeeMaker: SvgIconComponent; +export const CoffeeMakerOutlined: SvgIconComponent; +export const CoffeeMakerRounded: SvgIconComponent; +export const CoffeeMakerSharp: SvgIconComponent; +export const CoffeeMakerTwoTone: SvgIconComponent; +export const CoffeeOutlined: SvgIconComponent; +export const CoffeeRounded: SvgIconComponent; +export const CoffeeSharp: SvgIconComponent; +export const CoffeeTwoTone: SvgIconComponent; +export const Collections: SvgIconComponent; +export const CollectionsBookmark: SvgIconComponent; +export const CollectionsBookmarkOutlined: SvgIconComponent; +export const CollectionsBookmarkRounded: SvgIconComponent; +export const CollectionsBookmarkSharp: SvgIconComponent; +export const CollectionsBookmarkTwoTone: SvgIconComponent; +export const CollectionsOutlined: SvgIconComponent; +export const CollectionsRounded: SvgIconComponent; +export const CollectionsSharp: SvgIconComponent; +export const CollectionsTwoTone: SvgIconComponent; +export const ColorLens: SvgIconComponent; +export const ColorLensOutlined: SvgIconComponent; +export const ColorLensRounded: SvgIconComponent; +export const ColorLensSharp: SvgIconComponent; +export const ColorLensTwoTone: SvgIconComponent; +export const Colorize: SvgIconComponent; +export const ColorizeOutlined: SvgIconComponent; +export const ColorizeRounded: SvgIconComponent; +export const ColorizeSharp: SvgIconComponent; +export const ColorizeTwoTone: SvgIconComponent; +export const Comment: SvgIconComponent; +export const CommentBank: SvgIconComponent; +export const CommentBankOutlined: SvgIconComponent; +export const CommentBankRounded: SvgIconComponent; +export const CommentBankSharp: SvgIconComponent; +export const CommentBankTwoTone: SvgIconComponent; +export const CommentOutlined: SvgIconComponent; +export const CommentRounded: SvgIconComponent; +export const CommentSharp: SvgIconComponent; +export const CommentTwoTone: SvgIconComponent; +export const CommentsDisabled: SvgIconComponent; +export const CommentsDisabledOutlined: SvgIconComponent; +export const CommentsDisabledRounded: SvgIconComponent; +export const CommentsDisabledSharp: SvgIconComponent; +export const CommentsDisabledTwoTone: SvgIconComponent; +export const Commit: SvgIconComponent; +export const CommitOutlined: SvgIconComponent; +export const CommitRounded: SvgIconComponent; +export const CommitSharp: SvgIconComponent; +export const CommitTwoTone: SvgIconComponent; +export const Commute: SvgIconComponent; +export const CommuteOutlined: SvgIconComponent; +export const CommuteRounded: SvgIconComponent; +export const CommuteSharp: SvgIconComponent; +export const CommuteTwoTone: SvgIconComponent; +export const Compare: SvgIconComponent; +export const CompareArrows: SvgIconComponent; +export const CompareArrowsOutlined: SvgIconComponent; +export const CompareArrowsRounded: SvgIconComponent; +export const CompareArrowsSharp: SvgIconComponent; +export const CompareArrowsTwoTone: SvgIconComponent; +export const CompareOutlined: SvgIconComponent; +export const CompareRounded: SvgIconComponent; +export const CompareSharp: SvgIconComponent; +export const CompareTwoTone: SvgIconComponent; +export const CompassCalibration: SvgIconComponent; +export const CompassCalibrationOutlined: SvgIconComponent; +export const CompassCalibrationRounded: SvgIconComponent; +export const CompassCalibrationSharp: SvgIconComponent; +export const CompassCalibrationTwoTone: SvgIconComponent; +export const Compress: SvgIconComponent; +export const CompressOutlined: SvgIconComponent; +export const CompressRounded: SvgIconComponent; +export const CompressSharp: SvgIconComponent; +export const CompressTwoTone: SvgIconComponent; +export const Computer: SvgIconComponent; +export const ComputerOutlined: SvgIconComponent; +export const ComputerRounded: SvgIconComponent; +export const ComputerSharp: SvgIconComponent; +export const ComputerTwoTone: SvgIconComponent; +export const ConfirmationNumber: SvgIconComponent; +export const ConfirmationNumberOutlined: SvgIconComponent; +export const ConfirmationNumberRounded: SvgIconComponent; +export const ConfirmationNumberSharp: SvgIconComponent; +export const ConfirmationNumberTwoTone: SvgIconComponent; +export const ConnectWithoutContact: SvgIconComponent; +export const ConnectWithoutContactOutlined: SvgIconComponent; +export const ConnectWithoutContactRounded: SvgIconComponent; +export const ConnectWithoutContactSharp: SvgIconComponent; +export const ConnectWithoutContactTwoTone: SvgIconComponent; +export const ConnectedTv: SvgIconComponent; +export const ConnectedTvOutlined: SvgIconComponent; +export const ConnectedTvRounded: SvgIconComponent; +export const ConnectedTvSharp: SvgIconComponent; +export const ConnectedTvTwoTone: SvgIconComponent; +export const ConnectingAirports: SvgIconComponent; +export const ConnectingAirportsOutlined: SvgIconComponent; +export const ConnectingAirportsRounded: SvgIconComponent; +export const ConnectingAirportsSharp: SvgIconComponent; +export const ConnectingAirportsTwoTone: SvgIconComponent; +export const Construction: SvgIconComponent; +export const ConstructionOutlined: SvgIconComponent; +export const ConstructionRounded: SvgIconComponent; +export const ConstructionSharp: SvgIconComponent; +export const ConstructionTwoTone: SvgIconComponent; +export const ContactEmergency: SvgIconComponent; +export const ContactEmergencyOutlined: SvgIconComponent; +export const ContactEmergencyRounded: SvgIconComponent; +export const ContactEmergencySharp: SvgIconComponent; +export const ContactEmergencyTwoTone: SvgIconComponent; +export const ContactMail: SvgIconComponent; +export const ContactMailOutlined: SvgIconComponent; +export const ContactMailRounded: SvgIconComponent; +export const ContactMailSharp: SvgIconComponent; +export const ContactMailTwoTone: SvgIconComponent; +export const ContactPage: SvgIconComponent; +export const ContactPageOutlined: SvgIconComponent; +export const ContactPageRounded: SvgIconComponent; +export const ContactPageSharp: SvgIconComponent; +export const ContactPageTwoTone: SvgIconComponent; +export const ContactPhone: SvgIconComponent; +export const ContactPhoneOutlined: SvgIconComponent; +export const ContactPhoneRounded: SvgIconComponent; +export const ContactPhoneSharp: SvgIconComponent; +export const ContactPhoneTwoTone: SvgIconComponent; +export const ContactSupport: SvgIconComponent; +export const ContactSupportOutlined: SvgIconComponent; +export const ContactSupportRounded: SvgIconComponent; +export const ContactSupportSharp: SvgIconComponent; +export const ContactSupportTwoTone: SvgIconComponent; +export const Contactless: SvgIconComponent; +export const ContactlessOutlined: SvgIconComponent; +export const ContactlessRounded: SvgIconComponent; +export const ContactlessSharp: SvgIconComponent; +export const ContactlessTwoTone: SvgIconComponent; +export const Contacts: SvgIconComponent; +export const ContactsOutlined: SvgIconComponent; +export const ContactsRounded: SvgIconComponent; +export const ContactsSharp: SvgIconComponent; +export const ContactsTwoTone: SvgIconComponent; +export const ContentCopy: SvgIconComponent; +export const ContentCopyOutlined: SvgIconComponent; +export const ContentCopyRounded: SvgIconComponent; +export const ContentCopySharp: SvgIconComponent; +export const ContentCopyTwoTone: SvgIconComponent; +export const ContentCut: SvgIconComponent; +export const ContentCutOutlined: SvgIconComponent; +export const ContentCutRounded: SvgIconComponent; +export const ContentCutSharp: SvgIconComponent; +export const ContentCutTwoTone: SvgIconComponent; +export const ContentPaste: SvgIconComponent; +export const ContentPasteGo: SvgIconComponent; +export const ContentPasteGoOutlined: SvgIconComponent; +export const ContentPasteGoRounded: SvgIconComponent; +export const ContentPasteGoSharp: SvgIconComponent; +export const ContentPasteGoTwoTone: SvgIconComponent; +export const ContentPasteOff: SvgIconComponent; +export const ContentPasteOffOutlined: SvgIconComponent; +export const ContentPasteOffRounded: SvgIconComponent; +export const ContentPasteOffSharp: SvgIconComponent; +export const ContentPasteOffTwoTone: SvgIconComponent; +export const ContentPasteOutlined: SvgIconComponent; +export const ContentPasteRounded: SvgIconComponent; +export const ContentPasteSearch: SvgIconComponent; +export const ContentPasteSearchOutlined: SvgIconComponent; +export const ContentPasteSearchRounded: SvgIconComponent; +export const ContentPasteSearchSharp: SvgIconComponent; +export const ContentPasteSearchTwoTone: SvgIconComponent; +export const ContentPasteSharp: SvgIconComponent; +export const ContentPasteTwoTone: SvgIconComponent; +export const Contrast: SvgIconComponent; +export const ContrastOutlined: SvgIconComponent; +export const ContrastRounded: SvgIconComponent; +export const ContrastSharp: SvgIconComponent; +export const ContrastTwoTone: SvgIconComponent; +export const ControlCamera: SvgIconComponent; +export const ControlCameraOutlined: SvgIconComponent; +export const ControlCameraRounded: SvgIconComponent; +export const ControlCameraSharp: SvgIconComponent; +export const ControlCameraTwoTone: SvgIconComponent; +export const ControlPoint: SvgIconComponent; +export const ControlPointDuplicate: SvgIconComponent; +export const ControlPointDuplicateOutlined: SvgIconComponent; +export const ControlPointDuplicateRounded: SvgIconComponent; +export const ControlPointDuplicateSharp: SvgIconComponent; +export const ControlPointDuplicateTwoTone: SvgIconComponent; +export const ControlPointOutlined: SvgIconComponent; +export const ControlPointRounded: SvgIconComponent; +export const ControlPointSharp: SvgIconComponent; +export const ControlPointTwoTone: SvgIconComponent; +export const Cookie: SvgIconComponent; +export const CookieOutlined: SvgIconComponent; +export const CookieRounded: SvgIconComponent; +export const CookieSharp: SvgIconComponent; +export const CookieTwoTone: SvgIconComponent; +export const CopyAll: SvgIconComponent; +export const CopyAllOutlined: SvgIconComponent; +export const CopyAllRounded: SvgIconComponent; +export const CopyAllSharp: SvgIconComponent; +export const CopyAllTwoTone: SvgIconComponent; +export const Copyright: SvgIconComponent; +export const CopyrightOutlined: SvgIconComponent; +export const CopyrightRounded: SvgIconComponent; +export const CopyrightSharp: SvgIconComponent; +export const CopyrightTwoTone: SvgIconComponent; +export const Coronavirus: SvgIconComponent; +export const CoronavirusOutlined: SvgIconComponent; +export const CoronavirusRounded: SvgIconComponent; +export const CoronavirusSharp: SvgIconComponent; +export const CoronavirusTwoTone: SvgIconComponent; +export const CorporateFare: SvgIconComponent; +export const CorporateFareOutlined: SvgIconComponent; +export const CorporateFareRounded: SvgIconComponent; +export const CorporateFareSharp: SvgIconComponent; +export const CorporateFareTwoTone: SvgIconComponent; +export const Cottage: SvgIconComponent; +export const CottageOutlined: SvgIconComponent; +export const CottageRounded: SvgIconComponent; +export const CottageSharp: SvgIconComponent; +export const CottageTwoTone: SvgIconComponent; +export const Countertops: SvgIconComponent; +export const CountertopsOutlined: SvgIconComponent; +export const CountertopsRounded: SvgIconComponent; +export const CountertopsSharp: SvgIconComponent; +export const CountertopsTwoTone: SvgIconComponent; +export const Create: SvgIconComponent; +export const CreateNewFolder: SvgIconComponent; +export const CreateNewFolderOutlined: SvgIconComponent; +export const CreateNewFolderRounded: SvgIconComponent; +export const CreateNewFolderSharp: SvgIconComponent; +export const CreateNewFolderTwoTone: SvgIconComponent; +export const CreateOutlined: SvgIconComponent; +export const CreateRounded: SvgIconComponent; +export const CreateSharp: SvgIconComponent; +export const CreateTwoTone: SvgIconComponent; +export const CreditCard: SvgIconComponent; +export const CreditCardOff: SvgIconComponent; +export const CreditCardOffOutlined: SvgIconComponent; +export const CreditCardOffRounded: SvgIconComponent; +export const CreditCardOffSharp: SvgIconComponent; +export const CreditCardOffTwoTone: SvgIconComponent; +export const CreditCardOutlined: SvgIconComponent; +export const CreditCardRounded: SvgIconComponent; +export const CreditCardSharp: SvgIconComponent; +export const CreditCardTwoTone: SvgIconComponent; +export const CreditScore: SvgIconComponent; +export const CreditScoreOutlined: SvgIconComponent; +export const CreditScoreRounded: SvgIconComponent; +export const CreditScoreSharp: SvgIconComponent; +export const CreditScoreTwoTone: SvgIconComponent; +export const Crib: SvgIconComponent; +export const CribOutlined: SvgIconComponent; +export const CribRounded: SvgIconComponent; +export const CribSharp: SvgIconComponent; +export const CribTwoTone: SvgIconComponent; +export const CrisisAlert: SvgIconComponent; +export const CrisisAlertOutlined: SvgIconComponent; +export const CrisisAlertRounded: SvgIconComponent; +export const CrisisAlertSharp: SvgIconComponent; +export const CrisisAlertTwoTone: SvgIconComponent; +export const Crop: SvgIconComponent; +export const Crop169: SvgIconComponent; +export const Crop169Outlined: SvgIconComponent; +export const Crop169Rounded: SvgIconComponent; +export const Crop169Sharp: SvgIconComponent; +export const Crop169TwoTone: SvgIconComponent; +export const Crop32: SvgIconComponent; +export const Crop32Outlined: SvgIconComponent; +export const Crop32Rounded: SvgIconComponent; +export const Crop32Sharp: SvgIconComponent; +export const Crop32TwoTone: SvgIconComponent; +export const Crop54: SvgIconComponent; +export const Crop54Outlined: SvgIconComponent; +export const Crop54Rounded: SvgIconComponent; +export const Crop54Sharp: SvgIconComponent; +export const Crop54TwoTone: SvgIconComponent; +export const Crop75: SvgIconComponent; +export const Crop75Outlined: SvgIconComponent; +export const Crop75Rounded: SvgIconComponent; +export const Crop75Sharp: SvgIconComponent; +export const Crop75TwoTone: SvgIconComponent; +export const CropDin: SvgIconComponent; +export const CropDinOutlined: SvgIconComponent; +export const CropDinRounded: SvgIconComponent; +export const CropDinSharp: SvgIconComponent; +export const CropDinTwoTone: SvgIconComponent; +export const CropFree: SvgIconComponent; +export const CropFreeOutlined: SvgIconComponent; +export const CropFreeRounded: SvgIconComponent; +export const CropFreeSharp: SvgIconComponent; +export const CropFreeTwoTone: SvgIconComponent; +export const CropLandscape: SvgIconComponent; +export const CropLandscapeOutlined: SvgIconComponent; +export const CropLandscapeRounded: SvgIconComponent; +export const CropLandscapeSharp: SvgIconComponent; +export const CropLandscapeTwoTone: SvgIconComponent; +export const CropOriginal: SvgIconComponent; +export const CropOriginalOutlined: SvgIconComponent; +export const CropOriginalRounded: SvgIconComponent; +export const CropOriginalSharp: SvgIconComponent; +export const CropOriginalTwoTone: SvgIconComponent; +export const CropOutlined: SvgIconComponent; +export const CropPortrait: SvgIconComponent; +export const CropPortraitOutlined: SvgIconComponent; +export const CropPortraitRounded: SvgIconComponent; +export const CropPortraitSharp: SvgIconComponent; +export const CropPortraitTwoTone: SvgIconComponent; +export const CropRotate: SvgIconComponent; +export const CropRotateOutlined: SvgIconComponent; +export const CropRotateRounded: SvgIconComponent; +export const CropRotateSharp: SvgIconComponent; +export const CropRotateTwoTone: SvgIconComponent; +export const CropRounded: SvgIconComponent; +export const CropSharp: SvgIconComponent; +export const CropSquare: SvgIconComponent; +export const CropSquareOutlined: SvgIconComponent; +export const CropSquareRounded: SvgIconComponent; +export const CropSquareSharp: SvgIconComponent; +export const CropSquareTwoTone: SvgIconComponent; +export const CropTwoTone: SvgIconComponent; +export const Css: SvgIconComponent; +export const CssOutlined: SvgIconComponent; +export const CssRounded: SvgIconComponent; +export const CssSharp: SvgIconComponent; +export const CssTwoTone: SvgIconComponent; +export const CurrencyBitcoin: SvgIconComponent; +export const CurrencyBitcoinOutlined: SvgIconComponent; +export const CurrencyBitcoinRounded: SvgIconComponent; +export const CurrencyBitcoinSharp: SvgIconComponent; +export const CurrencyBitcoinTwoTone: SvgIconComponent; +export const CurrencyExchange: SvgIconComponent; +export const CurrencyExchangeOutlined: SvgIconComponent; +export const CurrencyExchangeRounded: SvgIconComponent; +export const CurrencyExchangeSharp: SvgIconComponent; +export const CurrencyExchangeTwoTone: SvgIconComponent; +export const CurrencyFranc: SvgIconComponent; +export const CurrencyFrancOutlined: SvgIconComponent; +export const CurrencyFrancRounded: SvgIconComponent; +export const CurrencyFrancSharp: SvgIconComponent; +export const CurrencyFrancTwoTone: SvgIconComponent; +export const CurrencyLira: SvgIconComponent; +export const CurrencyLiraOutlined: SvgIconComponent; +export const CurrencyLiraRounded: SvgIconComponent; +export const CurrencyLiraSharp: SvgIconComponent; +export const CurrencyLiraTwoTone: SvgIconComponent; +export const CurrencyPound: SvgIconComponent; +export const CurrencyPoundOutlined: SvgIconComponent; +export const CurrencyPoundRounded: SvgIconComponent; +export const CurrencyPoundSharp: SvgIconComponent; +export const CurrencyPoundTwoTone: SvgIconComponent; +export const CurrencyRuble: SvgIconComponent; +export const CurrencyRubleOutlined: SvgIconComponent; +export const CurrencyRubleRounded: SvgIconComponent; +export const CurrencyRubleSharp: SvgIconComponent; +export const CurrencyRubleTwoTone: SvgIconComponent; +export const CurrencyRupee: SvgIconComponent; +export const CurrencyRupeeOutlined: SvgIconComponent; +export const CurrencyRupeeRounded: SvgIconComponent; +export const CurrencyRupeeSharp: SvgIconComponent; +export const CurrencyRupeeTwoTone: SvgIconComponent; +export const CurrencyYen: SvgIconComponent; +export const CurrencyYenOutlined: SvgIconComponent; +export const CurrencyYenRounded: SvgIconComponent; +export const CurrencyYenSharp: SvgIconComponent; +export const CurrencyYenTwoTone: SvgIconComponent; +export const CurrencyYuan: SvgIconComponent; +export const CurrencyYuanOutlined: SvgIconComponent; +export const CurrencyYuanRounded: SvgIconComponent; +export const CurrencyYuanSharp: SvgIconComponent; +export const CurrencyYuanTwoTone: SvgIconComponent; +export const Curtains: SvgIconComponent; +export const CurtainsClosed: SvgIconComponent; +export const CurtainsClosedOutlined: SvgIconComponent; +export const CurtainsClosedRounded: SvgIconComponent; +export const CurtainsClosedSharp: SvgIconComponent; +export const CurtainsClosedTwoTone: SvgIconComponent; +export const CurtainsOutlined: SvgIconComponent; +export const CurtainsRounded: SvgIconComponent; +export const CurtainsSharp: SvgIconComponent; +export const CurtainsTwoTone: SvgIconComponent; +export const Cyclone: SvgIconComponent; +export const CycloneOutlined: SvgIconComponent; +export const CycloneRounded: SvgIconComponent; +export const CycloneSharp: SvgIconComponent; +export const CycloneTwoTone: SvgIconComponent; +export const Dangerous: SvgIconComponent; +export const DangerousOutlined: SvgIconComponent; +export const DangerousRounded: SvgIconComponent; +export const DangerousSharp: SvgIconComponent; +export const DangerousTwoTone: SvgIconComponent; +export const DarkMode: SvgIconComponent; +export const DarkModeOutlined: SvgIconComponent; +export const DarkModeRounded: SvgIconComponent; +export const DarkModeSharp: SvgIconComponent; +export const DarkModeTwoTone: SvgIconComponent; +export const Dashboard: SvgIconComponent; +export const DashboardCustomize: SvgIconComponent; +export const DashboardCustomizeOutlined: SvgIconComponent; +export const DashboardCustomizeRounded: SvgIconComponent; +export const DashboardCustomizeSharp: SvgIconComponent; +export const DashboardCustomizeTwoTone: SvgIconComponent; +export const DashboardOutlined: SvgIconComponent; +export const DashboardRounded: SvgIconComponent; +export const DashboardSharp: SvgIconComponent; +export const DashboardTwoTone: SvgIconComponent; +export const DataArray: SvgIconComponent; +export const DataArrayOutlined: SvgIconComponent; +export const DataArrayRounded: SvgIconComponent; +export const DataArraySharp: SvgIconComponent; +export const DataArrayTwoTone: SvgIconComponent; +export const DataObject: SvgIconComponent; +export const DataObjectOutlined: SvgIconComponent; +export const DataObjectRounded: SvgIconComponent; +export const DataObjectSharp: SvgIconComponent; +export const DataObjectTwoTone: SvgIconComponent; +export const DataSaverOff: SvgIconComponent; +export const DataSaverOffOutlined: SvgIconComponent; +export const DataSaverOffRounded: SvgIconComponent; +export const DataSaverOffSharp: SvgIconComponent; +export const DataSaverOffTwoTone: SvgIconComponent; +export const DataSaverOn: SvgIconComponent; +export const DataSaverOnOutlined: SvgIconComponent; +export const DataSaverOnRounded: SvgIconComponent; +export const DataSaverOnSharp: SvgIconComponent; +export const DataSaverOnTwoTone: SvgIconComponent; +export const DataThresholding: SvgIconComponent; +export const DataThresholdingOutlined: SvgIconComponent; +export const DataThresholdingRounded: SvgIconComponent; +export const DataThresholdingSharp: SvgIconComponent; +export const DataThresholdingTwoTone: SvgIconComponent; +export const DataUsage: SvgIconComponent; +export const DataUsageOutlined: SvgIconComponent; +export const DataUsageRounded: SvgIconComponent; +export const DataUsageSharp: SvgIconComponent; +export const DataUsageTwoTone: SvgIconComponent; +export const Dataset: SvgIconComponent; +export const DatasetLinked: SvgIconComponent; +export const DatasetLinkedOutlined: SvgIconComponent; +export const DatasetLinkedRounded: SvgIconComponent; +export const DatasetLinkedSharp: SvgIconComponent; +export const DatasetLinkedTwoTone: SvgIconComponent; +export const DatasetOutlined: SvgIconComponent; +export const DatasetRounded: SvgIconComponent; +export const DatasetSharp: SvgIconComponent; +export const DatasetTwoTone: SvgIconComponent; +export const DateRange: SvgIconComponent; +export const DateRangeOutlined: SvgIconComponent; +export const DateRangeRounded: SvgIconComponent; +export const DateRangeSharp: SvgIconComponent; +export const DateRangeTwoTone: SvgIconComponent; +export const Deblur: SvgIconComponent; +export const DeblurOutlined: SvgIconComponent; +export const DeblurRounded: SvgIconComponent; +export const DeblurSharp: SvgIconComponent; +export const DeblurTwoTone: SvgIconComponent; +export const Deck: SvgIconComponent; +export const DeckOutlined: SvgIconComponent; +export const DeckRounded: SvgIconComponent; +export const DeckSharp: SvgIconComponent; +export const DeckTwoTone: SvgIconComponent; +export const Dehaze: SvgIconComponent; +export const DehazeOutlined: SvgIconComponent; +export const DehazeRounded: SvgIconComponent; +export const DehazeSharp: SvgIconComponent; +export const DehazeTwoTone: SvgIconComponent; +export const Delete: SvgIconComponent; +export const DeleteForever: SvgIconComponent; +export const DeleteForeverOutlined: SvgIconComponent; +export const DeleteForeverRounded: SvgIconComponent; +export const DeleteForeverSharp: SvgIconComponent; +export const DeleteForeverTwoTone: SvgIconComponent; +export const DeleteOutline: SvgIconComponent; +export const DeleteOutlineOutlined: SvgIconComponent; +export const DeleteOutlineRounded: SvgIconComponent; +export const DeleteOutlineSharp: SvgIconComponent; +export const DeleteOutlineTwoTone: SvgIconComponent; +export const DeleteOutlined: SvgIconComponent; +export const DeleteRounded: SvgIconComponent; +export const DeleteSharp: SvgIconComponent; +export const DeleteSweep: SvgIconComponent; +export const DeleteSweepOutlined: SvgIconComponent; +export const DeleteSweepRounded: SvgIconComponent; +export const DeleteSweepSharp: SvgIconComponent; +export const DeleteSweepTwoTone: SvgIconComponent; +export const DeleteTwoTone: SvgIconComponent; +export const DeliveryDining: SvgIconComponent; +export const DeliveryDiningOutlined: SvgIconComponent; +export const DeliveryDiningRounded: SvgIconComponent; +export const DeliveryDiningSharp: SvgIconComponent; +export const DeliveryDiningTwoTone: SvgIconComponent; +export const DensityLarge: SvgIconComponent; +export const DensityLargeOutlined: SvgIconComponent; +export const DensityLargeRounded: SvgIconComponent; +export const DensityLargeSharp: SvgIconComponent; +export const DensityLargeTwoTone: SvgIconComponent; +export const DensityMedium: SvgIconComponent; +export const DensityMediumOutlined: SvgIconComponent; +export const DensityMediumRounded: SvgIconComponent; +export const DensityMediumSharp: SvgIconComponent; +export const DensityMediumTwoTone: SvgIconComponent; +export const DensitySmall: SvgIconComponent; +export const DensitySmallOutlined: SvgIconComponent; +export const DensitySmallRounded: SvgIconComponent; +export const DensitySmallSharp: SvgIconComponent; +export const DensitySmallTwoTone: SvgIconComponent; +export const DepartureBoard: SvgIconComponent; +export const DepartureBoardOutlined: SvgIconComponent; +export const DepartureBoardRounded: SvgIconComponent; +export const DepartureBoardSharp: SvgIconComponent; +export const DepartureBoardTwoTone: SvgIconComponent; +export const Description: SvgIconComponent; +export const DescriptionOutlined: SvgIconComponent; +export const DescriptionRounded: SvgIconComponent; +export const DescriptionSharp: SvgIconComponent; +export const DescriptionTwoTone: SvgIconComponent; +export const Deselect: SvgIconComponent; +export const DeselectOutlined: SvgIconComponent; +export const DeselectRounded: SvgIconComponent; +export const DeselectSharp: SvgIconComponent; +export const DeselectTwoTone: SvgIconComponent; +export const DesignServices: SvgIconComponent; +export const DesignServicesOutlined: SvgIconComponent; +export const DesignServicesRounded: SvgIconComponent; +export const DesignServicesSharp: SvgIconComponent; +export const DesignServicesTwoTone: SvgIconComponent; +export const Desk: SvgIconComponent; +export const DeskOutlined: SvgIconComponent; +export const DeskRounded: SvgIconComponent; +export const DeskSharp: SvgIconComponent; +export const DeskTwoTone: SvgIconComponent; +export const DesktopAccessDisabled: SvgIconComponent; +export const DesktopAccessDisabledOutlined: SvgIconComponent; +export const DesktopAccessDisabledRounded: SvgIconComponent; +export const DesktopAccessDisabledSharp: SvgIconComponent; +export const DesktopAccessDisabledTwoTone: SvgIconComponent; +export const DesktopMac: SvgIconComponent; +export const DesktopMacOutlined: SvgIconComponent; +export const DesktopMacRounded: SvgIconComponent; +export const DesktopMacSharp: SvgIconComponent; +export const DesktopMacTwoTone: SvgIconComponent; +export const DesktopWindows: SvgIconComponent; +export const DesktopWindowsOutlined: SvgIconComponent; +export const DesktopWindowsRounded: SvgIconComponent; +export const DesktopWindowsSharp: SvgIconComponent; +export const DesktopWindowsTwoTone: SvgIconComponent; +export const Details: SvgIconComponent; +export const DetailsOutlined: SvgIconComponent; +export const DetailsRounded: SvgIconComponent; +export const DetailsSharp: SvgIconComponent; +export const DetailsTwoTone: SvgIconComponent; +export const DeveloperBoard: SvgIconComponent; +export const DeveloperBoardOff: SvgIconComponent; +export const DeveloperBoardOffOutlined: SvgIconComponent; +export const DeveloperBoardOffRounded: SvgIconComponent; +export const DeveloperBoardOffSharp: SvgIconComponent; +export const DeveloperBoardOffTwoTone: SvgIconComponent; +export const DeveloperBoardOutlined: SvgIconComponent; +export const DeveloperBoardRounded: SvgIconComponent; +export const DeveloperBoardSharp: SvgIconComponent; +export const DeveloperBoardTwoTone: SvgIconComponent; +export const DeveloperMode: SvgIconComponent; +export const DeveloperModeOutlined: SvgIconComponent; +export const DeveloperModeRounded: SvgIconComponent; +export const DeveloperModeSharp: SvgIconComponent; +export const DeveloperModeTwoTone: SvgIconComponent; +export const DeviceHub: SvgIconComponent; +export const DeviceHubOutlined: SvgIconComponent; +export const DeviceHubRounded: SvgIconComponent; +export const DeviceHubSharp: SvgIconComponent; +export const DeviceHubTwoTone: SvgIconComponent; +export const DeviceThermostat: SvgIconComponent; +export const DeviceThermostatOutlined: SvgIconComponent; +export const DeviceThermostatRounded: SvgIconComponent; +export const DeviceThermostatSharp: SvgIconComponent; +export const DeviceThermostatTwoTone: SvgIconComponent; +export const DeviceUnknown: SvgIconComponent; +export const DeviceUnknownOutlined: SvgIconComponent; +export const DeviceUnknownRounded: SvgIconComponent; +export const DeviceUnknownSharp: SvgIconComponent; +export const DeviceUnknownTwoTone: SvgIconComponent; +export const Devices: SvgIconComponent; +export const DevicesFold: SvgIconComponent; +export const DevicesFoldOutlined: SvgIconComponent; +export const DevicesFoldRounded: SvgIconComponent; +export const DevicesFoldSharp: SvgIconComponent; +export const DevicesFoldTwoTone: SvgIconComponent; +export const DevicesOther: SvgIconComponent; +export const DevicesOtherOutlined: SvgIconComponent; +export const DevicesOtherRounded: SvgIconComponent; +export const DevicesOtherSharp: SvgIconComponent; +export const DevicesOtherTwoTone: SvgIconComponent; +export const DevicesOutlined: SvgIconComponent; +export const DevicesRounded: SvgIconComponent; +export const DevicesSharp: SvgIconComponent; +export const DevicesTwoTone: SvgIconComponent; +export const DialerSip: SvgIconComponent; +export const DialerSipOutlined: SvgIconComponent; +export const DialerSipRounded: SvgIconComponent; +export const DialerSipSharp: SvgIconComponent; +export const DialerSipTwoTone: SvgIconComponent; +export const Dialpad: SvgIconComponent; +export const DialpadOutlined: SvgIconComponent; +export const DialpadRounded: SvgIconComponent; +export const DialpadSharp: SvgIconComponent; +export const DialpadTwoTone: SvgIconComponent; +export const Diamond: SvgIconComponent; +export const DiamondOutlined: SvgIconComponent; +export const DiamondRounded: SvgIconComponent; +export const DiamondSharp: SvgIconComponent; +export const DiamondTwoTone: SvgIconComponent; +export const Difference: SvgIconComponent; +export const DifferenceOutlined: SvgIconComponent; +export const DifferenceRounded: SvgIconComponent; +export const DifferenceSharp: SvgIconComponent; +export const DifferenceTwoTone: SvgIconComponent; +export const Dining: SvgIconComponent; +export const DiningOutlined: SvgIconComponent; +export const DiningRounded: SvgIconComponent; +export const DiningSharp: SvgIconComponent; +export const DiningTwoTone: SvgIconComponent; +export const DinnerDining: SvgIconComponent; +export const DinnerDiningOutlined: SvgIconComponent; +export const DinnerDiningRounded: SvgIconComponent; +export const DinnerDiningSharp: SvgIconComponent; +export const DinnerDiningTwoTone: SvgIconComponent; +export const Directions: SvgIconComponent; +export const DirectionsBike: SvgIconComponent; +export const DirectionsBikeOutlined: SvgIconComponent; +export const DirectionsBikeRounded: SvgIconComponent; +export const DirectionsBikeSharp: SvgIconComponent; +export const DirectionsBikeTwoTone: SvgIconComponent; +export const DirectionsBoat: SvgIconComponent; +export const DirectionsBoatFilled: SvgIconComponent; +export const DirectionsBoatFilledOutlined: SvgIconComponent; +export const DirectionsBoatFilledRounded: SvgIconComponent; +export const DirectionsBoatFilledSharp: SvgIconComponent; +export const DirectionsBoatFilledTwoTone: SvgIconComponent; +export const DirectionsBoatOutlined: SvgIconComponent; +export const DirectionsBoatRounded: SvgIconComponent; +export const DirectionsBoatSharp: SvgIconComponent; +export const DirectionsBoatTwoTone: SvgIconComponent; +export const DirectionsBus: SvgIconComponent; +export const DirectionsBusFilled: SvgIconComponent; +export const DirectionsBusFilledOutlined: SvgIconComponent; +export const DirectionsBusFilledRounded: SvgIconComponent; +export const DirectionsBusFilledSharp: SvgIconComponent; +export const DirectionsBusFilledTwoTone: SvgIconComponent; +export const DirectionsBusOutlined: SvgIconComponent; +export const DirectionsBusRounded: SvgIconComponent; +export const DirectionsBusSharp: SvgIconComponent; +export const DirectionsBusTwoTone: SvgIconComponent; +export const DirectionsCar: SvgIconComponent; +export const DirectionsCarFilled: SvgIconComponent; +export const DirectionsCarFilledOutlined: SvgIconComponent; +export const DirectionsCarFilledRounded: SvgIconComponent; +export const DirectionsCarFilledSharp: SvgIconComponent; +export const DirectionsCarFilledTwoTone: SvgIconComponent; +export const DirectionsCarOutlined: SvgIconComponent; +export const DirectionsCarRounded: SvgIconComponent; +export const DirectionsCarSharp: SvgIconComponent; +export const DirectionsCarTwoTone: SvgIconComponent; +export const DirectionsOff: SvgIconComponent; +export const DirectionsOffOutlined: SvgIconComponent; +export const DirectionsOffRounded: SvgIconComponent; +export const DirectionsOffSharp: SvgIconComponent; +export const DirectionsOffTwoTone: SvgIconComponent; +export const DirectionsOutlined: SvgIconComponent; +export const DirectionsRailway: SvgIconComponent; +export const DirectionsRailwayFilled: SvgIconComponent; +export const DirectionsRailwayFilledOutlined: SvgIconComponent; +export const DirectionsRailwayFilledRounded: SvgIconComponent; +export const DirectionsRailwayFilledSharp: SvgIconComponent; +export const DirectionsRailwayFilledTwoTone: SvgIconComponent; +export const DirectionsRailwayOutlined: SvgIconComponent; +export const DirectionsRailwayRounded: SvgIconComponent; +export const DirectionsRailwaySharp: SvgIconComponent; +export const DirectionsRailwayTwoTone: SvgIconComponent; +export const DirectionsRounded: SvgIconComponent; +export const DirectionsRun: SvgIconComponent; +export const DirectionsRunOutlined: SvgIconComponent; +export const DirectionsRunRounded: SvgIconComponent; +export const DirectionsRunSharp: SvgIconComponent; +export const DirectionsRunTwoTone: SvgIconComponent; +export const DirectionsSharp: SvgIconComponent; +export const DirectionsSubway: SvgIconComponent; +export const DirectionsSubwayFilled: SvgIconComponent; +export const DirectionsSubwayFilledOutlined: SvgIconComponent; +export const DirectionsSubwayFilledRounded: SvgIconComponent; +export const DirectionsSubwayFilledSharp: SvgIconComponent; +export const DirectionsSubwayFilledTwoTone: SvgIconComponent; +export const DirectionsSubwayOutlined: SvgIconComponent; +export const DirectionsSubwayRounded: SvgIconComponent; +export const DirectionsSubwaySharp: SvgIconComponent; +export const DirectionsSubwayTwoTone: SvgIconComponent; +export const DirectionsTransit: SvgIconComponent; +export const DirectionsTransitFilled: SvgIconComponent; +export const DirectionsTransitFilledOutlined: SvgIconComponent; +export const DirectionsTransitFilledRounded: SvgIconComponent; +export const DirectionsTransitFilledSharp: SvgIconComponent; +export const DirectionsTransitFilledTwoTone: SvgIconComponent; +export const DirectionsTransitOutlined: SvgIconComponent; +export const DirectionsTransitRounded: SvgIconComponent; +export const DirectionsTransitSharp: SvgIconComponent; +export const DirectionsTransitTwoTone: SvgIconComponent; +export const DirectionsTwoTone: SvgIconComponent; +export const DirectionsWalk: SvgIconComponent; +export const DirectionsWalkOutlined: SvgIconComponent; +export const DirectionsWalkRounded: SvgIconComponent; +export const DirectionsWalkSharp: SvgIconComponent; +export const DirectionsWalkTwoTone: SvgIconComponent; +export const DirtyLens: SvgIconComponent; +export const DirtyLensOutlined: SvgIconComponent; +export const DirtyLensRounded: SvgIconComponent; +export const DirtyLensSharp: SvgIconComponent; +export const DirtyLensTwoTone: SvgIconComponent; +export const DisabledByDefault: SvgIconComponent; +export const DisabledByDefaultOutlined: SvgIconComponent; +export const DisabledByDefaultRounded: SvgIconComponent; +export const DisabledByDefaultSharp: SvgIconComponent; +export const DisabledByDefaultTwoTone: SvgIconComponent; +export const DiscFull: SvgIconComponent; +export const DiscFullOutlined: SvgIconComponent; +export const DiscFullRounded: SvgIconComponent; +export const DiscFullSharp: SvgIconComponent; +export const DiscFullTwoTone: SvgIconComponent; +export const Discount: SvgIconComponent; +export const DiscountOutlined: SvgIconComponent; +export const DiscountRounded: SvgIconComponent; +export const DiscountSharp: SvgIconComponent; +export const DiscountTwoTone: SvgIconComponent; +export const DisplaySettings: SvgIconComponent; +export const DisplaySettingsOutlined: SvgIconComponent; +export const DisplaySettingsRounded: SvgIconComponent; +export const DisplaySettingsSharp: SvgIconComponent; +export const DisplaySettingsTwoTone: SvgIconComponent; +export const Diversity1: SvgIconComponent; +export const Diversity1Outlined: SvgIconComponent; +export const Diversity1Rounded: SvgIconComponent; +export const Diversity1Sharp: SvgIconComponent; +export const Diversity1TwoTone: SvgIconComponent; +export const Diversity2: SvgIconComponent; +export const Diversity2Outlined: SvgIconComponent; +export const Diversity2Rounded: SvgIconComponent; +export const Diversity2Sharp: SvgIconComponent; +export const Diversity2TwoTone: SvgIconComponent; +export const Diversity3: SvgIconComponent; +export const Diversity3Outlined: SvgIconComponent; +export const Diversity3Rounded: SvgIconComponent; +export const Diversity3Sharp: SvgIconComponent; +export const Diversity3TwoTone: SvgIconComponent; +export const Dns: SvgIconComponent; +export const DnsOutlined: SvgIconComponent; +export const DnsRounded: SvgIconComponent; +export const DnsSharp: SvgIconComponent; +export const DnsTwoTone: SvgIconComponent; +export const DoDisturb: SvgIconComponent; +export const DoDisturbAlt: SvgIconComponent; +export const DoDisturbAltOutlined: SvgIconComponent; +export const DoDisturbAltRounded: SvgIconComponent; +export const DoDisturbAltSharp: SvgIconComponent; +export const DoDisturbAltTwoTone: SvgIconComponent; +export const DoDisturbOff: SvgIconComponent; +export const DoDisturbOffOutlined: SvgIconComponent; +export const DoDisturbOffRounded: SvgIconComponent; +export const DoDisturbOffSharp: SvgIconComponent; +export const DoDisturbOffTwoTone: SvgIconComponent; +export const DoDisturbOn: SvgIconComponent; +export const DoDisturbOnOutlined: SvgIconComponent; +export const DoDisturbOnRounded: SvgIconComponent; +export const DoDisturbOnSharp: SvgIconComponent; +export const DoDisturbOnTwoTone: SvgIconComponent; +export const DoDisturbOutlined: SvgIconComponent; +export const DoDisturbRounded: SvgIconComponent; +export const DoDisturbSharp: SvgIconComponent; +export const DoDisturbTwoTone: SvgIconComponent; +export const DoNotDisturb: SvgIconComponent; +export const DoNotDisturbAlt: SvgIconComponent; +export const DoNotDisturbAltOutlined: SvgIconComponent; +export const DoNotDisturbAltRounded: SvgIconComponent; +export const DoNotDisturbAltSharp: SvgIconComponent; +export const DoNotDisturbAltTwoTone: SvgIconComponent; +export const DoNotDisturbOff: SvgIconComponent; +export const DoNotDisturbOffOutlined: SvgIconComponent; +export const DoNotDisturbOffRounded: SvgIconComponent; +export const DoNotDisturbOffSharp: SvgIconComponent; +export const DoNotDisturbOffTwoTone: SvgIconComponent; +export const DoNotDisturbOn: SvgIconComponent; +export const DoNotDisturbOnOutlined: SvgIconComponent; +export const DoNotDisturbOnRounded: SvgIconComponent; +export const DoNotDisturbOnSharp: SvgIconComponent; +export const DoNotDisturbOnTotalSilence: SvgIconComponent; +export const DoNotDisturbOnTotalSilenceOutlined: SvgIconComponent; +export const DoNotDisturbOnTotalSilenceRounded: SvgIconComponent; +export const DoNotDisturbOnTotalSilenceSharp: SvgIconComponent; +export const DoNotDisturbOnTotalSilenceTwoTone: SvgIconComponent; +export const DoNotDisturbOnTwoTone: SvgIconComponent; +export const DoNotDisturbOutlined: SvgIconComponent; +export const DoNotDisturbRounded: SvgIconComponent; +export const DoNotDisturbSharp: SvgIconComponent; +export const DoNotDisturbTwoTone: SvgIconComponent; +export const DoNotStep: SvgIconComponent; +export const DoNotStepOutlined: SvgIconComponent; +export const DoNotStepRounded: SvgIconComponent; +export const DoNotStepSharp: SvgIconComponent; +export const DoNotStepTwoTone: SvgIconComponent; +export const DoNotTouch: SvgIconComponent; +export const DoNotTouchOutlined: SvgIconComponent; +export const DoNotTouchRounded: SvgIconComponent; +export const DoNotTouchSharp: SvgIconComponent; +export const DoNotTouchTwoTone: SvgIconComponent; +export const Dock: SvgIconComponent; +export const DockOutlined: SvgIconComponent; +export const DockRounded: SvgIconComponent; +export const DockSharp: SvgIconComponent; +export const DockTwoTone: SvgIconComponent; +export const DocumentScanner: SvgIconComponent; +export const DocumentScannerOutlined: SvgIconComponent; +export const DocumentScannerRounded: SvgIconComponent; +export const DocumentScannerSharp: SvgIconComponent; +export const DocumentScannerTwoTone: SvgIconComponent; +export const Domain: SvgIconComponent; +export const DomainAdd: SvgIconComponent; +export const DomainAddOutlined: SvgIconComponent; +export const DomainAddRounded: SvgIconComponent; +export const DomainAddSharp: SvgIconComponent; +export const DomainAddTwoTone: SvgIconComponent; +export const DomainDisabled: SvgIconComponent; +export const DomainDisabledOutlined: SvgIconComponent; +export const DomainDisabledRounded: SvgIconComponent; +export const DomainDisabledSharp: SvgIconComponent; +export const DomainDisabledTwoTone: SvgIconComponent; +export const DomainOutlined: SvgIconComponent; +export const DomainRounded: SvgIconComponent; +export const DomainSharp: SvgIconComponent; +export const DomainTwoTone: SvgIconComponent; +export const DomainVerification: SvgIconComponent; +export const DomainVerificationOutlined: SvgIconComponent; +export const DomainVerificationRounded: SvgIconComponent; +export const DomainVerificationSharp: SvgIconComponent; +export const DomainVerificationTwoTone: SvgIconComponent; +export const Done: SvgIconComponent; +export const DoneAll: SvgIconComponent; +export const DoneAllOutlined: SvgIconComponent; +export const DoneAllRounded: SvgIconComponent; +export const DoneAllSharp: SvgIconComponent; +export const DoneAllTwoTone: SvgIconComponent; +export const DoneOutline: SvgIconComponent; +export const DoneOutlineOutlined: SvgIconComponent; +export const DoneOutlineRounded: SvgIconComponent; +export const DoneOutlineSharp: SvgIconComponent; +export const DoneOutlineTwoTone: SvgIconComponent; +export const DoneOutlined: SvgIconComponent; +export const DoneRounded: SvgIconComponent; +export const DoneSharp: SvgIconComponent; +export const DoneTwoTone: SvgIconComponent; +export const DonutLarge: SvgIconComponent; +export const DonutLargeOutlined: SvgIconComponent; +export const DonutLargeRounded: SvgIconComponent; +export const DonutLargeSharp: SvgIconComponent; +export const DonutLargeTwoTone: SvgIconComponent; +export const DonutSmall: SvgIconComponent; +export const DonutSmallOutlined: SvgIconComponent; +export const DonutSmallRounded: SvgIconComponent; +export const DonutSmallSharp: SvgIconComponent; +export const DonutSmallTwoTone: SvgIconComponent; +export const DoorBack: SvgIconComponent; +export const DoorBackOutlined: SvgIconComponent; +export const DoorBackRounded: SvgIconComponent; +export const DoorBackSharp: SvgIconComponent; +export const DoorBackTwoTone: SvgIconComponent; +export const DoorFront: SvgIconComponent; +export const DoorFrontOutlined: SvgIconComponent; +export const DoorFrontRounded: SvgIconComponent; +export const DoorFrontSharp: SvgIconComponent; +export const DoorFrontTwoTone: SvgIconComponent; +export const DoorSliding: SvgIconComponent; +export const DoorSlidingOutlined: SvgIconComponent; +export const DoorSlidingRounded: SvgIconComponent; +export const DoorSlidingSharp: SvgIconComponent; +export const DoorSlidingTwoTone: SvgIconComponent; +export const Doorbell: SvgIconComponent; +export const DoorbellOutlined: SvgIconComponent; +export const DoorbellRounded: SvgIconComponent; +export const DoorbellSharp: SvgIconComponent; +export const DoorbellTwoTone: SvgIconComponent; +export const DoubleArrow: SvgIconComponent; +export const DoubleArrowOutlined: SvgIconComponent; +export const DoubleArrowRounded: SvgIconComponent; +export const DoubleArrowSharp: SvgIconComponent; +export const DoubleArrowTwoTone: SvgIconComponent; +export const DownhillSkiing: SvgIconComponent; +export const DownhillSkiingOutlined: SvgIconComponent; +export const DownhillSkiingRounded: SvgIconComponent; +export const DownhillSkiingSharp: SvgIconComponent; +export const DownhillSkiingTwoTone: SvgIconComponent; +export const Download: SvgIconComponent; +export const DownloadDone: SvgIconComponent; +export const DownloadDoneOutlined: SvgIconComponent; +export const DownloadDoneRounded: SvgIconComponent; +export const DownloadDoneSharp: SvgIconComponent; +export const DownloadDoneTwoTone: SvgIconComponent; +export const DownloadForOffline: SvgIconComponent; +export const DownloadForOfflineOutlined: SvgIconComponent; +export const DownloadForOfflineRounded: SvgIconComponent; +export const DownloadForOfflineSharp: SvgIconComponent; +export const DownloadForOfflineTwoTone: SvgIconComponent; +export const DownloadOutlined: SvgIconComponent; +export const DownloadRounded: SvgIconComponent; +export const DownloadSharp: SvgIconComponent; +export const DownloadTwoTone: SvgIconComponent; +export const Downloading: SvgIconComponent; +export const DownloadingOutlined: SvgIconComponent; +export const DownloadingRounded: SvgIconComponent; +export const DownloadingSharp: SvgIconComponent; +export const DownloadingTwoTone: SvgIconComponent; +export const Drafts: SvgIconComponent; +export const DraftsOutlined: SvgIconComponent; +export const DraftsRounded: SvgIconComponent; +export const DraftsSharp: SvgIconComponent; +export const DraftsTwoTone: SvgIconComponent; +export const DragHandle: SvgIconComponent; +export const DragHandleOutlined: SvgIconComponent; +export const DragHandleRounded: SvgIconComponent; +export const DragHandleSharp: SvgIconComponent; +export const DragHandleTwoTone: SvgIconComponent; +export const DragIndicator: SvgIconComponent; +export const DragIndicatorOutlined: SvgIconComponent; +export const DragIndicatorRounded: SvgIconComponent; +export const DragIndicatorSharp: SvgIconComponent; +export const DragIndicatorTwoTone: SvgIconComponent; +export const Draw: SvgIconComponent; +export const DrawOutlined: SvgIconComponent; +export const DrawRounded: SvgIconComponent; +export const DrawSharp: SvgIconComponent; +export const DrawTwoTone: SvgIconComponent; +export const DriveEta: SvgIconComponent; +export const DriveEtaOutlined: SvgIconComponent; +export const DriveEtaRounded: SvgIconComponent; +export const DriveEtaSharp: SvgIconComponent; +export const DriveEtaTwoTone: SvgIconComponent; +export const DriveFileMove: SvgIconComponent; +export const DriveFileMoveOutlined: SvgIconComponent; +export const DriveFileMoveRounded: SvgIconComponent; +export const DriveFileMoveSharp: SvgIconComponent; +export const DriveFileMoveTwoTone: SvgIconComponent; +export const DriveFileRenameOutline: SvgIconComponent; +export const DriveFileRenameOutlineOutlined: SvgIconComponent; +export const DriveFileRenameOutlineRounded: SvgIconComponent; +export const DriveFileRenameOutlineSharp: SvgIconComponent; +export const DriveFileRenameOutlineTwoTone: SvgIconComponent; +export const DriveFolderUpload: SvgIconComponent; +export const DriveFolderUploadOutlined: SvgIconComponent; +export const DriveFolderUploadRounded: SvgIconComponent; +export const DriveFolderUploadSharp: SvgIconComponent; +export const DriveFolderUploadTwoTone: SvgIconComponent; +export const Dry: SvgIconComponent; +export const DryCleaning: SvgIconComponent; +export const DryCleaningOutlined: SvgIconComponent; +export const DryCleaningRounded: SvgIconComponent; +export const DryCleaningSharp: SvgIconComponent; +export const DryCleaningTwoTone: SvgIconComponent; +export const DryOutlined: SvgIconComponent; +export const DryRounded: SvgIconComponent; +export const DrySharp: SvgIconComponent; +export const DryTwoTone: SvgIconComponent; +export const Duo: SvgIconComponent; +export const DuoOutlined: SvgIconComponent; +export const DuoRounded: SvgIconComponent; +export const DuoSharp: SvgIconComponent; +export const DuoTwoTone: SvgIconComponent; +export const Dvr: SvgIconComponent; +export const DvrOutlined: SvgIconComponent; +export const DvrRounded: SvgIconComponent; +export const DvrSharp: SvgIconComponent; +export const DvrTwoTone: SvgIconComponent; +export const DynamicFeed: SvgIconComponent; +export const DynamicFeedOutlined: SvgIconComponent; +export const DynamicFeedRounded: SvgIconComponent; +export const DynamicFeedSharp: SvgIconComponent; +export const DynamicFeedTwoTone: SvgIconComponent; +export const DynamicForm: SvgIconComponent; +export const DynamicFormOutlined: SvgIconComponent; +export const DynamicFormRounded: SvgIconComponent; +export const DynamicFormSharp: SvgIconComponent; +export const DynamicFormTwoTone: SvgIconComponent; +export const EMobiledata: SvgIconComponent; +export const EMobiledataOutlined: SvgIconComponent; +export const EMobiledataRounded: SvgIconComponent; +export const EMobiledataSharp: SvgIconComponent; +export const EMobiledataTwoTone: SvgIconComponent; +export const Earbuds: SvgIconComponent; +export const EarbudsBattery: SvgIconComponent; +export const EarbudsBatteryOutlined: SvgIconComponent; +export const EarbudsBatteryRounded: SvgIconComponent; +export const EarbudsBatterySharp: SvgIconComponent; +export const EarbudsBatteryTwoTone: SvgIconComponent; +export const EarbudsOutlined: SvgIconComponent; +export const EarbudsRounded: SvgIconComponent; +export const EarbudsSharp: SvgIconComponent; +export const EarbudsTwoTone: SvgIconComponent; +export const East: SvgIconComponent; +export const EastOutlined: SvgIconComponent; +export const EastRounded: SvgIconComponent; +export const EastSharp: SvgIconComponent; +export const EastTwoTone: SvgIconComponent; +export const EdgesensorHigh: SvgIconComponent; +export const EdgesensorHighOutlined: SvgIconComponent; +export const EdgesensorHighRounded: SvgIconComponent; +export const EdgesensorHighSharp: SvgIconComponent; +export const EdgesensorHighTwoTone: SvgIconComponent; +export const EdgesensorLow: SvgIconComponent; +export const EdgesensorLowOutlined: SvgIconComponent; +export const EdgesensorLowRounded: SvgIconComponent; +export const EdgesensorLowSharp: SvgIconComponent; +export const EdgesensorLowTwoTone: SvgIconComponent; +export const Edit: SvgIconComponent; +export const EditAttributes: SvgIconComponent; +export const EditAttributesOutlined: SvgIconComponent; +export const EditAttributesRounded: SvgIconComponent; +export const EditAttributesSharp: SvgIconComponent; +export const EditAttributesTwoTone: SvgIconComponent; +export const EditCalendar: SvgIconComponent; +export const EditCalendarOutlined: SvgIconComponent; +export const EditCalendarRounded: SvgIconComponent; +export const EditCalendarSharp: SvgIconComponent; +export const EditCalendarTwoTone: SvgIconComponent; +export const EditLocation: SvgIconComponent; +export const EditLocationAlt: SvgIconComponent; +export const EditLocationAltOutlined: SvgIconComponent; +export const EditLocationAltRounded: SvgIconComponent; +export const EditLocationAltSharp: SvgIconComponent; +export const EditLocationAltTwoTone: SvgIconComponent; +export const EditLocationOutlined: SvgIconComponent; +export const EditLocationRounded: SvgIconComponent; +export const EditLocationSharp: SvgIconComponent; +export const EditLocationTwoTone: SvgIconComponent; +export const EditNote: SvgIconComponent; +export const EditNoteOutlined: SvgIconComponent; +export const EditNoteRounded: SvgIconComponent; +export const EditNoteSharp: SvgIconComponent; +export const EditNoteTwoTone: SvgIconComponent; +export const EditNotifications: SvgIconComponent; +export const EditNotificationsOutlined: SvgIconComponent; +export const EditNotificationsRounded: SvgIconComponent; +export const EditNotificationsSharp: SvgIconComponent; +export const EditNotificationsTwoTone: SvgIconComponent; +export const EditOff: SvgIconComponent; +export const EditOffOutlined: SvgIconComponent; +export const EditOffRounded: SvgIconComponent; +export const EditOffSharp: SvgIconComponent; +export const EditOffTwoTone: SvgIconComponent; +export const EditOutlined: SvgIconComponent; +export const EditRoad: SvgIconComponent; +export const EditRoadOutlined: SvgIconComponent; +export const EditRoadRounded: SvgIconComponent; +export const EditRoadSharp: SvgIconComponent; +export const EditRoadTwoTone: SvgIconComponent; +export const EditRounded: SvgIconComponent; +export const EditSharp: SvgIconComponent; +export const EditTwoTone: SvgIconComponent; +export const Egg: SvgIconComponent; +export const EggAlt: SvgIconComponent; +export const EggAltOutlined: SvgIconComponent; +export const EggAltRounded: SvgIconComponent; +export const EggAltSharp: SvgIconComponent; +export const EggAltTwoTone: SvgIconComponent; +export const EggOutlined: SvgIconComponent; +export const EggRounded: SvgIconComponent; +export const EggSharp: SvgIconComponent; +export const EggTwoTone: SvgIconComponent; +export const EightK: SvgIconComponent; +export const EightKOutlined: SvgIconComponent; +export const EightKPlus: SvgIconComponent; +export const EightKPlusOutlined: SvgIconComponent; +export const EightKPlusRounded: SvgIconComponent; +export const EightKPlusSharp: SvgIconComponent; +export const EightKPlusTwoTone: SvgIconComponent; +export const EightKRounded: SvgIconComponent; +export const EightKSharp: SvgIconComponent; +export const EightKTwoTone: SvgIconComponent; +export const EightMp: SvgIconComponent; +export const EightMpOutlined: SvgIconComponent; +export const EightMpRounded: SvgIconComponent; +export const EightMpSharp: SvgIconComponent; +export const EightMpTwoTone: SvgIconComponent; +export const EighteenMp: SvgIconComponent; +export const EighteenMpOutlined: SvgIconComponent; +export const EighteenMpRounded: SvgIconComponent; +export const EighteenMpSharp: SvgIconComponent; +export const EighteenMpTwoTone: SvgIconComponent; +export const EighteenUpRating: SvgIconComponent; +export const EighteenUpRatingOutlined: SvgIconComponent; +export const EighteenUpRatingRounded: SvgIconComponent; +export const EighteenUpRatingSharp: SvgIconComponent; +export const EighteenUpRatingTwoTone: SvgIconComponent; +export const EightteenMp: SvgIconComponent; +export const EightteenMpOutlined: SvgIconComponent; +export const EightteenMpRounded: SvgIconComponent; +export const EightteenMpSharp: SvgIconComponent; +export const EightteenMpTwoTone: SvgIconComponent; +export const Eject: SvgIconComponent; +export const EjectOutlined: SvgIconComponent; +export const EjectRounded: SvgIconComponent; +export const EjectSharp: SvgIconComponent; +export const EjectTwoTone: SvgIconComponent; +export const Elderly: SvgIconComponent; +export const ElderlyOutlined: SvgIconComponent; +export const ElderlyRounded: SvgIconComponent; +export const ElderlySharp: SvgIconComponent; +export const ElderlyTwoTone: SvgIconComponent; +export const ElderlyWoman: SvgIconComponent; +export const ElderlyWomanOutlined: SvgIconComponent; +export const ElderlyWomanRounded: SvgIconComponent; +export const ElderlyWomanSharp: SvgIconComponent; +export const ElderlyWomanTwoTone: SvgIconComponent; +export const ElectricBike: SvgIconComponent; +export const ElectricBikeOutlined: SvgIconComponent; +export const ElectricBikeRounded: SvgIconComponent; +export const ElectricBikeSharp: SvgIconComponent; +export const ElectricBikeTwoTone: SvgIconComponent; +export const ElectricBolt: SvgIconComponent; +export const ElectricBoltOutlined: SvgIconComponent; +export const ElectricBoltRounded: SvgIconComponent; +export const ElectricBoltSharp: SvgIconComponent; +export const ElectricBoltTwoTone: SvgIconComponent; +export const ElectricCar: SvgIconComponent; +export const ElectricCarOutlined: SvgIconComponent; +export const ElectricCarRounded: SvgIconComponent; +export const ElectricCarSharp: SvgIconComponent; +export const ElectricCarTwoTone: SvgIconComponent; +export const ElectricMeter: SvgIconComponent; +export const ElectricMeterOutlined: SvgIconComponent; +export const ElectricMeterRounded: SvgIconComponent; +export const ElectricMeterSharp: SvgIconComponent; +export const ElectricMeterTwoTone: SvgIconComponent; +export const ElectricMoped: SvgIconComponent; +export const ElectricMopedOutlined: SvgIconComponent; +export const ElectricMopedRounded: SvgIconComponent; +export const ElectricMopedSharp: SvgIconComponent; +export const ElectricMopedTwoTone: SvgIconComponent; +export const ElectricRickshaw: SvgIconComponent; +export const ElectricRickshawOutlined: SvgIconComponent; +export const ElectricRickshawRounded: SvgIconComponent; +export const ElectricRickshawSharp: SvgIconComponent; +export const ElectricRickshawTwoTone: SvgIconComponent; +export const ElectricScooter: SvgIconComponent; +export const ElectricScooterOutlined: SvgIconComponent; +export const ElectricScooterRounded: SvgIconComponent; +export const ElectricScooterSharp: SvgIconComponent; +export const ElectricScooterTwoTone: SvgIconComponent; +export const ElectricalServices: SvgIconComponent; +export const ElectricalServicesOutlined: SvgIconComponent; +export const ElectricalServicesRounded: SvgIconComponent; +export const ElectricalServicesSharp: SvgIconComponent; +export const ElectricalServicesTwoTone: SvgIconComponent; +export const Elevator: SvgIconComponent; +export const ElevatorOutlined: SvgIconComponent; +export const ElevatorRounded: SvgIconComponent; +export const ElevatorSharp: SvgIconComponent; +export const ElevatorTwoTone: SvgIconComponent; +export const ElevenMp: SvgIconComponent; +export const ElevenMpOutlined: SvgIconComponent; +export const ElevenMpRounded: SvgIconComponent; +export const ElevenMpSharp: SvgIconComponent; +export const ElevenMpTwoTone: SvgIconComponent; +export const Email: SvgIconComponent; +export const EmailOutlined: SvgIconComponent; +export const EmailRounded: SvgIconComponent; +export const EmailSharp: SvgIconComponent; +export const EmailTwoTone: SvgIconComponent; +export const Emergency: SvgIconComponent; +export const EmergencyOutlined: SvgIconComponent; +export const EmergencyRecording: SvgIconComponent; +export const EmergencyRecordingOutlined: SvgIconComponent; +export const EmergencyRecordingRounded: SvgIconComponent; +export const EmergencyRecordingSharp: SvgIconComponent; +export const EmergencyRecordingTwoTone: SvgIconComponent; +export const EmergencyRounded: SvgIconComponent; +export const EmergencyShare: SvgIconComponent; +export const EmergencyShareOutlined: SvgIconComponent; +export const EmergencyShareRounded: SvgIconComponent; +export const EmergencyShareSharp: SvgIconComponent; +export const EmergencyShareTwoTone: SvgIconComponent; +export const EmergencySharp: SvgIconComponent; +export const EmergencyTwoTone: SvgIconComponent; +export const EmojiEmotions: SvgIconComponent; +export const EmojiEmotionsOutlined: SvgIconComponent; +export const EmojiEmotionsRounded: SvgIconComponent; +export const EmojiEmotionsSharp: SvgIconComponent; +export const EmojiEmotionsTwoTone: SvgIconComponent; +export const EmojiEvents: SvgIconComponent; +export const EmojiEventsOutlined: SvgIconComponent; +export const EmojiEventsRounded: SvgIconComponent; +export const EmojiEventsSharp: SvgIconComponent; +export const EmojiEventsTwoTone: SvgIconComponent; +export const EmojiFlags: SvgIconComponent; +export const EmojiFlagsOutlined: SvgIconComponent; +export const EmojiFlagsRounded: SvgIconComponent; +export const EmojiFlagsSharp: SvgIconComponent; +export const EmojiFlagsTwoTone: SvgIconComponent; +export const EmojiFoodBeverage: SvgIconComponent; +export const EmojiFoodBeverageOutlined: SvgIconComponent; +export const EmojiFoodBeverageRounded: SvgIconComponent; +export const EmojiFoodBeverageSharp: SvgIconComponent; +export const EmojiFoodBeverageTwoTone: SvgIconComponent; +export const EmojiNature: SvgIconComponent; +export const EmojiNatureOutlined: SvgIconComponent; +export const EmojiNatureRounded: SvgIconComponent; +export const EmojiNatureSharp: SvgIconComponent; +export const EmojiNatureTwoTone: SvgIconComponent; +export const EmojiObjects: SvgIconComponent; +export const EmojiObjectsOutlined: SvgIconComponent; +export const EmojiObjectsRounded: SvgIconComponent; +export const EmojiObjectsSharp: SvgIconComponent; +export const EmojiObjectsTwoTone: SvgIconComponent; +export const EmojiPeople: SvgIconComponent; +export const EmojiPeopleOutlined: SvgIconComponent; +export const EmojiPeopleRounded: SvgIconComponent; +export const EmojiPeopleSharp: SvgIconComponent; +export const EmojiPeopleTwoTone: SvgIconComponent; +export const EmojiSymbols: SvgIconComponent; +export const EmojiSymbolsOutlined: SvgIconComponent; +export const EmojiSymbolsRounded: SvgIconComponent; +export const EmojiSymbolsSharp: SvgIconComponent; +export const EmojiSymbolsTwoTone: SvgIconComponent; +export const EmojiTransportation: SvgIconComponent; +export const EmojiTransportationOutlined: SvgIconComponent; +export const EmojiTransportationRounded: SvgIconComponent; +export const EmojiTransportationSharp: SvgIconComponent; +export const EmojiTransportationTwoTone: SvgIconComponent; +export const EnergySavingsLeaf: SvgIconComponent; +export const EnergySavingsLeafOutlined: SvgIconComponent; +export const EnergySavingsLeafRounded: SvgIconComponent; +export const EnergySavingsLeafSharp: SvgIconComponent; +export const EnergySavingsLeafTwoTone: SvgIconComponent; +export const Engineering: SvgIconComponent; +export const EngineeringOutlined: SvgIconComponent; +export const EngineeringRounded: SvgIconComponent; +export const EngineeringSharp: SvgIconComponent; +export const EngineeringTwoTone: SvgIconComponent; +export const EnhancedEncryption: SvgIconComponent; +export const EnhancedEncryptionOutlined: SvgIconComponent; +export const EnhancedEncryptionRounded: SvgIconComponent; +export const EnhancedEncryptionSharp: SvgIconComponent; +export const EnhancedEncryptionTwoTone: SvgIconComponent; +export const Equalizer: SvgIconComponent; +export const EqualizerOutlined: SvgIconComponent; +export const EqualizerRounded: SvgIconComponent; +export const EqualizerSharp: SvgIconComponent; +export const EqualizerTwoTone: SvgIconComponent; +export const Error: SvgIconComponent; +export const ErrorOutline: SvgIconComponent; +export const ErrorOutlineOutlined: SvgIconComponent; +export const ErrorOutlineRounded: SvgIconComponent; +export const ErrorOutlineSharp: SvgIconComponent; +export const ErrorOutlineTwoTone: SvgIconComponent; +export const ErrorOutlined: SvgIconComponent; +export const ErrorRounded: SvgIconComponent; +export const ErrorSharp: SvgIconComponent; +export const ErrorTwoTone: SvgIconComponent; +export const Escalator: SvgIconComponent; +export const EscalatorOutlined: SvgIconComponent; +export const EscalatorRounded: SvgIconComponent; +export const EscalatorSharp: SvgIconComponent; +export const EscalatorTwoTone: SvgIconComponent; +export const EscalatorWarning: SvgIconComponent; +export const EscalatorWarningOutlined: SvgIconComponent; +export const EscalatorWarningRounded: SvgIconComponent; +export const EscalatorWarningSharp: SvgIconComponent; +export const EscalatorWarningTwoTone: SvgIconComponent; +export const Euro: SvgIconComponent; +export const EuroOutlined: SvgIconComponent; +export const EuroRounded: SvgIconComponent; +export const EuroSharp: SvgIconComponent; +export const EuroSymbol: SvgIconComponent; +export const EuroSymbolOutlined: SvgIconComponent; +export const EuroSymbolRounded: SvgIconComponent; +export const EuroSymbolSharp: SvgIconComponent; +export const EuroSymbolTwoTone: SvgIconComponent; +export const EuroTwoTone: SvgIconComponent; +export const EvStation: SvgIconComponent; +export const EvStationOutlined: SvgIconComponent; +export const EvStationRounded: SvgIconComponent; +export const EvStationSharp: SvgIconComponent; +export const EvStationTwoTone: SvgIconComponent; +export const Event: SvgIconComponent; +export const EventAvailable: SvgIconComponent; +export const EventAvailableOutlined: SvgIconComponent; +export const EventAvailableRounded: SvgIconComponent; +export const EventAvailableSharp: SvgIconComponent; +export const EventAvailableTwoTone: SvgIconComponent; +export const EventBusy: SvgIconComponent; +export const EventBusyOutlined: SvgIconComponent; +export const EventBusyRounded: SvgIconComponent; +export const EventBusySharp: SvgIconComponent; +export const EventBusyTwoTone: SvgIconComponent; +export const EventNote: SvgIconComponent; +export const EventNoteOutlined: SvgIconComponent; +export const EventNoteRounded: SvgIconComponent; +export const EventNoteSharp: SvgIconComponent; +export const EventNoteTwoTone: SvgIconComponent; +export const EventOutlined: SvgIconComponent; +export const EventRepeat: SvgIconComponent; +export const EventRepeatOutlined: SvgIconComponent; +export const EventRepeatRounded: SvgIconComponent; +export const EventRepeatSharp: SvgIconComponent; +export const EventRepeatTwoTone: SvgIconComponent; +export const EventRounded: SvgIconComponent; +export const EventSeat: SvgIconComponent; +export const EventSeatOutlined: SvgIconComponent; +export const EventSeatRounded: SvgIconComponent; +export const EventSeatSharp: SvgIconComponent; +export const EventSeatTwoTone: SvgIconComponent; +export const EventSharp: SvgIconComponent; +export const EventTwoTone: SvgIconComponent; +export const ExitToApp: SvgIconComponent; +export const ExitToAppOutlined: SvgIconComponent; +export const ExitToAppRounded: SvgIconComponent; +export const ExitToAppSharp: SvgIconComponent; +export const ExitToAppTwoTone: SvgIconComponent; +export const Expand: SvgIconComponent; +export const ExpandCircleDown: SvgIconComponent; +export const ExpandCircleDownOutlined: SvgIconComponent; +export const ExpandCircleDownRounded: SvgIconComponent; +export const ExpandCircleDownSharp: SvgIconComponent; +export const ExpandCircleDownTwoTone: SvgIconComponent; +export const ExpandLess: SvgIconComponent; +export const ExpandLessOutlined: SvgIconComponent; +export const ExpandLessRounded: SvgIconComponent; +export const ExpandLessSharp: SvgIconComponent; +export const ExpandLessTwoTone: SvgIconComponent; +export const ExpandMore: SvgIconComponent; +export const ExpandMoreOutlined: SvgIconComponent; +export const ExpandMoreRounded: SvgIconComponent; +export const ExpandMoreSharp: SvgIconComponent; +export const ExpandMoreTwoTone: SvgIconComponent; +export const ExpandOutlined: SvgIconComponent; +export const ExpandRounded: SvgIconComponent; +export const ExpandSharp: SvgIconComponent; +export const ExpandTwoTone: SvgIconComponent; +export const Explicit: SvgIconComponent; +export const ExplicitOutlined: SvgIconComponent; +export const ExplicitRounded: SvgIconComponent; +export const ExplicitSharp: SvgIconComponent; +export const ExplicitTwoTone: SvgIconComponent; +export const Explore: SvgIconComponent; +export const ExploreOff: SvgIconComponent; +export const ExploreOffOutlined: SvgIconComponent; +export const ExploreOffRounded: SvgIconComponent; +export const ExploreOffSharp: SvgIconComponent; +export const ExploreOffTwoTone: SvgIconComponent; +export const ExploreOutlined: SvgIconComponent; +export const ExploreRounded: SvgIconComponent; +export const ExploreSharp: SvgIconComponent; +export const ExploreTwoTone: SvgIconComponent; +export const Exposure: SvgIconComponent; +export const ExposureOutlined: SvgIconComponent; +export const ExposureRounded: SvgIconComponent; +export const ExposureSharp: SvgIconComponent; +export const ExposureTwoTone: SvgIconComponent; +export const Extension: SvgIconComponent; +export const ExtensionOff: SvgIconComponent; +export const ExtensionOffOutlined: SvgIconComponent; +export const ExtensionOffRounded: SvgIconComponent; +export const ExtensionOffSharp: SvgIconComponent; +export const ExtensionOffTwoTone: SvgIconComponent; +export const ExtensionOutlined: SvgIconComponent; +export const ExtensionRounded: SvgIconComponent; +export const ExtensionSharp: SvgIconComponent; +export const ExtensionTwoTone: SvgIconComponent; +export const Face: SvgIconComponent; +export const Face2: SvgIconComponent; +export const Face2Outlined: SvgIconComponent; +export const Face2Rounded: SvgIconComponent; +export const Face2Sharp: SvgIconComponent; +export const Face2TwoTone: SvgIconComponent; +export const Face3: SvgIconComponent; +export const Face3Outlined: SvgIconComponent; +export const Face3Rounded: SvgIconComponent; +export const Face3Sharp: SvgIconComponent; +export const Face3TwoTone: SvgIconComponent; +export const Face4: SvgIconComponent; +export const Face4Outlined: SvgIconComponent; +export const Face4Rounded: SvgIconComponent; +export const Face4Sharp: SvgIconComponent; +export const Face4TwoTone: SvgIconComponent; +export const Face5: SvgIconComponent; +export const Face5Outlined: SvgIconComponent; +export const Face5Rounded: SvgIconComponent; +export const Face5Sharp: SvgIconComponent; +export const Face5TwoTone: SvgIconComponent; +export const Face6: SvgIconComponent; +export const Face6Outlined: SvgIconComponent; +export const Face6Rounded: SvgIconComponent; +export const Face6Sharp: SvgIconComponent; +export const Face6TwoTone: SvgIconComponent; +export const FaceOutlined: SvgIconComponent; +export const FaceRetouchingNatural: SvgIconComponent; +export const FaceRetouchingNaturalOutlined: SvgIconComponent; +export const FaceRetouchingNaturalRounded: SvgIconComponent; +export const FaceRetouchingNaturalSharp: SvgIconComponent; +export const FaceRetouchingNaturalTwoTone: SvgIconComponent; +export const FaceRetouchingOff: SvgIconComponent; +export const FaceRetouchingOffOutlined: SvgIconComponent; +export const FaceRetouchingOffRounded: SvgIconComponent; +export const FaceRetouchingOffSharp: SvgIconComponent; +export const FaceRetouchingOffTwoTone: SvgIconComponent; +export const FaceRounded: SvgIconComponent; +export const FaceSharp: SvgIconComponent; +export const FaceTwoTone: SvgIconComponent; +export const Facebook: SvgIconComponent; +export const FacebookOutlined: SvgIconComponent; +export const FacebookRounded: SvgIconComponent; +export const FacebookSharp: SvgIconComponent; +export const FacebookTwoTone: SvgIconComponent; +export const FactCheck: SvgIconComponent; +export const FactCheckOutlined: SvgIconComponent; +export const FactCheckRounded: SvgIconComponent; +export const FactCheckSharp: SvgIconComponent; +export const FactCheckTwoTone: SvgIconComponent; +export const Factory: SvgIconComponent; +export const FactoryOutlined: SvgIconComponent; +export const FactoryRounded: SvgIconComponent; +export const FactorySharp: SvgIconComponent; +export const FactoryTwoTone: SvgIconComponent; +export const FamilyRestroom: SvgIconComponent; +export const FamilyRestroomOutlined: SvgIconComponent; +export const FamilyRestroomRounded: SvgIconComponent; +export const FamilyRestroomSharp: SvgIconComponent; +export const FamilyRestroomTwoTone: SvgIconComponent; +export const FastForward: SvgIconComponent; +export const FastForwardOutlined: SvgIconComponent; +export const FastForwardRounded: SvgIconComponent; +export const FastForwardSharp: SvgIconComponent; +export const FastForwardTwoTone: SvgIconComponent; +export const FastRewind: SvgIconComponent; +export const FastRewindOutlined: SvgIconComponent; +export const FastRewindRounded: SvgIconComponent; +export const FastRewindSharp: SvgIconComponent; +export const FastRewindTwoTone: SvgIconComponent; +export const Fastfood: SvgIconComponent; +export const FastfoodOutlined: SvgIconComponent; +export const FastfoodRounded: SvgIconComponent; +export const FastfoodSharp: SvgIconComponent; +export const FastfoodTwoTone: SvgIconComponent; +export const Favorite: SvgIconComponent; +export const FavoriteBorder: SvgIconComponent; +export const FavoriteBorderOutlined: SvgIconComponent; +export const FavoriteBorderRounded: SvgIconComponent; +export const FavoriteBorderSharp: SvgIconComponent; +export const FavoriteBorderTwoTone: SvgIconComponent; +export const FavoriteOutlined: SvgIconComponent; +export const FavoriteRounded: SvgIconComponent; +export const FavoriteSharp: SvgIconComponent; +export const FavoriteTwoTone: SvgIconComponent; +export const Fax: SvgIconComponent; +export const FaxOutlined: SvgIconComponent; +export const FaxRounded: SvgIconComponent; +export const FaxSharp: SvgIconComponent; +export const FaxTwoTone: SvgIconComponent; +export const FeaturedPlayList: SvgIconComponent; +export const FeaturedPlayListOutlined: SvgIconComponent; +export const FeaturedPlayListRounded: SvgIconComponent; +export const FeaturedPlayListSharp: SvgIconComponent; +export const FeaturedPlayListTwoTone: SvgIconComponent; +export const FeaturedVideo: SvgIconComponent; +export const FeaturedVideoOutlined: SvgIconComponent; +export const FeaturedVideoRounded: SvgIconComponent; +export const FeaturedVideoSharp: SvgIconComponent; +export const FeaturedVideoTwoTone: SvgIconComponent; +export const Feed: SvgIconComponent; +export const FeedOutlined: SvgIconComponent; +export const FeedRounded: SvgIconComponent; +export const FeedSharp: SvgIconComponent; +export const FeedTwoTone: SvgIconComponent; +export const Feedback: SvgIconComponent; +export const FeedbackOutlined: SvgIconComponent; +export const FeedbackRounded: SvgIconComponent; +export const FeedbackSharp: SvgIconComponent; +export const FeedbackTwoTone: SvgIconComponent; +export const Female: SvgIconComponent; +export const FemaleOutlined: SvgIconComponent; +export const FemaleRounded: SvgIconComponent; +export const FemaleSharp: SvgIconComponent; +export const FemaleTwoTone: SvgIconComponent; +export const Fence: SvgIconComponent; +export const FenceOutlined: SvgIconComponent; +export const FenceRounded: SvgIconComponent; +export const FenceSharp: SvgIconComponent; +export const FenceTwoTone: SvgIconComponent; +export const Festival: SvgIconComponent; +export const FestivalOutlined: SvgIconComponent; +export const FestivalRounded: SvgIconComponent; +export const FestivalSharp: SvgIconComponent; +export const FestivalTwoTone: SvgIconComponent; +export const FiberDvr: SvgIconComponent; +export const FiberDvrOutlined: SvgIconComponent; +export const FiberDvrRounded: SvgIconComponent; +export const FiberDvrSharp: SvgIconComponent; +export const FiberDvrTwoTone: SvgIconComponent; +export const FiberManualRecord: SvgIconComponent; +export const FiberManualRecordOutlined: SvgIconComponent; +export const FiberManualRecordRounded: SvgIconComponent; +export const FiberManualRecordSharp: SvgIconComponent; +export const FiberManualRecordTwoTone: SvgIconComponent; +export const FiberNew: SvgIconComponent; +export const FiberNewOutlined: SvgIconComponent; +export const FiberNewRounded: SvgIconComponent; +export const FiberNewSharp: SvgIconComponent; +export const FiberNewTwoTone: SvgIconComponent; +export const FiberPin: SvgIconComponent; +export const FiberPinOutlined: SvgIconComponent; +export const FiberPinRounded: SvgIconComponent; +export const FiberPinSharp: SvgIconComponent; +export const FiberPinTwoTone: SvgIconComponent; +export const FiberSmartRecord: SvgIconComponent; +export const FiberSmartRecordOutlined: SvgIconComponent; +export const FiberSmartRecordRounded: SvgIconComponent; +export const FiberSmartRecordSharp: SvgIconComponent; +export const FiberSmartRecordTwoTone: SvgIconComponent; +export const FifteenMp: SvgIconComponent; +export const FifteenMpOutlined: SvgIconComponent; +export const FifteenMpRounded: SvgIconComponent; +export const FifteenMpSharp: SvgIconComponent; +export const FifteenMpTwoTone: SvgIconComponent; +export const FileCopy: SvgIconComponent; +export const FileCopyOutlined: SvgIconComponent; +export const FileCopyRounded: SvgIconComponent; +export const FileCopySharp: SvgIconComponent; +export const FileCopyTwoTone: SvgIconComponent; +export const FileDownload: SvgIconComponent; +export const FileDownloadDone: SvgIconComponent; +export const FileDownloadDoneOutlined: SvgIconComponent; +export const FileDownloadDoneRounded: SvgIconComponent; +export const FileDownloadDoneSharp: SvgIconComponent; +export const FileDownloadDoneTwoTone: SvgIconComponent; +export const FileDownloadOff: SvgIconComponent; +export const FileDownloadOffOutlined: SvgIconComponent; +export const FileDownloadOffRounded: SvgIconComponent; +export const FileDownloadOffSharp: SvgIconComponent; +export const FileDownloadOffTwoTone: SvgIconComponent; +export const FileDownloadOutlined: SvgIconComponent; +export const FileDownloadRounded: SvgIconComponent; +export const FileDownloadSharp: SvgIconComponent; +export const FileDownloadTwoTone: SvgIconComponent; +export const FileOpen: SvgIconComponent; +export const FileOpenOutlined: SvgIconComponent; +export const FileOpenRounded: SvgIconComponent; +export const FileOpenSharp: SvgIconComponent; +export const FileOpenTwoTone: SvgIconComponent; +export const FilePresent: SvgIconComponent; +export const FilePresentOutlined: SvgIconComponent; +export const FilePresentRounded: SvgIconComponent; +export const FilePresentSharp: SvgIconComponent; +export const FilePresentTwoTone: SvgIconComponent; +export const FileUpload: SvgIconComponent; +export const FileUploadOutlined: SvgIconComponent; +export const FileUploadRounded: SvgIconComponent; +export const FileUploadSharp: SvgIconComponent; +export const FileUploadTwoTone: SvgIconComponent; +export const Filter: SvgIconComponent; +export const Filter1: SvgIconComponent; +export const Filter1Outlined: SvgIconComponent; +export const Filter1Rounded: SvgIconComponent; +export const Filter1Sharp: SvgIconComponent; +export const Filter1TwoTone: SvgIconComponent; +export const Filter2: SvgIconComponent; +export const Filter2Outlined: SvgIconComponent; +export const Filter2Rounded: SvgIconComponent; +export const Filter2Sharp: SvgIconComponent; +export const Filter2TwoTone: SvgIconComponent; +export const Filter3: SvgIconComponent; +export const Filter3Outlined: SvgIconComponent; +export const Filter3Rounded: SvgIconComponent; +export const Filter3Sharp: SvgIconComponent; +export const Filter3TwoTone: SvgIconComponent; +export const Filter4: SvgIconComponent; +export const Filter4Outlined: SvgIconComponent; +export const Filter4Rounded: SvgIconComponent; +export const Filter4Sharp: SvgIconComponent; +export const Filter4TwoTone: SvgIconComponent; +export const Filter5: SvgIconComponent; +export const Filter5Outlined: SvgIconComponent; +export const Filter5Rounded: SvgIconComponent; +export const Filter5Sharp: SvgIconComponent; +export const Filter5TwoTone: SvgIconComponent; +export const Filter6: SvgIconComponent; +export const Filter6Outlined: SvgIconComponent; +export const Filter6Rounded: SvgIconComponent; +export const Filter6Sharp: SvgIconComponent; +export const Filter6TwoTone: SvgIconComponent; +export const Filter7: SvgIconComponent; +export const Filter7Outlined: SvgIconComponent; +export const Filter7Rounded: SvgIconComponent; +export const Filter7Sharp: SvgIconComponent; +export const Filter7TwoTone: SvgIconComponent; +export const Filter8: SvgIconComponent; +export const Filter8Outlined: SvgIconComponent; +export const Filter8Rounded: SvgIconComponent; +export const Filter8Sharp: SvgIconComponent; +export const Filter8TwoTone: SvgIconComponent; +export const Filter9: SvgIconComponent; +export const Filter9Outlined: SvgIconComponent; +export const Filter9Plus: SvgIconComponent; +export const Filter9PlusOutlined: SvgIconComponent; +export const Filter9PlusRounded: SvgIconComponent; +export const Filter9PlusSharp: SvgIconComponent; +export const Filter9PlusTwoTone: SvgIconComponent; +export const Filter9Rounded: SvgIconComponent; +export const Filter9Sharp: SvgIconComponent; +export const Filter9TwoTone: SvgIconComponent; +export const FilterAlt: SvgIconComponent; +export const FilterAltOff: SvgIconComponent; +export const FilterAltOffOutlined: SvgIconComponent; +export const FilterAltOffRounded: SvgIconComponent; +export const FilterAltOffSharp: SvgIconComponent; +export const FilterAltOffTwoTone: SvgIconComponent; +export const FilterAltOutlined: SvgIconComponent; +export const FilterAltRounded: SvgIconComponent; +export const FilterAltSharp: SvgIconComponent; +export const FilterAltTwoTone: SvgIconComponent; +export const FilterBAndW: SvgIconComponent; +export const FilterBAndWOutlined: SvgIconComponent; +export const FilterBAndWRounded: SvgIconComponent; +export const FilterBAndWSharp: SvgIconComponent; +export const FilterBAndWTwoTone: SvgIconComponent; +export const FilterCenterFocus: SvgIconComponent; +export const FilterCenterFocusOutlined: SvgIconComponent; +export const FilterCenterFocusRounded: SvgIconComponent; +export const FilterCenterFocusSharp: SvgIconComponent; +export const FilterCenterFocusTwoTone: SvgIconComponent; +export const FilterDrama: SvgIconComponent; +export const FilterDramaOutlined: SvgIconComponent; +export const FilterDramaRounded: SvgIconComponent; +export const FilterDramaSharp: SvgIconComponent; +export const FilterDramaTwoTone: SvgIconComponent; +export const FilterFrames: SvgIconComponent; +export const FilterFramesOutlined: SvgIconComponent; +export const FilterFramesRounded: SvgIconComponent; +export const FilterFramesSharp: SvgIconComponent; +export const FilterFramesTwoTone: SvgIconComponent; +export const FilterHdr: SvgIconComponent; +export const FilterHdrOutlined: SvgIconComponent; +export const FilterHdrRounded: SvgIconComponent; +export const FilterHdrSharp: SvgIconComponent; +export const FilterHdrTwoTone: SvgIconComponent; +export const FilterList: SvgIconComponent; +export const FilterListOff: SvgIconComponent; +export const FilterListOffOutlined: SvgIconComponent; +export const FilterListOffRounded: SvgIconComponent; +export const FilterListOffSharp: SvgIconComponent; +export const FilterListOffTwoTone: SvgIconComponent; +export const FilterListOutlined: SvgIconComponent; +export const FilterListRounded: SvgIconComponent; +export const FilterListSharp: SvgIconComponent; +export const FilterListTwoTone: SvgIconComponent; +export const FilterNone: SvgIconComponent; +export const FilterNoneOutlined: SvgIconComponent; +export const FilterNoneRounded: SvgIconComponent; +export const FilterNoneSharp: SvgIconComponent; +export const FilterNoneTwoTone: SvgIconComponent; +export const FilterOutlined: SvgIconComponent; +export const FilterRounded: SvgIconComponent; +export const FilterSharp: SvgIconComponent; +export const FilterTiltShift: SvgIconComponent; +export const FilterTiltShiftOutlined: SvgIconComponent; +export const FilterTiltShiftRounded: SvgIconComponent; +export const FilterTiltShiftSharp: SvgIconComponent; +export const FilterTiltShiftTwoTone: SvgIconComponent; +export const FilterTwoTone: SvgIconComponent; +export const FilterVintage: SvgIconComponent; +export const FilterVintageOutlined: SvgIconComponent; +export const FilterVintageRounded: SvgIconComponent; +export const FilterVintageSharp: SvgIconComponent; +export const FilterVintageTwoTone: SvgIconComponent; +export const FindInPage: SvgIconComponent; +export const FindInPageOutlined: SvgIconComponent; +export const FindInPageRounded: SvgIconComponent; +export const FindInPageSharp: SvgIconComponent; +export const FindInPageTwoTone: SvgIconComponent; +export const FindReplace: SvgIconComponent; +export const FindReplaceOutlined: SvgIconComponent; +export const FindReplaceRounded: SvgIconComponent; +export const FindReplaceSharp: SvgIconComponent; +export const FindReplaceTwoTone: SvgIconComponent; +export const Fingerprint: SvgIconComponent; +export const FingerprintOutlined: SvgIconComponent; +export const FingerprintRounded: SvgIconComponent; +export const FingerprintSharp: SvgIconComponent; +export const FingerprintTwoTone: SvgIconComponent; +export const FireExtinguisher: SvgIconComponent; +export const FireExtinguisherOutlined: SvgIconComponent; +export const FireExtinguisherRounded: SvgIconComponent; +export const FireExtinguisherSharp: SvgIconComponent; +export const FireExtinguisherTwoTone: SvgIconComponent; +export const FireHydrantAlt: SvgIconComponent; +export const FireHydrantAltOutlined: SvgIconComponent; +export const FireHydrantAltRounded: SvgIconComponent; +export const FireHydrantAltSharp: SvgIconComponent; +export const FireHydrantAltTwoTone: SvgIconComponent; +export const FireTruck: SvgIconComponent; +export const FireTruckOutlined: SvgIconComponent; +export const FireTruckRounded: SvgIconComponent; +export const FireTruckSharp: SvgIconComponent; +export const FireTruckTwoTone: SvgIconComponent; +export const Fireplace: SvgIconComponent; +export const FireplaceOutlined: SvgIconComponent; +export const FireplaceRounded: SvgIconComponent; +export const FireplaceSharp: SvgIconComponent; +export const FireplaceTwoTone: SvgIconComponent; +export const FirstPage: SvgIconComponent; +export const FirstPageOutlined: SvgIconComponent; +export const FirstPageRounded: SvgIconComponent; +export const FirstPageSharp: SvgIconComponent; +export const FirstPageTwoTone: SvgIconComponent; +export const FitScreen: SvgIconComponent; +export const FitScreenOutlined: SvgIconComponent; +export const FitScreenRounded: SvgIconComponent; +export const FitScreenSharp: SvgIconComponent; +export const FitScreenTwoTone: SvgIconComponent; +export const Fitbit: SvgIconComponent; +export const FitbitOutlined: SvgIconComponent; +export const FitbitRounded: SvgIconComponent; +export const FitbitSharp: SvgIconComponent; +export const FitbitTwoTone: SvgIconComponent; +export const FitnessCenter: SvgIconComponent; +export const FitnessCenterOutlined: SvgIconComponent; +export const FitnessCenterRounded: SvgIconComponent; +export const FitnessCenterSharp: SvgIconComponent; +export const FitnessCenterTwoTone: SvgIconComponent; +export const FiveG: SvgIconComponent; +export const FiveGOutlined: SvgIconComponent; +export const FiveGRounded: SvgIconComponent; +export const FiveGSharp: SvgIconComponent; +export const FiveGTwoTone: SvgIconComponent; +export const FiveK: SvgIconComponent; +export const FiveKOutlined: SvgIconComponent; +export const FiveKPlus: SvgIconComponent; +export const FiveKPlusOutlined: SvgIconComponent; +export const FiveKPlusRounded: SvgIconComponent; +export const FiveKPlusSharp: SvgIconComponent; +export const FiveKPlusTwoTone: SvgIconComponent; +export const FiveKRounded: SvgIconComponent; +export const FiveKSharp: SvgIconComponent; +export const FiveKTwoTone: SvgIconComponent; +export const FiveMp: SvgIconComponent; +export const FiveMpOutlined: SvgIconComponent; +export const FiveMpRounded: SvgIconComponent; +export const FiveMpSharp: SvgIconComponent; +export const FiveMpTwoTone: SvgIconComponent; +export const FivteenMp: SvgIconComponent; +export const FivteenMpOutlined: SvgIconComponent; +export const FivteenMpRounded: SvgIconComponent; +export const FivteenMpSharp: SvgIconComponent; +export const FivteenMpTwoTone: SvgIconComponent; +export const Flag: SvgIconComponent; +export const FlagCircle: SvgIconComponent; +export const FlagCircleOutlined: SvgIconComponent; +export const FlagCircleRounded: SvgIconComponent; +export const FlagCircleSharp: SvgIconComponent; +export const FlagCircleTwoTone: SvgIconComponent; +export const FlagOutlined: SvgIconComponent; +export const FlagRounded: SvgIconComponent; +export const FlagSharp: SvgIconComponent; +export const FlagTwoTone: SvgIconComponent; +export const Flaky: SvgIconComponent; +export const FlakyOutlined: SvgIconComponent; +export const FlakyRounded: SvgIconComponent; +export const FlakySharp: SvgIconComponent; +export const FlakyTwoTone: SvgIconComponent; +export const Flare: SvgIconComponent; +export const FlareOutlined: SvgIconComponent; +export const FlareRounded: SvgIconComponent; +export const FlareSharp: SvgIconComponent; +export const FlareTwoTone: SvgIconComponent; +export const FlashAuto: SvgIconComponent; +export const FlashAutoOutlined: SvgIconComponent; +export const FlashAutoRounded: SvgIconComponent; +export const FlashAutoSharp: SvgIconComponent; +export const FlashAutoTwoTone: SvgIconComponent; +export const FlashOff: SvgIconComponent; +export const FlashOffOutlined: SvgIconComponent; +export const FlashOffRounded: SvgIconComponent; +export const FlashOffSharp: SvgIconComponent; +export const FlashOffTwoTone: SvgIconComponent; +export const FlashOn: SvgIconComponent; +export const FlashOnOutlined: SvgIconComponent; +export const FlashOnRounded: SvgIconComponent; +export const FlashOnSharp: SvgIconComponent; +export const FlashOnTwoTone: SvgIconComponent; +export const FlashlightOff: SvgIconComponent; +export const FlashlightOffOutlined: SvgIconComponent; +export const FlashlightOffRounded: SvgIconComponent; +export const FlashlightOffSharp: SvgIconComponent; +export const FlashlightOffTwoTone: SvgIconComponent; +export const FlashlightOn: SvgIconComponent; +export const FlashlightOnOutlined: SvgIconComponent; +export const FlashlightOnRounded: SvgIconComponent; +export const FlashlightOnSharp: SvgIconComponent; +export const FlashlightOnTwoTone: SvgIconComponent; +export const Flatware: SvgIconComponent; +export const FlatwareOutlined: SvgIconComponent; +export const FlatwareRounded: SvgIconComponent; +export const FlatwareSharp: SvgIconComponent; +export const FlatwareTwoTone: SvgIconComponent; +export const Flight: SvgIconComponent; +export const FlightClass: SvgIconComponent; +export const FlightClassOutlined: SvgIconComponent; +export const FlightClassRounded: SvgIconComponent; +export const FlightClassSharp: SvgIconComponent; +export const FlightClassTwoTone: SvgIconComponent; +export const FlightLand: SvgIconComponent; +export const FlightLandOutlined: SvgIconComponent; +export const FlightLandRounded: SvgIconComponent; +export const FlightLandSharp: SvgIconComponent; +export const FlightLandTwoTone: SvgIconComponent; +export const FlightOutlined: SvgIconComponent; +export const FlightRounded: SvgIconComponent; +export const FlightSharp: SvgIconComponent; +export const FlightTakeoff: SvgIconComponent; +export const FlightTakeoffOutlined: SvgIconComponent; +export const FlightTakeoffRounded: SvgIconComponent; +export const FlightTakeoffSharp: SvgIconComponent; +export const FlightTakeoffTwoTone: SvgIconComponent; +export const FlightTwoTone: SvgIconComponent; +export const Flip: SvgIconComponent; +export const FlipCameraAndroid: SvgIconComponent; +export const FlipCameraAndroidOutlined: SvgIconComponent; +export const FlipCameraAndroidRounded: SvgIconComponent; +export const FlipCameraAndroidSharp: SvgIconComponent; +export const FlipCameraAndroidTwoTone: SvgIconComponent; +export const FlipCameraIos: SvgIconComponent; +export const FlipCameraIosOutlined: SvgIconComponent; +export const FlipCameraIosRounded: SvgIconComponent; +export const FlipCameraIosSharp: SvgIconComponent; +export const FlipCameraIosTwoTone: SvgIconComponent; +export const FlipOutlined: SvgIconComponent; +export const FlipRounded: SvgIconComponent; +export const FlipSharp: SvgIconComponent; +export const FlipToBack: SvgIconComponent; +export const FlipToBackOutlined: SvgIconComponent; +export const FlipToBackRounded: SvgIconComponent; +export const FlipToBackSharp: SvgIconComponent; +export const FlipToBackTwoTone: SvgIconComponent; +export const FlipToFront: SvgIconComponent; +export const FlipToFrontOutlined: SvgIconComponent; +export const FlipToFrontRounded: SvgIconComponent; +export const FlipToFrontSharp: SvgIconComponent; +export const FlipToFrontTwoTone: SvgIconComponent; +export const FlipTwoTone: SvgIconComponent; +export const Flood: SvgIconComponent; +export const FloodOutlined: SvgIconComponent; +export const FloodRounded: SvgIconComponent; +export const FloodSharp: SvgIconComponent; +export const FloodTwoTone: SvgIconComponent; +export const Fluorescent: SvgIconComponent; +export const FluorescentOutlined: SvgIconComponent; +export const FluorescentRounded: SvgIconComponent; +export const FluorescentSharp: SvgIconComponent; +export const FluorescentTwoTone: SvgIconComponent; +export const FlutterDash: SvgIconComponent; +export const FlutterDashOutlined: SvgIconComponent; +export const FlutterDashRounded: SvgIconComponent; +export const FlutterDashSharp: SvgIconComponent; +export const FlutterDashTwoTone: SvgIconComponent; +export const FmdBad: SvgIconComponent; +export const FmdBadOutlined: SvgIconComponent; +export const FmdBadRounded: SvgIconComponent; +export const FmdBadSharp: SvgIconComponent; +export const FmdBadTwoTone: SvgIconComponent; +export const FmdGood: SvgIconComponent; +export const FmdGoodOutlined: SvgIconComponent; +export const FmdGoodRounded: SvgIconComponent; +export const FmdGoodSharp: SvgIconComponent; +export const FmdGoodTwoTone: SvgIconComponent; +export const Folder: SvgIconComponent; +export const FolderCopy: SvgIconComponent; +export const FolderCopyOutlined: SvgIconComponent; +export const FolderCopyRounded: SvgIconComponent; +export const FolderCopySharp: SvgIconComponent; +export const FolderCopyTwoTone: SvgIconComponent; +export const FolderDelete: SvgIconComponent; +export const FolderDeleteOutlined: SvgIconComponent; +export const FolderDeleteRounded: SvgIconComponent; +export const FolderDeleteSharp: SvgIconComponent; +export const FolderDeleteTwoTone: SvgIconComponent; +export const FolderOff: SvgIconComponent; +export const FolderOffOutlined: SvgIconComponent; +export const FolderOffRounded: SvgIconComponent; +export const FolderOffSharp: SvgIconComponent; +export const FolderOffTwoTone: SvgIconComponent; +export const FolderOpen: SvgIconComponent; +export const FolderOpenOutlined: SvgIconComponent; +export const FolderOpenRounded: SvgIconComponent; +export const FolderOpenSharp: SvgIconComponent; +export const FolderOpenTwoTone: SvgIconComponent; +export const FolderOutlined: SvgIconComponent; +export const FolderRounded: SvgIconComponent; +export const FolderShared: SvgIconComponent; +export const FolderSharedOutlined: SvgIconComponent; +export const FolderSharedRounded: SvgIconComponent; +export const FolderSharedSharp: SvgIconComponent; +export const FolderSharedTwoTone: SvgIconComponent; +export const FolderSharp: SvgIconComponent; +export const FolderSpecial: SvgIconComponent; +export const FolderSpecialOutlined: SvgIconComponent; +export const FolderSpecialRounded: SvgIconComponent; +export const FolderSpecialSharp: SvgIconComponent; +export const FolderSpecialTwoTone: SvgIconComponent; +export const FolderTwoTone: SvgIconComponent; +export const FolderZip: SvgIconComponent; +export const FolderZipOutlined: SvgIconComponent; +export const FolderZipRounded: SvgIconComponent; +export const FolderZipSharp: SvgIconComponent; +export const FolderZipTwoTone: SvgIconComponent; +export const FollowTheSigns: SvgIconComponent; +export const FollowTheSignsOutlined: SvgIconComponent; +export const FollowTheSignsRounded: SvgIconComponent; +export const FollowTheSignsSharp: SvgIconComponent; +export const FollowTheSignsTwoTone: SvgIconComponent; +export const FontDownload: SvgIconComponent; +export const FontDownloadOff: SvgIconComponent; +export const FontDownloadOffOutlined: SvgIconComponent; +export const FontDownloadOffRounded: SvgIconComponent; +export const FontDownloadOffSharp: SvgIconComponent; +export const FontDownloadOffTwoTone: SvgIconComponent; +export const FontDownloadOutlined: SvgIconComponent; +export const FontDownloadRounded: SvgIconComponent; +export const FontDownloadSharp: SvgIconComponent; +export const FontDownloadTwoTone: SvgIconComponent; +export const FoodBank: SvgIconComponent; +export const FoodBankOutlined: SvgIconComponent; +export const FoodBankRounded: SvgIconComponent; +export const FoodBankSharp: SvgIconComponent; +export const FoodBankTwoTone: SvgIconComponent; +export const Forest: SvgIconComponent; +export const ForestOutlined: SvgIconComponent; +export const ForestRounded: SvgIconComponent; +export const ForestSharp: SvgIconComponent; +export const ForestTwoTone: SvgIconComponent; +export const ForkLeft: SvgIconComponent; +export const ForkLeftOutlined: SvgIconComponent; +export const ForkLeftRounded: SvgIconComponent; +export const ForkLeftSharp: SvgIconComponent; +export const ForkLeftTwoTone: SvgIconComponent; +export const ForkRight: SvgIconComponent; +export const ForkRightOutlined: SvgIconComponent; +export const ForkRightRounded: SvgIconComponent; +export const ForkRightSharp: SvgIconComponent; +export const ForkRightTwoTone: SvgIconComponent; +export const FormatAlignCenter: SvgIconComponent; +export const FormatAlignCenterOutlined: SvgIconComponent; +export const FormatAlignCenterRounded: SvgIconComponent; +export const FormatAlignCenterSharp: SvgIconComponent; +export const FormatAlignCenterTwoTone: SvgIconComponent; +export const FormatAlignJustify: SvgIconComponent; +export const FormatAlignJustifyOutlined: SvgIconComponent; +export const FormatAlignJustifyRounded: SvgIconComponent; +export const FormatAlignJustifySharp: SvgIconComponent; +export const FormatAlignJustifyTwoTone: SvgIconComponent; +export const FormatAlignLeft: SvgIconComponent; +export const FormatAlignLeftOutlined: SvgIconComponent; +export const FormatAlignLeftRounded: SvgIconComponent; +export const FormatAlignLeftSharp: SvgIconComponent; +export const FormatAlignLeftTwoTone: SvgIconComponent; +export const FormatAlignRight: SvgIconComponent; +export const FormatAlignRightOutlined: SvgIconComponent; +export const FormatAlignRightRounded: SvgIconComponent; +export const FormatAlignRightSharp: SvgIconComponent; +export const FormatAlignRightTwoTone: SvgIconComponent; +export const FormatBold: SvgIconComponent; +export const FormatBoldOutlined: SvgIconComponent; +export const FormatBoldRounded: SvgIconComponent; +export const FormatBoldSharp: SvgIconComponent; +export const FormatBoldTwoTone: SvgIconComponent; +export const FormatClear: SvgIconComponent; +export const FormatClearOutlined: SvgIconComponent; +export const FormatClearRounded: SvgIconComponent; +export const FormatClearSharp: SvgIconComponent; +export const FormatClearTwoTone: SvgIconComponent; +export const FormatColorFill: SvgIconComponent; +export const FormatColorFillOutlined: SvgIconComponent; +export const FormatColorFillRounded: SvgIconComponent; +export const FormatColorFillSharp: SvgIconComponent; +export const FormatColorFillTwoTone: SvgIconComponent; +export const FormatColorReset: SvgIconComponent; +export const FormatColorResetOutlined: SvgIconComponent; +export const FormatColorResetRounded: SvgIconComponent; +export const FormatColorResetSharp: SvgIconComponent; +export const FormatColorResetTwoTone: SvgIconComponent; +export const FormatColorText: SvgIconComponent; +export const FormatColorTextOutlined: SvgIconComponent; +export const FormatColorTextRounded: SvgIconComponent; +export const FormatColorTextSharp: SvgIconComponent; +export const FormatColorTextTwoTone: SvgIconComponent; +export const FormatIndentDecrease: SvgIconComponent; +export const FormatIndentDecreaseOutlined: SvgIconComponent; +export const FormatIndentDecreaseRounded: SvgIconComponent; +export const FormatIndentDecreaseSharp: SvgIconComponent; +export const FormatIndentDecreaseTwoTone: SvgIconComponent; +export const FormatIndentIncrease: SvgIconComponent; +export const FormatIndentIncreaseOutlined: SvgIconComponent; +export const FormatIndentIncreaseRounded: SvgIconComponent; +export const FormatIndentIncreaseSharp: SvgIconComponent; +export const FormatIndentIncreaseTwoTone: SvgIconComponent; +export const FormatItalic: SvgIconComponent; +export const FormatItalicOutlined: SvgIconComponent; +export const FormatItalicRounded: SvgIconComponent; +export const FormatItalicSharp: SvgIconComponent; +export const FormatItalicTwoTone: SvgIconComponent; +export const FormatLineSpacing: SvgIconComponent; +export const FormatLineSpacingOutlined: SvgIconComponent; +export const FormatLineSpacingRounded: SvgIconComponent; +export const FormatLineSpacingSharp: SvgIconComponent; +export const FormatLineSpacingTwoTone: SvgIconComponent; +export const FormatListBulleted: SvgIconComponent; +export const FormatListBulletedOutlined: SvgIconComponent; +export const FormatListBulletedRounded: SvgIconComponent; +export const FormatListBulletedSharp: SvgIconComponent; +export const FormatListBulletedTwoTone: SvgIconComponent; +export const FormatListNumbered: SvgIconComponent; +export const FormatListNumberedOutlined: SvgIconComponent; +export const FormatListNumberedRounded: SvgIconComponent; +export const FormatListNumberedRtl: SvgIconComponent; +export const FormatListNumberedRtlOutlined: SvgIconComponent; +export const FormatListNumberedRtlRounded: SvgIconComponent; +export const FormatListNumberedRtlSharp: SvgIconComponent; +export const FormatListNumberedRtlTwoTone: SvgIconComponent; +export const FormatListNumberedSharp: SvgIconComponent; +export const FormatListNumberedTwoTone: SvgIconComponent; +export const FormatOverline: SvgIconComponent; +export const FormatOverlineOutlined: SvgIconComponent; +export const FormatOverlineRounded: SvgIconComponent; +export const FormatOverlineSharp: SvgIconComponent; +export const FormatOverlineTwoTone: SvgIconComponent; +export const FormatPaint: SvgIconComponent; +export const FormatPaintOutlined: SvgIconComponent; +export const FormatPaintRounded: SvgIconComponent; +export const FormatPaintSharp: SvgIconComponent; +export const FormatPaintTwoTone: SvgIconComponent; +export const FormatQuote: SvgIconComponent; +export const FormatQuoteOutlined: SvgIconComponent; +export const FormatQuoteRounded: SvgIconComponent; +export const FormatQuoteSharp: SvgIconComponent; +export const FormatQuoteTwoTone: SvgIconComponent; +export const FormatShapes: SvgIconComponent; +export const FormatShapesOutlined: SvgIconComponent; +export const FormatShapesRounded: SvgIconComponent; +export const FormatShapesSharp: SvgIconComponent; +export const FormatShapesTwoTone: SvgIconComponent; +export const FormatSize: SvgIconComponent; +export const FormatSizeOutlined: SvgIconComponent; +export const FormatSizeRounded: SvgIconComponent; +export const FormatSizeSharp: SvgIconComponent; +export const FormatSizeTwoTone: SvgIconComponent; +export const FormatStrikethrough: SvgIconComponent; +export const FormatStrikethroughOutlined: SvgIconComponent; +export const FormatStrikethroughRounded: SvgIconComponent; +export const FormatStrikethroughSharp: SvgIconComponent; +export const FormatStrikethroughTwoTone: SvgIconComponent; +export const FormatTextdirectionLToR: SvgIconComponent; +export const FormatTextdirectionLToROutlined: SvgIconComponent; +export const FormatTextdirectionLToRRounded: SvgIconComponent; +export const FormatTextdirectionLToRSharp: SvgIconComponent; +export const FormatTextdirectionLToRTwoTone: SvgIconComponent; +export const FormatTextdirectionRToL: SvgIconComponent; +export const FormatTextdirectionRToLOutlined: SvgIconComponent; +export const FormatTextdirectionRToLRounded: SvgIconComponent; +export const FormatTextdirectionRToLSharp: SvgIconComponent; +export const FormatTextdirectionRToLTwoTone: SvgIconComponent; +export const FormatUnderlined: SvgIconComponent; +export const FormatUnderlinedOutlined: SvgIconComponent; +export const FormatUnderlinedRounded: SvgIconComponent; +export const FormatUnderlinedSharp: SvgIconComponent; +export const FormatUnderlinedTwoTone: SvgIconComponent; +export const Fort: SvgIconComponent; +export const FortOutlined: SvgIconComponent; +export const FortRounded: SvgIconComponent; +export const FortSharp: SvgIconComponent; +export const FortTwoTone: SvgIconComponent; +export const Forum: SvgIconComponent; +export const ForumOutlined: SvgIconComponent; +export const ForumRounded: SvgIconComponent; +export const ForumSharp: SvgIconComponent; +export const ForumTwoTone: SvgIconComponent; +export const Forward: SvgIconComponent; +export const Forward10: SvgIconComponent; +export const Forward10Outlined: SvgIconComponent; +export const Forward10Rounded: SvgIconComponent; +export const Forward10Sharp: SvgIconComponent; +export const Forward10TwoTone: SvgIconComponent; +export const Forward30: SvgIconComponent; +export const Forward30Outlined: SvgIconComponent; +export const Forward30Rounded: SvgIconComponent; +export const Forward30Sharp: SvgIconComponent; +export const Forward30TwoTone: SvgIconComponent; +export const Forward5: SvgIconComponent; +export const Forward5Outlined: SvgIconComponent; +export const Forward5Rounded: SvgIconComponent; +export const Forward5Sharp: SvgIconComponent; +export const Forward5TwoTone: SvgIconComponent; +export const ForwardOutlined: SvgIconComponent; +export const ForwardRounded: SvgIconComponent; +export const ForwardSharp: SvgIconComponent; +export const ForwardToInbox: SvgIconComponent; +export const ForwardToInboxOutlined: SvgIconComponent; +export const ForwardToInboxRounded: SvgIconComponent; +export const ForwardToInboxSharp: SvgIconComponent; +export const ForwardToInboxTwoTone: SvgIconComponent; +export const ForwardTwoTone: SvgIconComponent; +export const Foundation: SvgIconComponent; +export const FoundationOutlined: SvgIconComponent; +export const FoundationRounded: SvgIconComponent; +export const FoundationSharp: SvgIconComponent; +export const FoundationTwoTone: SvgIconComponent; +export const FourGMobiledata: SvgIconComponent; +export const FourGMobiledataOutlined: SvgIconComponent; +export const FourGMobiledataRounded: SvgIconComponent; +export const FourGMobiledataSharp: SvgIconComponent; +export const FourGMobiledataTwoTone: SvgIconComponent; +export const FourGPlusMobiledata: SvgIconComponent; +export const FourGPlusMobiledataOutlined: SvgIconComponent; +export const FourGPlusMobiledataRounded: SvgIconComponent; +export const FourGPlusMobiledataSharp: SvgIconComponent; +export const FourGPlusMobiledataTwoTone: SvgIconComponent; +export const FourK: SvgIconComponent; +export const FourKOutlined: SvgIconComponent; +export const FourKPlus: SvgIconComponent; +export const FourKPlusOutlined: SvgIconComponent; +export const FourKPlusRounded: SvgIconComponent; +export const FourKPlusSharp: SvgIconComponent; +export const FourKPlusTwoTone: SvgIconComponent; +export const FourKRounded: SvgIconComponent; +export const FourKSharp: SvgIconComponent; +export const FourKTwoTone: SvgIconComponent; +export const FourMp: SvgIconComponent; +export const FourMpOutlined: SvgIconComponent; +export const FourMpRounded: SvgIconComponent; +export const FourMpSharp: SvgIconComponent; +export const FourMpTwoTone: SvgIconComponent; +export const FourteenMp: SvgIconComponent; +export const FourteenMpOutlined: SvgIconComponent; +export const FourteenMpRounded: SvgIconComponent; +export const FourteenMpSharp: SvgIconComponent; +export const FourteenMpTwoTone: SvgIconComponent; +export const FreeBreakfast: SvgIconComponent; +export const FreeBreakfastOutlined: SvgIconComponent; +export const FreeBreakfastRounded: SvgIconComponent; +export const FreeBreakfastSharp: SvgIconComponent; +export const FreeBreakfastTwoTone: SvgIconComponent; +export const Fullscreen: SvgIconComponent; +export const FullscreenExit: SvgIconComponent; +export const FullscreenExitOutlined: SvgIconComponent; +export const FullscreenExitRounded: SvgIconComponent; +export const FullscreenExitSharp: SvgIconComponent; +export const FullscreenExitTwoTone: SvgIconComponent; +export const FullscreenOutlined: SvgIconComponent; +export const FullscreenRounded: SvgIconComponent; +export const FullscreenSharp: SvgIconComponent; +export const FullscreenTwoTone: SvgIconComponent; +export const Functions: SvgIconComponent; +export const FunctionsOutlined: SvgIconComponent; +export const FunctionsRounded: SvgIconComponent; +export const FunctionsSharp: SvgIconComponent; +export const FunctionsTwoTone: SvgIconComponent; +export const GMobiledata: SvgIconComponent; +export const GMobiledataOutlined: SvgIconComponent; +export const GMobiledataRounded: SvgIconComponent; +export const GMobiledataSharp: SvgIconComponent; +export const GMobiledataTwoTone: SvgIconComponent; +export const GTranslate: SvgIconComponent; +export const GTranslateOutlined: SvgIconComponent; +export const GTranslateRounded: SvgIconComponent; +export const GTranslateSharp: SvgIconComponent; +export const GTranslateTwoTone: SvgIconComponent; +export const Gamepad: SvgIconComponent; +export const GamepadOutlined: SvgIconComponent; +export const GamepadRounded: SvgIconComponent; +export const GamepadSharp: SvgIconComponent; +export const GamepadTwoTone: SvgIconComponent; +export const Games: SvgIconComponent; +export const GamesOutlined: SvgIconComponent; +export const GamesRounded: SvgIconComponent; +export const GamesSharp: SvgIconComponent; +export const GamesTwoTone: SvgIconComponent; +export const Garage: SvgIconComponent; +export const GarageOutlined: SvgIconComponent; +export const GarageRounded: SvgIconComponent; +export const GarageSharp: SvgIconComponent; +export const GarageTwoTone: SvgIconComponent; +export const GasMeter: SvgIconComponent; +export const GasMeterOutlined: SvgIconComponent; +export const GasMeterRounded: SvgIconComponent; +export const GasMeterSharp: SvgIconComponent; +export const GasMeterTwoTone: SvgIconComponent; +export const Gavel: SvgIconComponent; +export const GavelOutlined: SvgIconComponent; +export const GavelRounded: SvgIconComponent; +export const GavelSharp: SvgIconComponent; +export const GavelTwoTone: SvgIconComponent; +export const Gesture: SvgIconComponent; +export const GestureOutlined: SvgIconComponent; +export const GestureRounded: SvgIconComponent; +export const GestureSharp: SvgIconComponent; +export const GestureTwoTone: SvgIconComponent; +export const GetApp: SvgIconComponent; +export const GetAppOutlined: SvgIconComponent; +export const GetAppRounded: SvgIconComponent; +export const GetAppSharp: SvgIconComponent; +export const GetAppTwoTone: SvgIconComponent; +export const Gif: SvgIconComponent; +export const GifBox: SvgIconComponent; +export const GifBoxOutlined: SvgIconComponent; +export const GifBoxRounded: SvgIconComponent; +export const GifBoxSharp: SvgIconComponent; +export const GifBoxTwoTone: SvgIconComponent; +export const GifOutlined: SvgIconComponent; +export const GifRounded: SvgIconComponent; +export const GifSharp: SvgIconComponent; +export const GifTwoTone: SvgIconComponent; +export const Girl: SvgIconComponent; +export const GirlOutlined: SvgIconComponent; +export const GirlRounded: SvgIconComponent; +export const GirlSharp: SvgIconComponent; +export const GirlTwoTone: SvgIconComponent; +export const GitHub: SvgIconComponent; +export const Gite: SvgIconComponent; +export const GiteOutlined: SvgIconComponent; +export const GiteRounded: SvgIconComponent; +export const GiteSharp: SvgIconComponent; +export const GiteTwoTone: SvgIconComponent; +export const GolfCourse: SvgIconComponent; +export const GolfCourseOutlined: SvgIconComponent; +export const GolfCourseRounded: SvgIconComponent; +export const GolfCourseSharp: SvgIconComponent; +export const GolfCourseTwoTone: SvgIconComponent; +export const Google: SvgIconComponent; +export const GppBad: SvgIconComponent; +export const GppBadOutlined: SvgIconComponent; +export const GppBadRounded: SvgIconComponent; +export const GppBadSharp: SvgIconComponent; +export const GppBadTwoTone: SvgIconComponent; +export const GppGood: SvgIconComponent; +export const GppGoodOutlined: SvgIconComponent; +export const GppGoodRounded: SvgIconComponent; +export const GppGoodSharp: SvgIconComponent; +export const GppGoodTwoTone: SvgIconComponent; +export const GppMaybe: SvgIconComponent; +export const GppMaybeOutlined: SvgIconComponent; +export const GppMaybeRounded: SvgIconComponent; +export const GppMaybeSharp: SvgIconComponent; +export const GppMaybeTwoTone: SvgIconComponent; +export const GpsFixed: SvgIconComponent; +export const GpsFixedOutlined: SvgIconComponent; +export const GpsFixedRounded: SvgIconComponent; +export const GpsFixedSharp: SvgIconComponent; +export const GpsFixedTwoTone: SvgIconComponent; +export const GpsNotFixed: SvgIconComponent; +export const GpsNotFixedOutlined: SvgIconComponent; +export const GpsNotFixedRounded: SvgIconComponent; +export const GpsNotFixedSharp: SvgIconComponent; +export const GpsNotFixedTwoTone: SvgIconComponent; +export const GpsOff: SvgIconComponent; +export const GpsOffOutlined: SvgIconComponent; +export const GpsOffRounded: SvgIconComponent; +export const GpsOffSharp: SvgIconComponent; +export const GpsOffTwoTone: SvgIconComponent; +export const Grade: SvgIconComponent; +export const GradeOutlined: SvgIconComponent; +export const GradeRounded: SvgIconComponent; +export const GradeSharp: SvgIconComponent; +export const GradeTwoTone: SvgIconComponent; +export const Gradient: SvgIconComponent; +export const GradientOutlined: SvgIconComponent; +export const GradientRounded: SvgIconComponent; +export const GradientSharp: SvgIconComponent; +export const GradientTwoTone: SvgIconComponent; +export const Grading: SvgIconComponent; +export const GradingOutlined: SvgIconComponent; +export const GradingRounded: SvgIconComponent; +export const GradingSharp: SvgIconComponent; +export const GradingTwoTone: SvgIconComponent; +export const Grain: SvgIconComponent; +export const GrainOutlined: SvgIconComponent; +export const GrainRounded: SvgIconComponent; +export const GrainSharp: SvgIconComponent; +export const GrainTwoTone: SvgIconComponent; +export const GraphicEq: SvgIconComponent; +export const GraphicEqOutlined: SvgIconComponent; +export const GraphicEqRounded: SvgIconComponent; +export const GraphicEqSharp: SvgIconComponent; +export const GraphicEqTwoTone: SvgIconComponent; +export const Grass: SvgIconComponent; +export const GrassOutlined: SvgIconComponent; +export const GrassRounded: SvgIconComponent; +export const GrassSharp: SvgIconComponent; +export const GrassTwoTone: SvgIconComponent; +export const Grid3x3: SvgIconComponent; +export const Grid3x3Outlined: SvgIconComponent; +export const Grid3x3Rounded: SvgIconComponent; +export const Grid3x3Sharp: SvgIconComponent; +export const Grid3x3TwoTone: SvgIconComponent; +export const Grid4x4: SvgIconComponent; +export const Grid4x4Outlined: SvgIconComponent; +export const Grid4x4Rounded: SvgIconComponent; +export const Grid4x4Sharp: SvgIconComponent; +export const Grid4x4TwoTone: SvgIconComponent; +export const GridGoldenratio: SvgIconComponent; +export const GridGoldenratioOutlined: SvgIconComponent; +export const GridGoldenratioRounded: SvgIconComponent; +export const GridGoldenratioSharp: SvgIconComponent; +export const GridGoldenratioTwoTone: SvgIconComponent; +export const GridOff: SvgIconComponent; +export const GridOffOutlined: SvgIconComponent; +export const GridOffRounded: SvgIconComponent; +export const GridOffSharp: SvgIconComponent; +export const GridOffTwoTone: SvgIconComponent; +export const GridOn: SvgIconComponent; +export const GridOnOutlined: SvgIconComponent; +export const GridOnRounded: SvgIconComponent; +export const GridOnSharp: SvgIconComponent; +export const GridOnTwoTone: SvgIconComponent; +export const GridView: SvgIconComponent; +export const GridViewOutlined: SvgIconComponent; +export const GridViewRounded: SvgIconComponent; +export const GridViewSharp: SvgIconComponent; +export const GridViewTwoTone: SvgIconComponent; +export const Group: SvgIconComponent; +export const GroupAdd: SvgIconComponent; +export const GroupAddOutlined: SvgIconComponent; +export const GroupAddRounded: SvgIconComponent; +export const GroupAddSharp: SvgIconComponent; +export const GroupAddTwoTone: SvgIconComponent; +export const GroupOutlined: SvgIconComponent; +export const GroupRemove: SvgIconComponent; +export const GroupRemoveOutlined: SvgIconComponent; +export const GroupRemoveRounded: SvgIconComponent; +export const GroupRemoveSharp: SvgIconComponent; +export const GroupRemoveTwoTone: SvgIconComponent; +export const GroupRounded: SvgIconComponent; +export const GroupSharp: SvgIconComponent; +export const GroupTwoTone: SvgIconComponent; +export const GroupWork: SvgIconComponent; +export const GroupWorkOutlined: SvgIconComponent; +export const GroupWorkRounded: SvgIconComponent; +export const GroupWorkSharp: SvgIconComponent; +export const GroupWorkTwoTone: SvgIconComponent; +export const Groups: SvgIconComponent; +export const Groups2: SvgIconComponent; +export const Groups2Outlined: SvgIconComponent; +export const Groups2Rounded: SvgIconComponent; +export const Groups2Sharp: SvgIconComponent; +export const Groups2TwoTone: SvgIconComponent; +export const Groups3: SvgIconComponent; +export const Groups3Outlined: SvgIconComponent; +export const Groups3Rounded: SvgIconComponent; +export const Groups3Sharp: SvgIconComponent; +export const Groups3TwoTone: SvgIconComponent; +export const GroupsOutlined: SvgIconComponent; +export const GroupsRounded: SvgIconComponent; +export const GroupsSharp: SvgIconComponent; +export const GroupsTwoTone: SvgIconComponent; +export const HMobiledata: SvgIconComponent; +export const HMobiledataOutlined: SvgIconComponent; +export const HMobiledataRounded: SvgIconComponent; +export const HMobiledataSharp: SvgIconComponent; +export const HMobiledataTwoTone: SvgIconComponent; +export const HPlusMobiledata: SvgIconComponent; +export const HPlusMobiledataOutlined: SvgIconComponent; +export const HPlusMobiledataRounded: SvgIconComponent; +export const HPlusMobiledataSharp: SvgIconComponent; +export const HPlusMobiledataTwoTone: SvgIconComponent; +export const Hail: SvgIconComponent; +export const HailOutlined: SvgIconComponent; +export const HailRounded: SvgIconComponent; +export const HailSharp: SvgIconComponent; +export const HailTwoTone: SvgIconComponent; +export const Handshake: SvgIconComponent; +export const HandshakeOutlined: SvgIconComponent; +export const HandshakeRounded: SvgIconComponent; +export const HandshakeSharp: SvgIconComponent; +export const HandshakeTwoTone: SvgIconComponent; +export const Handyman: SvgIconComponent; +export const HandymanOutlined: SvgIconComponent; +export const HandymanRounded: SvgIconComponent; +export const HandymanSharp: SvgIconComponent; +export const HandymanTwoTone: SvgIconComponent; +export const Hardware: SvgIconComponent; +export const HardwareOutlined: SvgIconComponent; +export const HardwareRounded: SvgIconComponent; +export const HardwareSharp: SvgIconComponent; +export const HardwareTwoTone: SvgIconComponent; +export const Hd: SvgIconComponent; +export const HdOutlined: SvgIconComponent; +export const HdRounded: SvgIconComponent; +export const HdSharp: SvgIconComponent; +export const HdTwoTone: SvgIconComponent; +export const HdrAuto: SvgIconComponent; +export const HdrAutoOutlined: SvgIconComponent; +export const HdrAutoRounded: SvgIconComponent; +export const HdrAutoSelect: SvgIconComponent; +export const HdrAutoSelectOutlined: SvgIconComponent; +export const HdrAutoSelectRounded: SvgIconComponent; +export const HdrAutoSelectSharp: SvgIconComponent; +export const HdrAutoSelectTwoTone: SvgIconComponent; +export const HdrAutoSharp: SvgIconComponent; +export const HdrAutoTwoTone: SvgIconComponent; +export const HdrEnhancedSelect: SvgIconComponent; +export const HdrEnhancedSelectOutlined: SvgIconComponent; +export const HdrEnhancedSelectRounded: SvgIconComponent; +export const HdrEnhancedSelectSharp: SvgIconComponent; +export const HdrEnhancedSelectTwoTone: SvgIconComponent; +export const HdrOff: SvgIconComponent; +export const HdrOffOutlined: SvgIconComponent; +export const HdrOffRounded: SvgIconComponent; +export const HdrOffSelect: SvgIconComponent; +export const HdrOffSelectOutlined: SvgIconComponent; +export const HdrOffSelectRounded: SvgIconComponent; +export const HdrOffSelectSharp: SvgIconComponent; +export const HdrOffSelectTwoTone: SvgIconComponent; +export const HdrOffSharp: SvgIconComponent; +export const HdrOffTwoTone: SvgIconComponent; +export const HdrOn: SvgIconComponent; +export const HdrOnOutlined: SvgIconComponent; +export const HdrOnRounded: SvgIconComponent; +export const HdrOnSelect: SvgIconComponent; +export const HdrOnSelectOutlined: SvgIconComponent; +export const HdrOnSelectRounded: SvgIconComponent; +export const HdrOnSelectSharp: SvgIconComponent; +export const HdrOnSelectTwoTone: SvgIconComponent; +export const HdrOnSharp: SvgIconComponent; +export const HdrOnTwoTone: SvgIconComponent; +export const HdrPlus: SvgIconComponent; +export const HdrPlusOutlined: SvgIconComponent; +export const HdrPlusRounded: SvgIconComponent; +export const HdrPlusSharp: SvgIconComponent; +export const HdrPlusTwoTone: SvgIconComponent; +export const HdrStrong: SvgIconComponent; +export const HdrStrongOutlined: SvgIconComponent; +export const HdrStrongRounded: SvgIconComponent; +export const HdrStrongSharp: SvgIconComponent; +export const HdrStrongTwoTone: SvgIconComponent; +export const HdrWeak: SvgIconComponent; +export const HdrWeakOutlined: SvgIconComponent; +export const HdrWeakRounded: SvgIconComponent; +export const HdrWeakSharp: SvgIconComponent; +export const HdrWeakTwoTone: SvgIconComponent; +export const Headphones: SvgIconComponent; +export const HeadphonesBattery: SvgIconComponent; +export const HeadphonesBatteryOutlined: SvgIconComponent; +export const HeadphonesBatteryRounded: SvgIconComponent; +export const HeadphonesBatterySharp: SvgIconComponent; +export const HeadphonesBatteryTwoTone: SvgIconComponent; +export const HeadphonesOutlined: SvgIconComponent; +export const HeadphonesRounded: SvgIconComponent; +export const HeadphonesSharp: SvgIconComponent; +export const HeadphonesTwoTone: SvgIconComponent; +export const Headset: SvgIconComponent; +export const HeadsetMic: SvgIconComponent; +export const HeadsetMicOutlined: SvgIconComponent; +export const HeadsetMicRounded: SvgIconComponent; +export const HeadsetMicSharp: SvgIconComponent; +export const HeadsetMicTwoTone: SvgIconComponent; +export const HeadsetOff: SvgIconComponent; +export const HeadsetOffOutlined: SvgIconComponent; +export const HeadsetOffRounded: SvgIconComponent; +export const HeadsetOffSharp: SvgIconComponent; +export const HeadsetOffTwoTone: SvgIconComponent; +export const HeadsetOutlined: SvgIconComponent; +export const HeadsetRounded: SvgIconComponent; +export const HeadsetSharp: SvgIconComponent; +export const HeadsetTwoTone: SvgIconComponent; +export const Healing: SvgIconComponent; +export const HealingOutlined: SvgIconComponent; +export const HealingRounded: SvgIconComponent; +export const HealingSharp: SvgIconComponent; +export const HealingTwoTone: SvgIconComponent; +export const HealthAndSafety: SvgIconComponent; +export const HealthAndSafetyOutlined: SvgIconComponent; +export const HealthAndSafetyRounded: SvgIconComponent; +export const HealthAndSafetySharp: SvgIconComponent; +export const HealthAndSafetyTwoTone: SvgIconComponent; +export const Hearing: SvgIconComponent; +export const HearingDisabled: SvgIconComponent; +export const HearingDisabledOutlined: SvgIconComponent; +export const HearingDisabledRounded: SvgIconComponent; +export const HearingDisabledSharp: SvgIconComponent; +export const HearingDisabledTwoTone: SvgIconComponent; +export const HearingOutlined: SvgIconComponent; +export const HearingRounded: SvgIconComponent; +export const HearingSharp: SvgIconComponent; +export const HearingTwoTone: SvgIconComponent; +export const HeartBroken: SvgIconComponent; +export const HeartBrokenOutlined: SvgIconComponent; +export const HeartBrokenRounded: SvgIconComponent; +export const HeartBrokenSharp: SvgIconComponent; +export const HeartBrokenTwoTone: SvgIconComponent; +export const HeatPump: SvgIconComponent; +export const HeatPumpOutlined: SvgIconComponent; +export const HeatPumpRounded: SvgIconComponent; +export const HeatPumpSharp: SvgIconComponent; +export const HeatPumpTwoTone: SvgIconComponent; +export const Height: SvgIconComponent; +export const HeightOutlined: SvgIconComponent; +export const HeightRounded: SvgIconComponent; +export const HeightSharp: SvgIconComponent; +export const HeightTwoTone: SvgIconComponent; +export const Help: SvgIconComponent; +export const HelpCenter: SvgIconComponent; +export const HelpCenterOutlined: SvgIconComponent; +export const HelpCenterRounded: SvgIconComponent; +export const HelpCenterSharp: SvgIconComponent; +export const HelpCenterTwoTone: SvgIconComponent; +export const HelpOutline: SvgIconComponent; +export const HelpOutlineOutlined: SvgIconComponent; +export const HelpOutlineRounded: SvgIconComponent; +export const HelpOutlineSharp: SvgIconComponent; +export const HelpOutlineTwoTone: SvgIconComponent; +export const HelpOutlined: SvgIconComponent; +export const HelpRounded: SvgIconComponent; +export const HelpSharp: SvgIconComponent; +export const HelpTwoTone: SvgIconComponent; +export const Hevc: SvgIconComponent; +export const HevcOutlined: SvgIconComponent; +export const HevcRounded: SvgIconComponent; +export const HevcSharp: SvgIconComponent; +export const HevcTwoTone: SvgIconComponent; +export const Hexagon: SvgIconComponent; +export const HexagonOutlined: SvgIconComponent; +export const HexagonRounded: SvgIconComponent; +export const HexagonSharp: SvgIconComponent; +export const HexagonTwoTone: SvgIconComponent; +export const HideImage: SvgIconComponent; +export const HideImageOutlined: SvgIconComponent; +export const HideImageRounded: SvgIconComponent; +export const HideImageSharp: SvgIconComponent; +export const HideImageTwoTone: SvgIconComponent; +export const HideSource: SvgIconComponent; +export const HideSourceOutlined: SvgIconComponent; +export const HideSourceRounded: SvgIconComponent; +export const HideSourceSharp: SvgIconComponent; +export const HideSourceTwoTone: SvgIconComponent; +export const HighQuality: SvgIconComponent; +export const HighQualityOutlined: SvgIconComponent; +export const HighQualityRounded: SvgIconComponent; +export const HighQualitySharp: SvgIconComponent; +export const HighQualityTwoTone: SvgIconComponent; +export const Highlight: SvgIconComponent; +export const HighlightAlt: SvgIconComponent; +export const HighlightAltOutlined: SvgIconComponent; +export const HighlightAltRounded: SvgIconComponent; +export const HighlightAltSharp: SvgIconComponent; +export const HighlightAltTwoTone: SvgIconComponent; +export const HighlightOff: SvgIconComponent; +export const HighlightOffOutlined: SvgIconComponent; +export const HighlightOffRounded: SvgIconComponent; +export const HighlightOffSharp: SvgIconComponent; +export const HighlightOffTwoTone: SvgIconComponent; +export const HighlightOutlined: SvgIconComponent; +export const HighlightRounded: SvgIconComponent; +export const HighlightSharp: SvgIconComponent; +export const HighlightTwoTone: SvgIconComponent; +export const Hiking: SvgIconComponent; +export const HikingOutlined: SvgIconComponent; +export const HikingRounded: SvgIconComponent; +export const HikingSharp: SvgIconComponent; +export const HikingTwoTone: SvgIconComponent; +export const History: SvgIconComponent; +export const HistoryEdu: SvgIconComponent; +export const HistoryEduOutlined: SvgIconComponent; +export const HistoryEduRounded: SvgIconComponent; +export const HistoryEduSharp: SvgIconComponent; +export const HistoryEduTwoTone: SvgIconComponent; +export const HistoryOutlined: SvgIconComponent; +export const HistoryRounded: SvgIconComponent; +export const HistorySharp: SvgIconComponent; +export const HistoryToggleOff: SvgIconComponent; +export const HistoryToggleOffOutlined: SvgIconComponent; +export const HistoryToggleOffRounded: SvgIconComponent; +export const HistoryToggleOffSharp: SvgIconComponent; +export const HistoryToggleOffTwoTone: SvgIconComponent; +export const HistoryTwoTone: SvgIconComponent; +export const Hive: SvgIconComponent; +export const HiveOutlined: SvgIconComponent; +export const HiveRounded: SvgIconComponent; +export const HiveSharp: SvgIconComponent; +export const HiveTwoTone: SvgIconComponent; +export const Hls: SvgIconComponent; +export const HlsOff: SvgIconComponent; +export const HlsOffOutlined: SvgIconComponent; +export const HlsOffRounded: SvgIconComponent; +export const HlsOffSharp: SvgIconComponent; +export const HlsOffTwoTone: SvgIconComponent; +export const HlsOutlined: SvgIconComponent; +export const HlsRounded: SvgIconComponent; +export const HlsSharp: SvgIconComponent; +export const HlsTwoTone: SvgIconComponent; +export const HolidayVillage: SvgIconComponent; +export const HolidayVillageOutlined: SvgIconComponent; +export const HolidayVillageRounded: SvgIconComponent; +export const HolidayVillageSharp: SvgIconComponent; +export const HolidayVillageTwoTone: SvgIconComponent; +export const Home: SvgIconComponent; +export const HomeMax: SvgIconComponent; +export const HomeMaxOutlined: SvgIconComponent; +export const HomeMaxRounded: SvgIconComponent; +export const HomeMaxSharp: SvgIconComponent; +export const HomeMaxTwoTone: SvgIconComponent; +export const HomeMini: SvgIconComponent; +export const HomeMiniOutlined: SvgIconComponent; +export const HomeMiniRounded: SvgIconComponent; +export const HomeMiniSharp: SvgIconComponent; +export const HomeMiniTwoTone: SvgIconComponent; +export const HomeOutlined: SvgIconComponent; +export const HomeRepairService: SvgIconComponent; +export const HomeRepairServiceOutlined: SvgIconComponent; +export const HomeRepairServiceRounded: SvgIconComponent; +export const HomeRepairServiceSharp: SvgIconComponent; +export const HomeRepairServiceTwoTone: SvgIconComponent; +export const HomeRounded: SvgIconComponent; +export const HomeSharp: SvgIconComponent; +export const HomeTwoTone: SvgIconComponent; +export const HomeWork: SvgIconComponent; +export const HomeWorkOutlined: SvgIconComponent; +export const HomeWorkRounded: SvgIconComponent; +export const HomeWorkSharp: SvgIconComponent; +export const HomeWorkTwoTone: SvgIconComponent; +export const HorizontalRule: SvgIconComponent; +export const HorizontalRuleOutlined: SvgIconComponent; +export const HorizontalRuleRounded: SvgIconComponent; +export const HorizontalRuleSharp: SvgIconComponent; +export const HorizontalRuleTwoTone: SvgIconComponent; +export const HorizontalSplit: SvgIconComponent; +export const HorizontalSplitOutlined: SvgIconComponent; +export const HorizontalSplitRounded: SvgIconComponent; +export const HorizontalSplitSharp: SvgIconComponent; +export const HorizontalSplitTwoTone: SvgIconComponent; +export const HotTub: SvgIconComponent; +export const HotTubOutlined: SvgIconComponent; +export const HotTubRounded: SvgIconComponent; +export const HotTubSharp: SvgIconComponent; +export const HotTubTwoTone: SvgIconComponent; +export const Hotel: SvgIconComponent; +export const HotelOutlined: SvgIconComponent; +export const HotelRounded: SvgIconComponent; +export const HotelSharp: SvgIconComponent; +export const HotelTwoTone: SvgIconComponent; +export const HourglassBottom: SvgIconComponent; +export const HourglassBottomOutlined: SvgIconComponent; +export const HourglassBottomRounded: SvgIconComponent; +export const HourglassBottomSharp: SvgIconComponent; +export const HourglassBottomTwoTone: SvgIconComponent; +export const HourglassDisabled: SvgIconComponent; +export const HourglassDisabledOutlined: SvgIconComponent; +export const HourglassDisabledRounded: SvgIconComponent; +export const HourglassDisabledSharp: SvgIconComponent; +export const HourglassDisabledTwoTone: SvgIconComponent; +export const HourglassEmpty: SvgIconComponent; +export const HourglassEmptyOutlined: SvgIconComponent; +export const HourglassEmptyRounded: SvgIconComponent; +export const HourglassEmptySharp: SvgIconComponent; +export const HourglassEmptyTwoTone: SvgIconComponent; +export const HourglassFull: SvgIconComponent; +export const HourglassFullOutlined: SvgIconComponent; +export const HourglassFullRounded: SvgIconComponent; +export const HourglassFullSharp: SvgIconComponent; +export const HourglassFullTwoTone: SvgIconComponent; +export const HourglassTop: SvgIconComponent; +export const HourglassTopOutlined: SvgIconComponent; +export const HourglassTopRounded: SvgIconComponent; +export const HourglassTopSharp: SvgIconComponent; +export const HourglassTopTwoTone: SvgIconComponent; +export const House: SvgIconComponent; +export const HouseOutlined: SvgIconComponent; +export const HouseRounded: SvgIconComponent; +export const HouseSharp: SvgIconComponent; +export const HouseSiding: SvgIconComponent; +export const HouseSidingOutlined: SvgIconComponent; +export const HouseSidingRounded: SvgIconComponent; +export const HouseSidingSharp: SvgIconComponent; +export const HouseSidingTwoTone: SvgIconComponent; +export const HouseTwoTone: SvgIconComponent; +export const Houseboat: SvgIconComponent; +export const HouseboatOutlined: SvgIconComponent; +export const HouseboatRounded: SvgIconComponent; +export const HouseboatSharp: SvgIconComponent; +export const HouseboatTwoTone: SvgIconComponent; +export const HowToReg: SvgIconComponent; +export const HowToRegOutlined: SvgIconComponent; +export const HowToRegRounded: SvgIconComponent; +export const HowToRegSharp: SvgIconComponent; +export const HowToRegTwoTone: SvgIconComponent; +export const HowToVote: SvgIconComponent; +export const HowToVoteOutlined: SvgIconComponent; +export const HowToVoteRounded: SvgIconComponent; +export const HowToVoteSharp: SvgIconComponent; +export const HowToVoteTwoTone: SvgIconComponent; +export const Html: SvgIconComponent; +export const HtmlOutlined: SvgIconComponent; +export const HtmlRounded: SvgIconComponent; +export const HtmlSharp: SvgIconComponent; +export const HtmlTwoTone: SvgIconComponent; +export const Http: SvgIconComponent; +export const HttpOutlined: SvgIconComponent; +export const HttpRounded: SvgIconComponent; +export const HttpSharp: SvgIconComponent; +export const HttpTwoTone: SvgIconComponent; +export const Https: SvgIconComponent; +export const HttpsOutlined: SvgIconComponent; +export const HttpsRounded: SvgIconComponent; +export const HttpsSharp: SvgIconComponent; +export const HttpsTwoTone: SvgIconComponent; +export const Hub: SvgIconComponent; +export const HubOutlined: SvgIconComponent; +export const HubRounded: SvgIconComponent; +export const HubSharp: SvgIconComponent; +export const HubTwoTone: SvgIconComponent; +export const Hvac: SvgIconComponent; +export const HvacOutlined: SvgIconComponent; +export const HvacRounded: SvgIconComponent; +export const HvacSharp: SvgIconComponent; +export const HvacTwoTone: SvgIconComponent; +export const IceSkating: SvgIconComponent; +export const IceSkatingOutlined: SvgIconComponent; +export const IceSkatingRounded: SvgIconComponent; +export const IceSkatingSharp: SvgIconComponent; +export const IceSkatingTwoTone: SvgIconComponent; +export const Icecream: SvgIconComponent; +export const IcecreamOutlined: SvgIconComponent; +export const IcecreamRounded: SvgIconComponent; +export const IcecreamSharp: SvgIconComponent; +export const IcecreamTwoTone: SvgIconComponent; +export const Image: SvgIconComponent; +export const ImageAspectRatio: SvgIconComponent; +export const ImageAspectRatioOutlined: SvgIconComponent; +export const ImageAspectRatioRounded: SvgIconComponent; +export const ImageAspectRatioSharp: SvgIconComponent; +export const ImageAspectRatioTwoTone: SvgIconComponent; +export const ImageNotSupported: SvgIconComponent; +export const ImageNotSupportedOutlined: SvgIconComponent; +export const ImageNotSupportedRounded: SvgIconComponent; +export const ImageNotSupportedSharp: SvgIconComponent; +export const ImageNotSupportedTwoTone: SvgIconComponent; +export const ImageOutlined: SvgIconComponent; +export const ImageRounded: SvgIconComponent; +export const ImageSearch: SvgIconComponent; +export const ImageSearchOutlined: SvgIconComponent; +export const ImageSearchRounded: SvgIconComponent; +export const ImageSearchSharp: SvgIconComponent; +export const ImageSearchTwoTone: SvgIconComponent; +export const ImageSharp: SvgIconComponent; +export const ImageTwoTone: SvgIconComponent; +export const ImagesearchRoller: SvgIconComponent; +export const ImagesearchRollerOutlined: SvgIconComponent; +export const ImagesearchRollerRounded: SvgIconComponent; +export const ImagesearchRollerSharp: SvgIconComponent; +export const ImagesearchRollerTwoTone: SvgIconComponent; +export const ImportContacts: SvgIconComponent; +export const ImportContactsOutlined: SvgIconComponent; +export const ImportContactsRounded: SvgIconComponent; +export const ImportContactsSharp: SvgIconComponent; +export const ImportContactsTwoTone: SvgIconComponent; +export const ImportExport: SvgIconComponent; +export const ImportExportOutlined: SvgIconComponent; +export const ImportExportRounded: SvgIconComponent; +export const ImportExportSharp: SvgIconComponent; +export const ImportExportTwoTone: SvgIconComponent; +export const ImportantDevices: SvgIconComponent; +export const ImportantDevicesOutlined: SvgIconComponent; +export const ImportantDevicesRounded: SvgIconComponent; +export const ImportantDevicesSharp: SvgIconComponent; +export const ImportantDevicesTwoTone: SvgIconComponent; +export const Inbox: SvgIconComponent; +export const InboxOutlined: SvgIconComponent; +export const InboxRounded: SvgIconComponent; +export const InboxSharp: SvgIconComponent; +export const InboxTwoTone: SvgIconComponent; +export const IndeterminateCheckBox: SvgIconComponent; +export const IndeterminateCheckBoxOutlined: SvgIconComponent; +export const IndeterminateCheckBoxRounded: SvgIconComponent; +export const IndeterminateCheckBoxSharp: SvgIconComponent; +export const IndeterminateCheckBoxTwoTone: SvgIconComponent; +export const Info: SvgIconComponent; +export const InfoOutlined: SvgIconComponent; +export const InfoRounded: SvgIconComponent; +export const InfoSharp: SvgIconComponent; +export const InfoTwoTone: SvgIconComponent; +export const Input: SvgIconComponent; +export const InputOutlined: SvgIconComponent; +export const InputRounded: SvgIconComponent; +export const InputSharp: SvgIconComponent; +export const InputTwoTone: SvgIconComponent; +export const InsertChart: SvgIconComponent; +export const InsertChartOutlined: SvgIconComponent; +export const InsertChartOutlinedOutlined: SvgIconComponent; +export const InsertChartOutlinedRounded: SvgIconComponent; +export const InsertChartOutlinedSharp: SvgIconComponent; +export const InsertChartOutlinedTwoTone: SvgIconComponent; +export const InsertChartRounded: SvgIconComponent; +export const InsertChartSharp: SvgIconComponent; +export const InsertChartTwoTone: SvgIconComponent; +export const InsertComment: SvgIconComponent; +export const InsertCommentOutlined: SvgIconComponent; +export const InsertCommentRounded: SvgIconComponent; +export const InsertCommentSharp: SvgIconComponent; +export const InsertCommentTwoTone: SvgIconComponent; +export const InsertDriveFile: SvgIconComponent; +export const InsertDriveFileOutlined: SvgIconComponent; +export const InsertDriveFileRounded: SvgIconComponent; +export const InsertDriveFileSharp: SvgIconComponent; +export const InsertDriveFileTwoTone: SvgIconComponent; +export const InsertEmoticon: SvgIconComponent; +export const InsertEmoticonOutlined: SvgIconComponent; +export const InsertEmoticonRounded: SvgIconComponent; +export const InsertEmoticonSharp: SvgIconComponent; +export const InsertEmoticonTwoTone: SvgIconComponent; +export const InsertInvitation: SvgIconComponent; +export const InsertInvitationOutlined: SvgIconComponent; +export const InsertInvitationRounded: SvgIconComponent; +export const InsertInvitationSharp: SvgIconComponent; +export const InsertInvitationTwoTone: SvgIconComponent; +export const InsertLink: SvgIconComponent; +export const InsertLinkOutlined: SvgIconComponent; +export const InsertLinkRounded: SvgIconComponent; +export const InsertLinkSharp: SvgIconComponent; +export const InsertLinkTwoTone: SvgIconComponent; +export const InsertPageBreak: SvgIconComponent; +export const InsertPageBreakOutlined: SvgIconComponent; +export const InsertPageBreakRounded: SvgIconComponent; +export const InsertPageBreakSharp: SvgIconComponent; +export const InsertPageBreakTwoTone: SvgIconComponent; +export const InsertPhoto: SvgIconComponent; +export const InsertPhotoOutlined: SvgIconComponent; +export const InsertPhotoRounded: SvgIconComponent; +export const InsertPhotoSharp: SvgIconComponent; +export const InsertPhotoTwoTone: SvgIconComponent; +export const Insights: SvgIconComponent; +export const InsightsOutlined: SvgIconComponent; +export const InsightsRounded: SvgIconComponent; +export const InsightsSharp: SvgIconComponent; +export const InsightsTwoTone: SvgIconComponent; +export const Instagram: SvgIconComponent; +export const InstallDesktop: SvgIconComponent; +export const InstallDesktopOutlined: SvgIconComponent; +export const InstallDesktopRounded: SvgIconComponent; +export const InstallDesktopSharp: SvgIconComponent; +export const InstallDesktopTwoTone: SvgIconComponent; +export const InstallMobile: SvgIconComponent; +export const InstallMobileOutlined: SvgIconComponent; +export const InstallMobileRounded: SvgIconComponent; +export const InstallMobileSharp: SvgIconComponent; +export const InstallMobileTwoTone: SvgIconComponent; +export const IntegrationInstructions: SvgIconComponent; +export const IntegrationInstructionsOutlined: SvgIconComponent; +export const IntegrationInstructionsRounded: SvgIconComponent; +export const IntegrationInstructionsSharp: SvgIconComponent; +export const IntegrationInstructionsTwoTone: SvgIconComponent; +export const Interests: SvgIconComponent; +export const InterestsOutlined: SvgIconComponent; +export const InterestsRounded: SvgIconComponent; +export const InterestsSharp: SvgIconComponent; +export const InterestsTwoTone: SvgIconComponent; +export const InterpreterMode: SvgIconComponent; +export const InterpreterModeOutlined: SvgIconComponent; +export const InterpreterModeRounded: SvgIconComponent; +export const InterpreterModeSharp: SvgIconComponent; +export const InterpreterModeTwoTone: SvgIconComponent; +export const Inventory: SvgIconComponent; +export const Inventory2: SvgIconComponent; +export const Inventory2Outlined: SvgIconComponent; +export const Inventory2Rounded: SvgIconComponent; +export const Inventory2Sharp: SvgIconComponent; +export const Inventory2TwoTone: SvgIconComponent; +export const InventoryOutlined: SvgIconComponent; +export const InventoryRounded: SvgIconComponent; +export const InventorySharp: SvgIconComponent; +export const InventoryTwoTone: SvgIconComponent; +export const InvertColors: SvgIconComponent; +export const InvertColorsOff: SvgIconComponent; +export const InvertColorsOffOutlined: SvgIconComponent; +export const InvertColorsOffRounded: SvgIconComponent; +export const InvertColorsOffSharp: SvgIconComponent; +export const InvertColorsOffTwoTone: SvgIconComponent; +export const InvertColorsOutlined: SvgIconComponent; +export const InvertColorsRounded: SvgIconComponent; +export const InvertColorsSharp: SvgIconComponent; +export const InvertColorsTwoTone: SvgIconComponent; +export const IosShare: SvgIconComponent; +export const IosShareOutlined: SvgIconComponent; +export const IosShareRounded: SvgIconComponent; +export const IosShareSharp: SvgIconComponent; +export const IosShareTwoTone: SvgIconComponent; +export const Iron: SvgIconComponent; +export const IronOutlined: SvgIconComponent; +export const IronRounded: SvgIconComponent; +export const IronSharp: SvgIconComponent; +export const IronTwoTone: SvgIconComponent; +export const Iso: SvgIconComponent; +export const IsoOutlined: SvgIconComponent; +export const IsoRounded: SvgIconComponent; +export const IsoSharp: SvgIconComponent; +export const IsoTwoTone: SvgIconComponent; +export const Javascript: SvgIconComponent; +export const JavascriptOutlined: SvgIconComponent; +export const JavascriptRounded: SvgIconComponent; +export const JavascriptSharp: SvgIconComponent; +export const JavascriptTwoTone: SvgIconComponent; +export const JoinFull: SvgIconComponent; +export const JoinFullOutlined: SvgIconComponent; +export const JoinFullRounded: SvgIconComponent; +export const JoinFullSharp: SvgIconComponent; +export const JoinFullTwoTone: SvgIconComponent; +export const JoinInner: SvgIconComponent; +export const JoinInnerOutlined: SvgIconComponent; +export const JoinInnerRounded: SvgIconComponent; +export const JoinInnerSharp: SvgIconComponent; +export const JoinInnerTwoTone: SvgIconComponent; +export const JoinLeft: SvgIconComponent; +export const JoinLeftOutlined: SvgIconComponent; +export const JoinLeftRounded: SvgIconComponent; +export const JoinLeftSharp: SvgIconComponent; +export const JoinLeftTwoTone: SvgIconComponent; +export const JoinRight: SvgIconComponent; +export const JoinRightOutlined: SvgIconComponent; +export const JoinRightRounded: SvgIconComponent; +export const JoinRightSharp: SvgIconComponent; +export const JoinRightTwoTone: SvgIconComponent; +export const Kayaking: SvgIconComponent; +export const KayakingOutlined: SvgIconComponent; +export const KayakingRounded: SvgIconComponent; +export const KayakingSharp: SvgIconComponent; +export const KayakingTwoTone: SvgIconComponent; +export const KebabDining: SvgIconComponent; +export const KebabDiningOutlined: SvgIconComponent; +export const KebabDiningRounded: SvgIconComponent; +export const KebabDiningSharp: SvgIconComponent; +export const KebabDiningTwoTone: SvgIconComponent; +export const Key: SvgIconComponent; +export const KeyOff: SvgIconComponent; +export const KeyOffOutlined: SvgIconComponent; +export const KeyOffRounded: SvgIconComponent; +export const KeyOffSharp: SvgIconComponent; +export const KeyOffTwoTone: SvgIconComponent; +export const KeyOutlined: SvgIconComponent; +export const KeyRounded: SvgIconComponent; +export const KeySharp: SvgIconComponent; +export const KeyTwoTone: SvgIconComponent; +export const Keyboard: SvgIconComponent; +export const KeyboardAlt: SvgIconComponent; +export const KeyboardAltOutlined: SvgIconComponent; +export const KeyboardAltRounded: SvgIconComponent; +export const KeyboardAltSharp: SvgIconComponent; +export const KeyboardAltTwoTone: SvgIconComponent; +export const KeyboardArrowDown: SvgIconComponent; +export const KeyboardArrowDownOutlined: SvgIconComponent; +export const KeyboardArrowDownRounded: SvgIconComponent; +export const KeyboardArrowDownSharp: SvgIconComponent; +export const KeyboardArrowDownTwoTone: SvgIconComponent; +export const KeyboardArrowLeft: SvgIconComponent; +export const KeyboardArrowLeftOutlined: SvgIconComponent; +export const KeyboardArrowLeftRounded: SvgIconComponent; +export const KeyboardArrowLeftSharp: SvgIconComponent; +export const KeyboardArrowLeftTwoTone: SvgIconComponent; +export const KeyboardArrowRight: SvgIconComponent; +export const KeyboardArrowRightOutlined: SvgIconComponent; +export const KeyboardArrowRightRounded: SvgIconComponent; +export const KeyboardArrowRightSharp: SvgIconComponent; +export const KeyboardArrowRightTwoTone: SvgIconComponent; +export const KeyboardArrowUp: SvgIconComponent; +export const KeyboardArrowUpOutlined: SvgIconComponent; +export const KeyboardArrowUpRounded: SvgIconComponent; +export const KeyboardArrowUpSharp: SvgIconComponent; +export const KeyboardArrowUpTwoTone: SvgIconComponent; +export const KeyboardBackspace: SvgIconComponent; +export const KeyboardBackspaceOutlined: SvgIconComponent; +export const KeyboardBackspaceRounded: SvgIconComponent; +export const KeyboardBackspaceSharp: SvgIconComponent; +export const KeyboardBackspaceTwoTone: SvgIconComponent; +export const KeyboardCapslock: SvgIconComponent; +export const KeyboardCapslockOutlined: SvgIconComponent; +export const KeyboardCapslockRounded: SvgIconComponent; +export const KeyboardCapslockSharp: SvgIconComponent; +export const KeyboardCapslockTwoTone: SvgIconComponent; +export const KeyboardCommandKey: SvgIconComponent; +export const KeyboardCommandKeyOutlined: SvgIconComponent; +export const KeyboardCommandKeyRounded: SvgIconComponent; +export const KeyboardCommandKeySharp: SvgIconComponent; +export const KeyboardCommandKeyTwoTone: SvgIconComponent; +export const KeyboardControlKey: SvgIconComponent; +export const KeyboardControlKeyOutlined: SvgIconComponent; +export const KeyboardControlKeyRounded: SvgIconComponent; +export const KeyboardControlKeySharp: SvgIconComponent; +export const KeyboardControlKeyTwoTone: SvgIconComponent; +export const KeyboardDoubleArrowDown: SvgIconComponent; +export const KeyboardDoubleArrowDownOutlined: SvgIconComponent; +export const KeyboardDoubleArrowDownRounded: SvgIconComponent; +export const KeyboardDoubleArrowDownSharp: SvgIconComponent; +export const KeyboardDoubleArrowDownTwoTone: SvgIconComponent; +export const KeyboardDoubleArrowLeft: SvgIconComponent; +export const KeyboardDoubleArrowLeftOutlined: SvgIconComponent; +export const KeyboardDoubleArrowLeftRounded: SvgIconComponent; +export const KeyboardDoubleArrowLeftSharp: SvgIconComponent; +export const KeyboardDoubleArrowLeftTwoTone: SvgIconComponent; +export const KeyboardDoubleArrowRight: SvgIconComponent; +export const KeyboardDoubleArrowRightOutlined: SvgIconComponent; +export const KeyboardDoubleArrowRightRounded: SvgIconComponent; +export const KeyboardDoubleArrowRightSharp: SvgIconComponent; +export const KeyboardDoubleArrowRightTwoTone: SvgIconComponent; +export const KeyboardDoubleArrowUp: SvgIconComponent; +export const KeyboardDoubleArrowUpOutlined: SvgIconComponent; +export const KeyboardDoubleArrowUpRounded: SvgIconComponent; +export const KeyboardDoubleArrowUpSharp: SvgIconComponent; +export const KeyboardDoubleArrowUpTwoTone: SvgIconComponent; +export const KeyboardHide: SvgIconComponent; +export const KeyboardHideOutlined: SvgIconComponent; +export const KeyboardHideRounded: SvgIconComponent; +export const KeyboardHideSharp: SvgIconComponent; +export const KeyboardHideTwoTone: SvgIconComponent; +export const KeyboardOptionKey: SvgIconComponent; +export const KeyboardOptionKeyOutlined: SvgIconComponent; +export const KeyboardOptionKeyRounded: SvgIconComponent; +export const KeyboardOptionKeySharp: SvgIconComponent; +export const KeyboardOptionKeyTwoTone: SvgIconComponent; +export const KeyboardOutlined: SvgIconComponent; +export const KeyboardReturn: SvgIconComponent; +export const KeyboardReturnOutlined: SvgIconComponent; +export const KeyboardReturnRounded: SvgIconComponent; +export const KeyboardReturnSharp: SvgIconComponent; +export const KeyboardReturnTwoTone: SvgIconComponent; +export const KeyboardRounded: SvgIconComponent; +export const KeyboardSharp: SvgIconComponent; +export const KeyboardTab: SvgIconComponent; +export const KeyboardTabOutlined: SvgIconComponent; +export const KeyboardTabRounded: SvgIconComponent; +export const KeyboardTabSharp: SvgIconComponent; +export const KeyboardTabTwoTone: SvgIconComponent; +export const KeyboardTwoTone: SvgIconComponent; +export const KeyboardVoice: SvgIconComponent; +export const KeyboardVoiceOutlined: SvgIconComponent; +export const KeyboardVoiceRounded: SvgIconComponent; +export const KeyboardVoiceSharp: SvgIconComponent; +export const KeyboardVoiceTwoTone: SvgIconComponent; +export const KingBed: SvgIconComponent; +export const KingBedOutlined: SvgIconComponent; +export const KingBedRounded: SvgIconComponent; +export const KingBedSharp: SvgIconComponent; +export const KingBedTwoTone: SvgIconComponent; +export const Kitchen: SvgIconComponent; +export const KitchenOutlined: SvgIconComponent; +export const KitchenRounded: SvgIconComponent; +export const KitchenSharp: SvgIconComponent; +export const KitchenTwoTone: SvgIconComponent; +export const Kitesurfing: SvgIconComponent; +export const KitesurfingOutlined: SvgIconComponent; +export const KitesurfingRounded: SvgIconComponent; +export const KitesurfingSharp: SvgIconComponent; +export const KitesurfingTwoTone: SvgIconComponent; +export const Label: SvgIconComponent; +export const LabelImportant: SvgIconComponent; +export const LabelImportantOutlined: SvgIconComponent; +export const LabelImportantRounded: SvgIconComponent; +export const LabelImportantSharp: SvgIconComponent; +export const LabelImportantTwoTone: SvgIconComponent; +export const LabelOff: SvgIconComponent; +export const LabelOffOutlined: SvgIconComponent; +export const LabelOffRounded: SvgIconComponent; +export const LabelOffSharp: SvgIconComponent; +export const LabelOffTwoTone: SvgIconComponent; +export const LabelOutlined: SvgIconComponent; +export const LabelRounded: SvgIconComponent; +export const LabelSharp: SvgIconComponent; +export const LabelTwoTone: SvgIconComponent; +export const Lan: SvgIconComponent; +export const LanOutlined: SvgIconComponent; +export const LanRounded: SvgIconComponent; +export const LanSharp: SvgIconComponent; +export const LanTwoTone: SvgIconComponent; +export const Landscape: SvgIconComponent; +export const LandscapeOutlined: SvgIconComponent; +export const LandscapeRounded: SvgIconComponent; +export const LandscapeSharp: SvgIconComponent; +export const LandscapeTwoTone: SvgIconComponent; +export const Landslide: SvgIconComponent; +export const LandslideOutlined: SvgIconComponent; +export const LandslideRounded: SvgIconComponent; +export const LandslideSharp: SvgIconComponent; +export const LandslideTwoTone: SvgIconComponent; +export const Language: SvgIconComponent; +export const LanguageOutlined: SvgIconComponent; +export const LanguageRounded: SvgIconComponent; +export const LanguageSharp: SvgIconComponent; +export const LanguageTwoTone: SvgIconComponent; +export const Laptop: SvgIconComponent; +export const LaptopChromebook: SvgIconComponent; +export const LaptopChromebookOutlined: SvgIconComponent; +export const LaptopChromebookRounded: SvgIconComponent; +export const LaptopChromebookSharp: SvgIconComponent; +export const LaptopChromebookTwoTone: SvgIconComponent; +export const LaptopMac: SvgIconComponent; +export const LaptopMacOutlined: SvgIconComponent; +export const LaptopMacRounded: SvgIconComponent; +export const LaptopMacSharp: SvgIconComponent; +export const LaptopMacTwoTone: SvgIconComponent; +export const LaptopOutlined: SvgIconComponent; +export const LaptopRounded: SvgIconComponent; +export const LaptopSharp: SvgIconComponent; +export const LaptopTwoTone: SvgIconComponent; +export const LaptopWindows: SvgIconComponent; +export const LaptopWindowsOutlined: SvgIconComponent; +export const LaptopWindowsRounded: SvgIconComponent; +export const LaptopWindowsSharp: SvgIconComponent; +export const LaptopWindowsTwoTone: SvgIconComponent; +export const LastPage: SvgIconComponent; +export const LastPageOutlined: SvgIconComponent; +export const LastPageRounded: SvgIconComponent; +export const LastPageSharp: SvgIconComponent; +export const LastPageTwoTone: SvgIconComponent; +export const Launch: SvgIconComponent; +export const LaunchOutlined: SvgIconComponent; +export const LaunchRounded: SvgIconComponent; +export const LaunchSharp: SvgIconComponent; +export const LaunchTwoTone: SvgIconComponent; +export const Layers: SvgIconComponent; +export const LayersClear: SvgIconComponent; +export const LayersClearOutlined: SvgIconComponent; +export const LayersClearRounded: SvgIconComponent; +export const LayersClearSharp: SvgIconComponent; +export const LayersClearTwoTone: SvgIconComponent; +export const LayersOutlined: SvgIconComponent; +export const LayersRounded: SvgIconComponent; +export const LayersSharp: SvgIconComponent; +export const LayersTwoTone: SvgIconComponent; +export const Leaderboard: SvgIconComponent; +export const LeaderboardOutlined: SvgIconComponent; +export const LeaderboardRounded: SvgIconComponent; +export const LeaderboardSharp: SvgIconComponent; +export const LeaderboardTwoTone: SvgIconComponent; +export const LeakAdd: SvgIconComponent; +export const LeakAddOutlined: SvgIconComponent; +export const LeakAddRounded: SvgIconComponent; +export const LeakAddSharp: SvgIconComponent; +export const LeakAddTwoTone: SvgIconComponent; +export const LeakRemove: SvgIconComponent; +export const LeakRemoveOutlined: SvgIconComponent; +export const LeakRemoveRounded: SvgIconComponent; +export const LeakRemoveSharp: SvgIconComponent; +export const LeakRemoveTwoTone: SvgIconComponent; +export const LegendToggle: SvgIconComponent; +export const LegendToggleOutlined: SvgIconComponent; +export const LegendToggleRounded: SvgIconComponent; +export const LegendToggleSharp: SvgIconComponent; +export const LegendToggleTwoTone: SvgIconComponent; +export const Lens: SvgIconComponent; +export const LensBlur: SvgIconComponent; +export const LensBlurOutlined: SvgIconComponent; +export const LensBlurRounded: SvgIconComponent; +export const LensBlurSharp: SvgIconComponent; +export const LensBlurTwoTone: SvgIconComponent; +export const LensOutlined: SvgIconComponent; +export const LensRounded: SvgIconComponent; +export const LensSharp: SvgIconComponent; +export const LensTwoTone: SvgIconComponent; +export const LibraryAdd: SvgIconComponent; +export const LibraryAddCheck: SvgIconComponent; +export const LibraryAddCheckOutlined: SvgIconComponent; +export const LibraryAddCheckRounded: SvgIconComponent; +export const LibraryAddCheckSharp: SvgIconComponent; +export const LibraryAddCheckTwoTone: SvgIconComponent; +export const LibraryAddOutlined: SvgIconComponent; +export const LibraryAddRounded: SvgIconComponent; +export const LibraryAddSharp: SvgIconComponent; +export const LibraryAddTwoTone: SvgIconComponent; +export const LibraryBooks: SvgIconComponent; +export const LibraryBooksOutlined: SvgIconComponent; +export const LibraryBooksRounded: SvgIconComponent; +export const LibraryBooksSharp: SvgIconComponent; +export const LibraryBooksTwoTone: SvgIconComponent; +export const LibraryMusic: SvgIconComponent; +export const LibraryMusicOutlined: SvgIconComponent; +export const LibraryMusicRounded: SvgIconComponent; +export const LibraryMusicSharp: SvgIconComponent; +export const LibraryMusicTwoTone: SvgIconComponent; +export const Light: SvgIconComponent; +export const LightMode: SvgIconComponent; +export const LightModeOutlined: SvgIconComponent; +export const LightModeRounded: SvgIconComponent; +export const LightModeSharp: SvgIconComponent; +export const LightModeTwoTone: SvgIconComponent; +export const LightOutlined: SvgIconComponent; +export const LightRounded: SvgIconComponent; +export const LightSharp: SvgIconComponent; +export const LightTwoTone: SvgIconComponent; +export const Lightbulb: SvgIconComponent; +export const LightbulbCircle: SvgIconComponent; +export const LightbulbCircleOutlined: SvgIconComponent; +export const LightbulbCircleRounded: SvgIconComponent; +export const LightbulbCircleSharp: SvgIconComponent; +export const LightbulbCircleTwoTone: SvgIconComponent; +export const LightbulbOutlined: SvgIconComponent; +export const LightbulbRounded: SvgIconComponent; +export const LightbulbSharp: SvgIconComponent; +export const LightbulbTwoTone: SvgIconComponent; +export const LineAxis: SvgIconComponent; +export const LineAxisOutlined: SvgIconComponent; +export const LineAxisRounded: SvgIconComponent; +export const LineAxisSharp: SvgIconComponent; +export const LineAxisTwoTone: SvgIconComponent; +export const LineStyle: SvgIconComponent; +export const LineStyleOutlined: SvgIconComponent; +export const LineStyleRounded: SvgIconComponent; +export const LineStyleSharp: SvgIconComponent; +export const LineStyleTwoTone: SvgIconComponent; +export const LineWeight: SvgIconComponent; +export const LineWeightOutlined: SvgIconComponent; +export const LineWeightRounded: SvgIconComponent; +export const LineWeightSharp: SvgIconComponent; +export const LineWeightTwoTone: SvgIconComponent; +export const LinearScale: SvgIconComponent; +export const LinearScaleOutlined: SvgIconComponent; +export const LinearScaleRounded: SvgIconComponent; +export const LinearScaleSharp: SvgIconComponent; +export const LinearScaleTwoTone: SvgIconComponent; +export const Link: SvgIconComponent; +export const LinkOff: SvgIconComponent; +export const LinkOffOutlined: SvgIconComponent; +export const LinkOffRounded: SvgIconComponent; +export const LinkOffSharp: SvgIconComponent; +export const LinkOffTwoTone: SvgIconComponent; +export const LinkOutlined: SvgIconComponent; +export const LinkRounded: SvgIconComponent; +export const LinkSharp: SvgIconComponent; +export const LinkTwoTone: SvgIconComponent; +export const LinkedCamera: SvgIconComponent; +export const LinkedCameraOutlined: SvgIconComponent; +export const LinkedCameraRounded: SvgIconComponent; +export const LinkedCameraSharp: SvgIconComponent; +export const LinkedCameraTwoTone: SvgIconComponent; +export const LinkedIn: SvgIconComponent; +export const Liquor: SvgIconComponent; +export const LiquorOutlined: SvgIconComponent; +export const LiquorRounded: SvgIconComponent; +export const LiquorSharp: SvgIconComponent; +export const LiquorTwoTone: SvgIconComponent; +export const List: SvgIconComponent; +export const ListAlt: SvgIconComponent; +export const ListAltOutlined: SvgIconComponent; +export const ListAltRounded: SvgIconComponent; +export const ListAltSharp: SvgIconComponent; +export const ListAltTwoTone: SvgIconComponent; +export const ListOutlined: SvgIconComponent; +export const ListRounded: SvgIconComponent; +export const ListSharp: SvgIconComponent; +export const ListTwoTone: SvgIconComponent; +export const LiveHelp: SvgIconComponent; +export const LiveHelpOutlined: SvgIconComponent; +export const LiveHelpRounded: SvgIconComponent; +export const LiveHelpSharp: SvgIconComponent; +export const LiveHelpTwoTone: SvgIconComponent; +export const LiveTv: SvgIconComponent; +export const LiveTvOutlined: SvgIconComponent; +export const LiveTvRounded: SvgIconComponent; +export const LiveTvSharp: SvgIconComponent; +export const LiveTvTwoTone: SvgIconComponent; +export const Living: SvgIconComponent; +export const LivingOutlined: SvgIconComponent; +export const LivingRounded: SvgIconComponent; +export const LivingSharp: SvgIconComponent; +export const LivingTwoTone: SvgIconComponent; +export const LocalActivity: SvgIconComponent; +export const LocalActivityOutlined: SvgIconComponent; +export const LocalActivityRounded: SvgIconComponent; +export const LocalActivitySharp: SvgIconComponent; +export const LocalActivityTwoTone: SvgIconComponent; +export const LocalAirport: SvgIconComponent; +export const LocalAirportOutlined: SvgIconComponent; +export const LocalAirportRounded: SvgIconComponent; +export const LocalAirportSharp: SvgIconComponent; +export const LocalAirportTwoTone: SvgIconComponent; +export const LocalAtm: SvgIconComponent; +export const LocalAtmOutlined: SvgIconComponent; +export const LocalAtmRounded: SvgIconComponent; +export const LocalAtmSharp: SvgIconComponent; +export const LocalAtmTwoTone: SvgIconComponent; +export const LocalBar: SvgIconComponent; +export const LocalBarOutlined: SvgIconComponent; +export const LocalBarRounded: SvgIconComponent; +export const LocalBarSharp: SvgIconComponent; +export const LocalBarTwoTone: SvgIconComponent; +export const LocalCafe: SvgIconComponent; +export const LocalCafeOutlined: SvgIconComponent; +export const LocalCafeRounded: SvgIconComponent; +export const LocalCafeSharp: SvgIconComponent; +export const LocalCafeTwoTone: SvgIconComponent; +export const LocalCarWash: SvgIconComponent; +export const LocalCarWashOutlined: SvgIconComponent; +export const LocalCarWashRounded: SvgIconComponent; +export const LocalCarWashSharp: SvgIconComponent; +export const LocalCarWashTwoTone: SvgIconComponent; +export const LocalConvenienceStore: SvgIconComponent; +export const LocalConvenienceStoreOutlined: SvgIconComponent; +export const LocalConvenienceStoreRounded: SvgIconComponent; +export const LocalConvenienceStoreSharp: SvgIconComponent; +export const LocalConvenienceStoreTwoTone: SvgIconComponent; +export const LocalDining: SvgIconComponent; +export const LocalDiningOutlined: SvgIconComponent; +export const LocalDiningRounded: SvgIconComponent; +export const LocalDiningSharp: SvgIconComponent; +export const LocalDiningTwoTone: SvgIconComponent; +export const LocalDrink: SvgIconComponent; +export const LocalDrinkOutlined: SvgIconComponent; +export const LocalDrinkRounded: SvgIconComponent; +export const LocalDrinkSharp: SvgIconComponent; +export const LocalDrinkTwoTone: SvgIconComponent; +export const LocalFireDepartment: SvgIconComponent; +export const LocalFireDepartmentOutlined: SvgIconComponent; +export const LocalFireDepartmentRounded: SvgIconComponent; +export const LocalFireDepartmentSharp: SvgIconComponent; +export const LocalFireDepartmentTwoTone: SvgIconComponent; +export const LocalFlorist: SvgIconComponent; +export const LocalFloristOutlined: SvgIconComponent; +export const LocalFloristRounded: SvgIconComponent; +export const LocalFloristSharp: SvgIconComponent; +export const LocalFloristTwoTone: SvgIconComponent; +export const LocalGasStation: SvgIconComponent; +export const LocalGasStationOutlined: SvgIconComponent; +export const LocalGasStationRounded: SvgIconComponent; +export const LocalGasStationSharp: SvgIconComponent; +export const LocalGasStationTwoTone: SvgIconComponent; +export const LocalGroceryStore: SvgIconComponent; +export const LocalGroceryStoreOutlined: SvgIconComponent; +export const LocalGroceryStoreRounded: SvgIconComponent; +export const LocalGroceryStoreSharp: SvgIconComponent; +export const LocalGroceryStoreTwoTone: SvgIconComponent; +export const LocalHospital: SvgIconComponent; +export const LocalHospitalOutlined: SvgIconComponent; +export const LocalHospitalRounded: SvgIconComponent; +export const LocalHospitalSharp: SvgIconComponent; +export const LocalHospitalTwoTone: SvgIconComponent; +export const LocalHotel: SvgIconComponent; +export const LocalHotelOutlined: SvgIconComponent; +export const LocalHotelRounded: SvgIconComponent; +export const LocalHotelSharp: SvgIconComponent; +export const LocalHotelTwoTone: SvgIconComponent; +export const LocalLaundryService: SvgIconComponent; +export const LocalLaundryServiceOutlined: SvgIconComponent; +export const LocalLaundryServiceRounded: SvgIconComponent; +export const LocalLaundryServiceSharp: SvgIconComponent; +export const LocalLaundryServiceTwoTone: SvgIconComponent; +export const LocalLibrary: SvgIconComponent; +export const LocalLibraryOutlined: SvgIconComponent; +export const LocalLibraryRounded: SvgIconComponent; +export const LocalLibrarySharp: SvgIconComponent; +export const LocalLibraryTwoTone: SvgIconComponent; +export const LocalMall: SvgIconComponent; +export const LocalMallOutlined: SvgIconComponent; +export const LocalMallRounded: SvgIconComponent; +export const LocalMallSharp: SvgIconComponent; +export const LocalMallTwoTone: SvgIconComponent; +export const LocalMovies: SvgIconComponent; +export const LocalMoviesOutlined: SvgIconComponent; +export const LocalMoviesRounded: SvgIconComponent; +export const LocalMoviesSharp: SvgIconComponent; +export const LocalMoviesTwoTone: SvgIconComponent; +export const LocalOffer: SvgIconComponent; +export const LocalOfferOutlined: SvgIconComponent; +export const LocalOfferRounded: SvgIconComponent; +export const LocalOfferSharp: SvgIconComponent; +export const LocalOfferTwoTone: SvgIconComponent; +export const LocalParking: SvgIconComponent; +export const LocalParkingOutlined: SvgIconComponent; +export const LocalParkingRounded: SvgIconComponent; +export const LocalParkingSharp: SvgIconComponent; +export const LocalParkingTwoTone: SvgIconComponent; +export const LocalPharmacy: SvgIconComponent; +export const LocalPharmacyOutlined: SvgIconComponent; +export const LocalPharmacyRounded: SvgIconComponent; +export const LocalPharmacySharp: SvgIconComponent; +export const LocalPharmacyTwoTone: SvgIconComponent; +export const LocalPhone: SvgIconComponent; +export const LocalPhoneOutlined: SvgIconComponent; +export const LocalPhoneRounded: SvgIconComponent; +export const LocalPhoneSharp: SvgIconComponent; +export const LocalPhoneTwoTone: SvgIconComponent; +export const LocalPizza: SvgIconComponent; +export const LocalPizzaOutlined: SvgIconComponent; +export const LocalPizzaRounded: SvgIconComponent; +export const LocalPizzaSharp: SvgIconComponent; +export const LocalPizzaTwoTone: SvgIconComponent; +export const LocalPlay: SvgIconComponent; +export const LocalPlayOutlined: SvgIconComponent; +export const LocalPlayRounded: SvgIconComponent; +export const LocalPlaySharp: SvgIconComponent; +export const LocalPlayTwoTone: SvgIconComponent; +export const LocalPolice: SvgIconComponent; +export const LocalPoliceOutlined: SvgIconComponent; +export const LocalPoliceRounded: SvgIconComponent; +export const LocalPoliceSharp: SvgIconComponent; +export const LocalPoliceTwoTone: SvgIconComponent; +export const LocalPostOffice: SvgIconComponent; +export const LocalPostOfficeOutlined: SvgIconComponent; +export const LocalPostOfficeRounded: SvgIconComponent; +export const LocalPostOfficeSharp: SvgIconComponent; +export const LocalPostOfficeTwoTone: SvgIconComponent; +export const LocalPrintshop: SvgIconComponent; +export const LocalPrintshopOutlined: SvgIconComponent; +export const LocalPrintshopRounded: SvgIconComponent; +export const LocalPrintshopSharp: SvgIconComponent; +export const LocalPrintshopTwoTone: SvgIconComponent; +export const LocalSee: SvgIconComponent; +export const LocalSeeOutlined: SvgIconComponent; +export const LocalSeeRounded: SvgIconComponent; +export const LocalSeeSharp: SvgIconComponent; +export const LocalSeeTwoTone: SvgIconComponent; +export const LocalShipping: SvgIconComponent; +export const LocalShippingOutlined: SvgIconComponent; +export const LocalShippingRounded: SvgIconComponent; +export const LocalShippingSharp: SvgIconComponent; +export const LocalShippingTwoTone: SvgIconComponent; +export const LocalTaxi: SvgIconComponent; +export const LocalTaxiOutlined: SvgIconComponent; +export const LocalTaxiRounded: SvgIconComponent; +export const LocalTaxiSharp: SvgIconComponent; +export const LocalTaxiTwoTone: SvgIconComponent; +export const LocationCity: SvgIconComponent; +export const LocationCityOutlined: SvgIconComponent; +export const LocationCityRounded: SvgIconComponent; +export const LocationCitySharp: SvgIconComponent; +export const LocationCityTwoTone: SvgIconComponent; +export const LocationDisabled: SvgIconComponent; +export const LocationDisabledOutlined: SvgIconComponent; +export const LocationDisabledRounded: SvgIconComponent; +export const LocationDisabledSharp: SvgIconComponent; +export const LocationDisabledTwoTone: SvgIconComponent; +export const LocationOff: SvgIconComponent; +export const LocationOffOutlined: SvgIconComponent; +export const LocationOffRounded: SvgIconComponent; +export const LocationOffSharp: SvgIconComponent; +export const LocationOffTwoTone: SvgIconComponent; +export const LocationOn: SvgIconComponent; +export const LocationOnOutlined: SvgIconComponent; +export const LocationOnRounded: SvgIconComponent; +export const LocationOnSharp: SvgIconComponent; +export const LocationOnTwoTone: SvgIconComponent; +export const LocationSearching: SvgIconComponent; +export const LocationSearchingOutlined: SvgIconComponent; +export const LocationSearchingRounded: SvgIconComponent; +export const LocationSearchingSharp: SvgIconComponent; +export const LocationSearchingTwoTone: SvgIconComponent; +export const Lock: SvgIconComponent; +export const LockClock: SvgIconComponent; +export const LockClockOutlined: SvgIconComponent; +export const LockClockRounded: SvgIconComponent; +export const LockClockSharp: SvgIconComponent; +export const LockClockTwoTone: SvgIconComponent; +export const LockOpen: SvgIconComponent; +export const LockOpenOutlined: SvgIconComponent; +export const LockOpenRounded: SvgIconComponent; +export const LockOpenSharp: SvgIconComponent; +export const LockOpenTwoTone: SvgIconComponent; +export const LockOutlined: SvgIconComponent; +export const LockPerson: SvgIconComponent; +export const LockPersonOutlined: SvgIconComponent; +export const LockPersonRounded: SvgIconComponent; +export const LockPersonSharp: SvgIconComponent; +export const LockPersonTwoTone: SvgIconComponent; +export const LockReset: SvgIconComponent; +export const LockResetOutlined: SvgIconComponent; +export const LockResetRounded: SvgIconComponent; +export const LockResetSharp: SvgIconComponent; +export const LockResetTwoTone: SvgIconComponent; +export const LockRounded: SvgIconComponent; +export const LockSharp: SvgIconComponent; +export const LockTwoTone: SvgIconComponent; +export const Login: SvgIconComponent; +export const LoginOutlined: SvgIconComponent; +export const LoginRounded: SvgIconComponent; +export const LoginSharp: SvgIconComponent; +export const LoginTwoTone: SvgIconComponent; +export const LogoDev: SvgIconComponent; +export const LogoDevOutlined: SvgIconComponent; +export const LogoDevRounded: SvgIconComponent; +export const LogoDevSharp: SvgIconComponent; +export const LogoDevTwoTone: SvgIconComponent; +export const Logout: SvgIconComponent; +export const LogoutOutlined: SvgIconComponent; +export const LogoutRounded: SvgIconComponent; +export const LogoutSharp: SvgIconComponent; +export const LogoutTwoTone: SvgIconComponent; +export const Looks: SvgIconComponent; +export const Looks3: SvgIconComponent; +export const Looks3Outlined: SvgIconComponent; +export const Looks3Rounded: SvgIconComponent; +export const Looks3Sharp: SvgIconComponent; +export const Looks3TwoTone: SvgIconComponent; +export const Looks4: SvgIconComponent; +export const Looks4Outlined: SvgIconComponent; +export const Looks4Rounded: SvgIconComponent; +export const Looks4Sharp: SvgIconComponent; +export const Looks4TwoTone: SvgIconComponent; +export const Looks5: SvgIconComponent; +export const Looks5Outlined: SvgIconComponent; +export const Looks5Rounded: SvgIconComponent; +export const Looks5Sharp: SvgIconComponent; +export const Looks5TwoTone: SvgIconComponent; +export const Looks6: SvgIconComponent; +export const Looks6Outlined: SvgIconComponent; +export const Looks6Rounded: SvgIconComponent; +export const Looks6Sharp: SvgIconComponent; +export const Looks6TwoTone: SvgIconComponent; +export const LooksOne: SvgIconComponent; +export const LooksOneOutlined: SvgIconComponent; +export const LooksOneRounded: SvgIconComponent; +export const LooksOneSharp: SvgIconComponent; +export const LooksOneTwoTone: SvgIconComponent; +export const LooksOutlined: SvgIconComponent; +export const LooksRounded: SvgIconComponent; +export const LooksSharp: SvgIconComponent; +export const LooksTwo: SvgIconComponent; +export const LooksTwoOutlined: SvgIconComponent; +export const LooksTwoRounded: SvgIconComponent; +export const LooksTwoSharp: SvgIconComponent; +export const LooksTwoTone: SvgIconComponent; +export const LooksTwoTwoTone: SvgIconComponent; +export const Loop: SvgIconComponent; +export const LoopOutlined: SvgIconComponent; +export const LoopRounded: SvgIconComponent; +export const LoopSharp: SvgIconComponent; +export const LoopTwoTone: SvgIconComponent; +export const Loupe: SvgIconComponent; +export const LoupeOutlined: SvgIconComponent; +export const LoupeRounded: SvgIconComponent; +export const LoupeSharp: SvgIconComponent; +export const LoupeTwoTone: SvgIconComponent; +export const LowPriority: SvgIconComponent; +export const LowPriorityOutlined: SvgIconComponent; +export const LowPriorityRounded: SvgIconComponent; +export const LowPrioritySharp: SvgIconComponent; +export const LowPriorityTwoTone: SvgIconComponent; +export const Loyalty: SvgIconComponent; +export const LoyaltyOutlined: SvgIconComponent; +export const LoyaltyRounded: SvgIconComponent; +export const LoyaltySharp: SvgIconComponent; +export const LoyaltyTwoTone: SvgIconComponent; +export const LteMobiledata: SvgIconComponent; +export const LteMobiledataOutlined: SvgIconComponent; +export const LteMobiledataRounded: SvgIconComponent; +export const LteMobiledataSharp: SvgIconComponent; +export const LteMobiledataTwoTone: SvgIconComponent; +export const LtePlusMobiledata: SvgIconComponent; +export const LtePlusMobiledataOutlined: SvgIconComponent; +export const LtePlusMobiledataRounded: SvgIconComponent; +export const LtePlusMobiledataSharp: SvgIconComponent; +export const LtePlusMobiledataTwoTone: SvgIconComponent; +export const Luggage: SvgIconComponent; +export const LuggageOutlined: SvgIconComponent; +export const LuggageRounded: SvgIconComponent; +export const LuggageSharp: SvgIconComponent; +export const LuggageTwoTone: SvgIconComponent; +export const LunchDining: SvgIconComponent; +export const LunchDiningOutlined: SvgIconComponent; +export const LunchDiningRounded: SvgIconComponent; +export const LunchDiningSharp: SvgIconComponent; +export const LunchDiningTwoTone: SvgIconComponent; +export const Lyrics: SvgIconComponent; +export const LyricsOutlined: SvgIconComponent; +export const LyricsRounded: SvgIconComponent; +export const LyricsSharp: SvgIconComponent; +export const LyricsTwoTone: SvgIconComponent; +export const MacroOff: SvgIconComponent; +export const MacroOffOutlined: SvgIconComponent; +export const MacroOffRounded: SvgIconComponent; +export const MacroOffSharp: SvgIconComponent; +export const MacroOffTwoTone: SvgIconComponent; +export const Mail: SvgIconComponent; +export const MailLock: SvgIconComponent; +export const MailLockOutlined: SvgIconComponent; +export const MailLockRounded: SvgIconComponent; +export const MailLockSharp: SvgIconComponent; +export const MailLockTwoTone: SvgIconComponent; +export const MailOutline: SvgIconComponent; +export const MailOutlineOutlined: SvgIconComponent; +export const MailOutlineRounded: SvgIconComponent; +export const MailOutlineSharp: SvgIconComponent; +export const MailOutlineTwoTone: SvgIconComponent; +export const MailOutlined: SvgIconComponent; +export const MailRounded: SvgIconComponent; +export const MailSharp: SvgIconComponent; +export const MailTwoTone: SvgIconComponent; +export const Male: SvgIconComponent; +export const MaleOutlined: SvgIconComponent; +export const MaleRounded: SvgIconComponent; +export const MaleSharp: SvgIconComponent; +export const MaleTwoTone: SvgIconComponent; +export const Man: SvgIconComponent; +export const Man2: SvgIconComponent; +export const Man2Outlined: SvgIconComponent; +export const Man2Rounded: SvgIconComponent; +export const Man2Sharp: SvgIconComponent; +export const Man2TwoTone: SvgIconComponent; +export const Man3: SvgIconComponent; +export const Man3Outlined: SvgIconComponent; +export const Man3Rounded: SvgIconComponent; +export const Man3Sharp: SvgIconComponent; +export const Man3TwoTone: SvgIconComponent; +export const Man4: SvgIconComponent; +export const Man4Outlined: SvgIconComponent; +export const Man4Rounded: SvgIconComponent; +export const Man4Sharp: SvgIconComponent; +export const Man4TwoTone: SvgIconComponent; +export const ManOutlined: SvgIconComponent; +export const ManRounded: SvgIconComponent; +export const ManSharp: SvgIconComponent; +export const ManTwoTone: SvgIconComponent; +export const ManageAccounts: SvgIconComponent; +export const ManageAccountsOutlined: SvgIconComponent; +export const ManageAccountsRounded: SvgIconComponent; +export const ManageAccountsSharp: SvgIconComponent; +export const ManageAccountsTwoTone: SvgIconComponent; +export const ManageHistory: SvgIconComponent; +export const ManageHistoryOutlined: SvgIconComponent; +export const ManageHistoryRounded: SvgIconComponent; +export const ManageHistorySharp: SvgIconComponent; +export const ManageHistoryTwoTone: SvgIconComponent; +export const ManageSearch: SvgIconComponent; +export const ManageSearchOutlined: SvgIconComponent; +export const ManageSearchRounded: SvgIconComponent; +export const ManageSearchSharp: SvgIconComponent; +export const ManageSearchTwoTone: SvgIconComponent; +export const Map: SvgIconComponent; +export const MapOutlined: SvgIconComponent; +export const MapRounded: SvgIconComponent; +export const MapSharp: SvgIconComponent; +export const MapTwoTone: SvgIconComponent; +export const MapsHomeWork: SvgIconComponent; +export const MapsHomeWorkOutlined: SvgIconComponent; +export const MapsHomeWorkRounded: SvgIconComponent; +export const MapsHomeWorkSharp: SvgIconComponent; +export const MapsHomeWorkTwoTone: SvgIconComponent; +export const MapsUgc: SvgIconComponent; +export const MapsUgcOutlined: SvgIconComponent; +export const MapsUgcRounded: SvgIconComponent; +export const MapsUgcSharp: SvgIconComponent; +export const MapsUgcTwoTone: SvgIconComponent; +export const Margin: SvgIconComponent; +export const MarginOutlined: SvgIconComponent; +export const MarginRounded: SvgIconComponent; +export const MarginSharp: SvgIconComponent; +export const MarginTwoTone: SvgIconComponent; +export const MarkAsUnread: SvgIconComponent; +export const MarkAsUnreadOutlined: SvgIconComponent; +export const MarkAsUnreadRounded: SvgIconComponent; +export const MarkAsUnreadSharp: SvgIconComponent; +export const MarkAsUnreadTwoTone: SvgIconComponent; +export const MarkChatRead: SvgIconComponent; +export const MarkChatReadOutlined: SvgIconComponent; +export const MarkChatReadRounded: SvgIconComponent; +export const MarkChatReadSharp: SvgIconComponent; +export const MarkChatReadTwoTone: SvgIconComponent; +export const MarkChatUnread: SvgIconComponent; +export const MarkChatUnreadOutlined: SvgIconComponent; +export const MarkChatUnreadRounded: SvgIconComponent; +export const MarkChatUnreadSharp: SvgIconComponent; +export const MarkChatUnreadTwoTone: SvgIconComponent; +export const MarkEmailRead: SvgIconComponent; +export const MarkEmailReadOutlined: SvgIconComponent; +export const MarkEmailReadRounded: SvgIconComponent; +export const MarkEmailReadSharp: SvgIconComponent; +export const MarkEmailReadTwoTone: SvgIconComponent; +export const MarkEmailUnread: SvgIconComponent; +export const MarkEmailUnreadOutlined: SvgIconComponent; +export const MarkEmailUnreadRounded: SvgIconComponent; +export const MarkEmailUnreadSharp: SvgIconComponent; +export const MarkEmailUnreadTwoTone: SvgIconComponent; +export const MarkUnreadChatAlt: SvgIconComponent; +export const MarkUnreadChatAltOutlined: SvgIconComponent; +export const MarkUnreadChatAltRounded: SvgIconComponent; +export const MarkUnreadChatAltSharp: SvgIconComponent; +export const MarkUnreadChatAltTwoTone: SvgIconComponent; +export const Markunread: SvgIconComponent; +export const MarkunreadMailbox: SvgIconComponent; +export const MarkunreadMailboxOutlined: SvgIconComponent; +export const MarkunreadMailboxRounded: SvgIconComponent; +export const MarkunreadMailboxSharp: SvgIconComponent; +export const MarkunreadMailboxTwoTone: SvgIconComponent; +export const MarkunreadOutlined: SvgIconComponent; +export const MarkunreadRounded: SvgIconComponent; +export const MarkunreadSharp: SvgIconComponent; +export const MarkunreadTwoTone: SvgIconComponent; +export const Masks: SvgIconComponent; +export const MasksOutlined: SvgIconComponent; +export const MasksRounded: SvgIconComponent; +export const MasksSharp: SvgIconComponent; +export const MasksTwoTone: SvgIconComponent; +export const Maximize: SvgIconComponent; +export const MaximizeOutlined: SvgIconComponent; +export const MaximizeRounded: SvgIconComponent; +export const MaximizeSharp: SvgIconComponent; +export const MaximizeTwoTone: SvgIconComponent; +export const MediaBluetoothOff: SvgIconComponent; +export const MediaBluetoothOffOutlined: SvgIconComponent; +export const MediaBluetoothOffRounded: SvgIconComponent; +export const MediaBluetoothOffSharp: SvgIconComponent; +export const MediaBluetoothOffTwoTone: SvgIconComponent; +export const MediaBluetoothOn: SvgIconComponent; +export const MediaBluetoothOnOutlined: SvgIconComponent; +export const MediaBluetoothOnRounded: SvgIconComponent; +export const MediaBluetoothOnSharp: SvgIconComponent; +export const MediaBluetoothOnTwoTone: SvgIconComponent; +export const Mediation: SvgIconComponent; +export const MediationOutlined: SvgIconComponent; +export const MediationRounded: SvgIconComponent; +export const MediationSharp: SvgIconComponent; +export const MediationTwoTone: SvgIconComponent; +export const MedicalInformation: SvgIconComponent; +export const MedicalInformationOutlined: SvgIconComponent; +export const MedicalInformationRounded: SvgIconComponent; +export const MedicalInformationSharp: SvgIconComponent; +export const MedicalInformationTwoTone: SvgIconComponent; +export const MedicalServices: SvgIconComponent; +export const MedicalServicesOutlined: SvgIconComponent; +export const MedicalServicesRounded: SvgIconComponent; +export const MedicalServicesSharp: SvgIconComponent; +export const MedicalServicesTwoTone: SvgIconComponent; +export const Medication: SvgIconComponent; +export const MedicationLiquid: SvgIconComponent; +export const MedicationLiquidOutlined: SvgIconComponent; +export const MedicationLiquidRounded: SvgIconComponent; +export const MedicationLiquidSharp: SvgIconComponent; +export const MedicationLiquidTwoTone: SvgIconComponent; +export const MedicationOutlined: SvgIconComponent; +export const MedicationRounded: SvgIconComponent; +export const MedicationSharp: SvgIconComponent; +export const MedicationTwoTone: SvgIconComponent; +export const MeetingRoom: SvgIconComponent; +export const MeetingRoomOutlined: SvgIconComponent; +export const MeetingRoomRounded: SvgIconComponent; +export const MeetingRoomSharp: SvgIconComponent; +export const MeetingRoomTwoTone: SvgIconComponent; +export const Memory: SvgIconComponent; +export const MemoryOutlined: SvgIconComponent; +export const MemoryRounded: SvgIconComponent; +export const MemorySharp: SvgIconComponent; +export const MemoryTwoTone: SvgIconComponent; +export const Menu: SvgIconComponent; +export const MenuBook: SvgIconComponent; +export const MenuBookOutlined: SvgIconComponent; +export const MenuBookRounded: SvgIconComponent; +export const MenuBookSharp: SvgIconComponent; +export const MenuBookTwoTone: SvgIconComponent; +export const MenuOpen: SvgIconComponent; +export const MenuOpenOutlined: SvgIconComponent; +export const MenuOpenRounded: SvgIconComponent; +export const MenuOpenSharp: SvgIconComponent; +export const MenuOpenTwoTone: SvgIconComponent; +export const MenuOutlined: SvgIconComponent; +export const MenuRounded: SvgIconComponent; +export const MenuSharp: SvgIconComponent; +export const MenuTwoTone: SvgIconComponent; +export const Merge: SvgIconComponent; +export const MergeOutlined: SvgIconComponent; +export const MergeRounded: SvgIconComponent; +export const MergeSharp: SvgIconComponent; +export const MergeTwoTone: SvgIconComponent; +export const MergeType: SvgIconComponent; +export const MergeTypeOutlined: SvgIconComponent; +export const MergeTypeRounded: SvgIconComponent; +export const MergeTypeSharp: SvgIconComponent; +export const MergeTypeTwoTone: SvgIconComponent; +export const Message: SvgIconComponent; +export const MessageOutlined: SvgIconComponent; +export const MessageRounded: SvgIconComponent; +export const MessageSharp: SvgIconComponent; +export const MessageTwoTone: SvgIconComponent; +export const Mic: SvgIconComponent; +export const MicExternalOff: SvgIconComponent; +export const MicExternalOffOutlined: SvgIconComponent; +export const MicExternalOffRounded: SvgIconComponent; +export const MicExternalOffSharp: SvgIconComponent; +export const MicExternalOffTwoTone: SvgIconComponent; +export const MicExternalOn: SvgIconComponent; +export const MicExternalOnOutlined: SvgIconComponent; +export const MicExternalOnRounded: SvgIconComponent; +export const MicExternalOnSharp: SvgIconComponent; +export const MicExternalOnTwoTone: SvgIconComponent; +export const MicNone: SvgIconComponent; +export const MicNoneOutlined: SvgIconComponent; +export const MicNoneRounded: SvgIconComponent; +export const MicNoneSharp: SvgIconComponent; +export const MicNoneTwoTone: SvgIconComponent; +export const MicOff: SvgIconComponent; +export const MicOffOutlined: SvgIconComponent; +export const MicOffRounded: SvgIconComponent; +export const MicOffSharp: SvgIconComponent; +export const MicOffTwoTone: SvgIconComponent; +export const MicOutlined: SvgIconComponent; +export const MicRounded: SvgIconComponent; +export const MicSharp: SvgIconComponent; +export const MicTwoTone: SvgIconComponent; +export const Microsoft: SvgIconComponent; +export const Microwave: SvgIconComponent; +export const MicrowaveOutlined: SvgIconComponent; +export const MicrowaveRounded: SvgIconComponent; +export const MicrowaveSharp: SvgIconComponent; +export const MicrowaveTwoTone: SvgIconComponent; +export const MilitaryTech: SvgIconComponent; +export const MilitaryTechOutlined: SvgIconComponent; +export const MilitaryTechRounded: SvgIconComponent; +export const MilitaryTechSharp: SvgIconComponent; +export const MilitaryTechTwoTone: SvgIconComponent; +export const Minimize: SvgIconComponent; +export const MinimizeOutlined: SvgIconComponent; +export const MinimizeRounded: SvgIconComponent; +export const MinimizeSharp: SvgIconComponent; +export const MinimizeTwoTone: SvgIconComponent; +export const MinorCrash: SvgIconComponent; +export const MinorCrashOutlined: SvgIconComponent; +export const MinorCrashRounded: SvgIconComponent; +export const MinorCrashSharp: SvgIconComponent; +export const MinorCrashTwoTone: SvgIconComponent; +export const MiscellaneousServices: SvgIconComponent; +export const MiscellaneousServicesOutlined: SvgIconComponent; +export const MiscellaneousServicesRounded: SvgIconComponent; +export const MiscellaneousServicesSharp: SvgIconComponent; +export const MiscellaneousServicesTwoTone: SvgIconComponent; +export const MissedVideoCall: SvgIconComponent; +export const MissedVideoCallOutlined: SvgIconComponent; +export const MissedVideoCallRounded: SvgIconComponent; +export const MissedVideoCallSharp: SvgIconComponent; +export const MissedVideoCallTwoTone: SvgIconComponent; +export const Mms: SvgIconComponent; +export const MmsOutlined: SvgIconComponent; +export const MmsRounded: SvgIconComponent; +export const MmsSharp: SvgIconComponent; +export const MmsTwoTone: SvgIconComponent; +export const MobileFriendly: SvgIconComponent; +export const MobileFriendlyOutlined: SvgIconComponent; +export const MobileFriendlyRounded: SvgIconComponent; +export const MobileFriendlySharp: SvgIconComponent; +export const MobileFriendlyTwoTone: SvgIconComponent; +export const MobileOff: SvgIconComponent; +export const MobileOffOutlined: SvgIconComponent; +export const MobileOffRounded: SvgIconComponent; +export const MobileOffSharp: SvgIconComponent; +export const MobileOffTwoTone: SvgIconComponent; +export const MobileScreenShare: SvgIconComponent; +export const MobileScreenShareOutlined: SvgIconComponent; +export const MobileScreenShareRounded: SvgIconComponent; +export const MobileScreenShareSharp: SvgIconComponent; +export const MobileScreenShareTwoTone: SvgIconComponent; +export const MobiledataOff: SvgIconComponent; +export const MobiledataOffOutlined: SvgIconComponent; +export const MobiledataOffRounded: SvgIconComponent; +export const MobiledataOffSharp: SvgIconComponent; +export const MobiledataOffTwoTone: SvgIconComponent; +export const Mode: SvgIconComponent; +export const ModeComment: SvgIconComponent; +export const ModeCommentOutlined: SvgIconComponent; +export const ModeCommentRounded: SvgIconComponent; +export const ModeCommentSharp: SvgIconComponent; +export const ModeCommentTwoTone: SvgIconComponent; +export const ModeEdit: SvgIconComponent; +export const ModeEditOutline: SvgIconComponent; +export const ModeEditOutlineOutlined: SvgIconComponent; +export const ModeEditOutlineRounded: SvgIconComponent; +export const ModeEditOutlineSharp: SvgIconComponent; +export const ModeEditOutlineTwoTone: SvgIconComponent; +export const ModeEditOutlined: SvgIconComponent; +export const ModeEditRounded: SvgIconComponent; +export const ModeEditSharp: SvgIconComponent; +export const ModeEditTwoTone: SvgIconComponent; +export const ModeFanOff: SvgIconComponent; +export const ModeFanOffOutlined: SvgIconComponent; +export const ModeFanOffRounded: SvgIconComponent; +export const ModeFanOffSharp: SvgIconComponent; +export const ModeFanOffTwoTone: SvgIconComponent; +export const ModeNight: SvgIconComponent; +export const ModeNightOutlined: SvgIconComponent; +export const ModeNightRounded: SvgIconComponent; +export const ModeNightSharp: SvgIconComponent; +export const ModeNightTwoTone: SvgIconComponent; +export const ModeOfTravel: SvgIconComponent; +export const ModeOfTravelOutlined: SvgIconComponent; +export const ModeOfTravelRounded: SvgIconComponent; +export const ModeOfTravelSharp: SvgIconComponent; +export const ModeOfTravelTwoTone: SvgIconComponent; +export const ModeOutlined: SvgIconComponent; +export const ModeRounded: SvgIconComponent; +export const ModeSharp: SvgIconComponent; +export const ModeStandby: SvgIconComponent; +export const ModeStandbyOutlined: SvgIconComponent; +export const ModeStandbyRounded: SvgIconComponent; +export const ModeStandbySharp: SvgIconComponent; +export const ModeStandbyTwoTone: SvgIconComponent; +export const ModeTwoTone: SvgIconComponent; +export const ModelTraining: SvgIconComponent; +export const ModelTrainingOutlined: SvgIconComponent; +export const ModelTrainingRounded: SvgIconComponent; +export const ModelTrainingSharp: SvgIconComponent; +export const ModelTrainingTwoTone: SvgIconComponent; +export const MonetizationOn: SvgIconComponent; +export const MonetizationOnOutlined: SvgIconComponent; +export const MonetizationOnRounded: SvgIconComponent; +export const MonetizationOnSharp: SvgIconComponent; +export const MonetizationOnTwoTone: SvgIconComponent; +export const Money: SvgIconComponent; +export const MoneyOff: SvgIconComponent; +export const MoneyOffCsred: SvgIconComponent; +export const MoneyOffCsredOutlined: SvgIconComponent; +export const MoneyOffCsredRounded: SvgIconComponent; +export const MoneyOffCsredSharp: SvgIconComponent; +export const MoneyOffCsredTwoTone: SvgIconComponent; +export const MoneyOffOutlined: SvgIconComponent; +export const MoneyOffRounded: SvgIconComponent; +export const MoneyOffSharp: SvgIconComponent; +export const MoneyOffTwoTone: SvgIconComponent; +export const MoneyOutlined: SvgIconComponent; +export const MoneyRounded: SvgIconComponent; +export const MoneySharp: SvgIconComponent; +export const MoneyTwoTone: SvgIconComponent; +export const Monitor: SvgIconComponent; +export const MonitorHeart: SvgIconComponent; +export const MonitorHeartOutlined: SvgIconComponent; +export const MonitorHeartRounded: SvgIconComponent; +export const MonitorHeartSharp: SvgIconComponent; +export const MonitorHeartTwoTone: SvgIconComponent; +export const MonitorOutlined: SvgIconComponent; +export const MonitorRounded: SvgIconComponent; +export const MonitorSharp: SvgIconComponent; +export const MonitorTwoTone: SvgIconComponent; +export const MonitorWeight: SvgIconComponent; +export const MonitorWeightOutlined: SvgIconComponent; +export const MonitorWeightRounded: SvgIconComponent; +export const MonitorWeightSharp: SvgIconComponent; +export const MonitorWeightTwoTone: SvgIconComponent; +export const MonochromePhotos: SvgIconComponent; +export const MonochromePhotosOutlined: SvgIconComponent; +export const MonochromePhotosRounded: SvgIconComponent; +export const MonochromePhotosSharp: SvgIconComponent; +export const MonochromePhotosTwoTone: SvgIconComponent; +export const Mood: SvgIconComponent; +export const MoodBad: SvgIconComponent; +export const MoodBadOutlined: SvgIconComponent; +export const MoodBadRounded: SvgIconComponent; +export const MoodBadSharp: SvgIconComponent; +export const MoodBadTwoTone: SvgIconComponent; +export const MoodOutlined: SvgIconComponent; +export const MoodRounded: SvgIconComponent; +export const MoodSharp: SvgIconComponent; +export const MoodTwoTone: SvgIconComponent; +export const Moped: SvgIconComponent; +export const MopedOutlined: SvgIconComponent; +export const MopedRounded: SvgIconComponent; +export const MopedSharp: SvgIconComponent; +export const MopedTwoTone: SvgIconComponent; +export const More: SvgIconComponent; +export const MoreHoriz: SvgIconComponent; +export const MoreHorizOutlined: SvgIconComponent; +export const MoreHorizRounded: SvgIconComponent; +export const MoreHorizSharp: SvgIconComponent; +export const MoreHorizTwoTone: SvgIconComponent; +export const MoreOutlined: SvgIconComponent; +export const MoreRounded: SvgIconComponent; +export const MoreSharp: SvgIconComponent; +export const MoreTime: SvgIconComponent; +export const MoreTimeOutlined: SvgIconComponent; +export const MoreTimeRounded: SvgIconComponent; +export const MoreTimeSharp: SvgIconComponent; +export const MoreTimeTwoTone: SvgIconComponent; +export const MoreTwoTone: SvgIconComponent; +export const MoreVert: SvgIconComponent; +export const MoreVertOutlined: SvgIconComponent; +export const MoreVertRounded: SvgIconComponent; +export const MoreVertSharp: SvgIconComponent; +export const MoreVertTwoTone: SvgIconComponent; +export const Mosque: SvgIconComponent; +export const MosqueOutlined: SvgIconComponent; +export const MosqueRounded: SvgIconComponent; +export const MosqueSharp: SvgIconComponent; +export const MosqueTwoTone: SvgIconComponent; +export const MotionPhotosAuto: SvgIconComponent; +export const MotionPhotosAutoOutlined: SvgIconComponent; +export const MotionPhotosAutoRounded: SvgIconComponent; +export const MotionPhotosAutoSharp: SvgIconComponent; +export const MotionPhotosAutoTwoTone: SvgIconComponent; +export const MotionPhotosOff: SvgIconComponent; +export const MotionPhotosOffOutlined: SvgIconComponent; +export const MotionPhotosOffRounded: SvgIconComponent; +export const MotionPhotosOffSharp: SvgIconComponent; +export const MotionPhotosOffTwoTone: SvgIconComponent; +export const Mouse: SvgIconComponent; +export const MouseOutlined: SvgIconComponent; +export const MouseRounded: SvgIconComponent; +export const MouseSharp: SvgIconComponent; +export const MouseTwoTone: SvgIconComponent; +export const MoveDown: SvgIconComponent; +export const MoveDownOutlined: SvgIconComponent; +export const MoveDownRounded: SvgIconComponent; +export const MoveDownSharp: SvgIconComponent; +export const MoveDownTwoTone: SvgIconComponent; +export const MoveToInbox: SvgIconComponent; +export const MoveToInboxOutlined: SvgIconComponent; +export const MoveToInboxRounded: SvgIconComponent; +export const MoveToInboxSharp: SvgIconComponent; +export const MoveToInboxTwoTone: SvgIconComponent; +export const MoveUp: SvgIconComponent; +export const MoveUpOutlined: SvgIconComponent; +export const MoveUpRounded: SvgIconComponent; +export const MoveUpSharp: SvgIconComponent; +export const MoveUpTwoTone: SvgIconComponent; +export const Movie: SvgIconComponent; +export const MovieCreation: SvgIconComponent; +export const MovieCreationOutlined: SvgIconComponent; +export const MovieCreationRounded: SvgIconComponent; +export const MovieCreationSharp: SvgIconComponent; +export const MovieCreationTwoTone: SvgIconComponent; +export const MovieFilter: SvgIconComponent; +export const MovieFilterOutlined: SvgIconComponent; +export const MovieFilterRounded: SvgIconComponent; +export const MovieFilterSharp: SvgIconComponent; +export const MovieFilterTwoTone: SvgIconComponent; +export const MovieOutlined: SvgIconComponent; +export const MovieRounded: SvgIconComponent; +export const MovieSharp: SvgIconComponent; +export const MovieTwoTone: SvgIconComponent; +export const Moving: SvgIconComponent; +export const MovingOutlined: SvgIconComponent; +export const MovingRounded: SvgIconComponent; +export const MovingSharp: SvgIconComponent; +export const MovingTwoTone: SvgIconComponent; +export const Mp: SvgIconComponent; +export const MpOutlined: SvgIconComponent; +export const MpRounded: SvgIconComponent; +export const MpSharp: SvgIconComponent; +export const MpTwoTone: SvgIconComponent; +export const MultilineChart: SvgIconComponent; +export const MultilineChartOutlined: SvgIconComponent; +export const MultilineChartRounded: SvgIconComponent; +export const MultilineChartSharp: SvgIconComponent; +export const MultilineChartTwoTone: SvgIconComponent; +export const MultipleStop: SvgIconComponent; +export const MultipleStopOutlined: SvgIconComponent; +export const MultipleStopRounded: SvgIconComponent; +export const MultipleStopSharp: SvgIconComponent; +export const MultipleStopTwoTone: SvgIconComponent; +export const Museum: SvgIconComponent; +export const MuseumOutlined: SvgIconComponent; +export const MuseumRounded: SvgIconComponent; +export const MuseumSharp: SvgIconComponent; +export const MuseumTwoTone: SvgIconComponent; +export const MusicNote: SvgIconComponent; +export const MusicNoteOutlined: SvgIconComponent; +export const MusicNoteRounded: SvgIconComponent; +export const MusicNoteSharp: SvgIconComponent; +export const MusicNoteTwoTone: SvgIconComponent; +export const MusicOff: SvgIconComponent; +export const MusicOffOutlined: SvgIconComponent; +export const MusicOffRounded: SvgIconComponent; +export const MusicOffSharp: SvgIconComponent; +export const MusicOffTwoTone: SvgIconComponent; +export const MusicVideo: SvgIconComponent; +export const MusicVideoOutlined: SvgIconComponent; +export const MusicVideoRounded: SvgIconComponent; +export const MusicVideoSharp: SvgIconComponent; +export const MusicVideoTwoTone: SvgIconComponent; +export const MyLocation: SvgIconComponent; +export const MyLocationOutlined: SvgIconComponent; +export const MyLocationRounded: SvgIconComponent; +export const MyLocationSharp: SvgIconComponent; +export const MyLocationTwoTone: SvgIconComponent; +export const Nat: SvgIconComponent; +export const NatOutlined: SvgIconComponent; +export const NatRounded: SvgIconComponent; +export const NatSharp: SvgIconComponent; +export const NatTwoTone: SvgIconComponent; +export const Nature: SvgIconComponent; +export const NatureOutlined: SvgIconComponent; +export const NaturePeople: SvgIconComponent; +export const NaturePeopleOutlined: SvgIconComponent; +export const NaturePeopleRounded: SvgIconComponent; +export const NaturePeopleSharp: SvgIconComponent; +export const NaturePeopleTwoTone: SvgIconComponent; +export const NatureRounded: SvgIconComponent; +export const NatureSharp: SvgIconComponent; +export const NatureTwoTone: SvgIconComponent; +export const NavigateBefore: SvgIconComponent; +export const NavigateBeforeOutlined: SvgIconComponent; +export const NavigateBeforeRounded: SvgIconComponent; +export const NavigateBeforeSharp: SvgIconComponent; +export const NavigateBeforeTwoTone: SvgIconComponent; +export const NavigateNext: SvgIconComponent; +export const NavigateNextOutlined: SvgIconComponent; +export const NavigateNextRounded: SvgIconComponent; +export const NavigateNextSharp: SvgIconComponent; +export const NavigateNextTwoTone: SvgIconComponent; +export const Navigation: SvgIconComponent; +export const NavigationOutlined: SvgIconComponent; +export const NavigationRounded: SvgIconComponent; +export const NavigationSharp: SvgIconComponent; +export const NavigationTwoTone: SvgIconComponent; +export const NearMe: SvgIconComponent; +export const NearMeDisabled: SvgIconComponent; +export const NearMeDisabledOutlined: SvgIconComponent; +export const NearMeDisabledRounded: SvgIconComponent; +export const NearMeDisabledSharp: SvgIconComponent; +export const NearMeDisabledTwoTone: SvgIconComponent; +export const NearMeOutlined: SvgIconComponent; +export const NearMeRounded: SvgIconComponent; +export const NearMeSharp: SvgIconComponent; +export const NearMeTwoTone: SvgIconComponent; +export const NearbyError: SvgIconComponent; +export const NearbyErrorOutlined: SvgIconComponent; +export const NearbyErrorRounded: SvgIconComponent; +export const NearbyErrorSharp: SvgIconComponent; +export const NearbyErrorTwoTone: SvgIconComponent; +export const NearbyOff: SvgIconComponent; +export const NearbyOffOutlined: SvgIconComponent; +export const NearbyOffRounded: SvgIconComponent; +export const NearbyOffSharp: SvgIconComponent; +export const NearbyOffTwoTone: SvgIconComponent; +export const NestCamWiredStand: SvgIconComponent; +export const NestCamWiredStandOutlined: SvgIconComponent; +export const NestCamWiredStandRounded: SvgIconComponent; +export const NestCamWiredStandSharp: SvgIconComponent; +export const NestCamWiredStandTwoTone: SvgIconComponent; +export const NetworkCell: SvgIconComponent; +export const NetworkCellOutlined: SvgIconComponent; +export const NetworkCellRounded: SvgIconComponent; +export const NetworkCellSharp: SvgIconComponent; +export const NetworkCellTwoTone: SvgIconComponent; +export const NetworkCheck: SvgIconComponent; +export const NetworkCheckOutlined: SvgIconComponent; +export const NetworkCheckRounded: SvgIconComponent; +export const NetworkCheckSharp: SvgIconComponent; +export const NetworkCheckTwoTone: SvgIconComponent; +export const NetworkLocked: SvgIconComponent; +export const NetworkLockedOutlined: SvgIconComponent; +export const NetworkLockedRounded: SvgIconComponent; +export const NetworkLockedSharp: SvgIconComponent; +export const NetworkLockedTwoTone: SvgIconComponent; +export const NetworkPing: SvgIconComponent; +export const NetworkPingOutlined: SvgIconComponent; +export const NetworkPingRounded: SvgIconComponent; +export const NetworkPingSharp: SvgIconComponent; +export const NetworkPingTwoTone: SvgIconComponent; +export const NetworkWifi: SvgIconComponent; +export const NetworkWifi1Bar: SvgIconComponent; +export const NetworkWifi1BarOutlined: SvgIconComponent; +export const NetworkWifi1BarRounded: SvgIconComponent; +export const NetworkWifi1BarSharp: SvgIconComponent; +export const NetworkWifi1BarTwoTone: SvgIconComponent; +export const NetworkWifi2Bar: SvgIconComponent; +export const NetworkWifi2BarOutlined: SvgIconComponent; +export const NetworkWifi2BarRounded: SvgIconComponent; +export const NetworkWifi2BarSharp: SvgIconComponent; +export const NetworkWifi2BarTwoTone: SvgIconComponent; +export const NetworkWifi3Bar: SvgIconComponent; +export const NetworkWifi3BarOutlined: SvgIconComponent; +export const NetworkWifi3BarRounded: SvgIconComponent; +export const NetworkWifi3BarSharp: SvgIconComponent; +export const NetworkWifi3BarTwoTone: SvgIconComponent; +export const NetworkWifiOutlined: SvgIconComponent; +export const NetworkWifiRounded: SvgIconComponent; +export const NetworkWifiSharp: SvgIconComponent; +export const NetworkWifiTwoTone: SvgIconComponent; +export const NewReleases: SvgIconComponent; +export const NewReleasesOutlined: SvgIconComponent; +export const NewReleasesRounded: SvgIconComponent; +export const NewReleasesSharp: SvgIconComponent; +export const NewReleasesTwoTone: SvgIconComponent; +export const Newspaper: SvgIconComponent; +export const NewspaperOutlined: SvgIconComponent; +export const NewspaperRounded: SvgIconComponent; +export const NewspaperSharp: SvgIconComponent; +export const NewspaperTwoTone: SvgIconComponent; +export const NextPlan: SvgIconComponent; +export const NextPlanOutlined: SvgIconComponent; +export const NextPlanRounded: SvgIconComponent; +export const NextPlanSharp: SvgIconComponent; +export const NextPlanTwoTone: SvgIconComponent; +export const NextWeek: SvgIconComponent; +export const NextWeekOutlined: SvgIconComponent; +export const NextWeekRounded: SvgIconComponent; +export const NextWeekSharp: SvgIconComponent; +export const NextWeekTwoTone: SvgIconComponent; +export const Nfc: SvgIconComponent; +export const NfcOutlined: SvgIconComponent; +export const NfcRounded: SvgIconComponent; +export const NfcSharp: SvgIconComponent; +export const NfcTwoTone: SvgIconComponent; +export const NightShelter: SvgIconComponent; +export const NightShelterOutlined: SvgIconComponent; +export const NightShelterRounded: SvgIconComponent; +export const NightShelterSharp: SvgIconComponent; +export const NightShelterTwoTone: SvgIconComponent; +export const Nightlife: SvgIconComponent; +export const NightlifeOutlined: SvgIconComponent; +export const NightlifeRounded: SvgIconComponent; +export const NightlifeSharp: SvgIconComponent; +export const NightlifeTwoTone: SvgIconComponent; +export const Nightlight: SvgIconComponent; +export const NightlightOutlined: SvgIconComponent; +export const NightlightRound: SvgIconComponent; +export const NightlightRoundOutlined: SvgIconComponent; +export const NightlightRoundRounded: SvgIconComponent; +export const NightlightRoundSharp: SvgIconComponent; +export const NightlightRoundTwoTone: SvgIconComponent; +export const NightlightRounded: SvgIconComponent; +export const NightlightSharp: SvgIconComponent; +export const NightlightTwoTone: SvgIconComponent; +export const NightsStay: SvgIconComponent; +export const NightsStayOutlined: SvgIconComponent; +export const NightsStayRounded: SvgIconComponent; +export const NightsStaySharp: SvgIconComponent; +export const NightsStayTwoTone: SvgIconComponent; +export const NineK: SvgIconComponent; +export const NineKOutlined: SvgIconComponent; +export const NineKPlus: SvgIconComponent; +export const NineKPlusOutlined: SvgIconComponent; +export const NineKPlusRounded: SvgIconComponent; +export const NineKPlusSharp: SvgIconComponent; +export const NineKPlusTwoTone: SvgIconComponent; +export const NineKRounded: SvgIconComponent; +export const NineKSharp: SvgIconComponent; +export const NineKTwoTone: SvgIconComponent; +export const NineMp: SvgIconComponent; +export const NineMpOutlined: SvgIconComponent; +export const NineMpRounded: SvgIconComponent; +export const NineMpSharp: SvgIconComponent; +export const NineMpTwoTone: SvgIconComponent; +export const NineteenMp: SvgIconComponent; +export const NineteenMpOutlined: SvgIconComponent; +export const NineteenMpRounded: SvgIconComponent; +export const NineteenMpSharp: SvgIconComponent; +export const NineteenMpTwoTone: SvgIconComponent; +export const NoAccounts: SvgIconComponent; +export const NoAccountsOutlined: SvgIconComponent; +export const NoAccountsRounded: SvgIconComponent; +export const NoAccountsSharp: SvgIconComponent; +export const NoAccountsTwoTone: SvgIconComponent; +export const NoAdultContent: SvgIconComponent; +export const NoAdultContentOutlined: SvgIconComponent; +export const NoAdultContentRounded: SvgIconComponent; +export const NoAdultContentSharp: SvgIconComponent; +export const NoAdultContentTwoTone: SvgIconComponent; +export const NoBackpack: SvgIconComponent; +export const NoBackpackOutlined: SvgIconComponent; +export const NoBackpackRounded: SvgIconComponent; +export const NoBackpackSharp: SvgIconComponent; +export const NoBackpackTwoTone: SvgIconComponent; +export const NoCell: SvgIconComponent; +export const NoCellOutlined: SvgIconComponent; +export const NoCellRounded: SvgIconComponent; +export const NoCellSharp: SvgIconComponent; +export const NoCellTwoTone: SvgIconComponent; +export const NoCrash: SvgIconComponent; +export const NoCrashOutlined: SvgIconComponent; +export const NoCrashRounded: SvgIconComponent; +export const NoCrashSharp: SvgIconComponent; +export const NoCrashTwoTone: SvgIconComponent; +export const NoDrinks: SvgIconComponent; +export const NoDrinksOutlined: SvgIconComponent; +export const NoDrinksRounded: SvgIconComponent; +export const NoDrinksSharp: SvgIconComponent; +export const NoDrinksTwoTone: SvgIconComponent; +export const NoEncryption: SvgIconComponent; +export const NoEncryptionGmailerrorred: SvgIconComponent; +export const NoEncryptionGmailerrorredOutlined: SvgIconComponent; +export const NoEncryptionGmailerrorredRounded: SvgIconComponent; +export const NoEncryptionGmailerrorredSharp: SvgIconComponent; +export const NoEncryptionGmailerrorredTwoTone: SvgIconComponent; +export const NoEncryptionOutlined: SvgIconComponent; +export const NoEncryptionRounded: SvgIconComponent; +export const NoEncryptionSharp: SvgIconComponent; +export const NoEncryptionTwoTone: SvgIconComponent; +export const NoFlash: SvgIconComponent; +export const NoFlashOutlined: SvgIconComponent; +export const NoFlashRounded: SvgIconComponent; +export const NoFlashSharp: SvgIconComponent; +export const NoFlashTwoTone: SvgIconComponent; +export const NoFood: SvgIconComponent; +export const NoFoodOutlined: SvgIconComponent; +export const NoFoodRounded: SvgIconComponent; +export const NoFoodSharp: SvgIconComponent; +export const NoFoodTwoTone: SvgIconComponent; +export const NoLuggage: SvgIconComponent; +export const NoLuggageOutlined: SvgIconComponent; +export const NoLuggageRounded: SvgIconComponent; +export const NoLuggageSharp: SvgIconComponent; +export const NoLuggageTwoTone: SvgIconComponent; +export const NoMeals: SvgIconComponent; +export const NoMealsOutlined: SvgIconComponent; +export const NoMealsRounded: SvgIconComponent; +export const NoMealsSharp: SvgIconComponent; +export const NoMealsTwoTone: SvgIconComponent; +export const NoMeetingRoom: SvgIconComponent; +export const NoMeetingRoomOutlined: SvgIconComponent; +export const NoMeetingRoomRounded: SvgIconComponent; +export const NoMeetingRoomSharp: SvgIconComponent; +export const NoMeetingRoomTwoTone: SvgIconComponent; +export const NoPhotography: SvgIconComponent; +export const NoPhotographyOutlined: SvgIconComponent; +export const NoPhotographyRounded: SvgIconComponent; +export const NoPhotographySharp: SvgIconComponent; +export const NoPhotographyTwoTone: SvgIconComponent; +export const NoSim: SvgIconComponent; +export const NoSimOutlined: SvgIconComponent; +export const NoSimRounded: SvgIconComponent; +export const NoSimSharp: SvgIconComponent; +export const NoSimTwoTone: SvgIconComponent; +export const NoStroller: SvgIconComponent; +export const NoStrollerOutlined: SvgIconComponent; +export const NoStrollerRounded: SvgIconComponent; +export const NoStrollerSharp: SvgIconComponent; +export const NoStrollerTwoTone: SvgIconComponent; +export const NoTransfer: SvgIconComponent; +export const NoTransferOutlined: SvgIconComponent; +export const NoTransferRounded: SvgIconComponent; +export const NoTransferSharp: SvgIconComponent; +export const NoTransferTwoTone: SvgIconComponent; +export const NoiseAware: SvgIconComponent; +export const NoiseAwareOutlined: SvgIconComponent; +export const NoiseAwareRounded: SvgIconComponent; +export const NoiseAwareSharp: SvgIconComponent; +export const NoiseAwareTwoTone: SvgIconComponent; +export const NoiseControlOff: SvgIconComponent; +export const NoiseControlOffOutlined: SvgIconComponent; +export const NoiseControlOffRounded: SvgIconComponent; +export const NoiseControlOffSharp: SvgIconComponent; +export const NoiseControlOffTwoTone: SvgIconComponent; +export const NordicWalking: SvgIconComponent; +export const NordicWalkingOutlined: SvgIconComponent; +export const NordicWalkingRounded: SvgIconComponent; +export const NordicWalkingSharp: SvgIconComponent; +export const NordicWalkingTwoTone: SvgIconComponent; +export const North: SvgIconComponent; +export const NorthEast: SvgIconComponent; +export const NorthEastOutlined: SvgIconComponent; +export const NorthEastRounded: SvgIconComponent; +export const NorthEastSharp: SvgIconComponent; +export const NorthEastTwoTone: SvgIconComponent; +export const NorthOutlined: SvgIconComponent; +export const NorthRounded: SvgIconComponent; +export const NorthSharp: SvgIconComponent; +export const NorthTwoTone: SvgIconComponent; +export const NorthWest: SvgIconComponent; +export const NorthWestOutlined: SvgIconComponent; +export const NorthWestRounded: SvgIconComponent; +export const NorthWestSharp: SvgIconComponent; +export const NorthWestTwoTone: SvgIconComponent; +export const NotAccessible: SvgIconComponent; +export const NotAccessibleOutlined: SvgIconComponent; +export const NotAccessibleRounded: SvgIconComponent; +export const NotAccessibleSharp: SvgIconComponent; +export const NotAccessibleTwoTone: SvgIconComponent; +export const NotInterested: SvgIconComponent; +export const NotInterestedOutlined: SvgIconComponent; +export const NotInterestedRounded: SvgIconComponent; +export const NotInterestedSharp: SvgIconComponent; +export const NotInterestedTwoTone: SvgIconComponent; +export const NotListedLocation: SvgIconComponent; +export const NotListedLocationOutlined: SvgIconComponent; +export const NotListedLocationRounded: SvgIconComponent; +export const NotListedLocationSharp: SvgIconComponent; +export const NotListedLocationTwoTone: SvgIconComponent; +export const NotStarted: SvgIconComponent; +export const NotStartedOutlined: SvgIconComponent; +export const NotStartedRounded: SvgIconComponent; +export const NotStartedSharp: SvgIconComponent; +export const NotStartedTwoTone: SvgIconComponent; +export const Note: SvgIconComponent; +export const NoteAdd: SvgIconComponent; +export const NoteAddOutlined: SvgIconComponent; +export const NoteAddRounded: SvgIconComponent; +export const NoteAddSharp: SvgIconComponent; +export const NoteAddTwoTone: SvgIconComponent; +export const NoteAlt: SvgIconComponent; +export const NoteAltOutlined: SvgIconComponent; +export const NoteAltRounded: SvgIconComponent; +export const NoteAltSharp: SvgIconComponent; +export const NoteAltTwoTone: SvgIconComponent; +export const NoteOutlined: SvgIconComponent; +export const NoteRounded: SvgIconComponent; +export const NoteSharp: SvgIconComponent; +export const NoteTwoTone: SvgIconComponent; +export const Notes: SvgIconComponent; +export const NotesOutlined: SvgIconComponent; +export const NotesRounded: SvgIconComponent; +export const NotesSharp: SvgIconComponent; +export const NotesTwoTone: SvgIconComponent; +export const NotificationAdd: SvgIconComponent; +export const NotificationAddOutlined: SvgIconComponent; +export const NotificationAddRounded: SvgIconComponent; +export const NotificationAddSharp: SvgIconComponent; +export const NotificationAddTwoTone: SvgIconComponent; +export const NotificationImportant: SvgIconComponent; +export const NotificationImportantOutlined: SvgIconComponent; +export const NotificationImportantRounded: SvgIconComponent; +export const NotificationImportantSharp: SvgIconComponent; +export const NotificationImportantTwoTone: SvgIconComponent; +export const Notifications: SvgIconComponent; +export const NotificationsActive: SvgIconComponent; +export const NotificationsActiveOutlined: SvgIconComponent; +export const NotificationsActiveRounded: SvgIconComponent; +export const NotificationsActiveSharp: SvgIconComponent; +export const NotificationsActiveTwoTone: SvgIconComponent; +export const NotificationsNone: SvgIconComponent; +export const NotificationsNoneOutlined: SvgIconComponent; +export const NotificationsNoneRounded: SvgIconComponent; +export const NotificationsNoneSharp: SvgIconComponent; +export const NotificationsNoneTwoTone: SvgIconComponent; +export const NotificationsOff: SvgIconComponent; +export const NotificationsOffOutlined: SvgIconComponent; +export const NotificationsOffRounded: SvgIconComponent; +export const NotificationsOffSharp: SvgIconComponent; +export const NotificationsOffTwoTone: SvgIconComponent; +export const NotificationsOutlined: SvgIconComponent; +export const NotificationsPaused: SvgIconComponent; +export const NotificationsPausedOutlined: SvgIconComponent; +export const NotificationsPausedRounded: SvgIconComponent; +export const NotificationsPausedSharp: SvgIconComponent; +export const NotificationsPausedTwoTone: SvgIconComponent; +export const NotificationsRounded: SvgIconComponent; +export const NotificationsSharp: SvgIconComponent; +export const NotificationsTwoTone: SvgIconComponent; +export const Numbers: SvgIconComponent; +export const NumbersOutlined: SvgIconComponent; +export const NumbersRounded: SvgIconComponent; +export const NumbersSharp: SvgIconComponent; +export const NumbersTwoTone: SvgIconComponent; +export const OfflineBolt: SvgIconComponent; +export const OfflineBoltOutlined: SvgIconComponent; +export const OfflineBoltRounded: SvgIconComponent; +export const OfflineBoltSharp: SvgIconComponent; +export const OfflineBoltTwoTone: SvgIconComponent; +export const OfflinePin: SvgIconComponent; +export const OfflinePinOutlined: SvgIconComponent; +export const OfflinePinRounded: SvgIconComponent; +export const OfflinePinSharp: SvgIconComponent; +export const OfflinePinTwoTone: SvgIconComponent; +export const OfflineShare: SvgIconComponent; +export const OfflineShareOutlined: SvgIconComponent; +export const OfflineShareRounded: SvgIconComponent; +export const OfflineShareSharp: SvgIconComponent; +export const OfflineShareTwoTone: SvgIconComponent; +export const OilBarrel: SvgIconComponent; +export const OilBarrelOutlined: SvgIconComponent; +export const OilBarrelRounded: SvgIconComponent; +export const OilBarrelSharp: SvgIconComponent; +export const OilBarrelTwoTone: SvgIconComponent; +export const OnDeviceTraining: SvgIconComponent; +export const OnDeviceTrainingOutlined: SvgIconComponent; +export const OnDeviceTrainingRounded: SvgIconComponent; +export const OnDeviceTrainingSharp: SvgIconComponent; +export const OnDeviceTrainingTwoTone: SvgIconComponent; +export const OndemandVideo: SvgIconComponent; +export const OndemandVideoOutlined: SvgIconComponent; +export const OndemandVideoRounded: SvgIconComponent; +export const OndemandVideoSharp: SvgIconComponent; +export const OndemandVideoTwoTone: SvgIconComponent; +export const OneK: SvgIconComponent; +export const OneKOutlined: SvgIconComponent; +export const OneKPlus: SvgIconComponent; +export const OneKPlusOutlined: SvgIconComponent; +export const OneKPlusRounded: SvgIconComponent; +export const OneKPlusSharp: SvgIconComponent; +export const OneKPlusTwoTone: SvgIconComponent; +export const OneKRounded: SvgIconComponent; +export const OneKSharp: SvgIconComponent; +export const OneKTwoTone: SvgIconComponent; +export const OneKk: SvgIconComponent; +export const OneKkOutlined: SvgIconComponent; +export const OneKkRounded: SvgIconComponent; +export const OneKkSharp: SvgIconComponent; +export const OneKkTwoTone: SvgIconComponent; +export const OnlinePrediction: SvgIconComponent; +export const OnlinePredictionOutlined: SvgIconComponent; +export const OnlinePredictionRounded: SvgIconComponent; +export const OnlinePredictionSharp: SvgIconComponent; +export const OnlinePredictionTwoTone: SvgIconComponent; +export const Opacity: SvgIconComponent; +export const OpacityOutlined: SvgIconComponent; +export const OpacityRounded: SvgIconComponent; +export const OpacitySharp: SvgIconComponent; +export const OpacityTwoTone: SvgIconComponent; +export const OpenInBrowser: SvgIconComponent; +export const OpenInBrowserOutlined: SvgIconComponent; +export const OpenInBrowserRounded: SvgIconComponent; +export const OpenInBrowserSharp: SvgIconComponent; +export const OpenInBrowserTwoTone: SvgIconComponent; +export const OpenInFull: SvgIconComponent; +export const OpenInFullOutlined: SvgIconComponent; +export const OpenInFullRounded: SvgIconComponent; +export const OpenInFullSharp: SvgIconComponent; +export const OpenInFullTwoTone: SvgIconComponent; +export const OpenInNew: SvgIconComponent; +export const OpenInNewOff: SvgIconComponent; +export const OpenInNewOffOutlined: SvgIconComponent; +export const OpenInNewOffRounded: SvgIconComponent; +export const OpenInNewOffSharp: SvgIconComponent; +export const OpenInNewOffTwoTone: SvgIconComponent; +export const OpenInNewOutlined: SvgIconComponent; +export const OpenInNewRounded: SvgIconComponent; +export const OpenInNewSharp: SvgIconComponent; +export const OpenInNewTwoTone: SvgIconComponent; +export const OpenWith: SvgIconComponent; +export const OpenWithOutlined: SvgIconComponent; +export const OpenWithRounded: SvgIconComponent; +export const OpenWithSharp: SvgIconComponent; +export const OpenWithTwoTone: SvgIconComponent; +export const OtherHouses: SvgIconComponent; +export const OtherHousesOutlined: SvgIconComponent; +export const OtherHousesRounded: SvgIconComponent; +export const OtherHousesSharp: SvgIconComponent; +export const OtherHousesTwoTone: SvgIconComponent; +export const Outbound: SvgIconComponent; +export const OutboundOutlined: SvgIconComponent; +export const OutboundRounded: SvgIconComponent; +export const OutboundSharp: SvgIconComponent; +export const OutboundTwoTone: SvgIconComponent; +export const Outbox: SvgIconComponent; +export const OutboxOutlined: SvgIconComponent; +export const OutboxRounded: SvgIconComponent; +export const OutboxSharp: SvgIconComponent; +export const OutboxTwoTone: SvgIconComponent; +export const OutdoorGrill: SvgIconComponent; +export const OutdoorGrillOutlined: SvgIconComponent; +export const OutdoorGrillRounded: SvgIconComponent; +export const OutdoorGrillSharp: SvgIconComponent; +export const OutdoorGrillTwoTone: SvgIconComponent; +export const Outlet: SvgIconComponent; +export const OutletOutlined: SvgIconComponent; +export const OutletRounded: SvgIconComponent; +export const OutletSharp: SvgIconComponent; +export const OutletTwoTone: SvgIconComponent; +export const OutlinedFlag: SvgIconComponent; +export const OutlinedFlagOutlined: SvgIconComponent; +export const OutlinedFlagRounded: SvgIconComponent; +export const OutlinedFlagSharp: SvgIconComponent; +export const OutlinedFlagTwoTone: SvgIconComponent; +export const Output: SvgIconComponent; +export const OutputOutlined: SvgIconComponent; +export const OutputRounded: SvgIconComponent; +export const OutputSharp: SvgIconComponent; +export const OutputTwoTone: SvgIconComponent; +export const Padding: SvgIconComponent; +export const PaddingOutlined: SvgIconComponent; +export const PaddingRounded: SvgIconComponent; +export const PaddingSharp: SvgIconComponent; +export const PaddingTwoTone: SvgIconComponent; +export const Pages: SvgIconComponent; +export const PagesOutlined: SvgIconComponent; +export const PagesRounded: SvgIconComponent; +export const PagesSharp: SvgIconComponent; +export const PagesTwoTone: SvgIconComponent; +export const Pageview: SvgIconComponent; +export const PageviewOutlined: SvgIconComponent; +export const PageviewRounded: SvgIconComponent; +export const PageviewSharp: SvgIconComponent; +export const PageviewTwoTone: SvgIconComponent; +export const Paid: SvgIconComponent; +export const PaidOutlined: SvgIconComponent; +export const PaidRounded: SvgIconComponent; +export const PaidSharp: SvgIconComponent; +export const PaidTwoTone: SvgIconComponent; +export const Palette: SvgIconComponent; +export const PaletteOutlined: SvgIconComponent; +export const PaletteRounded: SvgIconComponent; +export const PaletteSharp: SvgIconComponent; +export const PaletteTwoTone: SvgIconComponent; +export const PanTool: SvgIconComponent; +export const PanToolAlt: SvgIconComponent; +export const PanToolAltOutlined: SvgIconComponent; +export const PanToolAltRounded: SvgIconComponent; +export const PanToolAltSharp: SvgIconComponent; +export const PanToolAltTwoTone: SvgIconComponent; +export const PanToolOutlined: SvgIconComponent; +export const PanToolRounded: SvgIconComponent; +export const PanToolSharp: SvgIconComponent; +export const PanToolTwoTone: SvgIconComponent; +export const Panorama: SvgIconComponent; +export const PanoramaFishEye: SvgIconComponent; +export const PanoramaFishEyeOutlined: SvgIconComponent; +export const PanoramaFishEyeRounded: SvgIconComponent; +export const PanoramaFishEyeSharp: SvgIconComponent; +export const PanoramaFishEyeTwoTone: SvgIconComponent; +export const PanoramaHorizontal: SvgIconComponent; +export const PanoramaHorizontalOutlined: SvgIconComponent; +export const PanoramaHorizontalRounded: SvgIconComponent; +export const PanoramaHorizontalSelect: SvgIconComponent; +export const PanoramaHorizontalSelectOutlined: SvgIconComponent; +export const PanoramaHorizontalSelectRounded: SvgIconComponent; +export const PanoramaHorizontalSelectSharp: SvgIconComponent; +export const PanoramaHorizontalSelectTwoTone: SvgIconComponent; +export const PanoramaHorizontalSharp: SvgIconComponent; +export const PanoramaHorizontalTwoTone: SvgIconComponent; +export const PanoramaOutlined: SvgIconComponent; +export const PanoramaPhotosphere: SvgIconComponent; +export const PanoramaPhotosphereOutlined: SvgIconComponent; +export const PanoramaPhotosphereRounded: SvgIconComponent; +export const PanoramaPhotosphereSelect: SvgIconComponent; +export const PanoramaPhotosphereSelectOutlined: SvgIconComponent; +export const PanoramaPhotosphereSelectRounded: SvgIconComponent; +export const PanoramaPhotosphereSelectSharp: SvgIconComponent; +export const PanoramaPhotosphereSelectTwoTone: SvgIconComponent; +export const PanoramaPhotosphereSharp: SvgIconComponent; +export const PanoramaPhotosphereTwoTone: SvgIconComponent; +export const PanoramaRounded: SvgIconComponent; +export const PanoramaSharp: SvgIconComponent; +export const PanoramaTwoTone: SvgIconComponent; +export const PanoramaVertical: SvgIconComponent; +export const PanoramaVerticalOutlined: SvgIconComponent; +export const PanoramaVerticalRounded: SvgIconComponent; +export const PanoramaVerticalSelect: SvgIconComponent; +export const PanoramaVerticalSelectOutlined: SvgIconComponent; +export const PanoramaVerticalSelectRounded: SvgIconComponent; +export const PanoramaVerticalSelectSharp: SvgIconComponent; +export const PanoramaVerticalSelectTwoTone: SvgIconComponent; +export const PanoramaVerticalSharp: SvgIconComponent; +export const PanoramaVerticalTwoTone: SvgIconComponent; +export const PanoramaWideAngle: SvgIconComponent; +export const PanoramaWideAngleOutlined: SvgIconComponent; +export const PanoramaWideAngleRounded: SvgIconComponent; +export const PanoramaWideAngleSelect: SvgIconComponent; +export const PanoramaWideAngleSelectOutlined: SvgIconComponent; +export const PanoramaWideAngleSelectRounded: SvgIconComponent; +export const PanoramaWideAngleSelectSharp: SvgIconComponent; +export const PanoramaWideAngleSelectTwoTone: SvgIconComponent; +export const PanoramaWideAngleSharp: SvgIconComponent; +export const PanoramaWideAngleTwoTone: SvgIconComponent; +export const Paragliding: SvgIconComponent; +export const ParaglidingOutlined: SvgIconComponent; +export const ParaglidingRounded: SvgIconComponent; +export const ParaglidingSharp: SvgIconComponent; +export const ParaglidingTwoTone: SvgIconComponent; +export const Park: SvgIconComponent; +export const ParkOutlined: SvgIconComponent; +export const ParkRounded: SvgIconComponent; +export const ParkSharp: SvgIconComponent; +export const ParkTwoTone: SvgIconComponent; +export const PartyMode: SvgIconComponent; +export const PartyModeOutlined: SvgIconComponent; +export const PartyModeRounded: SvgIconComponent; +export const PartyModeSharp: SvgIconComponent; +export const PartyModeTwoTone: SvgIconComponent; +export const Password: SvgIconComponent; +export const PasswordOutlined: SvgIconComponent; +export const PasswordRounded: SvgIconComponent; +export const PasswordSharp: SvgIconComponent; +export const PasswordTwoTone: SvgIconComponent; +export const Pattern: SvgIconComponent; +export const PatternOutlined: SvgIconComponent; +export const PatternRounded: SvgIconComponent; +export const PatternSharp: SvgIconComponent; +export const PatternTwoTone: SvgIconComponent; +export const Pause: SvgIconComponent; +export const PauseCircle: SvgIconComponent; +export const PauseCircleFilled: SvgIconComponent; +export const PauseCircleFilledOutlined: SvgIconComponent; +export const PauseCircleFilledRounded: SvgIconComponent; +export const PauseCircleFilledSharp: SvgIconComponent; +export const PauseCircleFilledTwoTone: SvgIconComponent; +export const PauseCircleOutline: SvgIconComponent; +export const PauseCircleOutlineOutlined: SvgIconComponent; +export const PauseCircleOutlineRounded: SvgIconComponent; +export const PauseCircleOutlineSharp: SvgIconComponent; +export const PauseCircleOutlineTwoTone: SvgIconComponent; +export const PauseCircleOutlined: SvgIconComponent; +export const PauseCircleRounded: SvgIconComponent; +export const PauseCircleSharp: SvgIconComponent; +export const PauseCircleTwoTone: SvgIconComponent; +export const PauseOutlined: SvgIconComponent; +export const PausePresentation: SvgIconComponent; +export const PausePresentationOutlined: SvgIconComponent; +export const PausePresentationRounded: SvgIconComponent; +export const PausePresentationSharp: SvgIconComponent; +export const PausePresentationTwoTone: SvgIconComponent; +export const PauseRounded: SvgIconComponent; +export const PauseSharp: SvgIconComponent; +export const PauseTwoTone: SvgIconComponent; +export const Payment: SvgIconComponent; +export const PaymentOutlined: SvgIconComponent; +export const PaymentRounded: SvgIconComponent; +export const PaymentSharp: SvgIconComponent; +export const PaymentTwoTone: SvgIconComponent; +export const Payments: SvgIconComponent; +export const PaymentsOutlined: SvgIconComponent; +export const PaymentsRounded: SvgIconComponent; +export const PaymentsSharp: SvgIconComponent; +export const PaymentsTwoTone: SvgIconComponent; +export const PedalBike: SvgIconComponent; +export const PedalBikeOutlined: SvgIconComponent; +export const PedalBikeRounded: SvgIconComponent; +export const PedalBikeSharp: SvgIconComponent; +export const PedalBikeTwoTone: SvgIconComponent; +export const Pending: SvgIconComponent; +export const PendingActions: SvgIconComponent; +export const PendingActionsOutlined: SvgIconComponent; +export const PendingActionsRounded: SvgIconComponent; +export const PendingActionsSharp: SvgIconComponent; +export const PendingActionsTwoTone: SvgIconComponent; +export const PendingOutlined: SvgIconComponent; +export const PendingRounded: SvgIconComponent; +export const PendingSharp: SvgIconComponent; +export const PendingTwoTone: SvgIconComponent; +export const Pentagon: SvgIconComponent; +export const PentagonOutlined: SvgIconComponent; +export const PentagonRounded: SvgIconComponent; +export const PentagonSharp: SvgIconComponent; +export const PentagonTwoTone: SvgIconComponent; +export const People: SvgIconComponent; +export const PeopleAlt: SvgIconComponent; +export const PeopleAltOutlined: SvgIconComponent; +export const PeopleAltRounded: SvgIconComponent; +export const PeopleAltSharp: SvgIconComponent; +export const PeopleAltTwoTone: SvgIconComponent; +export const PeopleOutline: SvgIconComponent; +export const PeopleOutlineOutlined: SvgIconComponent; +export const PeopleOutlineRounded: SvgIconComponent; +export const PeopleOutlineSharp: SvgIconComponent; +export const PeopleOutlineTwoTone: SvgIconComponent; +export const PeopleOutlined: SvgIconComponent; +export const PeopleRounded: SvgIconComponent; +export const PeopleSharp: SvgIconComponent; +export const PeopleTwoTone: SvgIconComponent; +export const Percent: SvgIconComponent; +export const PercentOutlined: SvgIconComponent; +export const PercentRounded: SvgIconComponent; +export const PercentSharp: SvgIconComponent; +export const PercentTwoTone: SvgIconComponent; +export const PermCameraMic: SvgIconComponent; +export const PermCameraMicOutlined: SvgIconComponent; +export const PermCameraMicRounded: SvgIconComponent; +export const PermCameraMicSharp: SvgIconComponent; +export const PermCameraMicTwoTone: SvgIconComponent; +export const PermContactCalendar: SvgIconComponent; +export const PermContactCalendarOutlined: SvgIconComponent; +export const PermContactCalendarRounded: SvgIconComponent; +export const PermContactCalendarSharp: SvgIconComponent; +export const PermContactCalendarTwoTone: SvgIconComponent; +export const PermDataSetting: SvgIconComponent; +export const PermDataSettingOutlined: SvgIconComponent; +export const PermDataSettingRounded: SvgIconComponent; +export const PermDataSettingSharp: SvgIconComponent; +export const PermDataSettingTwoTone: SvgIconComponent; +export const PermDeviceInformation: SvgIconComponent; +export const PermDeviceInformationOutlined: SvgIconComponent; +export const PermDeviceInformationRounded: SvgIconComponent; +export const PermDeviceInformationSharp: SvgIconComponent; +export const PermDeviceInformationTwoTone: SvgIconComponent; +export const PermIdentity: SvgIconComponent; +export const PermIdentityOutlined: SvgIconComponent; +export const PermIdentityRounded: SvgIconComponent; +export const PermIdentitySharp: SvgIconComponent; +export const PermIdentityTwoTone: SvgIconComponent; +export const PermMedia: SvgIconComponent; +export const PermMediaOutlined: SvgIconComponent; +export const PermMediaRounded: SvgIconComponent; +export const PermMediaSharp: SvgIconComponent; +export const PermMediaTwoTone: SvgIconComponent; +export const PermPhoneMsg: SvgIconComponent; +export const PermPhoneMsgOutlined: SvgIconComponent; +export const PermPhoneMsgRounded: SvgIconComponent; +export const PermPhoneMsgSharp: SvgIconComponent; +export const PermPhoneMsgTwoTone: SvgIconComponent; +export const PermScanWifi: SvgIconComponent; +export const PermScanWifiOutlined: SvgIconComponent; +export const PermScanWifiRounded: SvgIconComponent; +export const PermScanWifiSharp: SvgIconComponent; +export const PermScanWifiTwoTone: SvgIconComponent; +export const Person: SvgIconComponent; +export const Person2: SvgIconComponent; +export const Person2Outlined: SvgIconComponent; +export const Person2Rounded: SvgIconComponent; +export const Person2Sharp: SvgIconComponent; +export const Person2TwoTone: SvgIconComponent; +export const Person3: SvgIconComponent; +export const Person3Outlined: SvgIconComponent; +export const Person3Rounded: SvgIconComponent; +export const Person3Sharp: SvgIconComponent; +export const Person3TwoTone: SvgIconComponent; +export const Person4: SvgIconComponent; +export const Person4Outlined: SvgIconComponent; +export const Person4Rounded: SvgIconComponent; +export const Person4Sharp: SvgIconComponent; +export const Person4TwoTone: SvgIconComponent; +export const PersonAdd: SvgIconComponent; +export const PersonAddAlt: SvgIconComponent; +export const PersonAddAlt1: SvgIconComponent; +export const PersonAddAlt1Outlined: SvgIconComponent; +export const PersonAddAlt1Rounded: SvgIconComponent; +export const PersonAddAlt1Sharp: SvgIconComponent; +export const PersonAddAlt1TwoTone: SvgIconComponent; +export const PersonAddAltOutlined: SvgIconComponent; +export const PersonAddAltRounded: SvgIconComponent; +export const PersonAddAltSharp: SvgIconComponent; +export const PersonAddAltTwoTone: SvgIconComponent; +export const PersonAddDisabled: SvgIconComponent; +export const PersonAddDisabledOutlined: SvgIconComponent; +export const PersonAddDisabledRounded: SvgIconComponent; +export const PersonAddDisabledSharp: SvgIconComponent; +export const PersonAddDisabledTwoTone: SvgIconComponent; +export const PersonAddOutlined: SvgIconComponent; +export const PersonAddRounded: SvgIconComponent; +export const PersonAddSharp: SvgIconComponent; +export const PersonAddTwoTone: SvgIconComponent; +export const PersonOff: SvgIconComponent; +export const PersonOffOutlined: SvgIconComponent; +export const PersonOffRounded: SvgIconComponent; +export const PersonOffSharp: SvgIconComponent; +export const PersonOffTwoTone: SvgIconComponent; +export const PersonOutline: SvgIconComponent; +export const PersonOutlineOutlined: SvgIconComponent; +export const PersonOutlineRounded: SvgIconComponent; +export const PersonOutlineSharp: SvgIconComponent; +export const PersonOutlineTwoTone: SvgIconComponent; +export const PersonOutlined: SvgIconComponent; +export const PersonPin: SvgIconComponent; +export const PersonPinCircle: SvgIconComponent; +export const PersonPinCircleOutlined: SvgIconComponent; +export const PersonPinCircleRounded: SvgIconComponent; +export const PersonPinCircleSharp: SvgIconComponent; +export const PersonPinCircleTwoTone: SvgIconComponent; +export const PersonPinOutlined: SvgIconComponent; +export const PersonPinRounded: SvgIconComponent; +export const PersonPinSharp: SvgIconComponent; +export const PersonPinTwoTone: SvgIconComponent; +export const PersonRemove: SvgIconComponent; +export const PersonRemoveAlt1: SvgIconComponent; +export const PersonRemoveAlt1Outlined: SvgIconComponent; +export const PersonRemoveAlt1Rounded: SvgIconComponent; +export const PersonRemoveAlt1Sharp: SvgIconComponent; +export const PersonRemoveAlt1TwoTone: SvgIconComponent; +export const PersonRemoveOutlined: SvgIconComponent; +export const PersonRemoveRounded: SvgIconComponent; +export const PersonRemoveSharp: SvgIconComponent; +export const PersonRemoveTwoTone: SvgIconComponent; +export const PersonRounded: SvgIconComponent; +export const PersonSearch: SvgIconComponent; +export const PersonSearchOutlined: SvgIconComponent; +export const PersonSearchRounded: SvgIconComponent; +export const PersonSearchSharp: SvgIconComponent; +export const PersonSearchTwoTone: SvgIconComponent; +export const PersonSharp: SvgIconComponent; +export const PersonTwoTone: SvgIconComponent; +export const PersonalVideo: SvgIconComponent; +export const PersonalVideoOutlined: SvgIconComponent; +export const PersonalVideoRounded: SvgIconComponent; +export const PersonalVideoSharp: SvgIconComponent; +export const PersonalVideoTwoTone: SvgIconComponent; +export const PestControl: SvgIconComponent; +export const PestControlOutlined: SvgIconComponent; +export const PestControlRodent: SvgIconComponent; +export const PestControlRodentOutlined: SvgIconComponent; +export const PestControlRodentRounded: SvgIconComponent; +export const PestControlRodentSharp: SvgIconComponent; +export const PestControlRodentTwoTone: SvgIconComponent; +export const PestControlRounded: SvgIconComponent; +export const PestControlSharp: SvgIconComponent; +export const PestControlTwoTone: SvgIconComponent; +export const Pets: SvgIconComponent; +export const PetsOutlined: SvgIconComponent; +export const PetsRounded: SvgIconComponent; +export const PetsSharp: SvgIconComponent; +export const PetsTwoTone: SvgIconComponent; +export const Phishing: SvgIconComponent; +export const PhishingOutlined: SvgIconComponent; +export const PhishingRounded: SvgIconComponent; +export const PhishingSharp: SvgIconComponent; +export const PhishingTwoTone: SvgIconComponent; +export const Phone: SvgIconComponent; +export const PhoneAndroid: SvgIconComponent; +export const PhoneAndroidOutlined: SvgIconComponent; +export const PhoneAndroidRounded: SvgIconComponent; +export const PhoneAndroidSharp: SvgIconComponent; +export const PhoneAndroidTwoTone: SvgIconComponent; +export const PhoneBluetoothSpeaker: SvgIconComponent; +export const PhoneBluetoothSpeakerOutlined: SvgIconComponent; +export const PhoneBluetoothSpeakerRounded: SvgIconComponent; +export const PhoneBluetoothSpeakerSharp: SvgIconComponent; +export const PhoneBluetoothSpeakerTwoTone: SvgIconComponent; +export const PhoneCallback: SvgIconComponent; +export const PhoneCallbackOutlined: SvgIconComponent; +export const PhoneCallbackRounded: SvgIconComponent; +export const PhoneCallbackSharp: SvgIconComponent; +export const PhoneCallbackTwoTone: SvgIconComponent; +export const PhoneDisabled: SvgIconComponent; +export const PhoneDisabledOutlined: SvgIconComponent; +export const PhoneDisabledRounded: SvgIconComponent; +export const PhoneDisabledSharp: SvgIconComponent; +export const PhoneDisabledTwoTone: SvgIconComponent; +export const PhoneEnabled: SvgIconComponent; +export const PhoneEnabledOutlined: SvgIconComponent; +export const PhoneEnabledRounded: SvgIconComponent; +export const PhoneEnabledSharp: SvgIconComponent; +export const PhoneEnabledTwoTone: SvgIconComponent; +export const PhoneForwarded: SvgIconComponent; +export const PhoneForwardedOutlined: SvgIconComponent; +export const PhoneForwardedRounded: SvgIconComponent; +export const PhoneForwardedSharp: SvgIconComponent; +export const PhoneForwardedTwoTone: SvgIconComponent; +export const PhoneInTalk: SvgIconComponent; +export const PhoneInTalkOutlined: SvgIconComponent; +export const PhoneInTalkRounded: SvgIconComponent; +export const PhoneInTalkSharp: SvgIconComponent; +export const PhoneInTalkTwoTone: SvgIconComponent; +export const PhoneIphone: SvgIconComponent; +export const PhoneIphoneOutlined: SvgIconComponent; +export const PhoneIphoneRounded: SvgIconComponent; +export const PhoneIphoneSharp: SvgIconComponent; +export const PhoneIphoneTwoTone: SvgIconComponent; +export const PhoneLocked: SvgIconComponent; +export const PhoneLockedOutlined: SvgIconComponent; +export const PhoneLockedRounded: SvgIconComponent; +export const PhoneLockedSharp: SvgIconComponent; +export const PhoneLockedTwoTone: SvgIconComponent; +export const PhoneMissed: SvgIconComponent; +export const PhoneMissedOutlined: SvgIconComponent; +export const PhoneMissedRounded: SvgIconComponent; +export const PhoneMissedSharp: SvgIconComponent; +export const PhoneMissedTwoTone: SvgIconComponent; +export const PhoneOutlined: SvgIconComponent; +export const PhonePaused: SvgIconComponent; +export const PhonePausedOutlined: SvgIconComponent; +export const PhonePausedRounded: SvgIconComponent; +export const PhonePausedSharp: SvgIconComponent; +export const PhonePausedTwoTone: SvgIconComponent; +export const PhoneRounded: SvgIconComponent; +export const PhoneSharp: SvgIconComponent; +export const PhoneTwoTone: SvgIconComponent; +export const Phonelink: SvgIconComponent; +export const PhonelinkErase: SvgIconComponent; +export const PhonelinkEraseOutlined: SvgIconComponent; +export const PhonelinkEraseRounded: SvgIconComponent; +export const PhonelinkEraseSharp: SvgIconComponent; +export const PhonelinkEraseTwoTone: SvgIconComponent; +export const PhonelinkLock: SvgIconComponent; +export const PhonelinkLockOutlined: SvgIconComponent; +export const PhonelinkLockRounded: SvgIconComponent; +export const PhonelinkLockSharp: SvgIconComponent; +export const PhonelinkLockTwoTone: SvgIconComponent; +export const PhonelinkOff: SvgIconComponent; +export const PhonelinkOffOutlined: SvgIconComponent; +export const PhonelinkOffRounded: SvgIconComponent; +export const PhonelinkOffSharp: SvgIconComponent; +export const PhonelinkOffTwoTone: SvgIconComponent; +export const PhonelinkOutlined: SvgIconComponent; +export const PhonelinkRing: SvgIconComponent; +export const PhonelinkRingOutlined: SvgIconComponent; +export const PhonelinkRingRounded: SvgIconComponent; +export const PhonelinkRingSharp: SvgIconComponent; +export const PhonelinkRingTwoTone: SvgIconComponent; +export const PhonelinkRounded: SvgIconComponent; +export const PhonelinkSetup: SvgIconComponent; +export const PhonelinkSetupOutlined: SvgIconComponent; +export const PhonelinkSetupRounded: SvgIconComponent; +export const PhonelinkSetupSharp: SvgIconComponent; +export const PhonelinkSetupTwoTone: SvgIconComponent; +export const PhonelinkSharp: SvgIconComponent; +export const PhonelinkTwoTone: SvgIconComponent; +export const Photo: SvgIconComponent; +export const PhotoAlbum: SvgIconComponent; +export const PhotoAlbumOutlined: SvgIconComponent; +export const PhotoAlbumRounded: SvgIconComponent; +export const PhotoAlbumSharp: SvgIconComponent; +export const PhotoAlbumTwoTone: SvgIconComponent; +export const PhotoCamera: SvgIconComponent; +export const PhotoCameraBack: SvgIconComponent; +export const PhotoCameraBackOutlined: SvgIconComponent; +export const PhotoCameraBackRounded: SvgIconComponent; +export const PhotoCameraBackSharp: SvgIconComponent; +export const PhotoCameraBackTwoTone: SvgIconComponent; +export const PhotoCameraFront: SvgIconComponent; +export const PhotoCameraFrontOutlined: SvgIconComponent; +export const PhotoCameraFrontRounded: SvgIconComponent; +export const PhotoCameraFrontSharp: SvgIconComponent; +export const PhotoCameraFrontTwoTone: SvgIconComponent; +export const PhotoCameraOutlined: SvgIconComponent; +export const PhotoCameraRounded: SvgIconComponent; +export const PhotoCameraSharp: SvgIconComponent; +export const PhotoCameraTwoTone: SvgIconComponent; +export const PhotoFilter: SvgIconComponent; +export const PhotoFilterOutlined: SvgIconComponent; +export const PhotoFilterRounded: SvgIconComponent; +export const PhotoFilterSharp: SvgIconComponent; +export const PhotoFilterTwoTone: SvgIconComponent; +export const PhotoLibrary: SvgIconComponent; +export const PhotoLibraryOutlined: SvgIconComponent; +export const PhotoLibraryRounded: SvgIconComponent; +export const PhotoLibrarySharp: SvgIconComponent; +export const PhotoLibraryTwoTone: SvgIconComponent; +export const PhotoOutlined: SvgIconComponent; +export const PhotoRounded: SvgIconComponent; +export const PhotoSharp: SvgIconComponent; +export const PhotoSizeSelectActual: SvgIconComponent; +export const PhotoSizeSelectActualOutlined: SvgIconComponent; +export const PhotoSizeSelectActualRounded: SvgIconComponent; +export const PhotoSizeSelectActualSharp: SvgIconComponent; +export const PhotoSizeSelectActualTwoTone: SvgIconComponent; +export const PhotoSizeSelectLarge: SvgIconComponent; +export const PhotoSizeSelectLargeOutlined: SvgIconComponent; +export const PhotoSizeSelectLargeRounded: SvgIconComponent; +export const PhotoSizeSelectLargeSharp: SvgIconComponent; +export const PhotoSizeSelectLargeTwoTone: SvgIconComponent; +export const PhotoSizeSelectSmall: SvgIconComponent; +export const PhotoSizeSelectSmallOutlined: SvgIconComponent; +export const PhotoSizeSelectSmallRounded: SvgIconComponent; +export const PhotoSizeSelectSmallSharp: SvgIconComponent; +export const PhotoSizeSelectSmallTwoTone: SvgIconComponent; +export const PhotoTwoTone: SvgIconComponent; +export const Php: SvgIconComponent; +export const PhpOutlined: SvgIconComponent; +export const PhpRounded: SvgIconComponent; +export const PhpSharp: SvgIconComponent; +export const PhpTwoTone: SvgIconComponent; +export const Piano: SvgIconComponent; +export const PianoOff: SvgIconComponent; +export const PianoOffOutlined: SvgIconComponent; +export const PianoOffRounded: SvgIconComponent; +export const PianoOffSharp: SvgIconComponent; +export const PianoOffTwoTone: SvgIconComponent; +export const PianoOutlined: SvgIconComponent; +export const PianoRounded: SvgIconComponent; +export const PianoSharp: SvgIconComponent; +export const PianoTwoTone: SvgIconComponent; +export const PictureAsPdf: SvgIconComponent; +export const PictureAsPdfOutlined: SvgIconComponent; +export const PictureAsPdfRounded: SvgIconComponent; +export const PictureAsPdfSharp: SvgIconComponent; +export const PictureAsPdfTwoTone: SvgIconComponent; +export const PictureInPicture: SvgIconComponent; +export const PictureInPictureAlt: SvgIconComponent; +export const PictureInPictureAltOutlined: SvgIconComponent; +export const PictureInPictureAltRounded: SvgIconComponent; +export const PictureInPictureAltSharp: SvgIconComponent; +export const PictureInPictureAltTwoTone: SvgIconComponent; +export const PictureInPictureOutlined: SvgIconComponent; +export const PictureInPictureRounded: SvgIconComponent; +export const PictureInPictureSharp: SvgIconComponent; +export const PictureInPictureTwoTone: SvgIconComponent; +export const PieChart: SvgIconComponent; +export const PieChartOutline: SvgIconComponent; +export const PieChartOutlineOutlined: SvgIconComponent; +export const PieChartOutlineRounded: SvgIconComponent; +export const PieChartOutlineSharp: SvgIconComponent; +export const PieChartOutlineTwoTone: SvgIconComponent; +export const PieChartOutlined: SvgIconComponent; +export const PieChartRounded: SvgIconComponent; +export const PieChartSharp: SvgIconComponent; +export const PieChartTwoTone: SvgIconComponent; +export const Pin: SvgIconComponent; +export const PinDrop: SvgIconComponent; +export const PinDropOutlined: SvgIconComponent; +export const PinDropRounded: SvgIconComponent; +export const PinDropSharp: SvgIconComponent; +export const PinDropTwoTone: SvgIconComponent; +export const PinOutlined: SvgIconComponent; +export const PinRounded: SvgIconComponent; +export const PinSharp: SvgIconComponent; +export const PinTwoTone: SvgIconComponent; +export const Pinch: SvgIconComponent; +export const PinchOutlined: SvgIconComponent; +export const PinchRounded: SvgIconComponent; +export const PinchSharp: SvgIconComponent; +export const PinchTwoTone: SvgIconComponent; +export const Pinterest: SvgIconComponent; +export const PivotTableChart: SvgIconComponent; +export const PivotTableChartOutlined: SvgIconComponent; +export const PivotTableChartRounded: SvgIconComponent; +export const PivotTableChartSharp: SvgIconComponent; +export const PivotTableChartTwoTone: SvgIconComponent; +export const Pix: SvgIconComponent; +export const PixOutlined: SvgIconComponent; +export const PixRounded: SvgIconComponent; +export const PixSharp: SvgIconComponent; +export const PixTwoTone: SvgIconComponent; +export const Place: SvgIconComponent; +export const PlaceOutlined: SvgIconComponent; +export const PlaceRounded: SvgIconComponent; +export const PlaceSharp: SvgIconComponent; +export const PlaceTwoTone: SvgIconComponent; +export const Plagiarism: SvgIconComponent; +export const PlagiarismOutlined: SvgIconComponent; +export const PlagiarismRounded: SvgIconComponent; +export const PlagiarismSharp: SvgIconComponent; +export const PlagiarismTwoTone: SvgIconComponent; +export const PlayArrow: SvgIconComponent; +export const PlayArrowOutlined: SvgIconComponent; +export const PlayArrowRounded: SvgIconComponent; +export const PlayArrowSharp: SvgIconComponent; +export const PlayArrowTwoTone: SvgIconComponent; +export const PlayCircle: SvgIconComponent; +export const PlayCircleFilled: SvgIconComponent; +export const PlayCircleFilledOutlined: SvgIconComponent; +export const PlayCircleFilledRounded: SvgIconComponent; +export const PlayCircleFilledSharp: SvgIconComponent; +export const PlayCircleFilledTwoTone: SvgIconComponent; +export const PlayCircleFilledWhite: SvgIconComponent; +export const PlayCircleFilledWhiteOutlined: SvgIconComponent; +export const PlayCircleFilledWhiteRounded: SvgIconComponent; +export const PlayCircleFilledWhiteSharp: SvgIconComponent; +export const PlayCircleFilledWhiteTwoTone: SvgIconComponent; +export const PlayCircleOutline: SvgIconComponent; +export const PlayCircleOutlineOutlined: SvgIconComponent; +export const PlayCircleOutlineRounded: SvgIconComponent; +export const PlayCircleOutlineSharp: SvgIconComponent; +export const PlayCircleOutlineTwoTone: SvgIconComponent; +export const PlayCircleOutlined: SvgIconComponent; +export const PlayCircleRounded: SvgIconComponent; +export const PlayCircleSharp: SvgIconComponent; +export const PlayCircleTwoTone: SvgIconComponent; +export const PlayDisabled: SvgIconComponent; +export const PlayDisabledOutlined: SvgIconComponent; +export const PlayDisabledRounded: SvgIconComponent; +export const PlayDisabledSharp: SvgIconComponent; +export const PlayDisabledTwoTone: SvgIconComponent; +export const PlayForWork: SvgIconComponent; +export const PlayForWorkOutlined: SvgIconComponent; +export const PlayForWorkRounded: SvgIconComponent; +export const PlayForWorkSharp: SvgIconComponent; +export const PlayForWorkTwoTone: SvgIconComponent; +export const PlayLesson: SvgIconComponent; +export const PlayLessonOutlined: SvgIconComponent; +export const PlayLessonRounded: SvgIconComponent; +export const PlayLessonSharp: SvgIconComponent; +export const PlayLessonTwoTone: SvgIconComponent; +export const PlaylistAdd: SvgIconComponent; +export const PlaylistAddCheck: SvgIconComponent; +export const PlaylistAddCheckCircle: SvgIconComponent; +export const PlaylistAddCheckCircleOutlined: SvgIconComponent; +export const PlaylistAddCheckCircleRounded: SvgIconComponent; +export const PlaylistAddCheckCircleSharp: SvgIconComponent; +export const PlaylistAddCheckCircleTwoTone: SvgIconComponent; +export const PlaylistAddCheckOutlined: SvgIconComponent; +export const PlaylistAddCheckRounded: SvgIconComponent; +export const PlaylistAddCheckSharp: SvgIconComponent; +export const PlaylistAddCheckTwoTone: SvgIconComponent; +export const PlaylistAddCircle: SvgIconComponent; +export const PlaylistAddCircleOutlined: SvgIconComponent; +export const PlaylistAddCircleRounded: SvgIconComponent; +export const PlaylistAddCircleSharp: SvgIconComponent; +export const PlaylistAddCircleTwoTone: SvgIconComponent; +export const PlaylistAddOutlined: SvgIconComponent; +export const PlaylistAddRounded: SvgIconComponent; +export const PlaylistAddSharp: SvgIconComponent; +export const PlaylistAddTwoTone: SvgIconComponent; +export const PlaylistPlay: SvgIconComponent; +export const PlaylistPlayOutlined: SvgIconComponent; +export const PlaylistPlayRounded: SvgIconComponent; +export const PlaylistPlaySharp: SvgIconComponent; +export const PlaylistPlayTwoTone: SvgIconComponent; +export const PlaylistRemove: SvgIconComponent; +export const PlaylistRemoveOutlined: SvgIconComponent; +export const PlaylistRemoveRounded: SvgIconComponent; +export const PlaylistRemoveSharp: SvgIconComponent; +export const PlaylistRemoveTwoTone: SvgIconComponent; +export const Plumbing: SvgIconComponent; +export const PlumbingOutlined: SvgIconComponent; +export const PlumbingRounded: SvgIconComponent; +export const PlumbingSharp: SvgIconComponent; +export const PlumbingTwoTone: SvgIconComponent; +export const PlusOne: SvgIconComponent; +export const PlusOneOutlined: SvgIconComponent; +export const PlusOneRounded: SvgIconComponent; +export const PlusOneSharp: SvgIconComponent; +export const PlusOneTwoTone: SvgIconComponent; +export const Podcasts: SvgIconComponent; +export const PodcastsOutlined: SvgIconComponent; +export const PodcastsRounded: SvgIconComponent; +export const PodcastsSharp: SvgIconComponent; +export const PodcastsTwoTone: SvgIconComponent; +export const PointOfSale: SvgIconComponent; +export const PointOfSaleOutlined: SvgIconComponent; +export const PointOfSaleRounded: SvgIconComponent; +export const PointOfSaleSharp: SvgIconComponent; +export const PointOfSaleTwoTone: SvgIconComponent; +export const Policy: SvgIconComponent; +export const PolicyOutlined: SvgIconComponent; +export const PolicyRounded: SvgIconComponent; +export const PolicySharp: SvgIconComponent; +export const PolicyTwoTone: SvgIconComponent; +export const Poll: SvgIconComponent; +export const PollOutlined: SvgIconComponent; +export const PollRounded: SvgIconComponent; +export const PollSharp: SvgIconComponent; +export const PollTwoTone: SvgIconComponent; +export const Polyline: SvgIconComponent; +export const PolylineOutlined: SvgIconComponent; +export const PolylineRounded: SvgIconComponent; +export const PolylineSharp: SvgIconComponent; +export const PolylineTwoTone: SvgIconComponent; +export const Pool: SvgIconComponent; +export const PoolOutlined: SvgIconComponent; +export const PoolRounded: SvgIconComponent; +export const PoolSharp: SvgIconComponent; +export const PoolTwoTone: SvgIconComponent; +export const PortableWifiOff: SvgIconComponent; +export const PortableWifiOffOutlined: SvgIconComponent; +export const PortableWifiOffRounded: SvgIconComponent; +export const PortableWifiOffSharp: SvgIconComponent; +export const PortableWifiOffTwoTone: SvgIconComponent; +export const Portrait: SvgIconComponent; +export const PortraitOutlined: SvgIconComponent; +export const PortraitRounded: SvgIconComponent; +export const PortraitSharp: SvgIconComponent; +export const PortraitTwoTone: SvgIconComponent; +export const PostAdd: SvgIconComponent; +export const PostAddOutlined: SvgIconComponent; +export const PostAddRounded: SvgIconComponent; +export const PostAddSharp: SvgIconComponent; +export const PostAddTwoTone: SvgIconComponent; +export const Power: SvgIconComponent; +export const PowerInput: SvgIconComponent; +export const PowerInputOutlined: SvgIconComponent; +export const PowerInputRounded: SvgIconComponent; +export const PowerInputSharp: SvgIconComponent; +export const PowerInputTwoTone: SvgIconComponent; +export const PowerOff: SvgIconComponent; +export const PowerOffOutlined: SvgIconComponent; +export const PowerOffRounded: SvgIconComponent; +export const PowerOffSharp: SvgIconComponent; +export const PowerOffTwoTone: SvgIconComponent; +export const PowerOutlined: SvgIconComponent; +export const PowerRounded: SvgIconComponent; +export const PowerSettingsNew: SvgIconComponent; +export const PowerSettingsNewOutlined: SvgIconComponent; +export const PowerSettingsNewRounded: SvgIconComponent; +export const PowerSettingsNewSharp: SvgIconComponent; +export const PowerSettingsNewTwoTone: SvgIconComponent; +export const PowerSharp: SvgIconComponent; +export const PowerTwoTone: SvgIconComponent; +export const PrecisionManufacturing: SvgIconComponent; +export const PrecisionManufacturingOutlined: SvgIconComponent; +export const PrecisionManufacturingRounded: SvgIconComponent; +export const PrecisionManufacturingSharp: SvgIconComponent; +export const PrecisionManufacturingTwoTone: SvgIconComponent; +export const PregnantWoman: SvgIconComponent; +export const PregnantWomanOutlined: SvgIconComponent; +export const PregnantWomanRounded: SvgIconComponent; +export const PregnantWomanSharp: SvgIconComponent; +export const PregnantWomanTwoTone: SvgIconComponent; +export const PresentToAll: SvgIconComponent; +export const PresentToAllOutlined: SvgIconComponent; +export const PresentToAllRounded: SvgIconComponent; +export const PresentToAllSharp: SvgIconComponent; +export const PresentToAllTwoTone: SvgIconComponent; +export const Preview: SvgIconComponent; +export const PreviewOutlined: SvgIconComponent; +export const PreviewRounded: SvgIconComponent; +export const PreviewSharp: SvgIconComponent; +export const PreviewTwoTone: SvgIconComponent; +export const PriceChange: SvgIconComponent; +export const PriceChangeOutlined: SvgIconComponent; +export const PriceChangeRounded: SvgIconComponent; +export const PriceChangeSharp: SvgIconComponent; +export const PriceChangeTwoTone: SvgIconComponent; +export const PriceCheck: SvgIconComponent; +export const PriceCheckOutlined: SvgIconComponent; +export const PriceCheckRounded: SvgIconComponent; +export const PriceCheckSharp: SvgIconComponent; +export const PriceCheckTwoTone: SvgIconComponent; +export const Print: SvgIconComponent; +export const PrintDisabled: SvgIconComponent; +export const PrintDisabledOutlined: SvgIconComponent; +export const PrintDisabledRounded: SvgIconComponent; +export const PrintDisabledSharp: SvgIconComponent; +export const PrintDisabledTwoTone: SvgIconComponent; +export const PrintOutlined: SvgIconComponent; +export const PrintRounded: SvgIconComponent; +export const PrintSharp: SvgIconComponent; +export const PrintTwoTone: SvgIconComponent; +export const PriorityHigh: SvgIconComponent; +export const PriorityHighOutlined: SvgIconComponent; +export const PriorityHighRounded: SvgIconComponent; +export const PriorityHighSharp: SvgIconComponent; +export const PriorityHighTwoTone: SvgIconComponent; +export const PrivacyTip: SvgIconComponent; +export const PrivacyTipOutlined: SvgIconComponent; +export const PrivacyTipRounded: SvgIconComponent; +export const PrivacyTipSharp: SvgIconComponent; +export const PrivacyTipTwoTone: SvgIconComponent; +export const ProductionQuantityLimits: SvgIconComponent; +export const ProductionQuantityLimitsOutlined: SvgIconComponent; +export const ProductionQuantityLimitsRounded: SvgIconComponent; +export const ProductionQuantityLimitsSharp: SvgIconComponent; +export const ProductionQuantityLimitsTwoTone: SvgIconComponent; +export const Propane: SvgIconComponent; +export const PropaneOutlined: SvgIconComponent; +export const PropaneRounded: SvgIconComponent; +export const PropaneSharp: SvgIconComponent; +export const PropaneTank: SvgIconComponent; +export const PropaneTankOutlined: SvgIconComponent; +export const PropaneTankRounded: SvgIconComponent; +export const PropaneTankSharp: SvgIconComponent; +export const PropaneTankTwoTone: SvgIconComponent; +export const PropaneTwoTone: SvgIconComponent; +export const Psychology: SvgIconComponent; +export const PsychologyAlt: SvgIconComponent; +export const PsychologyAltOutlined: SvgIconComponent; +export const PsychologyAltRounded: SvgIconComponent; +export const PsychologyAltSharp: SvgIconComponent; +export const PsychologyAltTwoTone: SvgIconComponent; +export const PsychologyOutlined: SvgIconComponent; +export const PsychologyRounded: SvgIconComponent; +export const PsychologySharp: SvgIconComponent; +export const PsychologyTwoTone: SvgIconComponent; +export const Public: SvgIconComponent; +export const PublicOff: SvgIconComponent; +export const PublicOffOutlined: SvgIconComponent; +export const PublicOffRounded: SvgIconComponent; +export const PublicOffSharp: SvgIconComponent; +export const PublicOffTwoTone: SvgIconComponent; +export const PublicOutlined: SvgIconComponent; +export const PublicRounded: SvgIconComponent; +export const PublicSharp: SvgIconComponent; +export const PublicTwoTone: SvgIconComponent; +export const Publish: SvgIconComponent; +export const PublishOutlined: SvgIconComponent; +export const PublishRounded: SvgIconComponent; +export const PublishSharp: SvgIconComponent; +export const PublishTwoTone: SvgIconComponent; +export const PublishedWithChanges: SvgIconComponent; +export const PublishedWithChangesOutlined: SvgIconComponent; +export const PublishedWithChangesRounded: SvgIconComponent; +export const PublishedWithChangesSharp: SvgIconComponent; +export const PublishedWithChangesTwoTone: SvgIconComponent; +export const PunchClock: SvgIconComponent; +export const PunchClockOutlined: SvgIconComponent; +export const PunchClockRounded: SvgIconComponent; +export const PunchClockSharp: SvgIconComponent; +export const PunchClockTwoTone: SvgIconComponent; +export const PushPin: SvgIconComponent; +export const PushPinOutlined: SvgIconComponent; +export const PushPinRounded: SvgIconComponent; +export const PushPinSharp: SvgIconComponent; +export const PushPinTwoTone: SvgIconComponent; +export const QrCode: SvgIconComponent; +export const QrCode2: SvgIconComponent; +export const QrCode2Outlined: SvgIconComponent; +export const QrCode2Rounded: SvgIconComponent; +export const QrCode2Sharp: SvgIconComponent; +export const QrCode2TwoTone: SvgIconComponent; +export const QrCodeOutlined: SvgIconComponent; +export const QrCodeRounded: SvgIconComponent; +export const QrCodeScanner: SvgIconComponent; +export const QrCodeScannerOutlined: SvgIconComponent; +export const QrCodeScannerRounded: SvgIconComponent; +export const QrCodeScannerSharp: SvgIconComponent; +export const QrCodeScannerTwoTone: SvgIconComponent; +export const QrCodeSharp: SvgIconComponent; +export const QrCodeTwoTone: SvgIconComponent; +export const QueryBuilder: SvgIconComponent; +export const QueryBuilderOutlined: SvgIconComponent; +export const QueryBuilderRounded: SvgIconComponent; +export const QueryBuilderSharp: SvgIconComponent; +export const QueryBuilderTwoTone: SvgIconComponent; +export const QueryStats: SvgIconComponent; +export const QueryStatsOutlined: SvgIconComponent; +export const QueryStatsRounded: SvgIconComponent; +export const QueryStatsSharp: SvgIconComponent; +export const QueryStatsTwoTone: SvgIconComponent; +export const QuestionAnswer: SvgIconComponent; +export const QuestionAnswerOutlined: SvgIconComponent; +export const QuestionAnswerRounded: SvgIconComponent; +export const QuestionAnswerSharp: SvgIconComponent; +export const QuestionAnswerTwoTone: SvgIconComponent; +export const QuestionMark: SvgIconComponent; +export const QuestionMarkOutlined: SvgIconComponent; +export const QuestionMarkRounded: SvgIconComponent; +export const QuestionMarkSharp: SvgIconComponent; +export const QuestionMarkTwoTone: SvgIconComponent; +export const Queue: SvgIconComponent; +export const QueueMusic: SvgIconComponent; +export const QueueMusicOutlined: SvgIconComponent; +export const QueueMusicRounded: SvgIconComponent; +export const QueueMusicSharp: SvgIconComponent; +export const QueueMusicTwoTone: SvgIconComponent; +export const QueueOutlined: SvgIconComponent; +export const QueuePlayNext: SvgIconComponent; +export const QueuePlayNextOutlined: SvgIconComponent; +export const QueuePlayNextRounded: SvgIconComponent; +export const QueuePlayNextSharp: SvgIconComponent; +export const QueuePlayNextTwoTone: SvgIconComponent; +export const QueueRounded: SvgIconComponent; +export const QueueSharp: SvgIconComponent; +export const QueueTwoTone: SvgIconComponent; +export const Quickreply: SvgIconComponent; +export const QuickreplyOutlined: SvgIconComponent; +export const QuickreplyRounded: SvgIconComponent; +export const QuickreplySharp: SvgIconComponent; +export const QuickreplyTwoTone: SvgIconComponent; +export const Quiz: SvgIconComponent; +export const QuizOutlined: SvgIconComponent; +export const QuizRounded: SvgIconComponent; +export const QuizSharp: SvgIconComponent; +export const QuizTwoTone: SvgIconComponent; +export const RMobiledata: SvgIconComponent; +export const RMobiledataOutlined: SvgIconComponent; +export const RMobiledataRounded: SvgIconComponent; +export const RMobiledataSharp: SvgIconComponent; +export const RMobiledataTwoTone: SvgIconComponent; +export const Radar: SvgIconComponent; +export const RadarOutlined: SvgIconComponent; +export const RadarRounded: SvgIconComponent; +export const RadarSharp: SvgIconComponent; +export const RadarTwoTone: SvgIconComponent; +export const Radio: SvgIconComponent; +export const RadioButtonChecked: SvgIconComponent; +export const RadioButtonCheckedOutlined: SvgIconComponent; +export const RadioButtonCheckedRounded: SvgIconComponent; +export const RadioButtonCheckedSharp: SvgIconComponent; +export const RadioButtonCheckedTwoTone: SvgIconComponent; +export const RadioButtonUnchecked: SvgIconComponent; +export const RadioButtonUncheckedOutlined: SvgIconComponent; +export const RadioButtonUncheckedRounded: SvgIconComponent; +export const RadioButtonUncheckedSharp: SvgIconComponent; +export const RadioButtonUncheckedTwoTone: SvgIconComponent; +export const RadioOutlined: SvgIconComponent; +export const RadioRounded: SvgIconComponent; +export const RadioSharp: SvgIconComponent; +export const RadioTwoTone: SvgIconComponent; +export const RailwayAlert: SvgIconComponent; +export const RailwayAlertOutlined: SvgIconComponent; +export const RailwayAlertRounded: SvgIconComponent; +export const RailwayAlertSharp: SvgIconComponent; +export const RailwayAlertTwoTone: SvgIconComponent; +export const RamenDining: SvgIconComponent; +export const RamenDiningOutlined: SvgIconComponent; +export const RamenDiningRounded: SvgIconComponent; +export const RamenDiningSharp: SvgIconComponent; +export const RamenDiningTwoTone: SvgIconComponent; +export const RampLeft: SvgIconComponent; +export const RampLeftOutlined: SvgIconComponent; +export const RampLeftRounded: SvgIconComponent; +export const RampLeftSharp: SvgIconComponent; +export const RampLeftTwoTone: SvgIconComponent; +export const RampRight: SvgIconComponent; +export const RampRightOutlined: SvgIconComponent; +export const RampRightRounded: SvgIconComponent; +export const RampRightSharp: SvgIconComponent; +export const RampRightTwoTone: SvgIconComponent; +export const RateReview: SvgIconComponent; +export const RateReviewOutlined: SvgIconComponent; +export const RateReviewRounded: SvgIconComponent; +export const RateReviewSharp: SvgIconComponent; +export const RateReviewTwoTone: SvgIconComponent; +export const RawOff: SvgIconComponent; +export const RawOffOutlined: SvgIconComponent; +export const RawOffRounded: SvgIconComponent; +export const RawOffSharp: SvgIconComponent; +export const RawOffTwoTone: SvgIconComponent; +export const RawOn: SvgIconComponent; +export const RawOnOutlined: SvgIconComponent; +export const RawOnRounded: SvgIconComponent; +export const RawOnSharp: SvgIconComponent; +export const RawOnTwoTone: SvgIconComponent; +export const ReadMore: SvgIconComponent; +export const ReadMoreOutlined: SvgIconComponent; +export const ReadMoreRounded: SvgIconComponent; +export const ReadMoreSharp: SvgIconComponent; +export const ReadMoreTwoTone: SvgIconComponent; +export const Receipt: SvgIconComponent; +export const ReceiptLong: SvgIconComponent; +export const ReceiptLongOutlined: SvgIconComponent; +export const ReceiptLongRounded: SvgIconComponent; +export const ReceiptLongSharp: SvgIconComponent; +export const ReceiptLongTwoTone: SvgIconComponent; +export const ReceiptOutlined: SvgIconComponent; +export const ReceiptRounded: SvgIconComponent; +export const ReceiptSharp: SvgIconComponent; +export const ReceiptTwoTone: SvgIconComponent; +export const RecentActors: SvgIconComponent; +export const RecentActorsOutlined: SvgIconComponent; +export const RecentActorsRounded: SvgIconComponent; +export const RecentActorsSharp: SvgIconComponent; +export const RecentActorsTwoTone: SvgIconComponent; +export const Recommend: SvgIconComponent; +export const RecommendOutlined: SvgIconComponent; +export const RecommendRounded: SvgIconComponent; +export const RecommendSharp: SvgIconComponent; +export const RecommendTwoTone: SvgIconComponent; +export const RecordVoiceOver: SvgIconComponent; +export const RecordVoiceOverOutlined: SvgIconComponent; +export const RecordVoiceOverRounded: SvgIconComponent; +export const RecordVoiceOverSharp: SvgIconComponent; +export const RecordVoiceOverTwoTone: SvgIconComponent; +export const Rectangle: SvgIconComponent; +export const RectangleOutlined: SvgIconComponent; +export const RectangleRounded: SvgIconComponent; +export const RectangleSharp: SvgIconComponent; +export const RectangleTwoTone: SvgIconComponent; +export const Recycling: SvgIconComponent; +export const RecyclingOutlined: SvgIconComponent; +export const RecyclingRounded: SvgIconComponent; +export const RecyclingSharp: SvgIconComponent; +export const RecyclingTwoTone: SvgIconComponent; +export const Reddit: SvgIconComponent; +export const Redeem: SvgIconComponent; +export const RedeemOutlined: SvgIconComponent; +export const RedeemRounded: SvgIconComponent; +export const RedeemSharp: SvgIconComponent; +export const RedeemTwoTone: SvgIconComponent; +export const Redo: SvgIconComponent; +export const RedoOutlined: SvgIconComponent; +export const RedoRounded: SvgIconComponent; +export const RedoSharp: SvgIconComponent; +export const RedoTwoTone: SvgIconComponent; +export const ReduceCapacity: SvgIconComponent; +export const ReduceCapacityOutlined: SvgIconComponent; +export const ReduceCapacityRounded: SvgIconComponent; +export const ReduceCapacitySharp: SvgIconComponent; +export const ReduceCapacityTwoTone: SvgIconComponent; +export const Refresh: SvgIconComponent; +export const RefreshOutlined: SvgIconComponent; +export const RefreshRounded: SvgIconComponent; +export const RefreshSharp: SvgIconComponent; +export const RefreshTwoTone: SvgIconComponent; +export const RememberMe: SvgIconComponent; +export const RememberMeOutlined: SvgIconComponent; +export const RememberMeRounded: SvgIconComponent; +export const RememberMeSharp: SvgIconComponent; +export const RememberMeTwoTone: SvgIconComponent; +export const Remove: SvgIconComponent; +export const RemoveCircle: SvgIconComponent; +export const RemoveCircleOutline: SvgIconComponent; +export const RemoveCircleOutlineOutlined: SvgIconComponent; +export const RemoveCircleOutlineRounded: SvgIconComponent; +export const RemoveCircleOutlineSharp: SvgIconComponent; +export const RemoveCircleOutlineTwoTone: SvgIconComponent; +export const RemoveCircleOutlined: SvgIconComponent; +export const RemoveCircleRounded: SvgIconComponent; +export const RemoveCircleSharp: SvgIconComponent; +export const RemoveCircleTwoTone: SvgIconComponent; +export const RemoveDone: SvgIconComponent; +export const RemoveDoneOutlined: SvgIconComponent; +export const RemoveDoneRounded: SvgIconComponent; +export const RemoveDoneSharp: SvgIconComponent; +export const RemoveDoneTwoTone: SvgIconComponent; +export const RemoveFromQueue: SvgIconComponent; +export const RemoveFromQueueOutlined: SvgIconComponent; +export const RemoveFromQueueRounded: SvgIconComponent; +export const RemoveFromQueueSharp: SvgIconComponent; +export const RemoveFromQueueTwoTone: SvgIconComponent; +export const RemoveModerator: SvgIconComponent; +export const RemoveModeratorOutlined: SvgIconComponent; +export const RemoveModeratorRounded: SvgIconComponent; +export const RemoveModeratorSharp: SvgIconComponent; +export const RemoveModeratorTwoTone: SvgIconComponent; +export const RemoveOutlined: SvgIconComponent; +export const RemoveRedEye: SvgIconComponent; +export const RemoveRedEyeOutlined: SvgIconComponent; +export const RemoveRedEyeRounded: SvgIconComponent; +export const RemoveRedEyeSharp: SvgIconComponent; +export const RemoveRedEyeTwoTone: SvgIconComponent; +export const RemoveRoad: SvgIconComponent; +export const RemoveRoadOutlined: SvgIconComponent; +export const RemoveRoadRounded: SvgIconComponent; +export const RemoveRoadSharp: SvgIconComponent; +export const RemoveRoadTwoTone: SvgIconComponent; +export const RemoveRounded: SvgIconComponent; +export const RemoveSharp: SvgIconComponent; +export const RemoveShoppingCart: SvgIconComponent; +export const RemoveShoppingCartOutlined: SvgIconComponent; +export const RemoveShoppingCartRounded: SvgIconComponent; +export const RemoveShoppingCartSharp: SvgIconComponent; +export const RemoveShoppingCartTwoTone: SvgIconComponent; +export const RemoveTwoTone: SvgIconComponent; +export const Reorder: SvgIconComponent; +export const ReorderOutlined: SvgIconComponent; +export const ReorderRounded: SvgIconComponent; +export const ReorderSharp: SvgIconComponent; +export const ReorderTwoTone: SvgIconComponent; +export const Repartition: SvgIconComponent; +export const RepartitionOutlined: SvgIconComponent; +export const RepartitionRounded: SvgIconComponent; +export const RepartitionSharp: SvgIconComponent; +export const RepartitionTwoTone: SvgIconComponent; +export const Repeat: SvgIconComponent; +export const RepeatOn: SvgIconComponent; +export const RepeatOnOutlined: SvgIconComponent; +export const RepeatOnRounded: SvgIconComponent; +export const RepeatOnSharp: SvgIconComponent; +export const RepeatOnTwoTone: SvgIconComponent; +export const RepeatOne: SvgIconComponent; +export const RepeatOneOn: SvgIconComponent; +export const RepeatOneOnOutlined: SvgIconComponent; +export const RepeatOneOnRounded: SvgIconComponent; +export const RepeatOneOnSharp: SvgIconComponent; +export const RepeatOneOnTwoTone: SvgIconComponent; +export const RepeatOneOutlined: SvgIconComponent; +export const RepeatOneRounded: SvgIconComponent; +export const RepeatOneSharp: SvgIconComponent; +export const RepeatOneTwoTone: SvgIconComponent; +export const RepeatOutlined: SvgIconComponent; +export const RepeatRounded: SvgIconComponent; +export const RepeatSharp: SvgIconComponent; +export const RepeatTwoTone: SvgIconComponent; +export const Replay: SvgIconComponent; +export const Replay10: SvgIconComponent; +export const Replay10Outlined: SvgIconComponent; +export const Replay10Rounded: SvgIconComponent; +export const Replay10Sharp: SvgIconComponent; +export const Replay10TwoTone: SvgIconComponent; +export const Replay30: SvgIconComponent; +export const Replay30Outlined: SvgIconComponent; +export const Replay30Rounded: SvgIconComponent; +export const Replay30Sharp: SvgIconComponent; +export const Replay30TwoTone: SvgIconComponent; +export const Replay5: SvgIconComponent; +export const Replay5Outlined: SvgIconComponent; +export const Replay5Rounded: SvgIconComponent; +export const Replay5Sharp: SvgIconComponent; +export const Replay5TwoTone: SvgIconComponent; +export const ReplayCircleFilled: SvgIconComponent; +export const ReplayCircleFilledOutlined: SvgIconComponent; +export const ReplayCircleFilledRounded: SvgIconComponent; +export const ReplayCircleFilledSharp: SvgIconComponent; +export const ReplayCircleFilledTwoTone: SvgIconComponent; +export const ReplayOutlined: SvgIconComponent; +export const ReplayRounded: SvgIconComponent; +export const ReplaySharp: SvgIconComponent; +export const ReplayTwoTone: SvgIconComponent; +export const Reply: SvgIconComponent; +export const ReplyAll: SvgIconComponent; +export const ReplyAllOutlined: SvgIconComponent; +export const ReplyAllRounded: SvgIconComponent; +export const ReplyAllSharp: SvgIconComponent; +export const ReplyAllTwoTone: SvgIconComponent; +export const ReplyOutlined: SvgIconComponent; +export const ReplyRounded: SvgIconComponent; +export const ReplySharp: SvgIconComponent; +export const ReplyTwoTone: SvgIconComponent; +export const Report: SvgIconComponent; +export const ReportGmailerrorred: SvgIconComponent; +export const ReportGmailerrorredOutlined: SvgIconComponent; +export const ReportGmailerrorredRounded: SvgIconComponent; +export const ReportGmailerrorredSharp: SvgIconComponent; +export const ReportGmailerrorredTwoTone: SvgIconComponent; +export const ReportOff: SvgIconComponent; +export const ReportOffOutlined: SvgIconComponent; +export const ReportOffRounded: SvgIconComponent; +export const ReportOffSharp: SvgIconComponent; +export const ReportOffTwoTone: SvgIconComponent; +export const ReportOutlined: SvgIconComponent; +export const ReportProblem: SvgIconComponent; +export const ReportProblemOutlined: SvgIconComponent; +export const ReportProblemRounded: SvgIconComponent; +export const ReportProblemSharp: SvgIconComponent; +export const ReportProblemTwoTone: SvgIconComponent; +export const ReportRounded: SvgIconComponent; +export const ReportSharp: SvgIconComponent; +export const ReportTwoTone: SvgIconComponent; +export const RequestPage: SvgIconComponent; +export const RequestPageOutlined: SvgIconComponent; +export const RequestPageRounded: SvgIconComponent; +export const RequestPageSharp: SvgIconComponent; +export const RequestPageTwoTone: SvgIconComponent; +export const RequestQuote: SvgIconComponent; +export const RequestQuoteOutlined: SvgIconComponent; +export const RequestQuoteRounded: SvgIconComponent; +export const RequestQuoteSharp: SvgIconComponent; +export const RequestQuoteTwoTone: SvgIconComponent; +export const ResetTv: SvgIconComponent; +export const ResetTvOutlined: SvgIconComponent; +export const ResetTvRounded: SvgIconComponent; +export const ResetTvSharp: SvgIconComponent; +export const ResetTvTwoTone: SvgIconComponent; +export const RestartAlt: SvgIconComponent; +export const RestartAltOutlined: SvgIconComponent; +export const RestartAltRounded: SvgIconComponent; +export const RestartAltSharp: SvgIconComponent; +export const RestartAltTwoTone: SvgIconComponent; +export const Restaurant: SvgIconComponent; +export const RestaurantMenu: SvgIconComponent; +export const RestaurantMenuOutlined: SvgIconComponent; +export const RestaurantMenuRounded: SvgIconComponent; +export const RestaurantMenuSharp: SvgIconComponent; +export const RestaurantMenuTwoTone: SvgIconComponent; +export const RestaurantOutlined: SvgIconComponent; +export const RestaurantRounded: SvgIconComponent; +export const RestaurantSharp: SvgIconComponent; +export const RestaurantTwoTone: SvgIconComponent; +export const Restore: SvgIconComponent; +export const RestoreFromTrash: SvgIconComponent; +export const RestoreFromTrashOutlined: SvgIconComponent; +export const RestoreFromTrashRounded: SvgIconComponent; +export const RestoreFromTrashSharp: SvgIconComponent; +export const RestoreFromTrashTwoTone: SvgIconComponent; +export const RestoreOutlined: SvgIconComponent; +export const RestorePage: SvgIconComponent; +export const RestorePageOutlined: SvgIconComponent; +export const RestorePageRounded: SvgIconComponent; +export const RestorePageSharp: SvgIconComponent; +export const RestorePageTwoTone: SvgIconComponent; +export const RestoreRounded: SvgIconComponent; +export const RestoreSharp: SvgIconComponent; +export const RestoreTwoTone: SvgIconComponent; +export const Reviews: SvgIconComponent; +export const ReviewsOutlined: SvgIconComponent; +export const ReviewsRounded: SvgIconComponent; +export const ReviewsSharp: SvgIconComponent; +export const ReviewsTwoTone: SvgIconComponent; +export const RiceBowl: SvgIconComponent; +export const RiceBowlOutlined: SvgIconComponent; +export const RiceBowlRounded: SvgIconComponent; +export const RiceBowlSharp: SvgIconComponent; +export const RiceBowlTwoTone: SvgIconComponent; +export const RingVolume: SvgIconComponent; +export const RingVolumeOutlined: SvgIconComponent; +export const RingVolumeRounded: SvgIconComponent; +export const RingVolumeSharp: SvgIconComponent; +export const RingVolumeTwoTone: SvgIconComponent; +export const Rocket: SvgIconComponent; +export const RocketLaunch: SvgIconComponent; +export const RocketLaunchOutlined: SvgIconComponent; +export const RocketLaunchRounded: SvgIconComponent; +export const RocketLaunchSharp: SvgIconComponent; +export const RocketLaunchTwoTone: SvgIconComponent; +export const RocketOutlined: SvgIconComponent; +export const RocketRounded: SvgIconComponent; +export const RocketSharp: SvgIconComponent; +export const RocketTwoTone: SvgIconComponent; +export const RollerShades: SvgIconComponent; +export const RollerShadesClosed: SvgIconComponent; +export const RollerShadesClosedOutlined: SvgIconComponent; +export const RollerShadesClosedRounded: SvgIconComponent; +export const RollerShadesClosedSharp: SvgIconComponent; +export const RollerShadesClosedTwoTone: SvgIconComponent; +export const RollerShadesOutlined: SvgIconComponent; +export const RollerShadesRounded: SvgIconComponent; +export const RollerShadesSharp: SvgIconComponent; +export const RollerShadesTwoTone: SvgIconComponent; +export const RollerSkating: SvgIconComponent; +export const RollerSkatingOutlined: SvgIconComponent; +export const RollerSkatingRounded: SvgIconComponent; +export const RollerSkatingSharp: SvgIconComponent; +export const RollerSkatingTwoTone: SvgIconComponent; +export const Roofing: SvgIconComponent; +export const RoofingOutlined: SvgIconComponent; +export const RoofingRounded: SvgIconComponent; +export const RoofingSharp: SvgIconComponent; +export const RoofingTwoTone: SvgIconComponent; +export const Room: SvgIconComponent; +export const RoomOutlined: SvgIconComponent; +export const RoomPreferences: SvgIconComponent; +export const RoomPreferencesOutlined: SvgIconComponent; +export const RoomPreferencesRounded: SvgIconComponent; +export const RoomPreferencesSharp: SvgIconComponent; +export const RoomPreferencesTwoTone: SvgIconComponent; +export const RoomRounded: SvgIconComponent; +export const RoomService: SvgIconComponent; +export const RoomServiceOutlined: SvgIconComponent; +export const RoomServiceRounded: SvgIconComponent; +export const RoomServiceSharp: SvgIconComponent; +export const RoomServiceTwoTone: SvgIconComponent; +export const RoomSharp: SvgIconComponent; +export const RoomTwoTone: SvgIconComponent; +export const Rotate90DegreesCcw: SvgIconComponent; +export const Rotate90DegreesCcwOutlined: SvgIconComponent; +export const Rotate90DegreesCcwRounded: SvgIconComponent; +export const Rotate90DegreesCcwSharp: SvgIconComponent; +export const Rotate90DegreesCcwTwoTone: SvgIconComponent; +export const Rotate90DegreesCw: SvgIconComponent; +export const Rotate90DegreesCwOutlined: SvgIconComponent; +export const Rotate90DegreesCwRounded: SvgIconComponent; +export const Rotate90DegreesCwSharp: SvgIconComponent; +export const Rotate90DegreesCwTwoTone: SvgIconComponent; +export const RotateLeft: SvgIconComponent; +export const RotateLeftOutlined: SvgIconComponent; +export const RotateLeftRounded: SvgIconComponent; +export const RotateLeftSharp: SvgIconComponent; +export const RotateLeftTwoTone: SvgIconComponent; +export const RotateRight: SvgIconComponent; +export const RotateRightOutlined: SvgIconComponent; +export const RotateRightRounded: SvgIconComponent; +export const RotateRightSharp: SvgIconComponent; +export const RotateRightTwoTone: SvgIconComponent; +export const RoundaboutLeft: SvgIconComponent; +export const RoundaboutLeftOutlined: SvgIconComponent; +export const RoundaboutLeftRounded: SvgIconComponent; +export const RoundaboutLeftSharp: SvgIconComponent; +export const RoundaboutLeftTwoTone: SvgIconComponent; +export const RoundaboutRight: SvgIconComponent; +export const RoundaboutRightOutlined: SvgIconComponent; +export const RoundaboutRightRounded: SvgIconComponent; +export const RoundaboutRightSharp: SvgIconComponent; +export const RoundaboutRightTwoTone: SvgIconComponent; +export const RoundedCorner: SvgIconComponent; +export const RoundedCornerOutlined: SvgIconComponent; +export const RoundedCornerRounded: SvgIconComponent; +export const RoundedCornerSharp: SvgIconComponent; +export const RoundedCornerTwoTone: SvgIconComponent; +export const Route: SvgIconComponent; +export const RouteOutlined: SvgIconComponent; +export const RouteRounded: SvgIconComponent; +export const RouteSharp: SvgIconComponent; +export const RouteTwoTone: SvgIconComponent; +export const Router: SvgIconComponent; +export const RouterOutlined: SvgIconComponent; +export const RouterRounded: SvgIconComponent; +export const RouterSharp: SvgIconComponent; +export const RouterTwoTone: SvgIconComponent; +export const Rowing: SvgIconComponent; +export const RowingOutlined: SvgIconComponent; +export const RowingRounded: SvgIconComponent; +export const RowingSharp: SvgIconComponent; +export const RowingTwoTone: SvgIconComponent; +export const RssFeed: SvgIconComponent; +export const RssFeedOutlined: SvgIconComponent; +export const RssFeedRounded: SvgIconComponent; +export const RssFeedSharp: SvgIconComponent; +export const RssFeedTwoTone: SvgIconComponent; +export const Rsvp: SvgIconComponent; +export const RsvpOutlined: SvgIconComponent; +export const RsvpRounded: SvgIconComponent; +export const RsvpSharp: SvgIconComponent; +export const RsvpTwoTone: SvgIconComponent; +export const Rtt: SvgIconComponent; +export const RttOutlined: SvgIconComponent; +export const RttRounded: SvgIconComponent; +export const RttSharp: SvgIconComponent; +export const RttTwoTone: SvgIconComponent; +export const Rule: SvgIconComponent; +export const RuleFolder: SvgIconComponent; +export const RuleFolderOutlined: SvgIconComponent; +export const RuleFolderRounded: SvgIconComponent; +export const RuleFolderSharp: SvgIconComponent; +export const RuleFolderTwoTone: SvgIconComponent; +export const RuleOutlined: SvgIconComponent; +export const RuleRounded: SvgIconComponent; +export const RuleSharp: SvgIconComponent; +export const RuleTwoTone: SvgIconComponent; +export const RunCircle: SvgIconComponent; +export const RunCircleOutlined: SvgIconComponent; +export const RunCircleRounded: SvgIconComponent; +export const RunCircleSharp: SvgIconComponent; +export const RunCircleTwoTone: SvgIconComponent; +export const RunningWithErrors: SvgIconComponent; +export const RunningWithErrorsOutlined: SvgIconComponent; +export const RunningWithErrorsRounded: SvgIconComponent; +export const RunningWithErrorsSharp: SvgIconComponent; +export const RunningWithErrorsTwoTone: SvgIconComponent; +export const RvHookup: SvgIconComponent; +export const RvHookupOutlined: SvgIconComponent; +export const RvHookupRounded: SvgIconComponent; +export const RvHookupSharp: SvgIconComponent; +export const RvHookupTwoTone: SvgIconComponent; +export const SafetyCheck: SvgIconComponent; +export const SafetyCheckOutlined: SvgIconComponent; +export const SafetyCheckRounded: SvgIconComponent; +export const SafetyCheckSharp: SvgIconComponent; +export const SafetyCheckTwoTone: SvgIconComponent; +export const SafetyDivider: SvgIconComponent; +export const SafetyDividerOutlined: SvgIconComponent; +export const SafetyDividerRounded: SvgIconComponent; +export const SafetyDividerSharp: SvgIconComponent; +export const SafetyDividerTwoTone: SvgIconComponent; +export const Sailing: SvgIconComponent; +export const SailingOutlined: SvgIconComponent; +export const SailingRounded: SvgIconComponent; +export const SailingSharp: SvgIconComponent; +export const SailingTwoTone: SvgIconComponent; +export const Sanitizer: SvgIconComponent; +export const SanitizerOutlined: SvgIconComponent; +export const SanitizerRounded: SvgIconComponent; +export const SanitizerSharp: SvgIconComponent; +export const SanitizerTwoTone: SvgIconComponent; +export const Satellite: SvgIconComponent; +export const SatelliteAlt: SvgIconComponent; +export const SatelliteAltOutlined: SvgIconComponent; +export const SatelliteAltRounded: SvgIconComponent; +export const SatelliteAltSharp: SvgIconComponent; +export const SatelliteAltTwoTone: SvgIconComponent; +export const SatelliteOutlined: SvgIconComponent; +export const SatelliteRounded: SvgIconComponent; +export const SatelliteSharp: SvgIconComponent; +export const SatelliteTwoTone: SvgIconComponent; +export const Save: SvgIconComponent; +export const SaveAlt: SvgIconComponent; +export const SaveAltOutlined: SvgIconComponent; +export const SaveAltRounded: SvgIconComponent; +export const SaveAltSharp: SvgIconComponent; +export const SaveAltTwoTone: SvgIconComponent; +export const SaveAs: SvgIconComponent; +export const SaveAsOutlined: SvgIconComponent; +export const SaveAsRounded: SvgIconComponent; +export const SaveAsSharp: SvgIconComponent; +export const SaveAsTwoTone: SvgIconComponent; +export const SaveOutlined: SvgIconComponent; +export const SaveRounded: SvgIconComponent; +export const SaveSharp: SvgIconComponent; +export const SaveTwoTone: SvgIconComponent; +export const SavedSearch: SvgIconComponent; +export const SavedSearchOutlined: SvgIconComponent; +export const SavedSearchRounded: SvgIconComponent; +export const SavedSearchSharp: SvgIconComponent; +export const SavedSearchTwoTone: SvgIconComponent; +export const Savings: SvgIconComponent; +export const SavingsOutlined: SvgIconComponent; +export const SavingsRounded: SvgIconComponent; +export const SavingsSharp: SvgIconComponent; +export const SavingsTwoTone: SvgIconComponent; +export const Scale: SvgIconComponent; +export const ScaleOutlined: SvgIconComponent; +export const ScaleRounded: SvgIconComponent; +export const ScaleSharp: SvgIconComponent; +export const ScaleTwoTone: SvgIconComponent; +export const Scanner: SvgIconComponent; +export const ScannerOutlined: SvgIconComponent; +export const ScannerRounded: SvgIconComponent; +export const ScannerSharp: SvgIconComponent; +export const ScannerTwoTone: SvgIconComponent; +export const ScatterPlot: SvgIconComponent; +export const ScatterPlotOutlined: SvgIconComponent; +export const ScatterPlotRounded: SvgIconComponent; +export const ScatterPlotSharp: SvgIconComponent; +export const ScatterPlotTwoTone: SvgIconComponent; +export const Schedule: SvgIconComponent; +export const ScheduleOutlined: SvgIconComponent; +export const ScheduleRounded: SvgIconComponent; +export const ScheduleSend: SvgIconComponent; +export const ScheduleSendOutlined: SvgIconComponent; +export const ScheduleSendRounded: SvgIconComponent; +export const ScheduleSendSharp: SvgIconComponent; +export const ScheduleSendTwoTone: SvgIconComponent; +export const ScheduleSharp: SvgIconComponent; +export const ScheduleTwoTone: SvgIconComponent; +export const Schema: SvgIconComponent; +export const SchemaOutlined: SvgIconComponent; +export const SchemaRounded: SvgIconComponent; +export const SchemaSharp: SvgIconComponent; +export const SchemaTwoTone: SvgIconComponent; +export const School: SvgIconComponent; +export const SchoolOutlined: SvgIconComponent; +export const SchoolRounded: SvgIconComponent; +export const SchoolSharp: SvgIconComponent; +export const SchoolTwoTone: SvgIconComponent; +export const Science: SvgIconComponent; +export const ScienceOutlined: SvgIconComponent; +export const ScienceRounded: SvgIconComponent; +export const ScienceSharp: SvgIconComponent; +export const ScienceTwoTone: SvgIconComponent; +export const Score: SvgIconComponent; +export const ScoreOutlined: SvgIconComponent; +export const ScoreRounded: SvgIconComponent; +export const ScoreSharp: SvgIconComponent; +export const ScoreTwoTone: SvgIconComponent; +export const Scoreboard: SvgIconComponent; +export const ScoreboardOutlined: SvgIconComponent; +export const ScoreboardRounded: SvgIconComponent; +export const ScoreboardSharp: SvgIconComponent; +export const ScoreboardTwoTone: SvgIconComponent; +export const ScreenLockLandscape: SvgIconComponent; +export const ScreenLockLandscapeOutlined: SvgIconComponent; +export const ScreenLockLandscapeRounded: SvgIconComponent; +export const ScreenLockLandscapeSharp: SvgIconComponent; +export const ScreenLockLandscapeTwoTone: SvgIconComponent; +export const ScreenLockPortrait: SvgIconComponent; +export const ScreenLockPortraitOutlined: SvgIconComponent; +export const ScreenLockPortraitRounded: SvgIconComponent; +export const ScreenLockPortraitSharp: SvgIconComponent; +export const ScreenLockPortraitTwoTone: SvgIconComponent; +export const ScreenLockRotation: SvgIconComponent; +export const ScreenLockRotationOutlined: SvgIconComponent; +export const ScreenLockRotationRounded: SvgIconComponent; +export const ScreenLockRotationSharp: SvgIconComponent; +export const ScreenLockRotationTwoTone: SvgIconComponent; +export const ScreenRotation: SvgIconComponent; +export const ScreenRotationAlt: SvgIconComponent; +export const ScreenRotationAltOutlined: SvgIconComponent; +export const ScreenRotationAltRounded: SvgIconComponent; +export const ScreenRotationAltSharp: SvgIconComponent; +export const ScreenRotationAltTwoTone: SvgIconComponent; +export const ScreenRotationOutlined: SvgIconComponent; +export const ScreenRotationRounded: SvgIconComponent; +export const ScreenRotationSharp: SvgIconComponent; +export const ScreenRotationTwoTone: SvgIconComponent; +export const ScreenSearchDesktop: SvgIconComponent; +export const ScreenSearchDesktopOutlined: SvgIconComponent; +export const ScreenSearchDesktopRounded: SvgIconComponent; +export const ScreenSearchDesktopSharp: SvgIconComponent; +export const ScreenSearchDesktopTwoTone: SvgIconComponent; +export const ScreenShare: SvgIconComponent; +export const ScreenShareOutlined: SvgIconComponent; +export const ScreenShareRounded: SvgIconComponent; +export const ScreenShareSharp: SvgIconComponent; +export const ScreenShareTwoTone: SvgIconComponent; +export const Screenshot: SvgIconComponent; +export const ScreenshotMonitor: SvgIconComponent; +export const ScreenshotMonitorOutlined: SvgIconComponent; +export const ScreenshotMonitorRounded: SvgIconComponent; +export const ScreenshotMonitorSharp: SvgIconComponent; +export const ScreenshotMonitorTwoTone: SvgIconComponent; +export const ScreenshotOutlined: SvgIconComponent; +export const ScreenshotRounded: SvgIconComponent; +export const ScreenshotSharp: SvgIconComponent; +export const ScreenshotTwoTone: SvgIconComponent; +export const ScubaDiving: SvgIconComponent; +export const ScubaDivingOutlined: SvgIconComponent; +export const ScubaDivingRounded: SvgIconComponent; +export const ScubaDivingSharp: SvgIconComponent; +export const ScubaDivingTwoTone: SvgIconComponent; +export const Sd: SvgIconComponent; +export const SdCard: SvgIconComponent; +export const SdCardAlert: SvgIconComponent; +export const SdCardAlertOutlined: SvgIconComponent; +export const SdCardAlertRounded: SvgIconComponent; +export const SdCardAlertSharp: SvgIconComponent; +export const SdCardAlertTwoTone: SvgIconComponent; +export const SdCardOutlined: SvgIconComponent; +export const SdCardRounded: SvgIconComponent; +export const SdCardSharp: SvgIconComponent; +export const SdCardTwoTone: SvgIconComponent; +export const SdOutlined: SvgIconComponent; +export const SdRounded: SvgIconComponent; +export const SdSharp: SvgIconComponent; +export const SdStorage: SvgIconComponent; +export const SdStorageOutlined: SvgIconComponent; +export const SdStorageRounded: SvgIconComponent; +export const SdStorageSharp: SvgIconComponent; +export const SdStorageTwoTone: SvgIconComponent; +export const SdTwoTone: SvgIconComponent; +export const Search: SvgIconComponent; +export const SearchOff: SvgIconComponent; +export const SearchOffOutlined: SvgIconComponent; +export const SearchOffRounded: SvgIconComponent; +export const SearchOffSharp: SvgIconComponent; +export const SearchOffTwoTone: SvgIconComponent; +export const SearchOutlined: SvgIconComponent; +export const SearchRounded: SvgIconComponent; +export const SearchSharp: SvgIconComponent; +export const SearchTwoTone: SvgIconComponent; +export const Security: SvgIconComponent; +export const SecurityOutlined: SvgIconComponent; +export const SecurityRounded: SvgIconComponent; +export const SecuritySharp: SvgIconComponent; +export const SecurityTwoTone: SvgIconComponent; +export const SecurityUpdate: SvgIconComponent; +export const SecurityUpdateGood: SvgIconComponent; +export const SecurityUpdateGoodOutlined: SvgIconComponent; +export const SecurityUpdateGoodRounded: SvgIconComponent; +export const SecurityUpdateGoodSharp: SvgIconComponent; +export const SecurityUpdateGoodTwoTone: SvgIconComponent; +export const SecurityUpdateOutlined: SvgIconComponent; +export const SecurityUpdateRounded: SvgIconComponent; +export const SecurityUpdateSharp: SvgIconComponent; +export const SecurityUpdateTwoTone: SvgIconComponent; +export const SecurityUpdateWarning: SvgIconComponent; +export const SecurityUpdateWarningOutlined: SvgIconComponent; +export const SecurityUpdateWarningRounded: SvgIconComponent; +export const SecurityUpdateWarningSharp: SvgIconComponent; +export const SecurityUpdateWarningTwoTone: SvgIconComponent; +export const Segment: SvgIconComponent; +export const SegmentOutlined: SvgIconComponent; +export const SegmentRounded: SvgIconComponent; +export const SegmentSharp: SvgIconComponent; +export const SegmentTwoTone: SvgIconComponent; +export const SelectAll: SvgIconComponent; +export const SelectAllOutlined: SvgIconComponent; +export const SelectAllRounded: SvgIconComponent; +export const SelectAllSharp: SvgIconComponent; +export const SelectAllTwoTone: SvgIconComponent; +export const SelfImprovement: SvgIconComponent; +export const SelfImprovementOutlined: SvgIconComponent; +export const SelfImprovementRounded: SvgIconComponent; +export const SelfImprovementSharp: SvgIconComponent; +export const SelfImprovementTwoTone: SvgIconComponent; +export const Sell: SvgIconComponent; +export const SellOutlined: SvgIconComponent; +export const SellRounded: SvgIconComponent; +export const SellSharp: SvgIconComponent; +export const SellTwoTone: SvgIconComponent; +export const Send: SvgIconComponent; +export const SendAndArchive: SvgIconComponent; +export const SendAndArchiveOutlined: SvgIconComponent; +export const SendAndArchiveRounded: SvgIconComponent; +export const SendAndArchiveSharp: SvgIconComponent; +export const SendAndArchiveTwoTone: SvgIconComponent; +export const SendOutlined: SvgIconComponent; +export const SendRounded: SvgIconComponent; +export const SendSharp: SvgIconComponent; +export const SendTimeExtension: SvgIconComponent; +export const SendTimeExtensionOutlined: SvgIconComponent; +export const SendTimeExtensionRounded: SvgIconComponent; +export const SendTimeExtensionSharp: SvgIconComponent; +export const SendTimeExtensionTwoTone: SvgIconComponent; +export const SendToMobile: SvgIconComponent; +export const SendToMobileOutlined: SvgIconComponent; +export const SendToMobileRounded: SvgIconComponent; +export const SendToMobileSharp: SvgIconComponent; +export const SendToMobileTwoTone: SvgIconComponent; +export const SendTwoTone: SvgIconComponent; +export const SensorDoor: SvgIconComponent; +export const SensorDoorOutlined: SvgIconComponent; +export const SensorDoorRounded: SvgIconComponent; +export const SensorDoorSharp: SvgIconComponent; +export const SensorDoorTwoTone: SvgIconComponent; +export const SensorOccupied: SvgIconComponent; +export const SensorOccupiedOutlined: SvgIconComponent; +export const SensorOccupiedRounded: SvgIconComponent; +export const SensorOccupiedSharp: SvgIconComponent; +export const SensorOccupiedTwoTone: SvgIconComponent; +export const SensorWindow: SvgIconComponent; +export const SensorWindowOutlined: SvgIconComponent; +export const SensorWindowRounded: SvgIconComponent; +export const SensorWindowSharp: SvgIconComponent; +export const SensorWindowTwoTone: SvgIconComponent; +export const Sensors: SvgIconComponent; +export const SensorsOff: SvgIconComponent; +export const SensorsOffOutlined: SvgIconComponent; +export const SensorsOffRounded: SvgIconComponent; +export const SensorsOffSharp: SvgIconComponent; +export const SensorsOffTwoTone: SvgIconComponent; +export const SensorsOutlined: SvgIconComponent; +export const SensorsRounded: SvgIconComponent; +export const SensorsSharp: SvgIconComponent; +export const SensorsTwoTone: SvgIconComponent; +export const SentimentDissatisfied: SvgIconComponent; +export const SentimentDissatisfiedOutlined: SvgIconComponent; +export const SentimentDissatisfiedRounded: SvgIconComponent; +export const SentimentDissatisfiedSharp: SvgIconComponent; +export const SentimentDissatisfiedTwoTone: SvgIconComponent; +export const SentimentNeutral: SvgIconComponent; +export const SentimentNeutralOutlined: SvgIconComponent; +export const SentimentNeutralRounded: SvgIconComponent; +export const SentimentNeutralSharp: SvgIconComponent; +export const SentimentNeutralTwoTone: SvgIconComponent; +export const SentimentSatisfied: SvgIconComponent; +export const SentimentSatisfiedAlt: SvgIconComponent; +export const SentimentSatisfiedAltOutlined: SvgIconComponent; +export const SentimentSatisfiedAltRounded: SvgIconComponent; +export const SentimentSatisfiedAltSharp: SvgIconComponent; +export const SentimentSatisfiedAltTwoTone: SvgIconComponent; +export const SentimentSatisfiedOutlined: SvgIconComponent; +export const SentimentSatisfiedRounded: SvgIconComponent; +export const SentimentSatisfiedSharp: SvgIconComponent; +export const SentimentSatisfiedTwoTone: SvgIconComponent; +export const SentimentVeryDissatisfied: SvgIconComponent; +export const SentimentVeryDissatisfiedOutlined: SvgIconComponent; +export const SentimentVeryDissatisfiedRounded: SvgIconComponent; +export const SentimentVeryDissatisfiedSharp: SvgIconComponent; +export const SentimentVeryDissatisfiedTwoTone: SvgIconComponent; +export const SentimentVerySatisfied: SvgIconComponent; +export const SentimentVerySatisfiedOutlined: SvgIconComponent; +export const SentimentVerySatisfiedRounded: SvgIconComponent; +export const SentimentVerySatisfiedSharp: SvgIconComponent; +export const SentimentVerySatisfiedTwoTone: SvgIconComponent; +export const SetMeal: SvgIconComponent; +export const SetMealOutlined: SvgIconComponent; +export const SetMealRounded: SvgIconComponent; +export const SetMealSharp: SvgIconComponent; +export const SetMealTwoTone: SvgIconComponent; +export const Settings: SvgIconComponent; +export const SettingsAccessibility: SvgIconComponent; +export const SettingsAccessibilityOutlined: SvgIconComponent; +export const SettingsAccessibilityRounded: SvgIconComponent; +export const SettingsAccessibilitySharp: SvgIconComponent; +export const SettingsAccessibilityTwoTone: SvgIconComponent; +export const SettingsApplications: SvgIconComponent; +export const SettingsApplicationsOutlined: SvgIconComponent; +export const SettingsApplicationsRounded: SvgIconComponent; +export const SettingsApplicationsSharp: SvgIconComponent; +export const SettingsApplicationsTwoTone: SvgIconComponent; +export const SettingsBackupRestore: SvgIconComponent; +export const SettingsBackupRestoreOutlined: SvgIconComponent; +export const SettingsBackupRestoreRounded: SvgIconComponent; +export const SettingsBackupRestoreSharp: SvgIconComponent; +export const SettingsBackupRestoreTwoTone: SvgIconComponent; +export const SettingsBluetooth: SvgIconComponent; +export const SettingsBluetoothOutlined: SvgIconComponent; +export const SettingsBluetoothRounded: SvgIconComponent; +export const SettingsBluetoothSharp: SvgIconComponent; +export const SettingsBluetoothTwoTone: SvgIconComponent; +export const SettingsBrightness: SvgIconComponent; +export const SettingsBrightnessOutlined: SvgIconComponent; +export const SettingsBrightnessRounded: SvgIconComponent; +export const SettingsBrightnessSharp: SvgIconComponent; +export const SettingsBrightnessTwoTone: SvgIconComponent; +export const SettingsCell: SvgIconComponent; +export const SettingsCellOutlined: SvgIconComponent; +export const SettingsCellRounded: SvgIconComponent; +export const SettingsCellSharp: SvgIconComponent; +export const SettingsCellTwoTone: SvgIconComponent; +export const SettingsEthernet: SvgIconComponent; +export const SettingsEthernetOutlined: SvgIconComponent; +export const SettingsEthernetRounded: SvgIconComponent; +export const SettingsEthernetSharp: SvgIconComponent; +export const SettingsEthernetTwoTone: SvgIconComponent; +export const SettingsInputAntenna: SvgIconComponent; +export const SettingsInputAntennaOutlined: SvgIconComponent; +export const SettingsInputAntennaRounded: SvgIconComponent; +export const SettingsInputAntennaSharp: SvgIconComponent; +export const SettingsInputAntennaTwoTone: SvgIconComponent; +export const SettingsInputComponent: SvgIconComponent; +export const SettingsInputComponentOutlined: SvgIconComponent; +export const SettingsInputComponentRounded: SvgIconComponent; +export const SettingsInputComponentSharp: SvgIconComponent; +export const SettingsInputComponentTwoTone: SvgIconComponent; +export const SettingsInputComposite: SvgIconComponent; +export const SettingsInputCompositeOutlined: SvgIconComponent; +export const SettingsInputCompositeRounded: SvgIconComponent; +export const SettingsInputCompositeSharp: SvgIconComponent; +export const SettingsInputCompositeTwoTone: SvgIconComponent; +export const SettingsInputHdmi: SvgIconComponent; +export const SettingsInputHdmiOutlined: SvgIconComponent; +export const SettingsInputHdmiRounded: SvgIconComponent; +export const SettingsInputHdmiSharp: SvgIconComponent; +export const SettingsInputHdmiTwoTone: SvgIconComponent; +export const SettingsInputSvideo: SvgIconComponent; +export const SettingsInputSvideoOutlined: SvgIconComponent; +export const SettingsInputSvideoRounded: SvgIconComponent; +export const SettingsInputSvideoSharp: SvgIconComponent; +export const SettingsInputSvideoTwoTone: SvgIconComponent; +export const SettingsOutlined: SvgIconComponent; +export const SettingsOverscan: SvgIconComponent; +export const SettingsOverscanOutlined: SvgIconComponent; +export const SettingsOverscanRounded: SvgIconComponent; +export const SettingsOverscanSharp: SvgIconComponent; +export const SettingsOverscanTwoTone: SvgIconComponent; +export const SettingsPhone: SvgIconComponent; +export const SettingsPhoneOutlined: SvgIconComponent; +export const SettingsPhoneRounded: SvgIconComponent; +export const SettingsPhoneSharp: SvgIconComponent; +export const SettingsPhoneTwoTone: SvgIconComponent; +export const SettingsPower: SvgIconComponent; +export const SettingsPowerOutlined: SvgIconComponent; +export const SettingsPowerRounded: SvgIconComponent; +export const SettingsPowerSharp: SvgIconComponent; +export const SettingsPowerTwoTone: SvgIconComponent; +export const SettingsRemote: SvgIconComponent; +export const SettingsRemoteOutlined: SvgIconComponent; +export const SettingsRemoteRounded: SvgIconComponent; +export const SettingsRemoteSharp: SvgIconComponent; +export const SettingsRemoteTwoTone: SvgIconComponent; +export const SettingsRounded: SvgIconComponent; +export const SettingsSharp: SvgIconComponent; +export const SettingsSuggest: SvgIconComponent; +export const SettingsSuggestOutlined: SvgIconComponent; +export const SettingsSuggestRounded: SvgIconComponent; +export const SettingsSuggestSharp: SvgIconComponent; +export const SettingsSuggestTwoTone: SvgIconComponent; +export const SettingsSystemDaydream: SvgIconComponent; +export const SettingsSystemDaydreamOutlined: SvgIconComponent; +export const SettingsSystemDaydreamRounded: SvgIconComponent; +export const SettingsSystemDaydreamSharp: SvgIconComponent; +export const SettingsSystemDaydreamTwoTone: SvgIconComponent; +export const SettingsTwoTone: SvgIconComponent; +export const SettingsVoice: SvgIconComponent; +export const SettingsVoiceOutlined: SvgIconComponent; +export const SettingsVoiceRounded: SvgIconComponent; +export const SettingsVoiceSharp: SvgIconComponent; +export const SettingsVoiceTwoTone: SvgIconComponent; +export const SevenK: SvgIconComponent; +export const SevenKOutlined: SvgIconComponent; +export const SevenKPlus: SvgIconComponent; +export const SevenKPlusOutlined: SvgIconComponent; +export const SevenKPlusRounded: SvgIconComponent; +export const SevenKPlusSharp: SvgIconComponent; +export const SevenKPlusTwoTone: SvgIconComponent; +export const SevenKRounded: SvgIconComponent; +export const SevenKSharp: SvgIconComponent; +export const SevenKTwoTone: SvgIconComponent; +export const SevenMp: SvgIconComponent; +export const SevenMpOutlined: SvgIconComponent; +export const SevenMpRounded: SvgIconComponent; +export const SevenMpSharp: SvgIconComponent; +export const SevenMpTwoTone: SvgIconComponent; +export const SeventeenMp: SvgIconComponent; +export const SeventeenMpOutlined: SvgIconComponent; +export const SeventeenMpRounded: SvgIconComponent; +export const SeventeenMpSharp: SvgIconComponent; +export const SeventeenMpTwoTone: SvgIconComponent; +export const SevereCold: SvgIconComponent; +export const SevereColdOutlined: SvgIconComponent; +export const SevereColdRounded: SvgIconComponent; +export const SevereColdSharp: SvgIconComponent; +export const SevereColdTwoTone: SvgIconComponent; +export const ShapeLine: SvgIconComponent; +export const ShapeLineOutlined: SvgIconComponent; +export const ShapeLineRounded: SvgIconComponent; +export const ShapeLineSharp: SvgIconComponent; +export const ShapeLineTwoTone: SvgIconComponent; +export const Share: SvgIconComponent; +export const ShareLocation: SvgIconComponent; +export const ShareLocationOutlined: SvgIconComponent; +export const ShareLocationRounded: SvgIconComponent; +export const ShareLocationSharp: SvgIconComponent; +export const ShareLocationTwoTone: SvgIconComponent; +export const ShareOutlined: SvgIconComponent; +export const ShareRounded: SvgIconComponent; +export const ShareSharp: SvgIconComponent; +export const ShareTwoTone: SvgIconComponent; +export const Shield: SvgIconComponent; +export const ShieldMoon: SvgIconComponent; +export const ShieldMoonOutlined: SvgIconComponent; +export const ShieldMoonRounded: SvgIconComponent; +export const ShieldMoonSharp: SvgIconComponent; +export const ShieldMoonTwoTone: SvgIconComponent; +export const ShieldOutlined: SvgIconComponent; +export const ShieldRounded: SvgIconComponent; +export const ShieldSharp: SvgIconComponent; +export const ShieldTwoTone: SvgIconComponent; +export const Shop: SvgIconComponent; +export const Shop2: SvgIconComponent; +export const Shop2Outlined: SvgIconComponent; +export const Shop2Rounded: SvgIconComponent; +export const Shop2Sharp: SvgIconComponent; +export const Shop2TwoTone: SvgIconComponent; +export const ShopOutlined: SvgIconComponent; +export const ShopRounded: SvgIconComponent; +export const ShopSharp: SvgIconComponent; +export const ShopTwo: SvgIconComponent; +export const ShopTwoOutlined: SvgIconComponent; +export const ShopTwoRounded: SvgIconComponent; +export const ShopTwoSharp: SvgIconComponent; +export const ShopTwoTone: SvgIconComponent; +export const ShopTwoTwoTone: SvgIconComponent; +export const ShoppingBag: SvgIconComponent; +export const ShoppingBagOutlined: SvgIconComponent; +export const ShoppingBagRounded: SvgIconComponent; +export const ShoppingBagSharp: SvgIconComponent; +export const ShoppingBagTwoTone: SvgIconComponent; +export const ShoppingBasket: SvgIconComponent; +export const ShoppingBasketOutlined: SvgIconComponent; +export const ShoppingBasketRounded: SvgIconComponent; +export const ShoppingBasketSharp: SvgIconComponent; +export const ShoppingBasketTwoTone: SvgIconComponent; +export const ShoppingCart: SvgIconComponent; +export const ShoppingCartCheckout: SvgIconComponent; +export const ShoppingCartCheckoutOutlined: SvgIconComponent; +export const ShoppingCartCheckoutRounded: SvgIconComponent; +export const ShoppingCartCheckoutSharp: SvgIconComponent; +export const ShoppingCartCheckoutTwoTone: SvgIconComponent; +export const ShoppingCartOutlined: SvgIconComponent; +export const ShoppingCartRounded: SvgIconComponent; +export const ShoppingCartSharp: SvgIconComponent; +export const ShoppingCartTwoTone: SvgIconComponent; +export const ShortText: SvgIconComponent; +export const ShortTextOutlined: SvgIconComponent; +export const ShortTextRounded: SvgIconComponent; +export const ShortTextSharp: SvgIconComponent; +export const ShortTextTwoTone: SvgIconComponent; +export const Shortcut: SvgIconComponent; +export const ShortcutOutlined: SvgIconComponent; +export const ShortcutRounded: SvgIconComponent; +export const ShortcutSharp: SvgIconComponent; +export const ShortcutTwoTone: SvgIconComponent; +export const ShowChart: SvgIconComponent; +export const ShowChartOutlined: SvgIconComponent; +export const ShowChartRounded: SvgIconComponent; +export const ShowChartSharp: SvgIconComponent; +export const ShowChartTwoTone: SvgIconComponent; +export const Shower: SvgIconComponent; +export const ShowerOutlined: SvgIconComponent; +export const ShowerRounded: SvgIconComponent; +export const ShowerSharp: SvgIconComponent; +export const ShowerTwoTone: SvgIconComponent; +export const Shuffle: SvgIconComponent; +export const ShuffleOn: SvgIconComponent; +export const ShuffleOnOutlined: SvgIconComponent; +export const ShuffleOnRounded: SvgIconComponent; +export const ShuffleOnSharp: SvgIconComponent; +export const ShuffleOnTwoTone: SvgIconComponent; +export const ShuffleOutlined: SvgIconComponent; +export const ShuffleRounded: SvgIconComponent; +export const ShuffleSharp: SvgIconComponent; +export const ShuffleTwoTone: SvgIconComponent; +export const ShutterSpeed: SvgIconComponent; +export const ShutterSpeedOutlined: SvgIconComponent; +export const ShutterSpeedRounded: SvgIconComponent; +export const ShutterSpeedSharp: SvgIconComponent; +export const ShutterSpeedTwoTone: SvgIconComponent; +export const Sick: SvgIconComponent; +export const SickOutlined: SvgIconComponent; +export const SickRounded: SvgIconComponent; +export const SickSharp: SvgIconComponent; +export const SickTwoTone: SvgIconComponent; +export const SignLanguage: SvgIconComponent; +export const SignLanguageOutlined: SvgIconComponent; +export const SignLanguageRounded: SvgIconComponent; +export const SignLanguageSharp: SvgIconComponent; +export const SignLanguageTwoTone: SvgIconComponent; +export const SignalCellular0Bar: SvgIconComponent; +export const SignalCellular0BarOutlined: SvgIconComponent; +export const SignalCellular0BarRounded: SvgIconComponent; +export const SignalCellular0BarSharp: SvgIconComponent; +export const SignalCellular0BarTwoTone: SvgIconComponent; +export const SignalCellular1Bar: SvgIconComponent; +export const SignalCellular1BarOutlined: SvgIconComponent; +export const SignalCellular1BarRounded: SvgIconComponent; +export const SignalCellular1BarSharp: SvgIconComponent; +export const SignalCellular1BarTwoTone: SvgIconComponent; +export const SignalCellular2Bar: SvgIconComponent; +export const SignalCellular2BarOutlined: SvgIconComponent; +export const SignalCellular2BarRounded: SvgIconComponent; +export const SignalCellular2BarSharp: SvgIconComponent; +export const SignalCellular2BarTwoTone: SvgIconComponent; +export const SignalCellular3Bar: SvgIconComponent; +export const SignalCellular3BarOutlined: SvgIconComponent; +export const SignalCellular3BarRounded: SvgIconComponent; +export const SignalCellular3BarSharp: SvgIconComponent; +export const SignalCellular3BarTwoTone: SvgIconComponent; +export const SignalCellular4Bar: SvgIconComponent; +export const SignalCellular4BarOutlined: SvgIconComponent; +export const SignalCellular4BarRounded: SvgIconComponent; +export const SignalCellular4BarSharp: SvgIconComponent; +export const SignalCellular4BarTwoTone: SvgIconComponent; +export const SignalCellularAlt: SvgIconComponent; +export const SignalCellularAlt1Bar: SvgIconComponent; +export const SignalCellularAlt1BarOutlined: SvgIconComponent; +export const SignalCellularAlt1BarRounded: SvgIconComponent; +export const SignalCellularAlt1BarSharp: SvgIconComponent; +export const SignalCellularAlt1BarTwoTone: SvgIconComponent; +export const SignalCellularAlt2Bar: SvgIconComponent; +export const SignalCellularAlt2BarOutlined: SvgIconComponent; +export const SignalCellularAlt2BarRounded: SvgIconComponent; +export const SignalCellularAlt2BarSharp: SvgIconComponent; +export const SignalCellularAlt2BarTwoTone: SvgIconComponent; +export const SignalCellularAltOutlined: SvgIconComponent; +export const SignalCellularAltRounded: SvgIconComponent; +export const SignalCellularAltSharp: SvgIconComponent; +export const SignalCellularAltTwoTone: SvgIconComponent; +export const SignalCellularConnectedNoInternet0Bar: SvgIconComponent; +export const SignalCellularConnectedNoInternet0BarOutlined: SvgIconComponent; +export const SignalCellularConnectedNoInternet0BarRounded: SvgIconComponent; +export const SignalCellularConnectedNoInternet0BarSharp: SvgIconComponent; +export const SignalCellularConnectedNoInternet0BarTwoTone: SvgIconComponent; +export const SignalCellularConnectedNoInternet1Bar: SvgIconComponent; +export const SignalCellularConnectedNoInternet1BarOutlined: SvgIconComponent; +export const SignalCellularConnectedNoInternet1BarRounded: SvgIconComponent; +export const SignalCellularConnectedNoInternet1BarSharp: SvgIconComponent; +export const SignalCellularConnectedNoInternet1BarTwoTone: SvgIconComponent; +export const SignalCellularConnectedNoInternet2Bar: SvgIconComponent; +export const SignalCellularConnectedNoInternet2BarOutlined: SvgIconComponent; +export const SignalCellularConnectedNoInternet2BarRounded: SvgIconComponent; +export const SignalCellularConnectedNoInternet2BarSharp: SvgIconComponent; +export const SignalCellularConnectedNoInternet2BarTwoTone: SvgIconComponent; +export const SignalCellularConnectedNoInternet3Bar: SvgIconComponent; +export const SignalCellularConnectedNoInternet3BarOutlined: SvgIconComponent; +export const SignalCellularConnectedNoInternet3BarRounded: SvgIconComponent; +export const SignalCellularConnectedNoInternet3BarSharp: SvgIconComponent; +export const SignalCellularConnectedNoInternet3BarTwoTone: SvgIconComponent; +export const SignalCellularConnectedNoInternet4Bar: SvgIconComponent; +export const SignalCellularConnectedNoInternet4BarOutlined: SvgIconComponent; +export const SignalCellularConnectedNoInternet4BarRounded: SvgIconComponent; +export const SignalCellularConnectedNoInternet4BarSharp: SvgIconComponent; +export const SignalCellularConnectedNoInternet4BarTwoTone: SvgIconComponent; +export const SignalCellularNoSim: SvgIconComponent; +export const SignalCellularNoSimOutlined: SvgIconComponent; +export const SignalCellularNoSimRounded: SvgIconComponent; +export const SignalCellularNoSimSharp: SvgIconComponent; +export const SignalCellularNoSimTwoTone: SvgIconComponent; +export const SignalCellularNodata: SvgIconComponent; +export const SignalCellularNodataOutlined: SvgIconComponent; +export const SignalCellularNodataRounded: SvgIconComponent; +export const SignalCellularNodataSharp: SvgIconComponent; +export const SignalCellularNodataTwoTone: SvgIconComponent; +export const SignalCellularNull: SvgIconComponent; +export const SignalCellularNullOutlined: SvgIconComponent; +export const SignalCellularNullRounded: SvgIconComponent; +export const SignalCellularNullSharp: SvgIconComponent; +export const SignalCellularNullTwoTone: SvgIconComponent; +export const SignalCellularOff: SvgIconComponent; +export const SignalCellularOffOutlined: SvgIconComponent; +export const SignalCellularOffRounded: SvgIconComponent; +export const SignalCellularOffSharp: SvgIconComponent; +export const SignalCellularOffTwoTone: SvgIconComponent; +export const SignalWifi0Bar: SvgIconComponent; +export const SignalWifi0BarOutlined: SvgIconComponent; +export const SignalWifi0BarRounded: SvgIconComponent; +export const SignalWifi0BarSharp: SvgIconComponent; +export const SignalWifi0BarTwoTone: SvgIconComponent; +export const SignalWifi1Bar: SvgIconComponent; +export const SignalWifi1BarLock: SvgIconComponent; +export const SignalWifi1BarLockOutlined: SvgIconComponent; +export const SignalWifi1BarLockRounded: SvgIconComponent; +export const SignalWifi1BarLockSharp: SvgIconComponent; +export const SignalWifi1BarLockTwoTone: SvgIconComponent; +export const SignalWifi1BarOutlined: SvgIconComponent; +export const SignalWifi1BarRounded: SvgIconComponent; +export const SignalWifi1BarSharp: SvgIconComponent; +export const SignalWifi1BarTwoTone: SvgIconComponent; +export const SignalWifi2Bar: SvgIconComponent; +export const SignalWifi2BarLock: SvgIconComponent; +export const SignalWifi2BarLockOutlined: SvgIconComponent; +export const SignalWifi2BarLockRounded: SvgIconComponent; +export const SignalWifi2BarLockSharp: SvgIconComponent; +export const SignalWifi2BarLockTwoTone: SvgIconComponent; +export const SignalWifi2BarOutlined: SvgIconComponent; +export const SignalWifi2BarRounded: SvgIconComponent; +export const SignalWifi2BarSharp: SvgIconComponent; +export const SignalWifi2BarTwoTone: SvgIconComponent; +export const SignalWifi3Bar: SvgIconComponent; +export const SignalWifi3BarLock: SvgIconComponent; +export const SignalWifi3BarLockOutlined: SvgIconComponent; +export const SignalWifi3BarLockRounded: SvgIconComponent; +export const SignalWifi3BarLockSharp: SvgIconComponent; +export const SignalWifi3BarLockTwoTone: SvgIconComponent; +export const SignalWifi3BarOutlined: SvgIconComponent; +export const SignalWifi3BarRounded: SvgIconComponent; +export const SignalWifi3BarSharp: SvgIconComponent; +export const SignalWifi3BarTwoTone: SvgIconComponent; +export const SignalWifi4Bar: SvgIconComponent; +export const SignalWifi4BarLock: SvgIconComponent; +export const SignalWifi4BarLockOutlined: SvgIconComponent; +export const SignalWifi4BarLockRounded: SvgIconComponent; +export const SignalWifi4BarLockSharp: SvgIconComponent; +export const SignalWifi4BarLockTwoTone: SvgIconComponent; +export const SignalWifi4BarOutlined: SvgIconComponent; +export const SignalWifi4BarRounded: SvgIconComponent; +export const SignalWifi4BarSharp: SvgIconComponent; +export const SignalWifi4BarTwoTone: SvgIconComponent; +export const SignalWifiBad: SvgIconComponent; +export const SignalWifiBadOutlined: SvgIconComponent; +export const SignalWifiBadRounded: SvgIconComponent; +export const SignalWifiBadSharp: SvgIconComponent; +export const SignalWifiBadTwoTone: SvgIconComponent; +export const SignalWifiConnectedNoInternet4: SvgIconComponent; +export const SignalWifiConnectedNoInternet4Outlined: SvgIconComponent; +export const SignalWifiConnectedNoInternet4Rounded: SvgIconComponent; +export const SignalWifiConnectedNoInternet4Sharp: SvgIconComponent; +export const SignalWifiConnectedNoInternet4TwoTone: SvgIconComponent; +export const SignalWifiOff: SvgIconComponent; +export const SignalWifiOffOutlined: SvgIconComponent; +export const SignalWifiOffRounded: SvgIconComponent; +export const SignalWifiOffSharp: SvgIconComponent; +export const SignalWifiOffTwoTone: SvgIconComponent; +export const SignalWifiStatusbar4Bar: SvgIconComponent; +export const SignalWifiStatusbar4BarOutlined: SvgIconComponent; +export const SignalWifiStatusbar4BarRounded: SvgIconComponent; +export const SignalWifiStatusbar4BarSharp: SvgIconComponent; +export const SignalWifiStatusbar4BarTwoTone: SvgIconComponent; +export const SignalWifiStatusbarConnectedNoInternet4: SvgIconComponent; +export const SignalWifiStatusbarConnectedNoInternet4Outlined: SvgIconComponent; +export const SignalWifiStatusbarConnectedNoInternet4Rounded: SvgIconComponent; +export const SignalWifiStatusbarConnectedNoInternet4Sharp: SvgIconComponent; +export const SignalWifiStatusbarConnectedNoInternet4TwoTone: SvgIconComponent; +export const SignalWifiStatusbarNull: SvgIconComponent; +export const SignalWifiStatusbarNullOutlined: SvgIconComponent; +export const SignalWifiStatusbarNullRounded: SvgIconComponent; +export const SignalWifiStatusbarNullSharp: SvgIconComponent; +export const SignalWifiStatusbarNullTwoTone: SvgIconComponent; +export const Signpost: SvgIconComponent; +export const SignpostOutlined: SvgIconComponent; +export const SignpostRounded: SvgIconComponent; +export const SignpostSharp: SvgIconComponent; +export const SignpostTwoTone: SvgIconComponent; +export const SimCard: SvgIconComponent; +export const SimCardAlert: SvgIconComponent; +export const SimCardAlertOutlined: SvgIconComponent; +export const SimCardAlertRounded: SvgIconComponent; +export const SimCardAlertSharp: SvgIconComponent; +export const SimCardAlertTwoTone: SvgIconComponent; +export const SimCardDownload: SvgIconComponent; +export const SimCardDownloadOutlined: SvgIconComponent; +export const SimCardDownloadRounded: SvgIconComponent; +export const SimCardDownloadSharp: SvgIconComponent; +export const SimCardDownloadTwoTone: SvgIconComponent; +export const SimCardOutlined: SvgIconComponent; +export const SimCardRounded: SvgIconComponent; +export const SimCardSharp: SvgIconComponent; +export const SimCardTwoTone: SvgIconComponent; +export const SingleBed: SvgIconComponent; +export const SingleBedOutlined: SvgIconComponent; +export const SingleBedRounded: SvgIconComponent; +export const SingleBedSharp: SvgIconComponent; +export const SingleBedTwoTone: SvgIconComponent; +export const Sip: SvgIconComponent; +export const SipOutlined: SvgIconComponent; +export const SipRounded: SvgIconComponent; +export const SipSharp: SvgIconComponent; +export const SipTwoTone: SvgIconComponent; +export const SixK: SvgIconComponent; +export const SixKOutlined: SvgIconComponent; +export const SixKPlus: SvgIconComponent; +export const SixKPlusOutlined: SvgIconComponent; +export const SixKPlusRounded: SvgIconComponent; +export const SixKPlusSharp: SvgIconComponent; +export const SixKPlusTwoTone: SvgIconComponent; +export const SixKRounded: SvgIconComponent; +export const SixKSharp: SvgIconComponent; +export const SixKTwoTone: SvgIconComponent; +export const SixMp: SvgIconComponent; +export const SixMpOutlined: SvgIconComponent; +export const SixMpRounded: SvgIconComponent; +export const SixMpSharp: SvgIconComponent; +export const SixMpTwoTone: SvgIconComponent; +export const SixteenMp: SvgIconComponent; +export const SixteenMpOutlined: SvgIconComponent; +export const SixteenMpRounded: SvgIconComponent; +export const SixteenMpSharp: SvgIconComponent; +export const SixteenMpTwoTone: SvgIconComponent; +export const SixtyFps: SvgIconComponent; +export const SixtyFpsOutlined: SvgIconComponent; +export const SixtyFpsRounded: SvgIconComponent; +export const SixtyFpsSelect: SvgIconComponent; +export const SixtyFpsSelectOutlined: SvgIconComponent; +export const SixtyFpsSelectRounded: SvgIconComponent; +export const SixtyFpsSelectSharp: SvgIconComponent; +export const SixtyFpsSelectTwoTone: SvgIconComponent; +export const SixtyFpsSharp: SvgIconComponent; +export const SixtyFpsTwoTone: SvgIconComponent; +export const Skateboarding: SvgIconComponent; +export const SkateboardingOutlined: SvgIconComponent; +export const SkateboardingRounded: SvgIconComponent; +export const SkateboardingSharp: SvgIconComponent; +export const SkateboardingTwoTone: SvgIconComponent; +export const SkipNext: SvgIconComponent; +export const SkipNextOutlined: SvgIconComponent; +export const SkipNextRounded: SvgIconComponent; +export const SkipNextSharp: SvgIconComponent; +export const SkipNextTwoTone: SvgIconComponent; +export const SkipPrevious: SvgIconComponent; +export const SkipPreviousOutlined: SvgIconComponent; +export const SkipPreviousRounded: SvgIconComponent; +export const SkipPreviousSharp: SvgIconComponent; +export const SkipPreviousTwoTone: SvgIconComponent; +export const Sledding: SvgIconComponent; +export const SleddingOutlined: SvgIconComponent; +export const SleddingRounded: SvgIconComponent; +export const SleddingSharp: SvgIconComponent; +export const SleddingTwoTone: SvgIconComponent; +export const Slideshow: SvgIconComponent; +export const SlideshowOutlined: SvgIconComponent; +export const SlideshowRounded: SvgIconComponent; +export const SlideshowSharp: SvgIconComponent; +export const SlideshowTwoTone: SvgIconComponent; +export const SlowMotionVideo: SvgIconComponent; +export const SlowMotionVideoOutlined: SvgIconComponent; +export const SlowMotionVideoRounded: SvgIconComponent; +export const SlowMotionVideoSharp: SvgIconComponent; +export const SlowMotionVideoTwoTone: SvgIconComponent; +export const SmartButton: SvgIconComponent; +export const SmartButtonOutlined: SvgIconComponent; +export const SmartButtonRounded: SvgIconComponent; +export const SmartButtonSharp: SvgIconComponent; +export const SmartButtonTwoTone: SvgIconComponent; +export const SmartDisplay: SvgIconComponent; +export const SmartDisplayOutlined: SvgIconComponent; +export const SmartDisplayRounded: SvgIconComponent; +export const SmartDisplaySharp: SvgIconComponent; +export const SmartDisplayTwoTone: SvgIconComponent; +export const SmartScreen: SvgIconComponent; +export const SmartScreenOutlined: SvgIconComponent; +export const SmartScreenRounded: SvgIconComponent; +export const SmartScreenSharp: SvgIconComponent; +export const SmartScreenTwoTone: SvgIconComponent; +export const SmartToy: SvgIconComponent; +export const SmartToyOutlined: SvgIconComponent; +export const SmartToyRounded: SvgIconComponent; +export const SmartToySharp: SvgIconComponent; +export const SmartToyTwoTone: SvgIconComponent; +export const Smartphone: SvgIconComponent; +export const SmartphoneOutlined: SvgIconComponent; +export const SmartphoneRounded: SvgIconComponent; +export const SmartphoneSharp: SvgIconComponent; +export const SmartphoneTwoTone: SvgIconComponent; +export const SmokeFree: SvgIconComponent; +export const SmokeFreeOutlined: SvgIconComponent; +export const SmokeFreeRounded: SvgIconComponent; +export const SmokeFreeSharp: SvgIconComponent; +export const SmokeFreeTwoTone: SvgIconComponent; +export const SmokingRooms: SvgIconComponent; +export const SmokingRoomsOutlined: SvgIconComponent; +export const SmokingRoomsRounded: SvgIconComponent; +export const SmokingRoomsSharp: SvgIconComponent; +export const SmokingRoomsTwoTone: SvgIconComponent; +export const Sms: SvgIconComponent; +export const SmsFailed: SvgIconComponent; +export const SmsFailedOutlined: SvgIconComponent; +export const SmsFailedRounded: SvgIconComponent; +export const SmsFailedSharp: SvgIconComponent; +export const SmsFailedTwoTone: SvgIconComponent; +export const SmsOutlined: SvgIconComponent; +export const SmsRounded: SvgIconComponent; +export const SmsSharp: SvgIconComponent; +export const SmsTwoTone: SvgIconComponent; +export const SnippetFolder: SvgIconComponent; +export const SnippetFolderOutlined: SvgIconComponent; +export const SnippetFolderRounded: SvgIconComponent; +export const SnippetFolderSharp: SvgIconComponent; +export const SnippetFolderTwoTone: SvgIconComponent; +export const Snooze: SvgIconComponent; +export const SnoozeOutlined: SvgIconComponent; +export const SnoozeRounded: SvgIconComponent; +export const SnoozeSharp: SvgIconComponent; +export const SnoozeTwoTone: SvgIconComponent; +export const Snowboarding: SvgIconComponent; +export const SnowboardingOutlined: SvgIconComponent; +export const SnowboardingRounded: SvgIconComponent; +export const SnowboardingSharp: SvgIconComponent; +export const SnowboardingTwoTone: SvgIconComponent; +export const Snowmobile: SvgIconComponent; +export const SnowmobileOutlined: SvgIconComponent; +export const SnowmobileRounded: SvgIconComponent; +export const SnowmobileSharp: SvgIconComponent; +export const SnowmobileTwoTone: SvgIconComponent; +export const Snowshoeing: SvgIconComponent; +export const SnowshoeingOutlined: SvgIconComponent; +export const SnowshoeingRounded: SvgIconComponent; +export const SnowshoeingSharp: SvgIconComponent; +export const SnowshoeingTwoTone: SvgIconComponent; +export const Soap: SvgIconComponent; +export const SoapOutlined: SvgIconComponent; +export const SoapRounded: SvgIconComponent; +export const SoapSharp: SvgIconComponent; +export const SoapTwoTone: SvgIconComponent; +export const SocialDistance: SvgIconComponent; +export const SocialDistanceOutlined: SvgIconComponent; +export const SocialDistanceRounded: SvgIconComponent; +export const SocialDistanceSharp: SvgIconComponent; +export const SocialDistanceTwoTone: SvgIconComponent; +export const SolarPower: SvgIconComponent; +export const SolarPowerOutlined: SvgIconComponent; +export const SolarPowerRounded: SvgIconComponent; +export const SolarPowerSharp: SvgIconComponent; +export const SolarPowerTwoTone: SvgIconComponent; +export const Sort: SvgIconComponent; +export const SortByAlpha: SvgIconComponent; +export const SortByAlphaOutlined: SvgIconComponent; +export const SortByAlphaRounded: SvgIconComponent; +export const SortByAlphaSharp: SvgIconComponent; +export const SortByAlphaTwoTone: SvgIconComponent; +export const SortOutlined: SvgIconComponent; +export const SortRounded: SvgIconComponent; +export const SortSharp: SvgIconComponent; +export const SortTwoTone: SvgIconComponent; +export const Sos: SvgIconComponent; +export const SosOutlined: SvgIconComponent; +export const SosRounded: SvgIconComponent; +export const SosSharp: SvgIconComponent; +export const SosTwoTone: SvgIconComponent; +export const SoupKitchen: SvgIconComponent; +export const SoupKitchenOutlined: SvgIconComponent; +export const SoupKitchenRounded: SvgIconComponent; +export const SoupKitchenSharp: SvgIconComponent; +export const SoupKitchenTwoTone: SvgIconComponent; +export const Source: SvgIconComponent; +export const SourceOutlined: SvgIconComponent; +export const SourceRounded: SvgIconComponent; +export const SourceSharp: SvgIconComponent; +export const SourceTwoTone: SvgIconComponent; +export const South: SvgIconComponent; +export const SouthAmerica: SvgIconComponent; +export const SouthAmericaOutlined: SvgIconComponent; +export const SouthAmericaRounded: SvgIconComponent; +export const SouthAmericaSharp: SvgIconComponent; +export const SouthAmericaTwoTone: SvgIconComponent; +export const SouthEast: SvgIconComponent; +export const SouthEastOutlined: SvgIconComponent; +export const SouthEastRounded: SvgIconComponent; +export const SouthEastSharp: SvgIconComponent; +export const SouthEastTwoTone: SvgIconComponent; +export const SouthOutlined: SvgIconComponent; +export const SouthRounded: SvgIconComponent; +export const SouthSharp: SvgIconComponent; +export const SouthTwoTone: SvgIconComponent; +export const SouthWest: SvgIconComponent; +export const SouthWestOutlined: SvgIconComponent; +export const SouthWestRounded: SvgIconComponent; +export const SouthWestSharp: SvgIconComponent; +export const SouthWestTwoTone: SvgIconComponent; +export const Spa: SvgIconComponent; +export const SpaOutlined: SvgIconComponent; +export const SpaRounded: SvgIconComponent; +export const SpaSharp: SvgIconComponent; +export const SpaTwoTone: SvgIconComponent; +export const SpaceBar: SvgIconComponent; +export const SpaceBarOutlined: SvgIconComponent; +export const SpaceBarRounded: SvgIconComponent; +export const SpaceBarSharp: SvgIconComponent; +export const SpaceBarTwoTone: SvgIconComponent; +export const SpaceDashboard: SvgIconComponent; +export const SpaceDashboardOutlined: SvgIconComponent; +export const SpaceDashboardRounded: SvgIconComponent; +export const SpaceDashboardSharp: SvgIconComponent; +export const SpaceDashboardTwoTone: SvgIconComponent; +export const SpatialAudio: SvgIconComponent; +export const SpatialAudioOff: SvgIconComponent; +export const SpatialAudioOffOutlined: SvgIconComponent; +export const SpatialAudioOffRounded: SvgIconComponent; +export const SpatialAudioOffSharp: SvgIconComponent; +export const SpatialAudioOffTwoTone: SvgIconComponent; +export const SpatialAudioOutlined: SvgIconComponent; +export const SpatialAudioRounded: SvgIconComponent; +export const SpatialAudioSharp: SvgIconComponent; +export const SpatialAudioTwoTone: SvgIconComponent; +export const SpatialTracking: SvgIconComponent; +export const SpatialTrackingOutlined: SvgIconComponent; +export const SpatialTrackingRounded: SvgIconComponent; +export const SpatialTrackingSharp: SvgIconComponent; +export const SpatialTrackingTwoTone: SvgIconComponent; +export const Speaker: SvgIconComponent; +export const SpeakerGroup: SvgIconComponent; +export const SpeakerGroupOutlined: SvgIconComponent; +export const SpeakerGroupRounded: SvgIconComponent; +export const SpeakerGroupSharp: SvgIconComponent; +export const SpeakerGroupTwoTone: SvgIconComponent; +export const SpeakerNotes: SvgIconComponent; +export const SpeakerNotesOff: SvgIconComponent; +export const SpeakerNotesOffOutlined: SvgIconComponent; +export const SpeakerNotesOffRounded: SvgIconComponent; +export const SpeakerNotesOffSharp: SvgIconComponent; +export const SpeakerNotesOffTwoTone: SvgIconComponent; +export const SpeakerNotesOutlined: SvgIconComponent; +export const SpeakerNotesRounded: SvgIconComponent; +export const SpeakerNotesSharp: SvgIconComponent; +export const SpeakerNotesTwoTone: SvgIconComponent; +export const SpeakerOutlined: SvgIconComponent; +export const SpeakerPhone: SvgIconComponent; +export const SpeakerPhoneOutlined: SvgIconComponent; +export const SpeakerPhoneRounded: SvgIconComponent; +export const SpeakerPhoneSharp: SvgIconComponent; +export const SpeakerPhoneTwoTone: SvgIconComponent; +export const SpeakerRounded: SvgIconComponent; +export const SpeakerSharp: SvgIconComponent; +export const SpeakerTwoTone: SvgIconComponent; +export const Speed: SvgIconComponent; +export const SpeedOutlined: SvgIconComponent; +export const SpeedRounded: SvgIconComponent; +export const SpeedSharp: SvgIconComponent; +export const SpeedTwoTone: SvgIconComponent; +export const Spellcheck: SvgIconComponent; +export const SpellcheckOutlined: SvgIconComponent; +export const SpellcheckRounded: SvgIconComponent; +export const SpellcheckSharp: SvgIconComponent; +export const SpellcheckTwoTone: SvgIconComponent; +export const Splitscreen: SvgIconComponent; +export const SplitscreenOutlined: SvgIconComponent; +export const SplitscreenRounded: SvgIconComponent; +export const SplitscreenSharp: SvgIconComponent; +export const SplitscreenTwoTone: SvgIconComponent; +export const Spoke: SvgIconComponent; +export const SpokeOutlined: SvgIconComponent; +export const SpokeRounded: SvgIconComponent; +export const SpokeSharp: SvgIconComponent; +export const SpokeTwoTone: SvgIconComponent; +export const Sports: SvgIconComponent; +export const SportsBar: SvgIconComponent; +export const SportsBarOutlined: SvgIconComponent; +export const SportsBarRounded: SvgIconComponent; +export const SportsBarSharp: SvgIconComponent; +export const SportsBarTwoTone: SvgIconComponent; +export const SportsBaseball: SvgIconComponent; +export const SportsBaseballOutlined: SvgIconComponent; +export const SportsBaseballRounded: SvgIconComponent; +export const SportsBaseballSharp: SvgIconComponent; +export const SportsBaseballTwoTone: SvgIconComponent; +export const SportsBasketball: SvgIconComponent; +export const SportsBasketballOutlined: SvgIconComponent; +export const SportsBasketballRounded: SvgIconComponent; +export const SportsBasketballSharp: SvgIconComponent; +export const SportsBasketballTwoTone: SvgIconComponent; +export const SportsCricket: SvgIconComponent; +export const SportsCricketOutlined: SvgIconComponent; +export const SportsCricketRounded: SvgIconComponent; +export const SportsCricketSharp: SvgIconComponent; +export const SportsCricketTwoTone: SvgIconComponent; +export const SportsEsports: SvgIconComponent; +export const SportsEsportsOutlined: SvgIconComponent; +export const SportsEsportsRounded: SvgIconComponent; +export const SportsEsportsSharp: SvgIconComponent; +export const SportsEsportsTwoTone: SvgIconComponent; +export const SportsFootball: SvgIconComponent; +export const SportsFootballOutlined: SvgIconComponent; +export const SportsFootballRounded: SvgIconComponent; +export const SportsFootballSharp: SvgIconComponent; +export const SportsFootballTwoTone: SvgIconComponent; +export const SportsGolf: SvgIconComponent; +export const SportsGolfOutlined: SvgIconComponent; +export const SportsGolfRounded: SvgIconComponent; +export const SportsGolfSharp: SvgIconComponent; +export const SportsGolfTwoTone: SvgIconComponent; +export const SportsGymnastics: SvgIconComponent; +export const SportsGymnasticsOutlined: SvgIconComponent; +export const SportsGymnasticsRounded: SvgIconComponent; +export const SportsGymnasticsSharp: SvgIconComponent; +export const SportsGymnasticsTwoTone: SvgIconComponent; +export const SportsHandball: SvgIconComponent; +export const SportsHandballOutlined: SvgIconComponent; +export const SportsHandballRounded: SvgIconComponent; +export const SportsHandballSharp: SvgIconComponent; +export const SportsHandballTwoTone: SvgIconComponent; +export const SportsHockey: SvgIconComponent; +export const SportsHockeyOutlined: SvgIconComponent; +export const SportsHockeyRounded: SvgIconComponent; +export const SportsHockeySharp: SvgIconComponent; +export const SportsHockeyTwoTone: SvgIconComponent; +export const SportsKabaddi: SvgIconComponent; +export const SportsKabaddiOutlined: SvgIconComponent; +export const SportsKabaddiRounded: SvgIconComponent; +export const SportsKabaddiSharp: SvgIconComponent; +export const SportsKabaddiTwoTone: SvgIconComponent; +export const SportsMartialArts: SvgIconComponent; +export const SportsMartialArtsOutlined: SvgIconComponent; +export const SportsMartialArtsRounded: SvgIconComponent; +export const SportsMartialArtsSharp: SvgIconComponent; +export const SportsMartialArtsTwoTone: SvgIconComponent; +export const SportsMma: SvgIconComponent; +export const SportsMmaOutlined: SvgIconComponent; +export const SportsMmaRounded: SvgIconComponent; +export const SportsMmaSharp: SvgIconComponent; +export const SportsMmaTwoTone: SvgIconComponent; +export const SportsMotorsports: SvgIconComponent; +export const SportsMotorsportsOutlined: SvgIconComponent; +export const SportsMotorsportsRounded: SvgIconComponent; +export const SportsMotorsportsSharp: SvgIconComponent; +export const SportsMotorsportsTwoTone: SvgIconComponent; +export const SportsOutlined: SvgIconComponent; +export const SportsRounded: SvgIconComponent; +export const SportsRugby: SvgIconComponent; +export const SportsRugbyOutlined: SvgIconComponent; +export const SportsRugbyRounded: SvgIconComponent; +export const SportsRugbySharp: SvgIconComponent; +export const SportsRugbyTwoTone: SvgIconComponent; +export const SportsScore: SvgIconComponent; +export const SportsScoreOutlined: SvgIconComponent; +export const SportsScoreRounded: SvgIconComponent; +export const SportsScoreSharp: SvgIconComponent; +export const SportsScoreTwoTone: SvgIconComponent; +export const SportsSharp: SvgIconComponent; +export const SportsSoccer: SvgIconComponent; +export const SportsSoccerOutlined: SvgIconComponent; +export const SportsSoccerRounded: SvgIconComponent; +export const SportsSoccerSharp: SvgIconComponent; +export const SportsSoccerTwoTone: SvgIconComponent; +export const SportsTennis: SvgIconComponent; +export const SportsTennisOutlined: SvgIconComponent; +export const SportsTennisRounded: SvgIconComponent; +export const SportsTennisSharp: SvgIconComponent; +export const SportsTennisTwoTone: SvgIconComponent; +export const SportsTwoTone: SvgIconComponent; +export const SportsVolleyball: SvgIconComponent; +export const SportsVolleyballOutlined: SvgIconComponent; +export const SportsVolleyballRounded: SvgIconComponent; +export const SportsVolleyballSharp: SvgIconComponent; +export const SportsVolleyballTwoTone: SvgIconComponent; +export const Square: SvgIconComponent; +export const SquareFoot: SvgIconComponent; +export const SquareFootOutlined: SvgIconComponent; +export const SquareFootRounded: SvgIconComponent; +export const SquareFootSharp: SvgIconComponent; +export const SquareFootTwoTone: SvgIconComponent; +export const SquareOutlined: SvgIconComponent; +export const SquareRounded: SvgIconComponent; +export const SquareSharp: SvgIconComponent; +export const SquareTwoTone: SvgIconComponent; +export const SsidChart: SvgIconComponent; +export const SsidChartOutlined: SvgIconComponent; +export const SsidChartRounded: SvgIconComponent; +export const SsidChartSharp: SvgIconComponent; +export const SsidChartTwoTone: SvgIconComponent; +export const StackedBarChart: SvgIconComponent; +export const StackedBarChartOutlined: SvgIconComponent; +export const StackedBarChartRounded: SvgIconComponent; +export const StackedBarChartSharp: SvgIconComponent; +export const StackedBarChartTwoTone: SvgIconComponent; +export const StackedLineChart: SvgIconComponent; +export const StackedLineChartOutlined: SvgIconComponent; +export const StackedLineChartRounded: SvgIconComponent; +export const StackedLineChartSharp: SvgIconComponent; +export const StackedLineChartTwoTone: SvgIconComponent; +export const Stadium: SvgIconComponent; +export const StadiumOutlined: SvgIconComponent; +export const StadiumRounded: SvgIconComponent; +export const StadiumSharp: SvgIconComponent; +export const StadiumTwoTone: SvgIconComponent; +export const Stairs: SvgIconComponent; +export const StairsOutlined: SvgIconComponent; +export const StairsRounded: SvgIconComponent; +export const StairsSharp: SvgIconComponent; +export const StairsTwoTone: SvgIconComponent; +export const Star: SvgIconComponent; +export const StarBorder: SvgIconComponent; +export const StarBorderOutlined: SvgIconComponent; +export const StarBorderPurple500: SvgIconComponent; +export const StarBorderPurple500Outlined: SvgIconComponent; +export const StarBorderPurple500Rounded: SvgIconComponent; +export const StarBorderPurple500Sharp: SvgIconComponent; +export const StarBorderPurple500TwoTone: SvgIconComponent; +export const StarBorderRounded: SvgIconComponent; +export const StarBorderSharp: SvgIconComponent; +export const StarBorderTwoTone: SvgIconComponent; +export const StarHalf: SvgIconComponent; +export const StarHalfOutlined: SvgIconComponent; +export const StarHalfRounded: SvgIconComponent; +export const StarHalfSharp: SvgIconComponent; +export const StarHalfTwoTone: SvgIconComponent; +export const StarOutline: SvgIconComponent; +export const StarOutlineOutlined: SvgIconComponent; +export const StarOutlineRounded: SvgIconComponent; +export const StarOutlineSharp: SvgIconComponent; +export const StarOutlineTwoTone: SvgIconComponent; +export const StarOutlined: SvgIconComponent; +export const StarPurple500: SvgIconComponent; +export const StarPurple500Outlined: SvgIconComponent; +export const StarPurple500Rounded: SvgIconComponent; +export const StarPurple500Sharp: SvgIconComponent; +export const StarPurple500TwoTone: SvgIconComponent; +export const StarRate: SvgIconComponent; +export const StarRateOutlined: SvgIconComponent; +export const StarRateRounded: SvgIconComponent; +export const StarRateSharp: SvgIconComponent; +export const StarRateTwoTone: SvgIconComponent; +export const StarRounded: SvgIconComponent; +export const StarSharp: SvgIconComponent; +export const StarTwoTone: SvgIconComponent; +export const Stars: SvgIconComponent; +export const StarsOutlined: SvgIconComponent; +export const StarsRounded: SvgIconComponent; +export const StarsSharp: SvgIconComponent; +export const StarsTwoTone: SvgIconComponent; +export const Start: SvgIconComponent; +export const StartOutlined: SvgIconComponent; +export const StartRounded: SvgIconComponent; +export const StartSharp: SvgIconComponent; +export const StartTwoTone: SvgIconComponent; +export const StayCurrentLandscape: SvgIconComponent; +export const StayCurrentLandscapeOutlined: SvgIconComponent; +export const StayCurrentLandscapeRounded: SvgIconComponent; +export const StayCurrentLandscapeSharp: SvgIconComponent; +export const StayCurrentLandscapeTwoTone: SvgIconComponent; +export const StayCurrentPortrait: SvgIconComponent; +export const StayCurrentPortraitOutlined: SvgIconComponent; +export const StayCurrentPortraitRounded: SvgIconComponent; +export const StayCurrentPortraitSharp: SvgIconComponent; +export const StayCurrentPortraitTwoTone: SvgIconComponent; +export const StayPrimaryLandscape: SvgIconComponent; +export const StayPrimaryLandscapeOutlined: SvgIconComponent; +export const StayPrimaryLandscapeRounded: SvgIconComponent; +export const StayPrimaryLandscapeSharp: SvgIconComponent; +export const StayPrimaryLandscapeTwoTone: SvgIconComponent; +export const StayPrimaryPortrait: SvgIconComponent; +export const StayPrimaryPortraitOutlined: SvgIconComponent; +export const StayPrimaryPortraitRounded: SvgIconComponent; +export const StayPrimaryPortraitSharp: SvgIconComponent; +export const StayPrimaryPortraitTwoTone: SvgIconComponent; +export const StickyNote2: SvgIconComponent; +export const StickyNote2Outlined: SvgIconComponent; +export const StickyNote2Rounded: SvgIconComponent; +export const StickyNote2Sharp: SvgIconComponent; +export const StickyNote2TwoTone: SvgIconComponent; +export const Stop: SvgIconComponent; +export const StopCircle: SvgIconComponent; +export const StopCircleOutlined: SvgIconComponent; +export const StopCircleRounded: SvgIconComponent; +export const StopCircleSharp: SvgIconComponent; +export const StopCircleTwoTone: SvgIconComponent; +export const StopOutlined: SvgIconComponent; +export const StopRounded: SvgIconComponent; +export const StopScreenShare: SvgIconComponent; +export const StopScreenShareOutlined: SvgIconComponent; +export const StopScreenShareRounded: SvgIconComponent; +export const StopScreenShareSharp: SvgIconComponent; +export const StopScreenShareTwoTone: SvgIconComponent; +export const StopSharp: SvgIconComponent; +export const StopTwoTone: SvgIconComponent; +export const Storage: SvgIconComponent; +export const StorageOutlined: SvgIconComponent; +export const StorageRounded: SvgIconComponent; +export const StorageSharp: SvgIconComponent; +export const StorageTwoTone: SvgIconComponent; +export const Store: SvgIconComponent; +export const StoreMallDirectory: SvgIconComponent; +export const StoreMallDirectoryOutlined: SvgIconComponent; +export const StoreMallDirectoryRounded: SvgIconComponent; +export const StoreMallDirectorySharp: SvgIconComponent; +export const StoreMallDirectoryTwoTone: SvgIconComponent; +export const StoreOutlined: SvgIconComponent; +export const StoreRounded: SvgIconComponent; +export const StoreSharp: SvgIconComponent; +export const StoreTwoTone: SvgIconComponent; +export const Storefront: SvgIconComponent; +export const StorefrontOutlined: SvgIconComponent; +export const StorefrontRounded: SvgIconComponent; +export const StorefrontSharp: SvgIconComponent; +export const StorefrontTwoTone: SvgIconComponent; +export const Storm: SvgIconComponent; +export const StormOutlined: SvgIconComponent; +export const StormRounded: SvgIconComponent; +export const StormSharp: SvgIconComponent; +export const StormTwoTone: SvgIconComponent; +export const Straight: SvgIconComponent; +export const StraightOutlined: SvgIconComponent; +export const StraightRounded: SvgIconComponent; +export const StraightSharp: SvgIconComponent; +export const StraightTwoTone: SvgIconComponent; +export const Straighten: SvgIconComponent; +export const StraightenOutlined: SvgIconComponent; +export const StraightenRounded: SvgIconComponent; +export const StraightenSharp: SvgIconComponent; +export const StraightenTwoTone: SvgIconComponent; +export const Stream: SvgIconComponent; +export const StreamOutlined: SvgIconComponent; +export const StreamRounded: SvgIconComponent; +export const StreamSharp: SvgIconComponent; +export const StreamTwoTone: SvgIconComponent; +export const Streetview: SvgIconComponent; +export const StreetviewOutlined: SvgIconComponent; +export const StreetviewRounded: SvgIconComponent; +export const StreetviewSharp: SvgIconComponent; +export const StreetviewTwoTone: SvgIconComponent; +export const StrikethroughS: SvgIconComponent; +export const StrikethroughSOutlined: SvgIconComponent; +export const StrikethroughSRounded: SvgIconComponent; +export const StrikethroughSSharp: SvgIconComponent; +export const StrikethroughSTwoTone: SvgIconComponent; +export const Stroller: SvgIconComponent; +export const StrollerOutlined: SvgIconComponent; +export const StrollerRounded: SvgIconComponent; +export const StrollerSharp: SvgIconComponent; +export const StrollerTwoTone: SvgIconComponent; +export const Style: SvgIconComponent; +export const StyleOutlined: SvgIconComponent; +export const StyleRounded: SvgIconComponent; +export const StyleSharp: SvgIconComponent; +export const StyleTwoTone: SvgIconComponent; +export const SubdirectoryArrowLeft: SvgIconComponent; +export const SubdirectoryArrowLeftOutlined: SvgIconComponent; +export const SubdirectoryArrowLeftRounded: SvgIconComponent; +export const SubdirectoryArrowLeftSharp: SvgIconComponent; +export const SubdirectoryArrowLeftTwoTone: SvgIconComponent; +export const SubdirectoryArrowRight: SvgIconComponent; +export const SubdirectoryArrowRightOutlined: SvgIconComponent; +export const SubdirectoryArrowRightRounded: SvgIconComponent; +export const SubdirectoryArrowRightSharp: SvgIconComponent; +export const SubdirectoryArrowRightTwoTone: SvgIconComponent; +export const Subject: SvgIconComponent; +export const SubjectOutlined: SvgIconComponent; +export const SubjectRounded: SvgIconComponent; +export const SubjectSharp: SvgIconComponent; +export const SubjectTwoTone: SvgIconComponent; +export const Subscript: SvgIconComponent; +export const SubscriptOutlined: SvgIconComponent; +export const SubscriptRounded: SvgIconComponent; +export const SubscriptSharp: SvgIconComponent; +export const SubscriptTwoTone: SvgIconComponent; +export const Subscriptions: SvgIconComponent; +export const SubscriptionsOutlined: SvgIconComponent; +export const SubscriptionsRounded: SvgIconComponent; +export const SubscriptionsSharp: SvgIconComponent; +export const SubscriptionsTwoTone: SvgIconComponent; +export const Subtitles: SvgIconComponent; +export const SubtitlesOff: SvgIconComponent; +export const SubtitlesOffOutlined: SvgIconComponent; +export const SubtitlesOffRounded: SvgIconComponent; +export const SubtitlesOffSharp: SvgIconComponent; +export const SubtitlesOffTwoTone: SvgIconComponent; +export const SubtitlesOutlined: SvgIconComponent; +export const SubtitlesRounded: SvgIconComponent; +export const SubtitlesSharp: SvgIconComponent; +export const SubtitlesTwoTone: SvgIconComponent; +export const Subway: SvgIconComponent; +export const SubwayOutlined: SvgIconComponent; +export const SubwayRounded: SvgIconComponent; +export const SubwaySharp: SvgIconComponent; +export const SubwayTwoTone: SvgIconComponent; +export const Summarize: SvgIconComponent; +export const SummarizeOutlined: SvgIconComponent; +export const SummarizeRounded: SvgIconComponent; +export const SummarizeSharp: SvgIconComponent; +export const SummarizeTwoTone: SvgIconComponent; +export const Superscript: SvgIconComponent; +export const SuperscriptOutlined: SvgIconComponent; +export const SuperscriptRounded: SvgIconComponent; +export const SuperscriptSharp: SvgIconComponent; +export const SuperscriptTwoTone: SvgIconComponent; +export const SupervisedUserCircle: SvgIconComponent; +export const SupervisedUserCircleOutlined: SvgIconComponent; +export const SupervisedUserCircleRounded: SvgIconComponent; +export const SupervisedUserCircleSharp: SvgIconComponent; +export const SupervisedUserCircleTwoTone: SvgIconComponent; +export const SupervisorAccount: SvgIconComponent; +export const SupervisorAccountOutlined: SvgIconComponent; +export const SupervisorAccountRounded: SvgIconComponent; +export const SupervisorAccountSharp: SvgIconComponent; +export const SupervisorAccountTwoTone: SvgIconComponent; +export const Support: SvgIconComponent; +export const SupportAgent: SvgIconComponent; +export const SupportAgentOutlined: SvgIconComponent; +export const SupportAgentRounded: SvgIconComponent; +export const SupportAgentSharp: SvgIconComponent; +export const SupportAgentTwoTone: SvgIconComponent; +export const SupportOutlined: SvgIconComponent; +export const SupportRounded: SvgIconComponent; +export const SupportSharp: SvgIconComponent; +export const SupportTwoTone: SvgIconComponent; +export const Surfing: SvgIconComponent; +export const SurfingOutlined: SvgIconComponent; +export const SurfingRounded: SvgIconComponent; +export const SurfingSharp: SvgIconComponent; +export const SurfingTwoTone: SvgIconComponent; +export const SurroundSound: SvgIconComponent; +export const SurroundSoundOutlined: SvgIconComponent; +export const SurroundSoundRounded: SvgIconComponent; +export const SurroundSoundSharp: SvgIconComponent; +export const SurroundSoundTwoTone: SvgIconComponent; +export const SwapCalls: SvgIconComponent; +export const SwapCallsOutlined: SvgIconComponent; +export const SwapCallsRounded: SvgIconComponent; +export const SwapCallsSharp: SvgIconComponent; +export const SwapCallsTwoTone: SvgIconComponent; +export const SwapHoriz: SvgIconComponent; +export const SwapHorizOutlined: SvgIconComponent; +export const SwapHorizRounded: SvgIconComponent; +export const SwapHorizSharp: SvgIconComponent; +export const SwapHorizTwoTone: SvgIconComponent; +export const SwapHorizontalCircle: SvgIconComponent; +export const SwapHorizontalCircleOutlined: SvgIconComponent; +export const SwapHorizontalCircleRounded: SvgIconComponent; +export const SwapHorizontalCircleSharp: SvgIconComponent; +export const SwapHorizontalCircleTwoTone: SvgIconComponent; +export const SwapVert: SvgIconComponent; +export const SwapVertOutlined: SvgIconComponent; +export const SwapVertRounded: SvgIconComponent; +export const SwapVertSharp: SvgIconComponent; +export const SwapVertTwoTone: SvgIconComponent; +export const SwapVerticalCircle: SvgIconComponent; +export const SwapVerticalCircleOutlined: SvgIconComponent; +export const SwapVerticalCircleRounded: SvgIconComponent; +export const SwapVerticalCircleSharp: SvgIconComponent; +export const SwapVerticalCircleTwoTone: SvgIconComponent; +export const Swipe: SvgIconComponent; +export const SwipeDown: SvgIconComponent; +export const SwipeDownAlt: SvgIconComponent; +export const SwipeDownAltOutlined: SvgIconComponent; +export const SwipeDownAltRounded: SvgIconComponent; +export const SwipeDownAltSharp: SvgIconComponent; +export const SwipeDownAltTwoTone: SvgIconComponent; +export const SwipeDownOutlined: SvgIconComponent; +export const SwipeDownRounded: SvgIconComponent; +export const SwipeDownSharp: SvgIconComponent; +export const SwipeDownTwoTone: SvgIconComponent; +export const SwipeLeft: SvgIconComponent; +export const SwipeLeftAlt: SvgIconComponent; +export const SwipeLeftAltOutlined: SvgIconComponent; +export const SwipeLeftAltRounded: SvgIconComponent; +export const SwipeLeftAltSharp: SvgIconComponent; +export const SwipeLeftAltTwoTone: SvgIconComponent; +export const SwipeLeftOutlined: SvgIconComponent; +export const SwipeLeftRounded: SvgIconComponent; +export const SwipeLeftSharp: SvgIconComponent; +export const SwipeLeftTwoTone: SvgIconComponent; +export const SwipeOutlined: SvgIconComponent; +export const SwipeRight: SvgIconComponent; +export const SwipeRightAlt: SvgIconComponent; +export const SwipeRightAltOutlined: SvgIconComponent; +export const SwipeRightAltRounded: SvgIconComponent; +export const SwipeRightAltSharp: SvgIconComponent; +export const SwipeRightAltTwoTone: SvgIconComponent; +export const SwipeRightOutlined: SvgIconComponent; +export const SwipeRightRounded: SvgIconComponent; +export const SwipeRightSharp: SvgIconComponent; +export const SwipeRightTwoTone: SvgIconComponent; +export const SwipeRounded: SvgIconComponent; +export const SwipeSharp: SvgIconComponent; +export const SwipeTwoTone: SvgIconComponent; +export const SwipeUp: SvgIconComponent; +export const SwipeUpAlt: SvgIconComponent; +export const SwipeUpAltOutlined: SvgIconComponent; +export const SwipeUpAltRounded: SvgIconComponent; +export const SwipeUpAltSharp: SvgIconComponent; +export const SwipeUpAltTwoTone: SvgIconComponent; +export const SwipeUpOutlined: SvgIconComponent; +export const SwipeUpRounded: SvgIconComponent; +export const SwipeUpSharp: SvgIconComponent; +export const SwipeUpTwoTone: SvgIconComponent; +export const SwipeVertical: SvgIconComponent; +export const SwipeVerticalOutlined: SvgIconComponent; +export const SwipeVerticalRounded: SvgIconComponent; +export const SwipeVerticalSharp: SvgIconComponent; +export const SwipeVerticalTwoTone: SvgIconComponent; +export const SwitchAccessShortcut: SvgIconComponent; +export const SwitchAccessShortcutAdd: SvgIconComponent; +export const SwitchAccessShortcutAddOutlined: SvgIconComponent; +export const SwitchAccessShortcutAddRounded: SvgIconComponent; +export const SwitchAccessShortcutAddSharp: SvgIconComponent; +export const SwitchAccessShortcutAddTwoTone: SvgIconComponent; +export const SwitchAccessShortcutOutlined: SvgIconComponent; +export const SwitchAccessShortcutRounded: SvgIconComponent; +export const SwitchAccessShortcutSharp: SvgIconComponent; +export const SwitchAccessShortcutTwoTone: SvgIconComponent; +export const SwitchAccount: SvgIconComponent; +export const SwitchAccountOutlined: SvgIconComponent; +export const SwitchAccountRounded: SvgIconComponent; +export const SwitchAccountSharp: SvgIconComponent; +export const SwitchAccountTwoTone: SvgIconComponent; +export const SwitchCamera: SvgIconComponent; +export const SwitchCameraOutlined: SvgIconComponent; +export const SwitchCameraRounded: SvgIconComponent; +export const SwitchCameraSharp: SvgIconComponent; +export const SwitchCameraTwoTone: SvgIconComponent; +export const SwitchLeft: SvgIconComponent; +export const SwitchLeftOutlined: SvgIconComponent; +export const SwitchLeftRounded: SvgIconComponent; +export const SwitchLeftSharp: SvgIconComponent; +export const SwitchLeftTwoTone: SvgIconComponent; +export const SwitchRight: SvgIconComponent; +export const SwitchRightOutlined: SvgIconComponent; +export const SwitchRightRounded: SvgIconComponent; +export const SwitchRightSharp: SvgIconComponent; +export const SwitchRightTwoTone: SvgIconComponent; +export const SwitchVideo: SvgIconComponent; +export const SwitchVideoOutlined: SvgIconComponent; +export const SwitchVideoRounded: SvgIconComponent; +export const SwitchVideoSharp: SvgIconComponent; +export const SwitchVideoTwoTone: SvgIconComponent; +export const Synagogue: SvgIconComponent; +export const SynagogueOutlined: SvgIconComponent; +export const SynagogueRounded: SvgIconComponent; +export const SynagogueSharp: SvgIconComponent; +export const SynagogueTwoTone: SvgIconComponent; +export const Sync: SvgIconComponent; +export const SyncAlt: SvgIconComponent; +export const SyncAltOutlined: SvgIconComponent; +export const SyncAltRounded: SvgIconComponent; +export const SyncAltSharp: SvgIconComponent; +export const SyncAltTwoTone: SvgIconComponent; +export const SyncDisabled: SvgIconComponent; +export const SyncDisabledOutlined: SvgIconComponent; +export const SyncDisabledRounded: SvgIconComponent; +export const SyncDisabledSharp: SvgIconComponent; +export const SyncDisabledTwoTone: SvgIconComponent; +export const SyncLock: SvgIconComponent; +export const SyncLockOutlined: SvgIconComponent; +export const SyncLockRounded: SvgIconComponent; +export const SyncLockSharp: SvgIconComponent; +export const SyncLockTwoTone: SvgIconComponent; +export const SyncOutlined: SvgIconComponent; +export const SyncProblem: SvgIconComponent; +export const SyncProblemOutlined: SvgIconComponent; +export const SyncProblemRounded: SvgIconComponent; +export const SyncProblemSharp: SvgIconComponent; +export const SyncProblemTwoTone: SvgIconComponent; +export const SyncRounded: SvgIconComponent; +export const SyncSharp: SvgIconComponent; +export const SyncTwoTone: SvgIconComponent; +export const SystemSecurityUpdate: SvgIconComponent; +export const SystemSecurityUpdateGood: SvgIconComponent; +export const SystemSecurityUpdateGoodOutlined: SvgIconComponent; +export const SystemSecurityUpdateGoodRounded: SvgIconComponent; +export const SystemSecurityUpdateGoodSharp: SvgIconComponent; +export const SystemSecurityUpdateGoodTwoTone: SvgIconComponent; +export const SystemSecurityUpdateOutlined: SvgIconComponent; +export const SystemSecurityUpdateRounded: SvgIconComponent; +export const SystemSecurityUpdateSharp: SvgIconComponent; +export const SystemSecurityUpdateTwoTone: SvgIconComponent; +export const SystemSecurityUpdateWarning: SvgIconComponent; +export const SystemSecurityUpdateWarningOutlined: SvgIconComponent; +export const SystemSecurityUpdateWarningRounded: SvgIconComponent; +export const SystemSecurityUpdateWarningSharp: SvgIconComponent; +export const SystemSecurityUpdateWarningTwoTone: SvgIconComponent; +export const SystemUpdate: SvgIconComponent; +export const SystemUpdateAlt: SvgIconComponent; +export const SystemUpdateAltOutlined: SvgIconComponent; +export const SystemUpdateAltRounded: SvgIconComponent; +export const SystemUpdateAltSharp: SvgIconComponent; +export const SystemUpdateAltTwoTone: SvgIconComponent; +export const SystemUpdateOutlined: SvgIconComponent; +export const SystemUpdateRounded: SvgIconComponent; +export const SystemUpdateSharp: SvgIconComponent; +export const SystemUpdateTwoTone: SvgIconComponent; +export const Tab: SvgIconComponent; +export const TabOutlined: SvgIconComponent; +export const TabRounded: SvgIconComponent; +export const TabSharp: SvgIconComponent; +export const TabTwoTone: SvgIconComponent; +export const TabUnselected: SvgIconComponent; +export const TabUnselectedOutlined: SvgIconComponent; +export const TabUnselectedRounded: SvgIconComponent; +export const TabUnselectedSharp: SvgIconComponent; +export const TabUnselectedTwoTone: SvgIconComponent; +export const TableBar: SvgIconComponent; +export const TableBarOutlined: SvgIconComponent; +export const TableBarRounded: SvgIconComponent; +export const TableBarSharp: SvgIconComponent; +export const TableBarTwoTone: SvgIconComponent; +export const TableChart: SvgIconComponent; +export const TableChartOutlined: SvgIconComponent; +export const TableChartRounded: SvgIconComponent; +export const TableChartSharp: SvgIconComponent; +export const TableChartTwoTone: SvgIconComponent; +export const TableRestaurant: SvgIconComponent; +export const TableRestaurantOutlined: SvgIconComponent; +export const TableRestaurantRounded: SvgIconComponent; +export const TableRestaurantSharp: SvgIconComponent; +export const TableRestaurantTwoTone: SvgIconComponent; +export const TableRows: SvgIconComponent; +export const TableRowsOutlined: SvgIconComponent; +export const TableRowsRounded: SvgIconComponent; +export const TableRowsSharp: SvgIconComponent; +export const TableRowsTwoTone: SvgIconComponent; +export const TableView: SvgIconComponent; +export const TableViewOutlined: SvgIconComponent; +export const TableViewRounded: SvgIconComponent; +export const TableViewSharp: SvgIconComponent; +export const TableViewTwoTone: SvgIconComponent; +export const Tablet: SvgIconComponent; +export const TabletAndroid: SvgIconComponent; +export const TabletAndroidOutlined: SvgIconComponent; +export const TabletAndroidRounded: SvgIconComponent; +export const TabletAndroidSharp: SvgIconComponent; +export const TabletAndroidTwoTone: SvgIconComponent; +export const TabletMac: SvgIconComponent; +export const TabletMacOutlined: SvgIconComponent; +export const TabletMacRounded: SvgIconComponent; +export const TabletMacSharp: SvgIconComponent; +export const TabletMacTwoTone: SvgIconComponent; +export const TabletOutlined: SvgIconComponent; +export const TabletRounded: SvgIconComponent; +export const TabletSharp: SvgIconComponent; +export const TabletTwoTone: SvgIconComponent; +export const Tag: SvgIconComponent; +export const TagFaces: SvgIconComponent; +export const TagFacesOutlined: SvgIconComponent; +export const TagFacesRounded: SvgIconComponent; +export const TagFacesSharp: SvgIconComponent; +export const TagFacesTwoTone: SvgIconComponent; +export const TagOutlined: SvgIconComponent; +export const TagRounded: SvgIconComponent; +export const TagSharp: SvgIconComponent; +export const TagTwoTone: SvgIconComponent; +export const TakeoutDining: SvgIconComponent; +export const TakeoutDiningOutlined: SvgIconComponent; +export const TakeoutDiningRounded: SvgIconComponent; +export const TakeoutDiningSharp: SvgIconComponent; +export const TakeoutDiningTwoTone: SvgIconComponent; +export const TapAndPlay: SvgIconComponent; +export const TapAndPlayOutlined: SvgIconComponent; +export const TapAndPlayRounded: SvgIconComponent; +export const TapAndPlaySharp: SvgIconComponent; +export const TapAndPlayTwoTone: SvgIconComponent; +export const Tapas: SvgIconComponent; +export const TapasOutlined: SvgIconComponent; +export const TapasRounded: SvgIconComponent; +export const TapasSharp: SvgIconComponent; +export const TapasTwoTone: SvgIconComponent; +export const Task: SvgIconComponent; +export const TaskAlt: SvgIconComponent; +export const TaskAltOutlined: SvgIconComponent; +export const TaskAltRounded: SvgIconComponent; +export const TaskAltSharp: SvgIconComponent; +export const TaskAltTwoTone: SvgIconComponent; +export const TaskOutlined: SvgIconComponent; +export const TaskRounded: SvgIconComponent; +export const TaskSharp: SvgIconComponent; +export const TaskTwoTone: SvgIconComponent; +export const TaxiAlert: SvgIconComponent; +export const TaxiAlertOutlined: SvgIconComponent; +export const TaxiAlertRounded: SvgIconComponent; +export const TaxiAlertSharp: SvgIconComponent; +export const TaxiAlertTwoTone: SvgIconComponent; +export const Telegram: SvgIconComponent; +export const TempleBuddhist: SvgIconComponent; +export const TempleBuddhistOutlined: SvgIconComponent; +export const TempleBuddhistRounded: SvgIconComponent; +export const TempleBuddhistSharp: SvgIconComponent; +export const TempleBuddhistTwoTone: SvgIconComponent; +export const TempleHindu: SvgIconComponent; +export const TempleHinduOutlined: SvgIconComponent; +export const TempleHinduRounded: SvgIconComponent; +export const TempleHinduSharp: SvgIconComponent; +export const TempleHinduTwoTone: SvgIconComponent; +export const TenMp: SvgIconComponent; +export const TenMpOutlined: SvgIconComponent; +export const TenMpRounded: SvgIconComponent; +export const TenMpSharp: SvgIconComponent; +export const TenMpTwoTone: SvgIconComponent; +export const Terminal: SvgIconComponent; +export const TerminalOutlined: SvgIconComponent; +export const TerminalRounded: SvgIconComponent; +export const TerminalSharp: SvgIconComponent; +export const TerminalTwoTone: SvgIconComponent; +export const Terrain: SvgIconComponent; +export const TerrainOutlined: SvgIconComponent; +export const TerrainRounded: SvgIconComponent; +export const TerrainSharp: SvgIconComponent; +export const TerrainTwoTone: SvgIconComponent; +export const TextDecrease: SvgIconComponent; +export const TextDecreaseOutlined: SvgIconComponent; +export const TextDecreaseRounded: SvgIconComponent; +export const TextDecreaseSharp: SvgIconComponent; +export const TextDecreaseTwoTone: SvgIconComponent; +export const TextFields: SvgIconComponent; +export const TextFieldsOutlined: SvgIconComponent; +export const TextFieldsRounded: SvgIconComponent; +export const TextFieldsSharp: SvgIconComponent; +export const TextFieldsTwoTone: SvgIconComponent; +export const TextFormat: SvgIconComponent; +export const TextFormatOutlined: SvgIconComponent; +export const TextFormatRounded: SvgIconComponent; +export const TextFormatSharp: SvgIconComponent; +export const TextFormatTwoTone: SvgIconComponent; +export const TextIncrease: SvgIconComponent; +export const TextIncreaseOutlined: SvgIconComponent; +export const TextIncreaseRounded: SvgIconComponent; +export const TextIncreaseSharp: SvgIconComponent; +export const TextIncreaseTwoTone: SvgIconComponent; +export const TextRotateUp: SvgIconComponent; +export const TextRotateUpOutlined: SvgIconComponent; +export const TextRotateUpRounded: SvgIconComponent; +export const TextRotateUpSharp: SvgIconComponent; +export const TextRotateUpTwoTone: SvgIconComponent; +export const TextRotateVertical: SvgIconComponent; +export const TextRotateVerticalOutlined: SvgIconComponent; +export const TextRotateVerticalRounded: SvgIconComponent; +export const TextRotateVerticalSharp: SvgIconComponent; +export const TextRotateVerticalTwoTone: SvgIconComponent; +export const TextRotationAngledown: SvgIconComponent; +export const TextRotationAngledownOutlined: SvgIconComponent; +export const TextRotationAngledownRounded: SvgIconComponent; +export const TextRotationAngledownSharp: SvgIconComponent; +export const TextRotationAngledownTwoTone: SvgIconComponent; +export const TextRotationAngleup: SvgIconComponent; +export const TextRotationAngleupOutlined: SvgIconComponent; +export const TextRotationAngleupRounded: SvgIconComponent; +export const TextRotationAngleupSharp: SvgIconComponent; +export const TextRotationAngleupTwoTone: SvgIconComponent; +export const TextRotationDown: SvgIconComponent; +export const TextRotationDownOutlined: SvgIconComponent; +export const TextRotationDownRounded: SvgIconComponent; +export const TextRotationDownSharp: SvgIconComponent; +export const TextRotationDownTwoTone: SvgIconComponent; +export const TextRotationNone: SvgIconComponent; +export const TextRotationNoneOutlined: SvgIconComponent; +export const TextRotationNoneRounded: SvgIconComponent; +export const TextRotationNoneSharp: SvgIconComponent; +export const TextRotationNoneTwoTone: SvgIconComponent; +export const TextSnippet: SvgIconComponent; +export const TextSnippetOutlined: SvgIconComponent; +export const TextSnippetRounded: SvgIconComponent; +export const TextSnippetSharp: SvgIconComponent; +export const TextSnippetTwoTone: SvgIconComponent; +export const Textsms: SvgIconComponent; +export const TextsmsOutlined: SvgIconComponent; +export const TextsmsRounded: SvgIconComponent; +export const TextsmsSharp: SvgIconComponent; +export const TextsmsTwoTone: SvgIconComponent; +export const Texture: SvgIconComponent; +export const TextureOutlined: SvgIconComponent; +export const TextureRounded: SvgIconComponent; +export const TextureSharp: SvgIconComponent; +export const TextureTwoTone: SvgIconComponent; +export const TheaterComedy: SvgIconComponent; +export const TheaterComedyOutlined: SvgIconComponent; +export const TheaterComedyRounded: SvgIconComponent; +export const TheaterComedySharp: SvgIconComponent; +export const TheaterComedyTwoTone: SvgIconComponent; +export const Theaters: SvgIconComponent; +export const TheatersOutlined: SvgIconComponent; +export const TheatersRounded: SvgIconComponent; +export const TheatersSharp: SvgIconComponent; +export const TheatersTwoTone: SvgIconComponent; +export const Thermostat: SvgIconComponent; +export const ThermostatAuto: SvgIconComponent; +export const ThermostatAutoOutlined: SvgIconComponent; +export const ThermostatAutoRounded: SvgIconComponent; +export const ThermostatAutoSharp: SvgIconComponent; +export const ThermostatAutoTwoTone: SvgIconComponent; +export const ThermostatOutlined: SvgIconComponent; +export const ThermostatRounded: SvgIconComponent; +export const ThermostatSharp: SvgIconComponent; +export const ThermostatTwoTone: SvgIconComponent; +export const ThirteenMp: SvgIconComponent; +export const ThirteenMpOutlined: SvgIconComponent; +export const ThirteenMpRounded: SvgIconComponent; +export const ThirteenMpSharp: SvgIconComponent; +export const ThirteenMpTwoTone: SvgIconComponent; +export const ThirtyFps: SvgIconComponent; +export const ThirtyFpsOutlined: SvgIconComponent; +export const ThirtyFpsRounded: SvgIconComponent; +export const ThirtyFpsSelect: SvgIconComponent; +export const ThirtyFpsSelectOutlined: SvgIconComponent; +export const ThirtyFpsSelectRounded: SvgIconComponent; +export const ThirtyFpsSelectSharp: SvgIconComponent; +export const ThirtyFpsSelectTwoTone: SvgIconComponent; +export const ThirtyFpsSharp: SvgIconComponent; +export const ThirtyFpsTwoTone: SvgIconComponent; +export const ThreeDRotation: SvgIconComponent; +export const ThreeDRotationOutlined: SvgIconComponent; +export const ThreeDRotationRounded: SvgIconComponent; +export const ThreeDRotationSharp: SvgIconComponent; +export const ThreeDRotationTwoTone: SvgIconComponent; +export const ThreeGMobiledata: SvgIconComponent; +export const ThreeGMobiledataOutlined: SvgIconComponent; +export const ThreeGMobiledataRounded: SvgIconComponent; +export const ThreeGMobiledataSharp: SvgIconComponent; +export const ThreeGMobiledataTwoTone: SvgIconComponent; +export const ThreeK: SvgIconComponent; +export const ThreeKOutlined: SvgIconComponent; +export const ThreeKPlus: SvgIconComponent; +export const ThreeKPlusOutlined: SvgIconComponent; +export const ThreeKPlusRounded: SvgIconComponent; +export const ThreeKPlusSharp: SvgIconComponent; +export const ThreeKPlusTwoTone: SvgIconComponent; +export const ThreeKRounded: SvgIconComponent; +export const ThreeKSharp: SvgIconComponent; +export const ThreeKTwoTone: SvgIconComponent; +export const ThreeMp: SvgIconComponent; +export const ThreeMpOutlined: SvgIconComponent; +export const ThreeMpRounded: SvgIconComponent; +export const ThreeMpSharp: SvgIconComponent; +export const ThreeMpTwoTone: SvgIconComponent; +export const ThreeP: SvgIconComponent; +export const ThreePOutlined: SvgIconComponent; +export const ThreePRounded: SvgIconComponent; +export const ThreePSharp: SvgIconComponent; +export const ThreePTwoTone: SvgIconComponent; +export const ThreeSixty: SvgIconComponent; +export const ThreeSixtyOutlined: SvgIconComponent; +export const ThreeSixtyRounded: SvgIconComponent; +export const ThreeSixtySharp: SvgIconComponent; +export const ThreeSixtyTwoTone: SvgIconComponent; +export const ThumbDown: SvgIconComponent; +export const ThumbDownAlt: SvgIconComponent; +export const ThumbDownAltOutlined: SvgIconComponent; +export const ThumbDownAltRounded: SvgIconComponent; +export const ThumbDownAltSharp: SvgIconComponent; +export const ThumbDownAltTwoTone: SvgIconComponent; +export const ThumbDownOffAlt: SvgIconComponent; +export const ThumbDownOffAltOutlined: SvgIconComponent; +export const ThumbDownOffAltRounded: SvgIconComponent; +export const ThumbDownOffAltSharp: SvgIconComponent; +export const ThumbDownOffAltTwoTone: SvgIconComponent; +export const ThumbDownOutlined: SvgIconComponent; +export const ThumbDownRounded: SvgIconComponent; +export const ThumbDownSharp: SvgIconComponent; +export const ThumbDownTwoTone: SvgIconComponent; +export const ThumbUp: SvgIconComponent; +export const ThumbUpAlt: SvgIconComponent; +export const ThumbUpAltOutlined: SvgIconComponent; +export const ThumbUpAltRounded: SvgIconComponent; +export const ThumbUpAltSharp: SvgIconComponent; +export const ThumbUpAltTwoTone: SvgIconComponent; +export const ThumbUpOffAlt: SvgIconComponent; +export const ThumbUpOffAltOutlined: SvgIconComponent; +export const ThumbUpOffAltRounded: SvgIconComponent; +export const ThumbUpOffAltSharp: SvgIconComponent; +export const ThumbUpOffAltTwoTone: SvgIconComponent; +export const ThumbUpOutlined: SvgIconComponent; +export const ThumbUpRounded: SvgIconComponent; +export const ThumbUpSharp: SvgIconComponent; +export const ThumbUpTwoTone: SvgIconComponent; +export const ThumbsUpDown: SvgIconComponent; +export const ThumbsUpDownOutlined: SvgIconComponent; +export const ThumbsUpDownRounded: SvgIconComponent; +export const ThumbsUpDownSharp: SvgIconComponent; +export const ThumbsUpDownTwoTone: SvgIconComponent; +export const Thunderstorm: SvgIconComponent; +export const ThunderstormOutlined: SvgIconComponent; +export const ThunderstormRounded: SvgIconComponent; +export const ThunderstormSharp: SvgIconComponent; +export const ThunderstormTwoTone: SvgIconComponent; +export const TimeToLeave: SvgIconComponent; +export const TimeToLeaveOutlined: SvgIconComponent; +export const TimeToLeaveRounded: SvgIconComponent; +export const TimeToLeaveSharp: SvgIconComponent; +export const TimeToLeaveTwoTone: SvgIconComponent; +export const Timelapse: SvgIconComponent; +export const TimelapseOutlined: SvgIconComponent; +export const TimelapseRounded: SvgIconComponent; +export const TimelapseSharp: SvgIconComponent; +export const TimelapseTwoTone: SvgIconComponent; +export const Timeline: SvgIconComponent; +export const TimelineOutlined: SvgIconComponent; +export const TimelineRounded: SvgIconComponent; +export const TimelineSharp: SvgIconComponent; +export const TimelineTwoTone: SvgIconComponent; +export const Timer: SvgIconComponent; +export const Timer10: SvgIconComponent; +export const Timer10Outlined: SvgIconComponent; +export const Timer10Rounded: SvgIconComponent; +export const Timer10Select: SvgIconComponent; +export const Timer10SelectOutlined: SvgIconComponent; +export const Timer10SelectRounded: SvgIconComponent; +export const Timer10SelectSharp: SvgIconComponent; +export const Timer10SelectTwoTone: SvgIconComponent; +export const Timer10Sharp: SvgIconComponent; +export const Timer10TwoTone: SvgIconComponent; +export const Timer3: SvgIconComponent; +export const Timer3Outlined: SvgIconComponent; +export const Timer3Rounded: SvgIconComponent; +export const Timer3Select: SvgIconComponent; +export const Timer3SelectOutlined: SvgIconComponent; +export const Timer3SelectRounded: SvgIconComponent; +export const Timer3SelectSharp: SvgIconComponent; +export const Timer3SelectTwoTone: SvgIconComponent; +export const Timer3Sharp: SvgIconComponent; +export const Timer3TwoTone: SvgIconComponent; +export const TimerOff: SvgIconComponent; +export const TimerOffOutlined: SvgIconComponent; +export const TimerOffRounded: SvgIconComponent; +export const TimerOffSharp: SvgIconComponent; +export const TimerOffTwoTone: SvgIconComponent; +export const TimerOutlined: SvgIconComponent; +export const TimerRounded: SvgIconComponent; +export const TimerSharp: SvgIconComponent; +export const TimerTwoTone: SvgIconComponent; +export const TimesOneMobiledata: SvgIconComponent; +export const TimesOneMobiledataOutlined: SvgIconComponent; +export const TimesOneMobiledataRounded: SvgIconComponent; +export const TimesOneMobiledataSharp: SvgIconComponent; +export const TimesOneMobiledataTwoTone: SvgIconComponent; +export const TipsAndUpdates: SvgIconComponent; +export const TipsAndUpdatesOutlined: SvgIconComponent; +export const TipsAndUpdatesRounded: SvgIconComponent; +export const TipsAndUpdatesSharp: SvgIconComponent; +export const TipsAndUpdatesTwoTone: SvgIconComponent; +export const TireRepair: SvgIconComponent; +export const TireRepairOutlined: SvgIconComponent; +export const TireRepairRounded: SvgIconComponent; +export const TireRepairSharp: SvgIconComponent; +export const TireRepairTwoTone: SvgIconComponent; +export const Title: SvgIconComponent; +export const TitleOutlined: SvgIconComponent; +export const TitleRounded: SvgIconComponent; +export const TitleSharp: SvgIconComponent; +export const TitleTwoTone: SvgIconComponent; +export const Toc: SvgIconComponent; +export const TocOutlined: SvgIconComponent; +export const TocRounded: SvgIconComponent; +export const TocSharp: SvgIconComponent; +export const TocTwoTone: SvgIconComponent; +export const Today: SvgIconComponent; +export const TodayOutlined: SvgIconComponent; +export const TodayRounded: SvgIconComponent; +export const TodaySharp: SvgIconComponent; +export const TodayTwoTone: SvgIconComponent; +export const ToggleOff: SvgIconComponent; +export const ToggleOffOutlined: SvgIconComponent; +export const ToggleOffRounded: SvgIconComponent; +export const ToggleOffSharp: SvgIconComponent; +export const ToggleOffTwoTone: SvgIconComponent; +export const ToggleOn: SvgIconComponent; +export const ToggleOnOutlined: SvgIconComponent; +export const ToggleOnRounded: SvgIconComponent; +export const ToggleOnSharp: SvgIconComponent; +export const ToggleOnTwoTone: SvgIconComponent; +export const Token: SvgIconComponent; +export const TokenOutlined: SvgIconComponent; +export const TokenRounded: SvgIconComponent; +export const TokenSharp: SvgIconComponent; +export const TokenTwoTone: SvgIconComponent; +export const Toll: SvgIconComponent; +export const TollOutlined: SvgIconComponent; +export const TollRounded: SvgIconComponent; +export const TollSharp: SvgIconComponent; +export const TollTwoTone: SvgIconComponent; +export const Tonality: SvgIconComponent; +export const TonalityOutlined: SvgIconComponent; +export const TonalityRounded: SvgIconComponent; +export const TonalitySharp: SvgIconComponent; +export const TonalityTwoTone: SvgIconComponent; +export const Topic: SvgIconComponent; +export const TopicOutlined: SvgIconComponent; +export const TopicRounded: SvgIconComponent; +export const TopicSharp: SvgIconComponent; +export const TopicTwoTone: SvgIconComponent; +export const Tornado: SvgIconComponent; +export const TornadoOutlined: SvgIconComponent; +export const TornadoRounded: SvgIconComponent; +export const TornadoSharp: SvgIconComponent; +export const TornadoTwoTone: SvgIconComponent; +export const TouchApp: SvgIconComponent; +export const TouchAppOutlined: SvgIconComponent; +export const TouchAppRounded: SvgIconComponent; +export const TouchAppSharp: SvgIconComponent; +export const TouchAppTwoTone: SvgIconComponent; +export const Tour: SvgIconComponent; +export const TourOutlined: SvgIconComponent; +export const TourRounded: SvgIconComponent; +export const TourSharp: SvgIconComponent; +export const TourTwoTone: SvgIconComponent; +export const Toys: SvgIconComponent; +export const ToysOutlined: SvgIconComponent; +export const ToysRounded: SvgIconComponent; +export const ToysSharp: SvgIconComponent; +export const ToysTwoTone: SvgIconComponent; +export const TrackChanges: SvgIconComponent; +export const TrackChangesOutlined: SvgIconComponent; +export const TrackChangesRounded: SvgIconComponent; +export const TrackChangesSharp: SvgIconComponent; +export const TrackChangesTwoTone: SvgIconComponent; +export const Traffic: SvgIconComponent; +export const TrafficOutlined: SvgIconComponent; +export const TrafficRounded: SvgIconComponent; +export const TrafficSharp: SvgIconComponent; +export const TrafficTwoTone: SvgIconComponent; +export const Train: SvgIconComponent; +export const TrainOutlined: SvgIconComponent; +export const TrainRounded: SvgIconComponent; +export const TrainSharp: SvgIconComponent; +export const TrainTwoTone: SvgIconComponent; +export const Tram: SvgIconComponent; +export const TramOutlined: SvgIconComponent; +export const TramRounded: SvgIconComponent; +export const TramSharp: SvgIconComponent; +export const TramTwoTone: SvgIconComponent; +export const Transcribe: SvgIconComponent; +export const TranscribeOutlined: SvgIconComponent; +export const TranscribeRounded: SvgIconComponent; +export const TranscribeSharp: SvgIconComponent; +export const TranscribeTwoTone: SvgIconComponent; +export const TransferWithinAStation: SvgIconComponent; +export const TransferWithinAStationOutlined: SvgIconComponent; +export const TransferWithinAStationRounded: SvgIconComponent; +export const TransferWithinAStationSharp: SvgIconComponent; +export const TransferWithinAStationTwoTone: SvgIconComponent; +export const Transform: SvgIconComponent; +export const TransformOutlined: SvgIconComponent; +export const TransformRounded: SvgIconComponent; +export const TransformSharp: SvgIconComponent; +export const TransformTwoTone: SvgIconComponent; +export const Transgender: SvgIconComponent; +export const TransgenderOutlined: SvgIconComponent; +export const TransgenderRounded: SvgIconComponent; +export const TransgenderSharp: SvgIconComponent; +export const TransgenderTwoTone: SvgIconComponent; +export const TransitEnterexit: SvgIconComponent; +export const TransitEnterexitOutlined: SvgIconComponent; +export const TransitEnterexitRounded: SvgIconComponent; +export const TransitEnterexitSharp: SvgIconComponent; +export const TransitEnterexitTwoTone: SvgIconComponent; +export const Translate: SvgIconComponent; +export const TranslateOutlined: SvgIconComponent; +export const TranslateRounded: SvgIconComponent; +export const TranslateSharp: SvgIconComponent; +export const TranslateTwoTone: SvgIconComponent; +export const TravelExplore: SvgIconComponent; +export const TravelExploreOutlined: SvgIconComponent; +export const TravelExploreRounded: SvgIconComponent; +export const TravelExploreSharp: SvgIconComponent; +export const TravelExploreTwoTone: SvgIconComponent; +export const TrendingDown: SvgIconComponent; +export const TrendingDownOutlined: SvgIconComponent; +export const TrendingDownRounded: SvgIconComponent; +export const TrendingDownSharp: SvgIconComponent; +export const TrendingDownTwoTone: SvgIconComponent; +export const TrendingFlat: SvgIconComponent; +export const TrendingFlatOutlined: SvgIconComponent; +export const TrendingFlatRounded: SvgIconComponent; +export const TrendingFlatSharp: SvgIconComponent; +export const TrendingFlatTwoTone: SvgIconComponent; +export const TrendingUp: SvgIconComponent; +export const TrendingUpOutlined: SvgIconComponent; +export const TrendingUpRounded: SvgIconComponent; +export const TrendingUpSharp: SvgIconComponent; +export const TrendingUpTwoTone: SvgIconComponent; +export const TripOrigin: SvgIconComponent; +export const TripOriginOutlined: SvgIconComponent; +export const TripOriginRounded: SvgIconComponent; +export const TripOriginSharp: SvgIconComponent; +export const TripOriginTwoTone: SvgIconComponent; +export const Troubleshoot: SvgIconComponent; +export const TroubleshootOutlined: SvgIconComponent; +export const TroubleshootRounded: SvgIconComponent; +export const TroubleshootSharp: SvgIconComponent; +export const TroubleshootTwoTone: SvgIconComponent; +export const Try: SvgIconComponent; +export const TryOutlined: SvgIconComponent; +export const TryRounded: SvgIconComponent; +export const TrySharp: SvgIconComponent; +export const TryTwoTone: SvgIconComponent; +export const Tsunami: SvgIconComponent; +export const TsunamiOutlined: SvgIconComponent; +export const TsunamiRounded: SvgIconComponent; +export const TsunamiSharp: SvgIconComponent; +export const TsunamiTwoTone: SvgIconComponent; +export const Tty: SvgIconComponent; +export const TtyOutlined: SvgIconComponent; +export const TtyRounded: SvgIconComponent; +export const TtySharp: SvgIconComponent; +export const TtyTwoTone: SvgIconComponent; +export const Tune: SvgIconComponent; +export const TuneOutlined: SvgIconComponent; +export const TuneRounded: SvgIconComponent; +export const TuneSharp: SvgIconComponent; +export const TuneTwoTone: SvgIconComponent; +export const Tungsten: SvgIconComponent; +export const TungstenOutlined: SvgIconComponent; +export const TungstenRounded: SvgIconComponent; +export const TungstenSharp: SvgIconComponent; +export const TungstenTwoTone: SvgIconComponent; +export const TurnLeft: SvgIconComponent; +export const TurnLeftOutlined: SvgIconComponent; +export const TurnLeftRounded: SvgIconComponent; +export const TurnLeftSharp: SvgIconComponent; +export const TurnLeftTwoTone: SvgIconComponent; +export const TurnRight: SvgIconComponent; +export const TurnRightOutlined: SvgIconComponent; +export const TurnRightRounded: SvgIconComponent; +export const TurnRightSharp: SvgIconComponent; +export const TurnRightTwoTone: SvgIconComponent; +export const TurnSharpLeft: SvgIconComponent; +export const TurnSharpLeftOutlined: SvgIconComponent; +export const TurnSharpLeftRounded: SvgIconComponent; +export const TurnSharpLeftSharp: SvgIconComponent; +export const TurnSharpLeftTwoTone: SvgIconComponent; +export const TurnSharpRight: SvgIconComponent; +export const TurnSharpRightOutlined: SvgIconComponent; +export const TurnSharpRightRounded: SvgIconComponent; +export const TurnSharpRightSharp: SvgIconComponent; +export const TurnSharpRightTwoTone: SvgIconComponent; +export const TurnSlightLeft: SvgIconComponent; +export const TurnSlightLeftOutlined: SvgIconComponent; +export const TurnSlightLeftRounded: SvgIconComponent; +export const TurnSlightLeftSharp: SvgIconComponent; +export const TurnSlightLeftTwoTone: SvgIconComponent; +export const TurnSlightRight: SvgIconComponent; +export const TurnSlightRightOutlined: SvgIconComponent; +export const TurnSlightRightRounded: SvgIconComponent; +export const TurnSlightRightSharp: SvgIconComponent; +export const TurnSlightRightTwoTone: SvgIconComponent; +export const TurnedIn: SvgIconComponent; +export const TurnedInNot: SvgIconComponent; +export const TurnedInNotOutlined: SvgIconComponent; +export const TurnedInNotRounded: SvgIconComponent; +export const TurnedInNotSharp: SvgIconComponent; +export const TurnedInNotTwoTone: SvgIconComponent; +export const TurnedInOutlined: SvgIconComponent; +export const TurnedInRounded: SvgIconComponent; +export const TurnedInSharp: SvgIconComponent; +export const TurnedInTwoTone: SvgIconComponent; +export const Tv: SvgIconComponent; +export const TvOff: SvgIconComponent; +export const TvOffOutlined: SvgIconComponent; +export const TvOffRounded: SvgIconComponent; +export const TvOffSharp: SvgIconComponent; +export const TvOffTwoTone: SvgIconComponent; +export const TvOutlined: SvgIconComponent; +export const TvRounded: SvgIconComponent; +export const TvSharp: SvgIconComponent; +export const TvTwoTone: SvgIconComponent; +export const TwelveMp: SvgIconComponent; +export const TwelveMpOutlined: SvgIconComponent; +export const TwelveMpRounded: SvgIconComponent; +export const TwelveMpSharp: SvgIconComponent; +export const TwelveMpTwoTone: SvgIconComponent; +export const TwentyFourMp: SvgIconComponent; +export const TwentyFourMpOutlined: SvgIconComponent; +export const TwentyFourMpRounded: SvgIconComponent; +export const TwentyFourMpSharp: SvgIconComponent; +export const TwentyFourMpTwoTone: SvgIconComponent; +export const TwentyOneMp: SvgIconComponent; +export const TwentyOneMpOutlined: SvgIconComponent; +export const TwentyOneMpRounded: SvgIconComponent; +export const TwentyOneMpSharp: SvgIconComponent; +export const TwentyOneMpTwoTone: SvgIconComponent; +export const TwentyThreeMp: SvgIconComponent; +export const TwentyThreeMpOutlined: SvgIconComponent; +export const TwentyThreeMpRounded: SvgIconComponent; +export const TwentyThreeMpSharp: SvgIconComponent; +export const TwentyThreeMpTwoTone: SvgIconComponent; +export const TwentyTwoMp: SvgIconComponent; +export const TwentyTwoMpOutlined: SvgIconComponent; +export const TwentyTwoMpRounded: SvgIconComponent; +export const TwentyTwoMpSharp: SvgIconComponent; +export const TwentyTwoMpTwoTone: SvgIconComponent; +export const TwentyZeroMp: SvgIconComponent; +export const TwentyZeroMpOutlined: SvgIconComponent; +export const TwentyZeroMpRounded: SvgIconComponent; +export const TwentyZeroMpSharp: SvgIconComponent; +export const TwentyZeroMpTwoTone: SvgIconComponent; +export const Twitter: SvgIconComponent; +export const TwoK: SvgIconComponent; +export const TwoKOutlined: SvgIconComponent; +export const TwoKPlus: SvgIconComponent; +export const TwoKPlusOutlined: SvgIconComponent; +export const TwoKPlusRounded: SvgIconComponent; +export const TwoKPlusSharp: SvgIconComponent; +export const TwoKPlusTwoTone: SvgIconComponent; +export const TwoKRounded: SvgIconComponent; +export const TwoKSharp: SvgIconComponent; +export const TwoKTwoTone: SvgIconComponent; +export const TwoMp: SvgIconComponent; +export const TwoMpOutlined: SvgIconComponent; +export const TwoMpRounded: SvgIconComponent; +export const TwoMpSharp: SvgIconComponent; +export const TwoMpTwoTone: SvgIconComponent; +export const TwoWheeler: SvgIconComponent; +export const TwoWheelerOutlined: SvgIconComponent; +export const TwoWheelerRounded: SvgIconComponent; +export const TwoWheelerSharp: SvgIconComponent; +export const TwoWheelerTwoTone: SvgIconComponent; +export const TypeSpecimen: SvgIconComponent; +export const TypeSpecimenOutlined: SvgIconComponent; +export const TypeSpecimenRounded: SvgIconComponent; +export const TypeSpecimenSharp: SvgIconComponent; +export const TypeSpecimenTwoTone: SvgIconComponent; +export const UTurnLeft: SvgIconComponent; +export const UTurnLeftOutlined: SvgIconComponent; +export const UTurnLeftRounded: SvgIconComponent; +export const UTurnLeftSharp: SvgIconComponent; +export const UTurnLeftTwoTone: SvgIconComponent; +export const UTurnRight: SvgIconComponent; +export const UTurnRightOutlined: SvgIconComponent; +export const UTurnRightRounded: SvgIconComponent; +export const UTurnRightSharp: SvgIconComponent; +export const UTurnRightTwoTone: SvgIconComponent; +export const Umbrella: SvgIconComponent; +export const UmbrellaOutlined: SvgIconComponent; +export const UmbrellaRounded: SvgIconComponent; +export const UmbrellaSharp: SvgIconComponent; +export const UmbrellaTwoTone: SvgIconComponent; +export const Unarchive: SvgIconComponent; +export const UnarchiveOutlined: SvgIconComponent; +export const UnarchiveRounded: SvgIconComponent; +export const UnarchiveSharp: SvgIconComponent; +export const UnarchiveTwoTone: SvgIconComponent; +export const Undo: SvgIconComponent; +export const UndoOutlined: SvgIconComponent; +export const UndoRounded: SvgIconComponent; +export const UndoSharp: SvgIconComponent; +export const UndoTwoTone: SvgIconComponent; +export const UnfoldLess: SvgIconComponent; +export const UnfoldLessDouble: SvgIconComponent; +export const UnfoldLessDoubleOutlined: SvgIconComponent; +export const UnfoldLessDoubleRounded: SvgIconComponent; +export const UnfoldLessDoubleSharp: SvgIconComponent; +export const UnfoldLessDoubleTwoTone: SvgIconComponent; +export const UnfoldLessOutlined: SvgIconComponent; +export const UnfoldLessRounded: SvgIconComponent; +export const UnfoldLessSharp: SvgIconComponent; +export const UnfoldLessTwoTone: SvgIconComponent; +export const UnfoldMore: SvgIconComponent; +export const UnfoldMoreDouble: SvgIconComponent; +export const UnfoldMoreDoubleOutlined: SvgIconComponent; +export const UnfoldMoreDoubleRounded: SvgIconComponent; +export const UnfoldMoreDoubleSharp: SvgIconComponent; +export const UnfoldMoreDoubleTwoTone: SvgIconComponent; +export const UnfoldMoreOutlined: SvgIconComponent; +export const UnfoldMoreRounded: SvgIconComponent; +export const UnfoldMoreSharp: SvgIconComponent; +export const UnfoldMoreTwoTone: SvgIconComponent; +export const Unpublished: SvgIconComponent; +export const UnpublishedOutlined: SvgIconComponent; +export const UnpublishedRounded: SvgIconComponent; +export const UnpublishedSharp: SvgIconComponent; +export const UnpublishedTwoTone: SvgIconComponent; +export const Unsubscribe: SvgIconComponent; +export const UnsubscribeOutlined: SvgIconComponent; +export const UnsubscribeRounded: SvgIconComponent; +export const UnsubscribeSharp: SvgIconComponent; +export const UnsubscribeTwoTone: SvgIconComponent; +export const Upcoming: SvgIconComponent; +export const UpcomingOutlined: SvgIconComponent; +export const UpcomingRounded: SvgIconComponent; +export const UpcomingSharp: SvgIconComponent; +export const UpcomingTwoTone: SvgIconComponent; +export const Update: SvgIconComponent; +export const UpdateDisabled: SvgIconComponent; +export const UpdateDisabledOutlined: SvgIconComponent; +export const UpdateDisabledRounded: SvgIconComponent; +export const UpdateDisabledSharp: SvgIconComponent; +export const UpdateDisabledTwoTone: SvgIconComponent; +export const UpdateOutlined: SvgIconComponent; +export const UpdateRounded: SvgIconComponent; +export const UpdateSharp: SvgIconComponent; +export const UpdateTwoTone: SvgIconComponent; +export const Upgrade: SvgIconComponent; +export const UpgradeOutlined: SvgIconComponent; +export const UpgradeRounded: SvgIconComponent; +export const UpgradeSharp: SvgIconComponent; +export const UpgradeTwoTone: SvgIconComponent; +export const Upload: SvgIconComponent; +export const UploadFile: SvgIconComponent; +export const UploadFileOutlined: SvgIconComponent; +export const UploadFileRounded: SvgIconComponent; +export const UploadFileSharp: SvgIconComponent; +export const UploadFileTwoTone: SvgIconComponent; +export const UploadOutlined: SvgIconComponent; +export const UploadRounded: SvgIconComponent; +export const UploadSharp: SvgIconComponent; +export const UploadTwoTone: SvgIconComponent; +export const Usb: SvgIconComponent; +export const UsbOff: SvgIconComponent; +export const UsbOffOutlined: SvgIconComponent; +export const UsbOffRounded: SvgIconComponent; +export const UsbOffSharp: SvgIconComponent; +export const UsbOffTwoTone: SvgIconComponent; +export const UsbOutlined: SvgIconComponent; +export const UsbRounded: SvgIconComponent; +export const UsbSharp: SvgIconComponent; +export const UsbTwoTone: SvgIconComponent; +export const Vaccines: SvgIconComponent; +export const VaccinesOutlined: SvgIconComponent; +export const VaccinesRounded: SvgIconComponent; +export const VaccinesSharp: SvgIconComponent; +export const VaccinesTwoTone: SvgIconComponent; +export const VapeFree: SvgIconComponent; +export const VapeFreeOutlined: SvgIconComponent; +export const VapeFreeRounded: SvgIconComponent; +export const VapeFreeSharp: SvgIconComponent; +export const VapeFreeTwoTone: SvgIconComponent; +export const VapingRooms: SvgIconComponent; +export const VapingRoomsOutlined: SvgIconComponent; +export const VapingRoomsRounded: SvgIconComponent; +export const VapingRoomsSharp: SvgIconComponent; +export const VapingRoomsTwoTone: SvgIconComponent; +export const Verified: SvgIconComponent; +export const VerifiedOutlined: SvgIconComponent; +export const VerifiedRounded: SvgIconComponent; +export const VerifiedSharp: SvgIconComponent; +export const VerifiedTwoTone: SvgIconComponent; +export const VerifiedUser: SvgIconComponent; +export const VerifiedUserOutlined: SvgIconComponent; +export const VerifiedUserRounded: SvgIconComponent; +export const VerifiedUserSharp: SvgIconComponent; +export const VerifiedUserTwoTone: SvgIconComponent; +export const VerticalAlignBottom: SvgIconComponent; +export const VerticalAlignBottomOutlined: SvgIconComponent; +export const VerticalAlignBottomRounded: SvgIconComponent; +export const VerticalAlignBottomSharp: SvgIconComponent; +export const VerticalAlignBottomTwoTone: SvgIconComponent; +export const VerticalAlignCenter: SvgIconComponent; +export const VerticalAlignCenterOutlined: SvgIconComponent; +export const VerticalAlignCenterRounded: SvgIconComponent; +export const VerticalAlignCenterSharp: SvgIconComponent; +export const VerticalAlignCenterTwoTone: SvgIconComponent; +export const VerticalAlignTop: SvgIconComponent; +export const VerticalAlignTopOutlined: SvgIconComponent; +export const VerticalAlignTopRounded: SvgIconComponent; +export const VerticalAlignTopSharp: SvgIconComponent; +export const VerticalAlignTopTwoTone: SvgIconComponent; +export const VerticalShades: SvgIconComponent; +export const VerticalShadesClosed: SvgIconComponent; +export const VerticalShadesClosedOutlined: SvgIconComponent; +export const VerticalShadesClosedRounded: SvgIconComponent; +export const VerticalShadesClosedSharp: SvgIconComponent; +export const VerticalShadesClosedTwoTone: SvgIconComponent; +export const VerticalShadesOutlined: SvgIconComponent; +export const VerticalShadesRounded: SvgIconComponent; +export const VerticalShadesSharp: SvgIconComponent; +export const VerticalShadesTwoTone: SvgIconComponent; +export const VerticalSplit: SvgIconComponent; +export const VerticalSplitOutlined: SvgIconComponent; +export const VerticalSplitRounded: SvgIconComponent; +export const VerticalSplitSharp: SvgIconComponent; +export const VerticalSplitTwoTone: SvgIconComponent; +export const Vibration: SvgIconComponent; +export const VibrationOutlined: SvgIconComponent; +export const VibrationRounded: SvgIconComponent; +export const VibrationSharp: SvgIconComponent; +export const VibrationTwoTone: SvgIconComponent; +export const VideoCall: SvgIconComponent; +export const VideoCallOutlined: SvgIconComponent; +export const VideoCallRounded: SvgIconComponent; +export const VideoCallSharp: SvgIconComponent; +export const VideoCallTwoTone: SvgIconComponent; +export const VideoCameraBack: SvgIconComponent; +export const VideoCameraBackOutlined: SvgIconComponent; +export const VideoCameraBackRounded: SvgIconComponent; +export const VideoCameraBackSharp: SvgIconComponent; +export const VideoCameraBackTwoTone: SvgIconComponent; +export const VideoCameraFront: SvgIconComponent; +export const VideoCameraFrontOutlined: SvgIconComponent; +export const VideoCameraFrontRounded: SvgIconComponent; +export const VideoCameraFrontSharp: SvgIconComponent; +export const VideoCameraFrontTwoTone: SvgIconComponent; +export const VideoChat: SvgIconComponent; +export const VideoChatOutlined: SvgIconComponent; +export const VideoChatRounded: SvgIconComponent; +export const VideoChatSharp: SvgIconComponent; +export const VideoChatTwoTone: SvgIconComponent; +export const VideoFile: SvgIconComponent; +export const VideoFileOutlined: SvgIconComponent; +export const VideoFileRounded: SvgIconComponent; +export const VideoFileSharp: SvgIconComponent; +export const VideoFileTwoTone: SvgIconComponent; +export const VideoLabel: SvgIconComponent; +export const VideoLabelOutlined: SvgIconComponent; +export const VideoLabelRounded: SvgIconComponent; +export const VideoLabelSharp: SvgIconComponent; +export const VideoLabelTwoTone: SvgIconComponent; +export const VideoLibrary: SvgIconComponent; +export const VideoLibraryOutlined: SvgIconComponent; +export const VideoLibraryRounded: SvgIconComponent; +export const VideoLibrarySharp: SvgIconComponent; +export const VideoLibraryTwoTone: SvgIconComponent; +export const VideoSettings: SvgIconComponent; +export const VideoSettingsOutlined: SvgIconComponent; +export const VideoSettingsRounded: SvgIconComponent; +export const VideoSettingsSharp: SvgIconComponent; +export const VideoSettingsTwoTone: SvgIconComponent; +export const VideoStable: SvgIconComponent; +export const VideoStableOutlined: SvgIconComponent; +export const VideoStableRounded: SvgIconComponent; +export const VideoStableSharp: SvgIconComponent; +export const VideoStableTwoTone: SvgIconComponent; +export const Videocam: SvgIconComponent; +export const VideocamOff: SvgIconComponent; +export const VideocamOffOutlined: SvgIconComponent; +export const VideocamOffRounded: SvgIconComponent; +export const VideocamOffSharp: SvgIconComponent; +export const VideocamOffTwoTone: SvgIconComponent; +export const VideocamOutlined: SvgIconComponent; +export const VideocamRounded: SvgIconComponent; +export const VideocamSharp: SvgIconComponent; +export const VideocamTwoTone: SvgIconComponent; +export const VideogameAsset: SvgIconComponent; +export const VideogameAssetOff: SvgIconComponent; +export const VideogameAssetOffOutlined: SvgIconComponent; +export const VideogameAssetOffRounded: SvgIconComponent; +export const VideogameAssetOffSharp: SvgIconComponent; +export const VideogameAssetOffTwoTone: SvgIconComponent; +export const VideogameAssetOutlined: SvgIconComponent; +export const VideogameAssetRounded: SvgIconComponent; +export const VideogameAssetSharp: SvgIconComponent; +export const VideogameAssetTwoTone: SvgIconComponent; +export const ViewAgenda: SvgIconComponent; +export const ViewAgendaOutlined: SvgIconComponent; +export const ViewAgendaRounded: SvgIconComponent; +export const ViewAgendaSharp: SvgIconComponent; +export const ViewAgendaTwoTone: SvgIconComponent; +export const ViewArray: SvgIconComponent; +export const ViewArrayOutlined: SvgIconComponent; +export const ViewArrayRounded: SvgIconComponent; +export const ViewArraySharp: SvgIconComponent; +export const ViewArrayTwoTone: SvgIconComponent; +export const ViewCarousel: SvgIconComponent; +export const ViewCarouselOutlined: SvgIconComponent; +export const ViewCarouselRounded: SvgIconComponent; +export const ViewCarouselSharp: SvgIconComponent; +export const ViewCarouselTwoTone: SvgIconComponent; +export const ViewColumn: SvgIconComponent; +export const ViewColumnOutlined: SvgIconComponent; +export const ViewColumnRounded: SvgIconComponent; +export const ViewColumnSharp: SvgIconComponent; +export const ViewColumnTwoTone: SvgIconComponent; +export const ViewComfy: SvgIconComponent; +export const ViewComfyAlt: SvgIconComponent; +export const ViewComfyAltOutlined: SvgIconComponent; +export const ViewComfyAltRounded: SvgIconComponent; +export const ViewComfyAltSharp: SvgIconComponent; +export const ViewComfyAltTwoTone: SvgIconComponent; +export const ViewComfyOutlined: SvgIconComponent; +export const ViewComfyRounded: SvgIconComponent; +export const ViewComfySharp: SvgIconComponent; +export const ViewComfyTwoTone: SvgIconComponent; +export const ViewCompact: SvgIconComponent; +export const ViewCompactAlt: SvgIconComponent; +export const ViewCompactAltOutlined: SvgIconComponent; +export const ViewCompactAltRounded: SvgIconComponent; +export const ViewCompactAltSharp: SvgIconComponent; +export const ViewCompactAltTwoTone: SvgIconComponent; +export const ViewCompactOutlined: SvgIconComponent; +export const ViewCompactRounded: SvgIconComponent; +export const ViewCompactSharp: SvgIconComponent; +export const ViewCompactTwoTone: SvgIconComponent; +export const ViewCozy: SvgIconComponent; +export const ViewCozyOutlined: SvgIconComponent; +export const ViewCozyRounded: SvgIconComponent; +export const ViewCozySharp: SvgIconComponent; +export const ViewCozyTwoTone: SvgIconComponent; +export const ViewDay: SvgIconComponent; +export const ViewDayOutlined: SvgIconComponent; +export const ViewDayRounded: SvgIconComponent; +export const ViewDaySharp: SvgIconComponent; +export const ViewDayTwoTone: SvgIconComponent; +export const ViewHeadline: SvgIconComponent; +export const ViewHeadlineOutlined: SvgIconComponent; +export const ViewHeadlineRounded: SvgIconComponent; +export const ViewHeadlineSharp: SvgIconComponent; +export const ViewHeadlineTwoTone: SvgIconComponent; +export const ViewInAr: SvgIconComponent; +export const ViewInArOutlined: SvgIconComponent; +export const ViewInArRounded: SvgIconComponent; +export const ViewInArSharp: SvgIconComponent; +export const ViewInArTwoTone: SvgIconComponent; +export const ViewKanban: SvgIconComponent; +export const ViewKanbanOutlined: SvgIconComponent; +export const ViewKanbanRounded: SvgIconComponent; +export const ViewKanbanSharp: SvgIconComponent; +export const ViewKanbanTwoTone: SvgIconComponent; +export const ViewList: SvgIconComponent; +export const ViewListOutlined: SvgIconComponent; +export const ViewListRounded: SvgIconComponent; +export const ViewListSharp: SvgIconComponent; +export const ViewListTwoTone: SvgIconComponent; +export const ViewModule: SvgIconComponent; +export const ViewModuleOutlined: SvgIconComponent; +export const ViewModuleRounded: SvgIconComponent; +export const ViewModuleSharp: SvgIconComponent; +export const ViewModuleTwoTone: SvgIconComponent; +export const ViewQuilt: SvgIconComponent; +export const ViewQuiltOutlined: SvgIconComponent; +export const ViewQuiltRounded: SvgIconComponent; +export const ViewQuiltSharp: SvgIconComponent; +export const ViewQuiltTwoTone: SvgIconComponent; +export const ViewSidebar: SvgIconComponent; +export const ViewSidebarOutlined: SvgIconComponent; +export const ViewSidebarRounded: SvgIconComponent; +export const ViewSidebarSharp: SvgIconComponent; +export const ViewSidebarTwoTone: SvgIconComponent; +export const ViewStream: SvgIconComponent; +export const ViewStreamOutlined: SvgIconComponent; +export const ViewStreamRounded: SvgIconComponent; +export const ViewStreamSharp: SvgIconComponent; +export const ViewStreamTwoTone: SvgIconComponent; +export const ViewTimeline: SvgIconComponent; +export const ViewTimelineOutlined: SvgIconComponent; +export const ViewTimelineRounded: SvgIconComponent; +export const ViewTimelineSharp: SvgIconComponent; +export const ViewTimelineTwoTone: SvgIconComponent; +export const ViewWeek: SvgIconComponent; +export const ViewWeekOutlined: SvgIconComponent; +export const ViewWeekRounded: SvgIconComponent; +export const ViewWeekSharp: SvgIconComponent; +export const ViewWeekTwoTone: SvgIconComponent; +export const Vignette: SvgIconComponent; +export const VignetteOutlined: SvgIconComponent; +export const VignetteRounded: SvgIconComponent; +export const VignetteSharp: SvgIconComponent; +export const VignetteTwoTone: SvgIconComponent; +export const Villa: SvgIconComponent; +export const VillaOutlined: SvgIconComponent; +export const VillaRounded: SvgIconComponent; +export const VillaSharp: SvgIconComponent; +export const VillaTwoTone: SvgIconComponent; +export const Visibility: SvgIconComponent; +export const VisibilityOff: SvgIconComponent; +export const VisibilityOffOutlined: SvgIconComponent; +export const VisibilityOffRounded: SvgIconComponent; +export const VisibilityOffSharp: SvgIconComponent; +export const VisibilityOffTwoTone: SvgIconComponent; +export const VisibilityOutlined: SvgIconComponent; +export const VisibilityRounded: SvgIconComponent; +export const VisibilitySharp: SvgIconComponent; +export const VisibilityTwoTone: SvgIconComponent; +export const VoiceChat: SvgIconComponent; +export const VoiceChatOutlined: SvgIconComponent; +export const VoiceChatRounded: SvgIconComponent; +export const VoiceChatSharp: SvgIconComponent; +export const VoiceChatTwoTone: SvgIconComponent; +export const VoiceOverOff: SvgIconComponent; +export const VoiceOverOffOutlined: SvgIconComponent; +export const VoiceOverOffRounded: SvgIconComponent; +export const VoiceOverOffSharp: SvgIconComponent; +export const VoiceOverOffTwoTone: SvgIconComponent; +export const Voicemail: SvgIconComponent; +export const VoicemailOutlined: SvgIconComponent; +export const VoicemailRounded: SvgIconComponent; +export const VoicemailSharp: SvgIconComponent; +export const VoicemailTwoTone: SvgIconComponent; +export const Volcano: SvgIconComponent; +export const VolcanoOutlined: SvgIconComponent; +export const VolcanoRounded: SvgIconComponent; +export const VolcanoSharp: SvgIconComponent; +export const VolcanoTwoTone: SvgIconComponent; +export const VolumeDown: SvgIconComponent; +export const VolumeDownOutlined: SvgIconComponent; +export const VolumeDownRounded: SvgIconComponent; +export const VolumeDownSharp: SvgIconComponent; +export const VolumeDownTwoTone: SvgIconComponent; +export const VolumeMute: SvgIconComponent; +export const VolumeMuteOutlined: SvgIconComponent; +export const VolumeMuteRounded: SvgIconComponent; +export const VolumeMuteSharp: SvgIconComponent; +export const VolumeMuteTwoTone: SvgIconComponent; +export const VolumeOff: SvgIconComponent; +export const VolumeOffOutlined: SvgIconComponent; +export const VolumeOffRounded: SvgIconComponent; +export const VolumeOffSharp: SvgIconComponent; +export const VolumeOffTwoTone: SvgIconComponent; +export const VolumeUp: SvgIconComponent; +export const VolumeUpOutlined: SvgIconComponent; +export const VolumeUpRounded: SvgIconComponent; +export const VolumeUpSharp: SvgIconComponent; +export const VolumeUpTwoTone: SvgIconComponent; +export const VolunteerActivism: SvgIconComponent; +export const VolunteerActivismOutlined: SvgIconComponent; +export const VolunteerActivismRounded: SvgIconComponent; +export const VolunteerActivismSharp: SvgIconComponent; +export const VolunteerActivismTwoTone: SvgIconComponent; +export const VpnKey: SvgIconComponent; +export const VpnKeyOff: SvgIconComponent; +export const VpnKeyOffOutlined: SvgIconComponent; +export const VpnKeyOffRounded: SvgIconComponent; +export const VpnKeyOffSharp: SvgIconComponent; +export const VpnKeyOffTwoTone: SvgIconComponent; +export const VpnKeyOutlined: SvgIconComponent; +export const VpnKeyRounded: SvgIconComponent; +export const VpnKeySharp: SvgIconComponent; +export const VpnKeyTwoTone: SvgIconComponent; +export const VpnLock: SvgIconComponent; +export const VpnLockOutlined: SvgIconComponent; +export const VpnLockRounded: SvgIconComponent; +export const VpnLockSharp: SvgIconComponent; +export const VpnLockTwoTone: SvgIconComponent; +export const Vrpano: SvgIconComponent; +export const VrpanoOutlined: SvgIconComponent; +export const VrpanoRounded: SvgIconComponent; +export const VrpanoSharp: SvgIconComponent; +export const VrpanoTwoTone: SvgIconComponent; +export const Wallet: SvgIconComponent; +export const WalletOutlined: SvgIconComponent; +export const WalletRounded: SvgIconComponent; +export const WalletSharp: SvgIconComponent; +export const WalletTwoTone: SvgIconComponent; +export const Wallpaper: SvgIconComponent; +export const WallpaperOutlined: SvgIconComponent; +export const WallpaperRounded: SvgIconComponent; +export const WallpaperSharp: SvgIconComponent; +export const WallpaperTwoTone: SvgIconComponent; +export const Warehouse: SvgIconComponent; +export const WarehouseOutlined: SvgIconComponent; +export const WarehouseRounded: SvgIconComponent; +export const WarehouseSharp: SvgIconComponent; +export const WarehouseTwoTone: SvgIconComponent; +export const Warning: SvgIconComponent; +export const WarningAmber: SvgIconComponent; +export const WarningAmberOutlined: SvgIconComponent; +export const WarningAmberRounded: SvgIconComponent; +export const WarningAmberSharp: SvgIconComponent; +export const WarningAmberTwoTone: SvgIconComponent; +export const WarningOutlined: SvgIconComponent; +export const WarningRounded: SvgIconComponent; +export const WarningSharp: SvgIconComponent; +export const WarningTwoTone: SvgIconComponent; +export const Wash: SvgIconComponent; +export const WashOutlined: SvgIconComponent; +export const WashRounded: SvgIconComponent; +export const WashSharp: SvgIconComponent; +export const WashTwoTone: SvgIconComponent; +export const Watch: SvgIconComponent; +export const WatchLater: SvgIconComponent; +export const WatchLaterOutlined: SvgIconComponent; +export const WatchLaterRounded: SvgIconComponent; +export const WatchLaterSharp: SvgIconComponent; +export const WatchLaterTwoTone: SvgIconComponent; +export const WatchOff: SvgIconComponent; +export const WatchOffOutlined: SvgIconComponent; +export const WatchOffRounded: SvgIconComponent; +export const WatchOffSharp: SvgIconComponent; +export const WatchOffTwoTone: SvgIconComponent; +export const WatchOutlined: SvgIconComponent; +export const WatchRounded: SvgIconComponent; +export const WatchSharp: SvgIconComponent; +export const WatchTwoTone: SvgIconComponent; +export const Water: SvgIconComponent; +export const WaterDamage: SvgIconComponent; +export const WaterDamageOutlined: SvgIconComponent; +export const WaterDamageRounded: SvgIconComponent; +export const WaterDamageSharp: SvgIconComponent; +export const WaterDamageTwoTone: SvgIconComponent; +export const WaterDrop: SvgIconComponent; +export const WaterDropOutlined: SvgIconComponent; +export const WaterDropRounded: SvgIconComponent; +export const WaterDropSharp: SvgIconComponent; +export const WaterDropTwoTone: SvgIconComponent; +export const WaterOutlined: SvgIconComponent; +export const WaterRounded: SvgIconComponent; +export const WaterSharp: SvgIconComponent; +export const WaterTwoTone: SvgIconComponent; +export const WaterfallChart: SvgIconComponent; +export const WaterfallChartOutlined: SvgIconComponent; +export const WaterfallChartRounded: SvgIconComponent; +export const WaterfallChartSharp: SvgIconComponent; +export const WaterfallChartTwoTone: SvgIconComponent; +export const Waves: SvgIconComponent; +export const WavesOutlined: SvgIconComponent; +export const WavesRounded: SvgIconComponent; +export const WavesSharp: SvgIconComponent; +export const WavesTwoTone: SvgIconComponent; +export const WavingHand: SvgIconComponent; +export const WavingHandOutlined: SvgIconComponent; +export const WavingHandRounded: SvgIconComponent; +export const WavingHandSharp: SvgIconComponent; +export const WavingHandTwoTone: SvgIconComponent; +export const WbAuto: SvgIconComponent; +export const WbAutoOutlined: SvgIconComponent; +export const WbAutoRounded: SvgIconComponent; +export const WbAutoSharp: SvgIconComponent; +export const WbAutoTwoTone: SvgIconComponent; +export const WbCloudy: SvgIconComponent; +export const WbCloudyOutlined: SvgIconComponent; +export const WbCloudyRounded: SvgIconComponent; +export const WbCloudySharp: SvgIconComponent; +export const WbCloudyTwoTone: SvgIconComponent; +export const WbIncandescent: SvgIconComponent; +export const WbIncandescentOutlined: SvgIconComponent; +export const WbIncandescentRounded: SvgIconComponent; +export const WbIncandescentSharp: SvgIconComponent; +export const WbIncandescentTwoTone: SvgIconComponent; +export const WbIridescent: SvgIconComponent; +export const WbIridescentOutlined: SvgIconComponent; +export const WbIridescentRounded: SvgIconComponent; +export const WbIridescentSharp: SvgIconComponent; +export const WbIridescentTwoTone: SvgIconComponent; +export const WbShade: SvgIconComponent; +export const WbShadeOutlined: SvgIconComponent; +export const WbShadeRounded: SvgIconComponent; +export const WbShadeSharp: SvgIconComponent; +export const WbShadeTwoTone: SvgIconComponent; +export const WbSunny: SvgIconComponent; +export const WbSunnyOutlined: SvgIconComponent; +export const WbSunnyRounded: SvgIconComponent; +export const WbSunnySharp: SvgIconComponent; +export const WbSunnyTwoTone: SvgIconComponent; +export const WbTwilight: SvgIconComponent; +export const WbTwilightOutlined: SvgIconComponent; +export const WbTwilightRounded: SvgIconComponent; +export const WbTwilightSharp: SvgIconComponent; +export const WbTwilightTwoTone: SvgIconComponent; +export const Wc: SvgIconComponent; +export const WcOutlined: SvgIconComponent; +export const WcRounded: SvgIconComponent; +export const WcSharp: SvgIconComponent; +export const WcTwoTone: SvgIconComponent; +export const Web: SvgIconComponent; +export const WebAsset: SvgIconComponent; +export const WebAssetOff: SvgIconComponent; +export const WebAssetOffOutlined: SvgIconComponent; +export const WebAssetOffRounded: SvgIconComponent; +export const WebAssetOffSharp: SvgIconComponent; +export const WebAssetOffTwoTone: SvgIconComponent; +export const WebAssetOutlined: SvgIconComponent; +export const WebAssetRounded: SvgIconComponent; +export const WebAssetSharp: SvgIconComponent; +export const WebAssetTwoTone: SvgIconComponent; +export const WebOutlined: SvgIconComponent; +export const WebRounded: SvgIconComponent; +export const WebSharp: SvgIconComponent; +export const WebStories: SvgIconComponent; +export const WebStoriesOutlined: SvgIconComponent; +export const WebStoriesRounded: SvgIconComponent; +export const WebStoriesSharp: SvgIconComponent; +export const WebStoriesTwoTone: SvgIconComponent; +export const WebTwoTone: SvgIconComponent; +export const Webhook: SvgIconComponent; +export const WebhookOutlined: SvgIconComponent; +export const WebhookRounded: SvgIconComponent; +export const WebhookSharp: SvgIconComponent; +export const WebhookTwoTone: SvgIconComponent; +export const Weekend: SvgIconComponent; +export const WeekendOutlined: SvgIconComponent; +export const WeekendRounded: SvgIconComponent; +export const WeekendSharp: SvgIconComponent; +export const WeekendTwoTone: SvgIconComponent; +export const West: SvgIconComponent; +export const WestOutlined: SvgIconComponent; +export const WestRounded: SvgIconComponent; +export const WestSharp: SvgIconComponent; +export const WestTwoTone: SvgIconComponent; +export const WhatsApp: SvgIconComponent; +export const Whatshot: SvgIconComponent; +export const WhatshotOutlined: SvgIconComponent; +export const WhatshotRounded: SvgIconComponent; +export const WhatshotSharp: SvgIconComponent; +export const WhatshotTwoTone: SvgIconComponent; +export const WheelchairPickup: SvgIconComponent; +export const WheelchairPickupOutlined: SvgIconComponent; +export const WheelchairPickupRounded: SvgIconComponent; +export const WheelchairPickupSharp: SvgIconComponent; +export const WheelchairPickupTwoTone: SvgIconComponent; +export const WhereToVote: SvgIconComponent; +export const WhereToVoteOutlined: SvgIconComponent; +export const WhereToVoteRounded: SvgIconComponent; +export const WhereToVoteSharp: SvgIconComponent; +export const WhereToVoteTwoTone: SvgIconComponent; +export const Widgets: SvgIconComponent; +export const WidgetsOutlined: SvgIconComponent; +export const WidgetsRounded: SvgIconComponent; +export const WidgetsSharp: SvgIconComponent; +export const WidgetsTwoTone: SvgIconComponent; +export const WidthFull: SvgIconComponent; +export const WidthFullOutlined: SvgIconComponent; +export const WidthFullRounded: SvgIconComponent; +export const WidthFullSharp: SvgIconComponent; +export const WidthFullTwoTone: SvgIconComponent; +export const WidthNormal: SvgIconComponent; +export const WidthNormalOutlined: SvgIconComponent; +export const WidthNormalRounded: SvgIconComponent; +export const WidthNormalSharp: SvgIconComponent; +export const WidthNormalTwoTone: SvgIconComponent; +export const WidthWide: SvgIconComponent; +export const WidthWideOutlined: SvgIconComponent; +export const WidthWideRounded: SvgIconComponent; +export const WidthWideSharp: SvgIconComponent; +export const WidthWideTwoTone: SvgIconComponent; +export const Wifi: SvgIconComponent; +export const Wifi1Bar: SvgIconComponent; +export const Wifi1BarOutlined: SvgIconComponent; +export const Wifi1BarRounded: SvgIconComponent; +export const Wifi1BarSharp: SvgIconComponent; +export const Wifi1BarTwoTone: SvgIconComponent; +export const Wifi2Bar: SvgIconComponent; +export const Wifi2BarOutlined: SvgIconComponent; +export const Wifi2BarRounded: SvgIconComponent; +export const Wifi2BarSharp: SvgIconComponent; +export const Wifi2BarTwoTone: SvgIconComponent; +export const WifiCalling: SvgIconComponent; +export const WifiCalling3: SvgIconComponent; +export const WifiCalling3Outlined: SvgIconComponent; +export const WifiCalling3Rounded: SvgIconComponent; +export const WifiCalling3Sharp: SvgIconComponent; +export const WifiCalling3TwoTone: SvgIconComponent; +export const WifiCallingOutlined: SvgIconComponent; +export const WifiCallingRounded: SvgIconComponent; +export const WifiCallingSharp: SvgIconComponent; +export const WifiCallingTwoTone: SvgIconComponent; +export const WifiChannel: SvgIconComponent; +export const WifiChannelOutlined: SvgIconComponent; +export const WifiChannelRounded: SvgIconComponent; +export const WifiChannelSharp: SvgIconComponent; +export const WifiChannelTwoTone: SvgIconComponent; +export const WifiFind: SvgIconComponent; +export const WifiFindOutlined: SvgIconComponent; +export const WifiFindRounded: SvgIconComponent; +export const WifiFindSharp: SvgIconComponent; +export const WifiFindTwoTone: SvgIconComponent; +export const WifiLock: SvgIconComponent; +export const WifiLockOutlined: SvgIconComponent; +export const WifiLockRounded: SvgIconComponent; +export const WifiLockSharp: SvgIconComponent; +export const WifiLockTwoTone: SvgIconComponent; +export const WifiOff: SvgIconComponent; +export const WifiOffOutlined: SvgIconComponent; +export const WifiOffRounded: SvgIconComponent; +export const WifiOffSharp: SvgIconComponent; +export const WifiOffTwoTone: SvgIconComponent; +export const WifiOutlined: SvgIconComponent; +export const WifiPassword: SvgIconComponent; +export const WifiPasswordOutlined: SvgIconComponent; +export const WifiPasswordRounded: SvgIconComponent; +export const WifiPasswordSharp: SvgIconComponent; +export const WifiPasswordTwoTone: SvgIconComponent; +export const WifiProtectedSetup: SvgIconComponent; +export const WifiProtectedSetupOutlined: SvgIconComponent; +export const WifiProtectedSetupRounded: SvgIconComponent; +export const WifiProtectedSetupSharp: SvgIconComponent; +export const WifiProtectedSetupTwoTone: SvgIconComponent; +export const WifiRounded: SvgIconComponent; +export const WifiSharp: SvgIconComponent; +export const WifiTethering: SvgIconComponent; +export const WifiTetheringError: SvgIconComponent; +export const WifiTetheringErrorOutlined: SvgIconComponent; +export const WifiTetheringErrorRounded: SvgIconComponent; +export const WifiTetheringErrorRoundedOutlined: SvgIconComponent; +export const WifiTetheringErrorRoundedRounded: SvgIconComponent; +export const WifiTetheringErrorRoundedSharp: SvgIconComponent; +export const WifiTetheringErrorRoundedTwoTone: SvgIconComponent; +export const WifiTetheringErrorSharp: SvgIconComponent; +export const WifiTetheringErrorTwoTone: SvgIconComponent; +export const WifiTetheringOff: SvgIconComponent; +export const WifiTetheringOffOutlined: SvgIconComponent; +export const WifiTetheringOffRounded: SvgIconComponent; +export const WifiTetheringOffSharp: SvgIconComponent; +export const WifiTetheringOffTwoTone: SvgIconComponent; +export const WifiTetheringOutlined: SvgIconComponent; +export const WifiTetheringRounded: SvgIconComponent; +export const WifiTetheringSharp: SvgIconComponent; +export const WifiTetheringTwoTone: SvgIconComponent; +export const WifiTwoTone: SvgIconComponent; +export const WindPower: SvgIconComponent; +export const WindPowerOutlined: SvgIconComponent; +export const WindPowerRounded: SvgIconComponent; +export const WindPowerSharp: SvgIconComponent; +export const WindPowerTwoTone: SvgIconComponent; +export const Window: SvgIconComponent; +export const WindowOutlined: SvgIconComponent; +export const WindowRounded: SvgIconComponent; +export const WindowSharp: SvgIconComponent; +export const WindowTwoTone: SvgIconComponent; +export const WineBar: SvgIconComponent; +export const WineBarOutlined: SvgIconComponent; +export const WineBarRounded: SvgIconComponent; +export const WineBarSharp: SvgIconComponent; +export const WineBarTwoTone: SvgIconComponent; +export const Woman: SvgIconComponent; +export const Woman2: SvgIconComponent; +export const Woman2Outlined: SvgIconComponent; +export const Woman2Rounded: SvgIconComponent; +export const Woman2Sharp: SvgIconComponent; +export const Woman2TwoTone: SvgIconComponent; +export const WomanOutlined: SvgIconComponent; +export const WomanRounded: SvgIconComponent; +export const WomanSharp: SvgIconComponent; +export const WomanTwoTone: SvgIconComponent; +export const Work: SvgIconComponent; +export const WorkHistory: SvgIconComponent; +export const WorkHistoryOutlined: SvgIconComponent; +export const WorkHistoryRounded: SvgIconComponent; +export const WorkHistorySharp: SvgIconComponent; +export const WorkHistoryTwoTone: SvgIconComponent; +export const WorkOff: SvgIconComponent; +export const WorkOffOutlined: SvgIconComponent; +export const WorkOffRounded: SvgIconComponent; +export const WorkOffSharp: SvgIconComponent; +export const WorkOffTwoTone: SvgIconComponent; +export const WorkOutline: SvgIconComponent; +export const WorkOutlineOutlined: SvgIconComponent; +export const WorkOutlineRounded: SvgIconComponent; +export const WorkOutlineSharp: SvgIconComponent; +export const WorkOutlineTwoTone: SvgIconComponent; +export const WorkOutlined: SvgIconComponent; +export const WorkRounded: SvgIconComponent; +export const WorkSharp: SvgIconComponent; +export const WorkTwoTone: SvgIconComponent; +export const WorkspacePremium: SvgIconComponent; +export const WorkspacePremiumOutlined: SvgIconComponent; +export const WorkspacePremiumRounded: SvgIconComponent; +export const WorkspacePremiumSharp: SvgIconComponent; +export const WorkspacePremiumTwoTone: SvgIconComponent; +export const Workspaces: SvgIconComponent; +export const WorkspacesOutlined: SvgIconComponent; +export const WorkspacesRounded: SvgIconComponent; +export const WorkspacesSharp: SvgIconComponent; +export const WorkspacesTwoTone: SvgIconComponent; +export const WrapText: SvgIconComponent; +export const WrapTextOutlined: SvgIconComponent; +export const WrapTextRounded: SvgIconComponent; +export const WrapTextSharp: SvgIconComponent; +export const WrapTextTwoTone: SvgIconComponent; +export const WrongLocation: SvgIconComponent; +export const WrongLocationOutlined: SvgIconComponent; +export const WrongLocationRounded: SvgIconComponent; +export const WrongLocationSharp: SvgIconComponent; +export const WrongLocationTwoTone: SvgIconComponent; +export const Wysiwyg: SvgIconComponent; +export const WysiwygOutlined: SvgIconComponent; +export const WysiwygRounded: SvgIconComponent; +export const WysiwygSharp: SvgIconComponent; +export const WysiwygTwoTone: SvgIconComponent; +export const X: SvgIconComponent; +export const Yard: SvgIconComponent; +export const YardOutlined: SvgIconComponent; +export const YardRounded: SvgIconComponent; +export const YardSharp: SvgIconComponent; +export const YardTwoTone: SvgIconComponent; +export const YouTube: SvgIconComponent; +export const YoutubeSearchedFor: SvgIconComponent; +export const YoutubeSearchedForOutlined: SvgIconComponent; +export const YoutubeSearchedForRounded: SvgIconComponent; +export const YoutubeSearchedForSharp: SvgIconComponent; +export const YoutubeSearchedForTwoTone: SvgIconComponent; +export const ZoomIn: SvgIconComponent; +export const ZoomInMap: SvgIconComponent; +export const ZoomInMapOutlined: SvgIconComponent; +export const ZoomInMapRounded: SvgIconComponent; +export const ZoomInMapSharp: SvgIconComponent; +export const ZoomInMapTwoTone: SvgIconComponent; +export const ZoomInOutlined: SvgIconComponent; +export const ZoomInRounded: SvgIconComponent; +export const ZoomInSharp: SvgIconComponent; +export const ZoomInTwoTone: SvgIconComponent; +export const ZoomOut: SvgIconComponent; +export const ZoomOutMap: SvgIconComponent; +export const ZoomOutMapOutlined: SvgIconComponent; +export const ZoomOutMapRounded: SvgIconComponent; +export const ZoomOutMapSharp: SvgIconComponent; +export const ZoomOutMapTwoTone: SvgIconComponent; +export const ZoomOutOutlined: SvgIconComponent; +export const ZoomOutRounded: SvgIconComponent; +export const ZoomOutSharp: SvgIconComponent; +export const ZoomOutTwoTone: SvgIconComponent; diff --git a/packages/mui-icons-material/package.json b/packages/mui-icons-material/package.json index 6e8e28ecc1f831..b9fbd93e649b02 100644 --- a/packages/mui-icons-material/package.json +++ b/packages/mui-icons-material/package.json @@ -28,12 +28,13 @@ "url": "https://opencollective.com/mui-org" }, "scripts": { - "build": "shx cp -r lib/ build/ && pnpm build:typings && pnpm build:copy-files", - "build:lib": "pnpm build:node && pnpm build:stable", + "build": "shx cp -r lib/ build/ && pnpm build:copy-files && pnpm build:esm-pkg", + "build:esm-pkg": "node ./scripts/create-esm-package-json.mjs", + "build:lib": "pnpm build:node && pnpm build:stable && pnpm build:typings", "build:lib:clean": "rimraf lib/ && pnpm build:lib", "build:modern": "echo 'Skip modern build'", "build:node": "node ../../scripts/build.mjs node --largeFiles --outDir lib", - "build:stable": "node ../../scripts/build.mjs stable --largeFiles --outDir lib", + "build:stable": "node ../../scripts/build.mjs stable --largeFiles --outDir lib --skipEsmPkg", "build:copy-files": "node ../../scripts/copyFiles.mjs", "build:typings": "node ./scripts/create-typings.mjs", "prebuild": "rimraf build", @@ -86,16 +87,24 @@ }, "exports": { ".": { - "types": "./index.d.ts", - "import": "./esm/index.js", - "require": "./index.js" + "import": { + "types": "./esm/index.d.ts", + "default": "./esm/index.js" + }, + "require": { + "types": "./index.d.ts", + "default": "./index.js" + } }, "./*": { - "types": "./*.d.ts", - "import": "./esm/*.js", - "require": "./*.js" - }, - "./esm/*": "./esm/*.js", - "./esm/*.js": "./esm/*.js" + "import": { + "types": "./esm/icon.d.ts", + "default": "./esm/*.js" + }, + "require": { + "types": "./icon.d.ts", + "default": "./*.js" + } + } } } diff --git a/packages/mui-icons-material/scripts/create-esm-package-json.mjs b/packages/mui-icons-material/scripts/create-esm-package-json.mjs new file mode 100644 index 00000000000000..5901a4845c61b6 --- /dev/null +++ b/packages/mui-icons-material/scripts/create-esm-package-json.mjs @@ -0,0 +1,17 @@ +import path from 'path'; +import * as fs from 'fs/promises'; +import url from 'url'; + +const currentDirectory = url.fileURLToPath(new URL('.', import.meta.url)); + +const TARGET_DIR_ESM = path.resolve(currentDirectory, '../build/esm'); + +async function run() { + await fs.writeFile( + path.resolve(TARGET_DIR_ESM, 'package.json'), + JSON.stringify({ type: 'module', sideEffects: false }), + 'utf8', + ); +} + +run(); diff --git a/packages/mui-icons-material/scripts/create-typings.mjs b/packages/mui-icons-material/scripts/create-typings.mjs index 144c529dde5c24..00207f4f9c946f 100644 --- a/packages/mui-icons-material/scripts/create-typings.mjs +++ b/packages/mui-icons-material/scripts/create-typings.mjs @@ -1,26 +1,26 @@ /* eslint-disable no-console */ import path from 'path'; import chalk from 'chalk'; -import fse from 'fs-extra'; +import * as fs from 'fs/promises'; import glob from 'fast-glob'; import url from 'url'; const currentDirectory = url.fileURLToPath(new URL('.', import.meta.url)); const SRC_DIR = path.resolve(currentDirectory, '../lib/esm'); -const TARGET_DIR = path.resolve(currentDirectory, '../build'); +const TARGET_DIR = path.resolve(currentDirectory, '../lib'); +const TARGET_DIR_ESM = path.resolve(currentDirectory, '../lib/esm'); function normalizeFileName(file) { return path.parse(file).name; } -function createIconTyping(file) { - const name = normalizeFileName(file); +async function createIconTyping(targetDir) { const contents = `export { default } from '@mui/material/SvgIcon';`; - return fse.writeFile(path.resolve(TARGET_DIR, `${name}.d.ts`), contents, 'utf8'); + await fs.writeFile(path.resolve(targetDir, `icon.d.ts`), contents, 'utf8'); } -function createIndexTyping(files) { +async function createIndexTyping(targetDir, files) { const contents = ` import SvgIcon from '@mui/material/SvgIcon'; @@ -29,16 +29,23 @@ type SvgIconComponent = typeof SvgIcon; ${files.map((file) => `export const ${normalizeFileName(file)}: SvgIconComponent;`).join('\n')} `; - return fse.writeFile(path.resolve(TARGET_DIR, 'index.d.ts'), contents, 'utf8'); + await fs.writeFile(path.resolve(targetDir, 'index.d.ts'), contents, 'utf8'); } // Generate TypeScript. async function run() { - await fse.ensureDir(TARGET_DIR); + await Promise.all([ + fs.mkdir(TARGET_DIR, { recursive: true }), + fs.mkdir(TARGET_DIR_ESM, { recursive: true }), + ]); console.log(`\u{1f52c} Searching for modules inside "${chalk.dim(SRC_DIR)}".`); const files = await glob('!(index)*.js', { cwd: SRC_DIR }); - const typings = files.map((file) => createIconTyping(file)); - await Promise.all([...typings, createIndexTyping(files)]); + await Promise.all([ + createIconTyping(TARGET_DIR), + createIndexTyping(TARGET_DIR, files), + createIconTyping(TARGET_DIR_ESM), + createIndexTyping(TARGET_DIR_ESM, files), + ]); console.log(`\u{1F5C4} Written typings to ${chalk.dim(TARGET_DIR)}.`); } diff --git a/packages/mui-icons-material/src/icon.d.ts b/packages/mui-icons-material/src/icon.d.ts deleted file mode 100644 index 72c99eef1a4c82..00000000000000 --- a/packages/mui-icons-material/src/icon.d.ts +++ /dev/null @@ -1 +0,0 @@ -export { default } from '@mui/material/SvgIcon'; diff --git a/packages/mui-icons-material/test/generated-types/tsconfig.json b/packages/mui-icons-material/test/generated-types/tsconfig.json index 48346071bcbb3d..5e0b01acf9cd38 100644 --- a/packages/mui-icons-material/test/generated-types/tsconfig.json +++ b/packages/mui-icons-material/test/generated-types/tsconfig.json @@ -15,8 +15,8 @@ "@mui/base/*": ["./mui-base/src/*"], "@mui/docs": ["./mui-docs/src"], "@mui/docs/*": ["./mui-docs/src/*"], - "@mui/icons-material": ["./mui-icons-material/build"], - "@mui/icons-material/*": ["./mui-icons-material/build/*"], + "@mui/icons-material": ["./mui-icons-material/lib/esm"], + "@mui/icons-material/*": ["./mui-icons-material/lib/esm/*"], "@mui/joy": ["./mui-joy/src"], "@mui/joy/*": ["./mui-joy/src/*"], "@mui/lab": ["./mui-lab/src"], diff --git a/packages/mui-joy/package.json b/packages/mui-joy/package.json index 0aa94e40f83430..8af5c9c030b19c 100644 --- a/packages/mui-joy/package.json +++ b/packages/mui-joy/package.json @@ -30,7 +30,7 @@ "build:node": "node ../../scripts/build.mjs node", "build:stable": "node ../../scripts/build.mjs stable", "build:copy-files": "node ../../scripts/copyFiles.mjs", - "build:types": "node ../../scripts/buildTypes.mjs", + "build:types": "tsx ../../scripts/buildTypes.mts", "prebuild": "rimraf build tsconfig.build.tsbuildinfo", "release": "pnpm build && pnpm publish", "test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-joy/**/*.test.?(c|m)[jt]s?(x)'", diff --git a/packages/mui-joy/tsconfig.build.json b/packages/mui-joy/tsconfig.build.json index 92aea03c9be6b9..e51c7ba2b69f75 100644 --- a/packages/mui-joy/tsconfig.build.json +++ b/packages/mui-joy/tsconfig.build.json @@ -7,7 +7,7 @@ "declaration": true, "noEmit": false, "emitDeclarationOnly": true, - "outDir": "build", + "outDir": "build/esm", "rootDir": "./src" }, "include": ["./src/**/*.ts*"], diff --git a/packages/mui-lab/package.json b/packages/mui-lab/package.json index 4a5d97d608163d..0545f2632ff565 100644 --- a/packages/mui-lab/package.json +++ b/packages/mui-lab/package.json @@ -33,7 +33,7 @@ "build:node": "node ../../scripts/build.mjs node", "build:stable": "node ../../scripts/build.mjs stable", "build:copy-files": "node ../../scripts/copyFiles.mjs", - "build:types": "node ../../scripts/buildTypes.mjs", + "build:types": "tsx ../../scripts/buildTypes.mts", "prebuild": "rimraf build tsconfig.build.tsbuildinfo", "release": "pnpm build && pnpm publish", "test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-lab/**/*.test.?(c|m)[jt]s?(x)'", diff --git a/packages/mui-lab/tsconfig.build.json b/packages/mui-lab/tsconfig.build.json index f3c9573d726cf3..d4a77daf9abbab 100644 --- a/packages/mui-lab/tsconfig.build.json +++ b/packages/mui-lab/tsconfig.build.json @@ -6,7 +6,7 @@ "noEmit": false, "declaration": true, "rootDir": "./src", - "outDir": "./build", + "outDir": "build/esm", "emitDeclarationOnly": true }, "include": ["src/**/*.ts*"], diff --git a/packages/mui-material-nextjs/package.json b/packages/mui-material-nextjs/package.json index 51b7646b7ecefb..a16401b3f8a87a 100644 --- a/packages/mui-material-nextjs/package.json +++ b/packages/mui-material-nextjs/package.json @@ -29,7 +29,7 @@ "build:node": "node ../../scripts/build.mjs node", "build:stable": "node ../../scripts/build.mjs stable", "build:copy-files": "node ../../scripts/copyFiles.mjs", - "build:types": "node ../../scripts/buildTypes.mjs", + "build:types": "tsx ../../scripts/buildTypes.mts", "prebuild": "rimraf build tsconfig.build.tsbuildinfo", "release": "pnpm build && pnpm publish", "test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-material-nextjs/**/*.test.?(c|m)[jt]s?(x)'", @@ -72,5 +72,14 @@ }, "engines": { "node": ">=14.0.0" + }, + "exports": { + ".": null, + "./*": { + "mui-src": "./src/*/index.ts" + }, + "./v13-pagesRouter": { + "mui-src": "./src/v13-pagesRouter/index.ts" + } } } diff --git a/packages/mui-material-nextjs/src/v13-pagesRouter/nextDocument.cjs b/packages/mui-material-nextjs/src/v13-pagesRouter/nextDocument.cjs new file mode 100644 index 00000000000000..0132d66ca69fcb --- /dev/null +++ b/packages/mui-material-nextjs/src/v13-pagesRouter/nextDocument.cjs @@ -0,0 +1 @@ +module.exports = require('next/document'); diff --git a/packages/mui-material-nextjs/src/v13-pagesRouter/pagesRouterV13Document.tsx b/packages/mui-material-nextjs/src/v13-pagesRouter/pagesRouterV13Document.tsx index 924b38638f4bfc..e1f21d3a19f8b3 100644 --- a/packages/mui-material-nextjs/src/v13-pagesRouter/pagesRouterV13Document.tsx +++ b/packages/mui-material-nextjs/src/v13-pagesRouter/pagesRouterV13Document.tsx @@ -2,10 +2,13 @@ import * as React from 'react'; import { AppType } from 'next/app'; import { EmotionCache } from '@emotion/react'; import createEmotionServer from '@emotion/server/create-instance'; -import Document, { DocumentContext, DocumentInitialProps } from 'next/document'; +import type { DocumentContext, DocumentInitialProps } from 'next/document'; +import nextDocument from './nextDocument.cjs'; import { EmotionCacheProviderProps } from './pagesRouterV13App'; import createEmotionCache from './createCache'; +const Document = nextDocument.default || nextDocument; + interface Plugin { enhanceApp: ( App: React.ComponentType>, diff --git a/packages/mui-material-nextjs/tsconfig.build.json b/packages/mui-material-nextjs/tsconfig.build.json index 405e223d9a9bad..26c0289c7f7928 100644 --- a/packages/mui-material-nextjs/tsconfig.build.json +++ b/packages/mui-material-nextjs/tsconfig.build.json @@ -7,9 +7,9 @@ "declaration": true, "noEmit": false, "emitDeclarationOnly": true, - "outDir": "build", + "outDir": "build/esm", "rootDir": "./src" }, - "include": ["./src/**/*.ts*"], - "exclude": ["src/**/*.spec.ts*", "src/**/*.test.ts*"] + "include": ["./src/**/*"], + "exclude": ["src/**/*.spec.*", "src/**/*.test.*"] } diff --git a/packages/mui-material-pigment-css/package.json b/packages/mui-material-pigment-css/package.json index 54bc3772cd3aa5..ec36b60d0e2969 100644 --- a/packages/mui-material-pigment-css/package.json +++ b/packages/mui-material-pigment-css/package.json @@ -31,7 +31,7 @@ "build:node": "node ../../scripts/build.mjs node", "build:stable": "node ../../scripts/build.mjs stable", "build:copy-files": "node ../../scripts/copyFiles.mjs styles.css", - "build:types": "node ../../scripts/buildTypes.mjs", + "build:types": "tsx ../../scripts/buildTypes.mts", "prebuild": "rimraf build tsconfig.build.tsbuildinfo", "release": "pnpm build && pnpm publish", "test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-material/**/*.test.?(c|m)[jt]s?(x)'", @@ -63,6 +63,10 @@ "useTheme": "@pigment-css/react/exports/useTheme" } }, + "exports": { + "./styles.css": "./styles.css", + "./modern/styles.css": "./styles.css" + }, "engines": { "node": ">=14.0.0" } diff --git a/packages/mui-material-pigment-css/tsconfig.build.json b/packages/mui-material-pigment-css/tsconfig.build.json index 3b9cd66ac9420a..e0c0a5a8aa68af 100644 --- a/packages/mui-material-pigment-css/tsconfig.build.json +++ b/packages/mui-material-pigment-css/tsconfig.build.json @@ -5,7 +5,7 @@ "declaration": true, "noEmit": false, "emitDeclarationOnly": true, - "outDir": "build", + "outDir": "build/esm", "rootDir": "./src" }, "include": ["./src/**/*.ts*"], diff --git a/packages/mui-material/package.json b/packages/mui-material/package.json index e18e17605a6c9f..1ec1d4d2632859 100644 --- a/packages/mui-material/package.json +++ b/packages/mui-material/package.json @@ -32,7 +32,7 @@ "build:node": "node ../../scripts/build.mjs node", "build:stable": "node ../../scripts/build.mjs stable", "build:copy-files": "node ../../scripts/copyFiles.mjs", - "build:types": "node ../../scripts/buildTypes.mjs", + "build:types": "tsx ../../scripts/buildTypes.mts", "prebuild": "rimraf build tsconfig.build.tsbuildinfo", "release": "pnpm build && pnpm publish", "test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-material/**/*.test.?(c|m)[jt]s?(x)'", @@ -103,6 +103,11 @@ "engines": { "node": ">=14.0.0" }, + "exports": { + "./ButtonBase/TouchRipple": { + "mui-src": "./src/ButtonBase/TouchRipple.ts" + } + }, "pigment-css": { "vite": { "include": [ diff --git a/packages/mui-material/src/styles/adaptV4Theme.js b/packages/mui-material/src/styles/adaptV4Theme.js index 857b4a5528f56f..d35632fd903317 100644 --- a/packages/mui-material/src/styles/adaptV4Theme.js +++ b/packages/mui-material/src/styles/adaptV4Theme.js @@ -1,3 +1,4 @@ +'use client'; import { createBreakpoints, createSpacing } from '@mui/system'; export default function adaptV4Theme(inputTheme) { diff --git a/packages/mui-material/tsconfig.build.json b/packages/mui-material/tsconfig.build.json index 92aea03c9be6b9..e51c7ba2b69f75 100644 --- a/packages/mui-material/tsconfig.build.json +++ b/packages/mui-material/tsconfig.build.json @@ -7,7 +7,7 @@ "declaration": true, "noEmit": false, "emitDeclarationOnly": true, - "outDir": "build", + "outDir": "build/esm", "rootDir": "./src" }, "include": ["./src/**/*.ts*"], diff --git a/packages/mui-styled-engine/src/index.js b/packages/mui-styled-engine/src/index.js index c867ccdcbae004..60431f3c814636 100644 --- a/packages/mui-styled-engine/src/index.js +++ b/packages/mui-styled-engine/src/index.js @@ -1,3 +1,4 @@ +'use client'; /* eslint-disable no-underscore-dangle */ import emStyled from '@emotion/styled'; import { serializeStyles as emSerializeStyles } from '@emotion/serialize'; diff --git a/packages/mui-system/package.json b/packages/mui-system/package.json index 435a89cc77ab16..e6a522ed29421e 100644 --- a/packages/mui-system/package.json +++ b/packages/mui-system/package.json @@ -31,7 +31,7 @@ "build:node": "node ../../scripts/build.mjs node", "build:stable": "node ../../scripts/build.mjs stable", "build:copy-files": "node ../../scripts/copyFiles.mjs", - "build:types": "node ../../scripts/buildTypes.mjs", + "build:types": "tsx ../../scripts/buildTypes.mts", "prebuild": "rimraf build tsconfig.build.tsbuildinfo", "release": "pnpm build && pnpm publish", "test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-system/**/*.test.?(c|m)[jt]s?(x)'", diff --git a/packages/mui-system/src/Container/createContainer.tsx b/packages/mui-system/src/Container/createContainer.tsx index 9516b8240923d6..ac2a221f76e67c 100644 --- a/packages/mui-system/src/Container/createContainer.tsx +++ b/packages/mui-system/src/Container/createContainer.tsx @@ -1,3 +1,4 @@ +'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; diff --git a/packages/mui-system/src/Grid/createGrid.tsx b/packages/mui-system/src/Grid/createGrid.tsx index f0125b286af0c2..4c7007d7c37dc0 100644 --- a/packages/mui-system/src/Grid/createGrid.tsx +++ b/packages/mui-system/src/Grid/createGrid.tsx @@ -1,3 +1,4 @@ +'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; diff --git a/packages/mui-system/src/Stack/createStack.tsx b/packages/mui-system/src/Stack/createStack.tsx index 30293ab42b0a32..9f36d6e2720820 100644 --- a/packages/mui-system/src/Stack/createStack.tsx +++ b/packages/mui-system/src/Stack/createStack.tsx @@ -1,3 +1,4 @@ +'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; diff --git a/packages/mui-system/tsconfig.build.json b/packages/mui-system/tsconfig.build.json index 7696cbeba02fc7..3ffd11e1d6ac57 100644 --- a/packages/mui-system/tsconfig.build.json +++ b/packages/mui-system/tsconfig.build.json @@ -7,7 +7,7 @@ "declaration": true, "noEmit": false, "emitDeclarationOnly": true, - "outDir": "build", + "outDir": "build/esm", "rootDir": "./src" }, "include": ["src/**/*.ts*"], diff --git a/packages/mui-utils/package.json b/packages/mui-utils/package.json index bce2bf09bf3eae..1a28c210209164 100644 --- a/packages/mui-utils/package.json +++ b/packages/mui-utils/package.json @@ -31,7 +31,7 @@ "build:node": "node ../../scripts/build.mjs node", "build:stable": "node ../../scripts/build.mjs stable", "build:copy-files": "node ../../scripts/copyFiles.mjs", - "build:types": "node ../../scripts/buildTypes.mjs", + "build:types": "tsx ../../scripts/buildTypes.mts", "prebuild": "rimraf build tsconfig.build.tsbuildinfo", "release": "pnpm build && pnpm publish", "test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-utils/**/*.test.?(c|m)[jt]s?(x)'", diff --git a/packages/mui-utils/tsconfig.build.json b/packages/mui-utils/tsconfig.build.json index 571c549b0d5658..26edb3c2b1ea91 100644 --- a/packages/mui-utils/tsconfig.build.json +++ b/packages/mui-utils/tsconfig.build.json @@ -7,7 +7,7 @@ "declaration": true, "noEmit": false, "emitDeclarationOnly": true, - "outDir": "build", + "outDir": "build/esm", "rootDir": "./src", "types": ["react", "node"] }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b501f580f7da28..3efe3e7e4473ce 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -107,7 +107,7 @@ importers: version: 21.1.0 '@pigment-css/react': specifier: 0.0.30 - version: 0.0.30(@types/react@19.0.8)(react@19.0.0) + version: 0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3) '@playwright/test': specifier: 1.49.0 version: 1.49.0 @@ -259,8 +259,8 @@ importers: specifier: ^5.0.0 version: 5.0.0(webpack@5.97.1) lerna: - specifier: ^8.1.9 - version: 8.1.9(babel-plugin-macros@3.1.0)(encoding@0.1.13) + specifier: ^8.1.8 + version: 8.1.8(babel-plugin-macros@3.1.0)(encoding@0.1.13) lodash: specifier: ^4.17.21 version: 4.17.21 @@ -271,8 +271,8 @@ importers: specifier: ^11.1.0 version: 11.1.0 nx: - specifier: ^20.4.0 - version: 20.4.0 + specifier: ^19.8.14 + version: 19.8.14 nyc: specifier: ^17.1.0 version: 17.1.0 @@ -331,6 +331,64 @@ importers: specifier: ^17.7.2 version: 17.7.2 + apps/bare-next-app: + dependencies: + '@emotion/cache': + specifier: latest + version: 11.14.0 + '@mui/base': + specifier: workspace:^ + version: link:../../packages/mui-base/build + '@mui/icons-material': + specifier: workspace:^ + version: link:../../packages/mui-icons-material/build + '@mui/lab': + specifier: workspace:^ + version: link:../../packages/mui-lab/build + '@mui/material': + specifier: workspace:^ + version: link:../../packages/mui-material/build + '@mui/material-nextjs': + specifier: workspace:^ + version: link:../../packages/mui-material-nextjs/build + '@mui/material-pigment-css': + specifier: workspace:^ + version: link:../../packages/mui-material-pigment-css/build + '@mui/system': + specifier: workspace:^ + version: link:../../packages/mui-system/build + '@mui/utils': + specifier: workspace:^ + version: link:../../packages/mui-utils/build + next: + specifier: latest + version: 15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: + specifier: ^19.0.0 + version: 19.0.0 + react-dom: + specifier: ^19.0.0 + version: 19.0.0(react@19.0.0) + devDependencies: + '@pigment-css/nextjs-plugin': + specifier: 0.0.30 + version: 0.0.30(@types/react@19.0.8)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack-sources@3.2.3) + '@types/node': + specifier: ^20.17.16 + version: 20.17.17 + '@types/react': + specifier: ^19.0.8 + version: 19.0.8 + '@types/react-dom': + specifier: ^19.0.3 + version: 19.0.3(@types/react@19.0.8) + eslint: + specifier: ^8.57.1 + version: 8.57.1 + typescript: + specifier: ^5.7.3 + version: 5.7.3 + apps/pigment-css-next-app: dependencies: '@emotion/cache': @@ -372,7 +430,7 @@ importers: devDependencies: '@pigment-css/nextjs-plugin': specifier: 0.0.30 - version: 0.0.30(@types/react@19.0.8)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack-sources@3.2.3) + version: 0.0.30(@types/react@19.0.8)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack-sources@3.2.3) '@types/node': specifier: ^20.17.16 version: 20.17.17 @@ -442,7 +500,7 @@ importers: version: 7.26.0(@babel/core@7.26.7) '@pigment-css/vite-plugin': specifier: 0.0.30 - version: 0.0.30(@types/react@19.0.8)(react@19.0.0)(vite@5.4.14(@types/node@20.17.17)(terser@5.37.0)) + version: 0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3)(vite@5.4.14(@types/node@20.17.17)(terser@5.37.0)) '@types/react': specifier: ^19.0.8 version: 19.0.8 @@ -664,7 +722,7 @@ importers: version: 9.7.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@toolpad/core': specifier: ^0.12.0 - version: 0.12.0(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material-pigment-css@6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/material@packages+mui-material+build)(@types/react@19.0.8)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react-router@7.1.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(vite@5.4.14(@types/node@20.17.17)(terser@5.37.0)) + version: 0.12.0(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material-pigment-css@6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3))(@types/react@19.0.8)(react@19.0.0))(@mui/material@packages+mui-material+build)(@types/react@19.0.8)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react-router@7.1.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(vite@5.4.14(@types/node@20.17.17)(terser@5.37.0)) autoprefixer: specifier: ^10.4.20 version: 10.4.20(postcss@8.5.1) @@ -1305,7 +1363,7 @@ importers: version: 7.26.7 '@floating-ui/react-dom': specifier: ^2.1.1 - version: 2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@mui/types': specifier: workspace:^ version: link:../mui-types/build @@ -1854,7 +1912,7 @@ importers: version: link:../mui-system/build '@pigment-css/react': specifier: 0.0.30 - version: 0.0.30(@types/react@19.0.8)(react@19.0.0) + version: 0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3) publishDirectory: build packages/mui-private-theming: @@ -2635,6 +2693,7 @@ packages: '@babel/plugin-proposal-private-methods@7.18.6': resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: '@babel/core': ^7.26.7 @@ -3653,20 +3712,20 @@ packages: '@fast-csv/parse@4.3.6': resolution: {integrity: sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==} - '@floating-ui/core@1.6.5': - resolution: {integrity: sha512-8GrTWmoFhm5BsMZOTHeGD2/0FLKLQQHvO/ZmQga4tKempYRLz8aqJGqXVuQgisnMObq2YZ2SgkwctN1LOOxcqA==} + '@floating-ui/core@1.6.9': + resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==} - '@floating-ui/dom@1.6.8': - resolution: {integrity: sha512-kx62rP19VZ767Q653wsP1XZCGIirkE09E0QUGNYTM/ttbbQHqcGPdSfWFxUyyNLc/W6aoJRBajOSXhP6GXjC0Q==} + '@floating-ui/dom@1.6.13': + resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==} - '@floating-ui/react-dom@2.1.1': - resolution: {integrity: sha512-4h84MJt3CHrtG18mGsXuLCHMrug49d7DFkU0RMIyshRveBeyV2hmV/pDaF2Uxtu8kgq5r46llp5E5FQiR0K2Yg==} + '@floating-ui/react-dom@2.1.2': + resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' - '@floating-ui/utils@0.2.5': - resolution: {integrity: sha512-sTcG+QZ6fdEUObICavU+aB3Mp8HY4n14wYHdxK4fXjPmv3PXZZeY5RaguJmGyeH/CJQhX3fqKUtS4qc1LoHwhQ==} + '@floating-ui/utils@0.2.9': + resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==} '@fortawesome/fontawesome-common-types@6.7.2': resolution: {integrity: sha512-Zs+YeHUC5fkt7Mg1l6XTniei3k4bwG/yo3iFUtZWd/pMx9g3fdvkSK9E0FOC+++phXOka78uJcYb8JaFkW52Xg==} @@ -3711,6 +3770,7 @@ packages: '@humanwhocodes/config-array@0.13.0': resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead '@humanwhocodes/module-importer@1.0.1': resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} @@ -3718,6 +3778,7 @@ packages: '@humanwhocodes/object-schema@2.0.3': resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} + deprecated: Use @eslint/object-schema instead '@hutson/parse-repository-url@3.0.2': resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} @@ -3915,8 +3976,8 @@ packages: '@keyv/serialize@1.0.2': resolution: {integrity: sha512-+E/LyaAeuABniD/RvUezWVXKpeuvwLEA9//nE9952zBaOdBd2mQ3pPoM8cUe2X6IcMByfuSLzmYqnYshG60+HQ==} - '@lerna/create@8.1.9': - resolution: {integrity: sha512-DPnl5lPX4v49eVxEbJnAizrpMdMTBz1qykZrAbBul9rfgk531v8oAt+Pm6O/rpAleRombNM7FJb5rYGzBJatOQ==} + '@lerna/create@8.1.8': + resolution: {integrity: sha512-wi72R01tgjBjzG2kjRyTHl4yCTKDfDMIXRyKz9E/FBa9SkFvUOAE4bdyY9MhEsRZmSWL7+CYE8Flv/HScRpBbA==} engines: {node: '>=18.0.0'} '@mswjs/interceptors@0.37.1': @@ -3926,6 +3987,7 @@ packages: '@mui/base@5.0.0-beta.30': resolution: {integrity: sha512-dc38W4W3K42atE9nSaOeoJ7/x9wGIfawdwC/UmMxMLlZ1iSsITQ8dQJaTATCbn98YvYPINK/EH541YA5enQIPQ==} engines: {node: '>=12.0.0'} + deprecated: This package has been replaced by @base-ui-components/react peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 @@ -4518,8 +4580,8 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - '@npmcli/agent@2.2.0': - resolution: {integrity: sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==} + '@npmcli/agent@2.2.2': + resolution: {integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==} engines: {node: ^16.14.0 || >=18.0.0} '@npmcli/arborist@7.5.4': @@ -4531,8 +4593,8 @@ packages: resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - '@npmcli/git@5.0.3': - resolution: {integrity: sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==} + '@npmcli/git@5.0.8': + resolution: {integrity: sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==} engines: {node: ^16.14.0 || >=18.0.0} '@npmcli/installed-package-contents@2.1.0': @@ -4560,8 +4622,8 @@ packages: resolution: {integrity: sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==} engines: {node: ^16.14.0 || >=18.0.0} - '@npmcli/promise-spawn@7.0.0': - resolution: {integrity: sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==} + '@npmcli/promise-spawn@7.0.2': + resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==} engines: {node: ^16.14.0 || >=18.0.0} '@npmcli/query@3.1.0': @@ -4576,70 +4638,74 @@ packages: resolution: {integrity: sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==} engines: {node: ^16.14.0 || >=18.0.0} - '@nrwl/devkit@17.2.8': - resolution: {integrity: sha512-l2dFy5LkWqSA45s6pee6CoqJeluH+sjRdVnAAQfjLHRNSx6mFAKblyzq5h1f4P0EUCVVVqLs+kVqmNx5zxYqvw==} + '@nrwl/devkit@19.8.14': + resolution: {integrity: sha512-Oud7BPhFNqE3/YStULn/gHyuGSw2QyxUaHXJApr+DybmYtUms7hQ+cWnY1IY+hRpdtU9ldlg8UYx+VslpS9YNQ==} + + '@nrwl/tao@19.8.14': + resolution: {integrity: sha512-zBeYzzwg43T/Z8ZtLblv0fcKuqJULttqYDekSLILThXp3UOMSerEvruhUgwddCY1jUssfLscz8vacMKISv5X4w==} + hasBin: true - '@nx/devkit@17.2.8': - resolution: {integrity: sha512-6LtiQihtZwqz4hSrtT5cCG5XMCWppG6/B8c1kNksg97JuomELlWyUyVF+sxmeERkcLYFaKPTZytP0L3dmCFXaw==} + '@nx/devkit@19.8.14': + resolution: {integrity: sha512-A8dCGttbuqgg9P56VTb0ElD2vM5nc5g0aLnX5PSXo4SkFXwd8DV5GgwJKWB1GO9hYyEtbj4gKek0KxnCtdav4g==} peerDependencies: - nx: '>= 16 <= 18' + nx: '>= 19 <= 21' - '@nx/nx-darwin-arm64@20.4.0': - resolution: {integrity: sha512-w07StYKNUIiH1koqBZY9Ew57d0wACyNdKpX96og4oiuSFYTTb+QhL4+vX2GOIYyEDfX7A97mA4lXcYUvN6R4zQ==} + '@nx/nx-darwin-arm64@19.8.14': + resolution: {integrity: sha512-bZUFf23gAzuwVw71dR8rngye5aCR8Z/ouIo+KayjqB0LWWoi3WzO73s4S69ljftYt4n6z9wvD+Trbb1BKm2fPg==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@nx/nx-darwin-x64@20.4.0': - resolution: {integrity: sha512-HS9SfQs9BKZm3mXnOggmDrsVPTdJOr4RYa0k8zhXd0GKOdAOmgvWYsCAFxHB1BV4FGq7wfc4YskXRYHra4Ornw==} + '@nx/nx-darwin-x64@19.8.14': + resolution: {integrity: sha512-UXXVea8icFG/3rFwpbLYsD6O4wlyJ1STQfOdhGK1Hyuga70AUUdrjVm7HzigAQP/Sb2Nzd7155YXHzfpRPDFYA==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@nx/nx-freebsd-x64@20.4.0': - resolution: {integrity: sha512-5Ex4dV9YKbmO+4ZNI7qXOPvVD7A0t/guPUMcye/Rk/vJVx3Ixr/PZlc2SpBDXDLXye4quiTqICV92VrOrVBj8Q==} + '@nx/nx-freebsd-x64@19.8.14': + resolution: {integrity: sha512-TK2xuXn+BI6hxGaRK1HRUPWeF/nOtezKSqM+6rbippfCzjES/crmp9l5nbI764MMthtUmykCyWvhEfkDca6kbA==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] - '@nx/nx-linux-arm-gnueabihf@20.4.0': - resolution: {integrity: sha512-mWu0QPZ4WQS39NuFOhbKy6Dwiytgn4SCzadZs/raXs/Sl9A1JtXIojMe5vy49rZocjhbpDuXCuKzHeFOi24TpA==} + '@nx/nx-linux-arm-gnueabihf@19.8.14': + resolution: {integrity: sha512-33rptyRraqaeQ2Kq6pcZKQqgnYY/7zcGH8fHXgKK7XzKk+7QuPViq+jMEUZP5E3UzZPkIYhsfmZcZqhNRvepJQ==} engines: {node: '>= 10'} cpu: [arm] os: [linux] - '@nx/nx-linux-arm64-gnu@20.4.0': - resolution: {integrity: sha512-5ZOMKtEPoAQfSXgWYgQvMt+8JreWfnHC1rHBhQznb/66DyimKlPFv5TprzKCTqg2ElrYMe5NT5usU5fO94NDnA==} + '@nx/nx-linux-arm64-gnu@19.8.14': + resolution: {integrity: sha512-2E70qMKOhh7Fp4JGcRbRLvFKq0+ANVdAgSzH47plxOLygIeVAfIXRSuQbCI0EUFa5Sy6hImLaoRSB2GdgKihAw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@nx/nx-linux-arm64-musl@20.4.0': - resolution: {integrity: sha512-RBF3KoBYEs0q9YZ1yBidKhcszI8x4znAfcZI+RQ1zWa/kT/GlnQKamdxinri4ov8/bEo9E4YTx4ITLg4RuVHLg==} + '@nx/nx-linux-arm64-musl@19.8.14': + resolution: {integrity: sha512-ltty/PDWqkYgu/6Ye65d7v5nh3D6e0n3SacoKRs2Vtfz5oHYRUkSKizKIhEVfRNuHn3d9j8ve1fdcCN4SDPUBQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@nx/nx-linux-x64-gnu@20.4.0': - resolution: {integrity: sha512-RSYAfAmulCatDIKXXbWDhLU/fm03YrAMTD5FtS5IeEvMGEHkQ3scmXEXTxkOF4q5LuqSrutjdb3s8wHkbFRVqw==} + '@nx/nx-linux-x64-gnu@19.8.14': + resolution: {integrity: sha512-JzE3BuO9RCBVdgai18CCze6KUzG0AozE0TtYFxRokfSC05NU3nUhd/o62UsOl7s6Bqt/9nwrW7JC8pNDiCi9OQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@nx/nx-linux-x64-musl@20.4.0': - resolution: {integrity: sha512-0eup79jxSzHoYEGl6OU3wb02wWQbEt4ZfOA58fiZ7c5mvCpKXQV9kg7Tu38zIA8nkcEXGb8JaR1R9TgMiAIZsw==} + '@nx/nx-linux-x64-musl@19.8.14': + resolution: {integrity: sha512-2rPvDOQLb7Wd6YiU88FMBiLtYco0dVXF99IJBRGAWv+WTI7MNr47OyK2ze+JOsbYY1d8aOGUvckUvCCZvZKEfg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@nx/nx-win32-arm64-msvc@20.4.0': - resolution: {integrity: sha512-EeHJL9YPVqi3ad9hXVCr1xDM2/PNgZIJvOlJ/ND6r9dVZ+UWw2Kk7G2r13zz4j4QAhrhQJ+kzrvXYkQlhiSH6g==} + '@nx/nx-win32-arm64-msvc@19.8.14': + resolution: {integrity: sha512-JxW+YPS+EjhUsLw9C6wtk9pQTG3psyFwxhab8y/dgk2s4AOTLyIm0XxgcCJVvB6i4uv+s1g0QXRwp6+q3IR6hg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@nx/nx-win32-x64-msvc@20.4.0': - resolution: {integrity: sha512-IUeCeLdehVocLML6Wub7OZVM96Sk97AshiWmeNnozI6/OYdS34hQ2+thH7ETUZas9nkC2nNkJ5jLwuAHm+5/vw==} + '@nx/nx-win32-x64-msvc@19.8.14': + resolution: {integrity: sha512-RxiPlBWPcGSf9TzIIy62iKRdRhokXMDUsPub9DL2VdVyTMXPZQR25aY/PJeasJN1EQU74hg097LK2wSHi+vzOQ==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -4647,8 +4713,8 @@ packages: '@octokit/auth-token@2.5.0': resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} - '@octokit/auth-token@3.0.1': - resolution: {integrity: sha512-/USkK4cioY209wXRpund6HZzHo9GmjakpV9ycOkpMcMxMk7QVcVFVyCMtzvXYiHsB2crgDgrtNYSELYFBXhhaA==} + '@octokit/auth-token@3.0.4': + resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} engines: {node: '>= 14'} '@octokit/auth-token@5.1.1': @@ -4673,15 +4739,15 @@ packages: '@octokit/endpoint@6.0.12': resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} - '@octokit/endpoint@7.0.2': - resolution: {integrity: sha512-8/AUACfE9vpRpehE6ZLfEtzkibe5nfsSwFZVMsG8qabqRt1M81qZYUFRZa1B8w8lP6cdfDJfRq9HWS+MbmR7tw==} + '@octokit/endpoint@7.0.6': + resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} engines: {node: '>= 14'} '@octokit/graphql@4.8.0': resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} - '@octokit/graphql@5.0.1': - resolution: {integrity: sha512-sxmnewSwAixkP1TrLdE6yRG53eEhHhDTYUykUwdV9x8f91WcbhunIHk9x1PZLALdBZKRPUO2HRcm4kezZ79HoA==} + '@octokit/graphql@5.0.6': + resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} engines: {node: '>= 14'} '@octokit/graphql@8.1.2': @@ -4691,11 +4757,8 @@ packages: '@octokit/openapi-types@12.11.0': resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==} - '@octokit/openapi-types@13.10.0': - resolution: {integrity: sha512-wPQDpTyy35D6VS/lekXDaKcxy6LI2hzcbmXBnP180Pdgz3dXRzoHdav0w09yZzzWX8HHLGuqwAeyMqEPtWY2XA==} - - '@octokit/openapi-types@18.0.0': - resolution: {integrity: sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==} + '@octokit/openapi-types@18.1.1': + resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} '@octokit/openapi-types@23.0.1': resolution: {integrity: sha512-izFjMJ1sir0jn0ldEKhZ7xegCTj/ObmEDlEfpFrx4k/JyZSMRHbO3/rBwgE7f3m2DHt+RrNGIVw4wSmwnm3t/g==} @@ -4751,8 +4814,8 @@ packages: '@octokit/request-error@2.1.0': resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} - '@octokit/request-error@3.0.1': - resolution: {integrity: sha512-ym4Bp0HTP7F3VFssV88WD1ZyCIRoE8H35pXSKwLeMizcdZAYc/t6N9X9Yr9n6t3aG9IH75XDnZ6UeZph0vHMWQ==} + '@octokit/request-error@3.0.3': + resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} engines: {node: '>= 14'} '@octokit/request-error@6.1.6': @@ -4762,8 +4825,8 @@ packages: '@octokit/request@5.6.3': resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==} - '@octokit/request@6.2.1': - resolution: {integrity: sha512-gYKRCia3cpajRzDSU+3pt1q2OcuC6PK8PmFIyxZDWCzRXRSIBH8jXjFJ8ZceoygBIm0KsEUg4x1+XcYBz7dHPQ==} + '@octokit/request@6.2.8': + resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} engines: {node: '>= 14'} '@octokit/request@9.1.4': @@ -4793,9 +4856,6 @@ packages: '@octokit/types@6.41.0': resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} - '@octokit/types@7.4.0': - resolution: {integrity: sha512-ln1GW0p72+P8qeRjHGj0wyR5ePy6slqvczveOqonMk1w1UWua6UgrkwFzv6S0vKWjSqt/ijYXF1ehNVRRRSvLA==} - '@octokit/types@9.3.2': resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} @@ -5149,9 +5209,9 @@ packages: resolution: {integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==} engines: {node: ^16.14.0 || >=18.0.0} - '@sigstore/protobuf-specs@0.3.2': - resolution: {integrity: sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==} - engines: {node: ^16.14.0 || >=18.0.0} + '@sigstore/protobuf-specs@0.3.3': + resolution: {integrity: sha512-RpacQhBlwpBWd7KEJsRKcBQalbV28fvkxwTOJIqhIuDysMMaJW47V4OqW30iJB9uRpqOSxxEAQFdr8tTattReQ==} + engines: {node: ^18.17.0 || >=20.5.0} '@sigstore/sign@2.3.2': resolution: {integrity: sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==} @@ -5504,8 +5564,8 @@ packages: '@types/minimatch@3.0.5': resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - '@types/minimist@1.2.2': - resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} '@types/mocha@10.0.10': resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==} @@ -5519,8 +5579,8 @@ packages: '@types/node@20.17.17': resolution: {integrity: sha512-/WndGO4kIfMicEQLTi/mDANUu/iVUhT7KboZPdEqqHQ4aTS+3qT3U5gIqWDFV+XouorjfgGqvKILJeHhuQgFYg==} - '@types/normalize-package-data@2.4.1': - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} '@types/parse-json@4.0.0': resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} @@ -5846,9 +5906,9 @@ packages: '@yarnpkg/lockfile@1.1.0': resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} - '@yarnpkg/parsers@3.0.2': - resolution: {integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==} - engines: {node: '>=18.12.0'} + '@yarnpkg/parsers@3.0.0-rc.46': + resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} + engines: {node: '>=14.15.0'} '@zeit/schemas@2.36.0': resolution: {integrity: sha512-7kjMwcChYEzMKjeex9ZFXkt1AyNov9R5HZtjBKVsmVpw7pa7ZtlCGvCBC2vnnXctaYN+aRI61HjIqeetZW5ROg==} @@ -5902,8 +5962,8 @@ packages: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} - agent-base@7.1.0: - resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} + agent-base@7.1.3: + resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} engines: {node: '>= 14'} aggregate-error@3.1.0: @@ -5967,8 +6027,8 @@ packages: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} engines: {node: '>=12'} ansi-styles@3.2.1: @@ -6157,8 +6217,8 @@ packages: async@2.6.4: resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} - async@3.2.4: - resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -6206,6 +6266,7 @@ packages: babel-merge@3.0.0: resolution: {integrity: sha512-eBOBtHnzt9xvnjpYNI5HmaPp/b2vMveE5XggzqHnQeHJ8mFIBrBv6WZEVIj5jJ2uwTItkqKo9gWzEEcBxEq0yw==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. peerDependencies: '@babel/core': ^7.26.7 @@ -6281,8 +6342,8 @@ packages: resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} engines: {node: ^4.5.0 || >= 5.9} - before-after-hook@2.2.2: - resolution: {integrity: sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==} + before-after-hook@2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} before-after-hook@3.0.2: resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==} @@ -6450,8 +6511,8 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} - cacache@18.0.3: - resolution: {integrity: sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==} + cacache@18.0.4: + resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==} engines: {node: ^16.14.0 || >=18.0.0} cacheable@1.8.8: @@ -6615,8 +6676,8 @@ packages: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} - ci-info@4.0.0: - resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} + ci-info@4.1.0: + resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==} engines: {node: '>=8'} cipher-base@1.0.4: @@ -6657,8 +6718,8 @@ packages: resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} engines: {node: '>=6'} - cli-spinners@2.7.0: - resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==} + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} engines: {node: '>=6'} cli-width@3.0.0: @@ -6944,6 +7005,7 @@ packages: core-js@2.6.12: resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} + deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. core-js@3.32.1: resolution: {integrity: sha512-lqufgNn9NLnESg5mQeYsxQP5w7wrViSj0jr/kv6ECQiByzQkrn1MKvV0L3acttpDqfQrHLwr2KCMgX5b8X+lyQ==} @@ -6959,13 +7021,18 @@ packages: resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} engines: {node: '>=4'} - cosmiconfig@7.0.1: - resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} - cosmiconfig@8.2.0: - resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==} + cosmiconfig@8.3.6: + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true cosmiconfig@9.0.0: resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} @@ -7028,8 +7095,8 @@ packages: cross-spawn@4.0.2: resolution: {integrity: sha512-yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA==} - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} crypto-browserify@3.12.0: @@ -7243,8 +7310,8 @@ packages: supports-color: optional: true - decamelize-keys@1.1.0: - resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==} + decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} engines: {node: '>=0.10.0'} decamelize@1.2.0: @@ -7439,12 +7506,12 @@ packages: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} - dotenv-expand@11.0.6: - resolution: {integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==} + dotenv-expand@11.0.7: + resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==} engines: {node: '>=12'} - dotenv@16.4.5: - resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} + dotenv@16.4.7: + resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} engines: {node: '>=12'} dunder-proto@1.0.1: @@ -7469,8 +7536,8 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - ejs@3.1.8: - resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==} + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} engines: {node: '>=0.10.0'} hasBin: true @@ -7780,6 +7847,7 @@ packages: eslint@8.57.1: resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true espree@9.6.1: @@ -8132,8 +8200,8 @@ packages: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} engines: {node: '>= 8'} - fs-minipass@3.0.2: - resolution: {integrity: sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==} + fs-minipass@3.0.3: + resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} fs-readdir-recursive@1.1.0: @@ -8155,6 +8223,7 @@ packages: fstream@1.0.12: resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==} engines: {node: '>=0.6'} + deprecated: This package is no longer supported. function-bind@1.1.2: resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} @@ -8286,6 +8355,7 @@ packages: glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported glob@9.3.5: resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} @@ -8369,8 +8439,8 @@ packages: resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} engines: {node: '>=10'} - handlebars@4.7.7: - resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} + handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} engines: {node: '>=0.4.7'} hasBin: true @@ -8548,8 +8618,8 @@ packages: resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} engines: {node: '>= 6'} - https-proxy-agent@7.0.5: - resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} + https-proxy-agent@7.0.6: + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} engines: {node: '>= 14'} human-signals@2.1.0: @@ -8589,12 +8659,12 @@ packages: ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - ignore-walk@6.0.4: - resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==} + ignore-walk@6.0.5: + resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} ignore@7.0.3: @@ -8640,6 +8710,7 @@ packages: inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} @@ -8647,12 +8718,16 @@ packages: ini@1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + ini@4.1.3: + resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + init-package-json@6.0.3: resolution: {integrity: sha512-Zfeb5ol+H+eqJWHTaGca9BovufyGeIfr4zaaBorPmJBMrJ+KBnN+kQx2ZtXdsotUTgldHmHQV44xvUWOUA7E2w==} engines: {node: ^16.14.0 || >=18.0.0} - inquirer@8.2.4: - resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==} + inquirer@8.2.6: + resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} engines: {node: '>=12.0.0'} internal-slot@1.1.0: @@ -8673,8 +8748,9 @@ packages: invariant@2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} - ip@2.0.1: - resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} @@ -8724,8 +8800,8 @@ packages: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true - is-core-module@2.16.0: - resolution: {integrity: sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==} + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} engines: {node: '>= 0.4'} is-data-view@1.0.2: @@ -9047,8 +9123,8 @@ packages: resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==} engines: {node: 20 || >=22} - jake@10.8.5: - resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} + jake@10.9.2: + resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==} engines: {node: '>=10'} hasBin: true @@ -9110,6 +9186,9 @@ packages: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + jsc-android@250231.0.0: resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} @@ -9371,8 +9450,8 @@ packages: resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} engines: {node: '>= 0.6.3'} - lerna@8.1.9: - resolution: {integrity: sha512-ZRFlRUBB2obm+GkbTR7EbgTMuAdni6iwtTQTMy7LIrQ4UInG44LyfRepljtgUxh4HA0ltzsvWfPkd5J1DKGCeQ==} + lerna@8.1.8: + resolution: {integrity: sha512-Rmo5ShMx73xM2CUcRixjmpZIXB7ZFlWEul1YvJyx/rH4onAwDHtUGD7Rx4NZYL8QSRiQHroglM2Oyq+WqA4BYg==} engines: {node: '>=18.0.0'} hasBin: true @@ -9480,6 +9559,7 @@ packages: lodash.get@4.4.2: resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} + deprecated: This package is deprecated. Use the optional chaining (?.) operator instead. lodash.groupby@4.6.0: resolution: {integrity: sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw==} @@ -9492,6 +9572,7 @@ packages: lodash.isequal@4.5.0: resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} + deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead. lodash.isfunction@3.0.9: resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} @@ -9991,15 +10072,15 @@ packages: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} - minimist@1.2.6: - resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} minipass-collect@2.0.1: resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==} engines: {node: '>=16 || 14 >=14.17'} - minipass-fetch@3.0.3: - resolution: {integrity: sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==} + minipass-fetch@3.0.5: + resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} minipass-flush@1.0.5: @@ -10014,8 +10095,8 @@ packages: resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} engines: {node: '>=8'} - minipass@3.3.4: - resolution: {integrity: sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==} + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} minipass@4.2.8: @@ -10202,8 +10283,8 @@ packages: resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} engines: {node: '>= 6.13.0'} - node-gyp@10.0.1: - resolution: {integrity: sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==} + node-gyp@10.3.1: + resolution: {integrity: sha512-Pp3nFHBThHzVtNY7U6JfPjvT/DTE8+o/4xKsLQtBoU+j2HLsGlhcfzflAoUreaJbNmYnX+LlLi0qjV8kpyO6xQ==} engines: {node: ^16.14.0 || >=18.0.0} hasBin: true @@ -10259,8 +10340,8 @@ packages: react: ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 - npm-bundled@3.0.0: - resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==} + npm-bundled@3.0.1: + resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} npm-install-checks@6.3.0: @@ -10279,8 +10360,8 @@ packages: resolution: {integrity: sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - npm-pick-manifest@9.0.1: - resolution: {integrity: sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==} + npm-pick-manifest@9.1.0: + resolution: {integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==} engines: {node: ^16.14.0 || >=18.0.0} npm-registry-fetch@17.1.0: @@ -10311,8 +10392,8 @@ packages: nwsapi@2.2.13: resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==} - nx@20.4.0: - resolution: {integrity: sha512-barpwhq8noc30U0d5j2bSp9x/HDL33TCYsP2fl6FvpssbL64PwLOSBqIdZ9ATxVxAE/xAc/s+z72cYDkaYouPA==} + nx@19.8.14: + resolution: {integrity: sha512-yprBOWV16eQntz5h5SShYHMVeN50fUb6yHfzsqNiFneCJeyVjyJ585m+2TuVbE11vT1amU0xCjHcSGfJBBnm8g==} hasBin: true peerDependencies: '@swc-node/register': ^1.8.0 @@ -10421,8 +10502,8 @@ packages: resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} engines: {node: '>=8'} - open@8.4.0: - resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==} + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} openapi-fetch@0.13.4: @@ -10991,10 +11072,6 @@ packages: resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} engines: {node: '>=6'} - proc-log@3.0.0: - resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - proc-log@4.2.0: resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -11017,8 +11094,8 @@ packages: promise-all-reject-late@1.0.1: resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} - promise-call-limit@3.0.1: - resolution: {integrity: sha512-utl+0x8gIDasV5X+PI5qWEPqH6fJS0pFtQ/4gZ95xfEFb/89dmh+/b895TbFDBLiafBvxD/PGTKfvxl4kH/pQg==} + promise-call-limit@3.0.2: + resolution: {integrity: sha512-mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw==} promise-inflight@1.0.1: resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} @@ -11039,8 +11116,8 @@ packages: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} engines: {node: '>= 6'} - promzard@1.0.0: - resolution: {integrity: sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==} + promzard@1.0.2: + resolution: {integrity: sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} prop-types@15.8.1: @@ -11096,6 +11173,10 @@ packages: q@1.5.1: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + deprecated: |- + You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. + + (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) qjobs@1.2.0: resolution: {integrity: sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==} @@ -11112,6 +11193,7 @@ packages: querystring@0.2.0: resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==} engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. querystringify@2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} @@ -11407,10 +11489,6 @@ packages: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} - read@2.1.0: - resolution: {integrity: sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - read@3.0.1: resolution: {integrity: sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -11421,8 +11499,8 @@ packages: readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} - readable-stream@3.6.0: - resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} engines: {node: '>= 6'} readdir-glob@1.1.2: @@ -11573,10 +11651,6 @@ packages: resolve-pkg-maps@1.0.0: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} - resolve.exports@2.0.3: - resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} - engines: {node: '>=10'} - resolve@1.22.10: resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} engines: {node: '>= 0.4'} @@ -11607,6 +11681,7 @@ packages: rimraf@2.5.4: resolution: {integrity: sha512-Lw7SHMjssciQb/rRz7JyPIy9+bbUshEucPoLRvWqy09vC5zQixl8Uet+Zl+SROBB/JMWHJRdCk1qdxNWHNMvlQ==} + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@2.6.3: @@ -11616,10 +11691,12 @@ packages: rimraf@2.7.1: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@4.4.1: @@ -11733,11 +11810,6 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.5.3: - resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} - engines: {node: '>=10'} - hasBin: true - semver@7.7.1: resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} engines: {node: '>=10'} @@ -11927,13 +11999,13 @@ packages: resolution: {integrity: sha512-8U6BEgGjQOfGz3HHTYaC/L1GaxDCJ/KM0XTkJly0EhZ5U/du9uNEZy4ZgYzEzIqlx2CMm25CrCqr1ck899eLNA==} engines: {node: '>=10.2.0'} - socks-proxy-agent@8.0.2: - resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==} + socks-proxy-agent@8.0.5: + resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} engines: {node: '>= 14'} - socks@2.7.1: - resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} - engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} + socks@2.8.3: + resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} sort-keys@2.0.0: resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} @@ -11962,17 +12034,17 @@ packages: resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} engines: {node: '>=8'} - spdx-correct@3.1.1: - resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - spdx-license-ids@3.0.12: - resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} + spdx-license-ids@3.0.21: + resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==} split2@3.2.2: resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} @@ -11986,6 +12058,9 @@ packages: sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + ssri@10.0.6: resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -12089,8 +12164,8 @@ packages: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} - strip-ansi@7.0.1: - resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} engines: {node: '>=12'} strip-bom@3.0.0: @@ -12596,8 +12671,8 @@ packages: ufo@1.5.4: resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} - uglify-js@3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} + uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} engines: {node: '>=0.8.0'} hasBin: true @@ -12655,8 +12730,8 @@ packages: unist-util-visit@5.0.0: resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - universal-user-agent@6.0.0: - resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} + universal-user-agent@6.0.1: + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} universal-user-agent@7.0.2: resolution: {integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==} @@ -14682,7 +14757,7 @@ snapshots: debug: 4.4.0(supports-color@8.1.1) espree: 9.6.1 globals: 13.24.0 - ignore: 5.3.1 + ignore: 5.3.2 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -14711,22 +14786,22 @@ snapshots: lodash.isundefined: 3.0.1 lodash.uniq: 4.5.0 - '@floating-ui/core@1.6.5': + '@floating-ui/core@1.6.9': dependencies: - '@floating-ui/utils': 0.2.5 + '@floating-ui/utils': 0.2.9 - '@floating-ui/dom@1.6.8': + '@floating-ui/dom@1.6.13': dependencies: - '@floating-ui/core': 1.6.5 - '@floating-ui/utils': 0.2.5 + '@floating-ui/core': 1.6.9 + '@floating-ui/utils': 0.2.9 - '@floating-ui/react-dom@2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@floating-ui/react-dom@2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/dom': 1.6.8 + '@floating-ui/dom': 1.6.13 react: 19.0.0 react-dom: 19.0.0(react@19.0.0) - '@floating-ui/utils@0.2.5': {} + '@floating-ui/utils@0.2.9': {} '@fortawesome/fontawesome-common-types@6.7.2': {} @@ -14892,7 +14967,7 @@ snapshots: dependencies: string-width: 5.1.2 string-width-cjs: string-width@4.2.3 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 strip-ansi-cjs: strip-ansi@6.0.1 wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 @@ -14978,12 +15053,12 @@ snapshots: dependencies: buffer: 6.0.3 - '@lerna/create@8.1.9(babel-plugin-macros@3.1.0)(encoding@0.1.13)(typescript@5.7.3)': + '@lerna/create@8.1.8(babel-plugin-macros@3.1.0)(encoding@0.1.13)(typescript@5.7.3)': dependencies: '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 '@npmcli/run-script': 8.1.0 - '@nx/devkit': 17.2.8(nx@20.4.0) + '@nx/devkit': 19.8.14(nx@19.8.14) '@octokit/plugin-enterprise-rest': 6.0.1 '@octokit/rest': 19.0.11(encoding@0.1.13) aproba: 2.0.0 @@ -14996,7 +15071,7 @@ snapshots: console-control-strings: 1.1.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 9.0.0(typescript@5.7.3) + cosmiconfig: 8.3.6(typescript@5.7.3) dedent: 1.5.3(babel-plugin-macros@3.1.0) execa: 5.0.0 fs-extra: 11.3.0 @@ -15008,7 +15083,7 @@ snapshots: has-unicode: 2.0.1 ini: 1.3.8 init-package-json: 6.0.3 - inquirer: 8.2.4 + inquirer: 8.2.6 is-ci: 3.0.1 is-stream: 2.0.0 js-yaml: 4.1.0 @@ -15022,7 +15097,7 @@ snapshots: npm-package-arg: 11.0.2 npm-packlist: 8.0.2 npm-registry-fetch: 17.1.0 - nx: 20.4.0 + nx: 19.8.14 p-map: 4.0.0 p-map-series: 2.1.0 p-queue: 6.6.2 @@ -15073,7 +15148,7 @@ snapshots: '@mui/base@5.0.0-beta.30(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.26.7 - '@floating-ui/react-dom': 2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@mui/types': 7.2.21(@types/react@19.0.8) '@mui/utils': 5.16.6(@types/react@19.0.8)(react@19.0.0) '@popperjs/core': 2.11.8 @@ -15087,7 +15162,7 @@ snapshots: '@mui/base@5.0.0-beta.31(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.26.7 - '@floating-ui/react-dom': 2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@mui/types': 7.2.21(@types/react@19.0.8) '@mui/utils': 5.16.6(@types/react@19.0.8)(react@19.0.0) '@popperjs/core': 2.11.8 @@ -15101,7 +15176,7 @@ snapshots: '@mui/base@5.0.0-beta.68(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.26.7 - '@floating-ui/react-dom': 2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@mui/types': 7.2.21(@types/react@19.0.8) '@mui/utils': 6.4.1(@types/react@19.0.8)(react@19.0.0) '@popperjs/core': 2.11.8 @@ -15115,7 +15190,7 @@ snapshots: '@mui/base@5.0.0-beta.69(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.26.7 - '@floating-ui/react-dom': 2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@mui/types': 7.2.21(@types/react@19.0.8) '@mui/utils': 6.4.1(@types/react@19.0.8)(react@19.0.0) '@popperjs/core': 2.11.8 @@ -15145,7 +15220,7 @@ snapshots: '@emotion/styled': 11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0) '@types/react': 19.0.8 - '@mui/lab@6.0.0-beta.22(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/material-pigment-css@6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/material@packages+mui-material+build)(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@mui/lab@6.0.0-beta.22(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/material-pigment-css@6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3))(@types/react@19.0.8)(react@19.0.0))(@mui/material@packages+mui-material+build)(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.26.7 '@mui/base': 5.0.0-beta.68(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) @@ -15160,14 +15235,14 @@ snapshots: optionalDependencies: '@emotion/react': 11.13.5(@types/react@19.0.8)(react@19.0.0) '@emotion/styled': 11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0) - '@mui/material-pigment-css': 6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0) + '@mui/material-pigment-css': 6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3))(@types/react@19.0.8)(react@19.0.0) '@types/react': 19.0.8 - '@mui/material-pigment-css@6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0)': + '@mui/material-pigment-css@6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3))(@types/react@19.0.8)(react@19.0.0)': dependencies: '@babel/runtime': 7.26.7 '@mui/system': 6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0) - '@pigment-css/react': 0.0.30(@types/react@19.0.8)(react@19.0.0) + '@pigment-css/react': 0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3) transitivePeerDependencies: - '@emotion/react' - '@emotion/styled' @@ -15637,13 +15712,13 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.13.0 - '@npmcli/agent@2.2.0': + '@npmcli/agent@2.2.2': dependencies: - agent-base: 7.1.0 + agent-base: 7.1.3 http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.5 + https-proxy-agent: 7.0.6 lru-cache: 10.4.3 - socks-proxy-agent: 8.0.2 + socks-proxy-agent: 8.0.5 transitivePeerDependencies: - supports-color @@ -15661,7 +15736,7 @@ snapshots: '@npmcli/redact': 2.0.1 '@npmcli/run-script': 8.1.0 bin-links: 4.0.4 - cacache: 18.0.3 + cacache: 18.0.4 common-ancestor-path: 1.0.1 hosted-git-info: 7.0.2 json-parse-even-better-errors: 3.0.2 @@ -15671,14 +15746,14 @@ snapshots: nopt: 7.2.1 npm-install-checks: 6.3.0 npm-package-arg: 11.0.2 - npm-pick-manifest: 9.0.1 + npm-pick-manifest: 9.1.0 npm-registry-fetch: 17.1.0 pacote: 18.0.6 parse-conflict-json: 3.0.1 proc-log: 4.2.0 proggy: 2.0.0 promise-all-reject-late: 1.0.1 - promise-call-limit: 3.0.1 + promise-call-limit: 3.0.2 read-package-json-fast: 3.0.2 semver: 7.7.1 ssri: 10.0.6 @@ -15692,12 +15767,13 @@ snapshots: dependencies: semver: 7.7.1 - '@npmcli/git@5.0.3': + '@npmcli/git@5.0.8': dependencies: - '@npmcli/promise-spawn': 7.0.0 + '@npmcli/promise-spawn': 7.0.2 + ini: 4.1.3 lru-cache: 10.4.3 - npm-pick-manifest: 9.0.1 - proc-log: 3.0.0 + npm-pick-manifest: 9.1.0 + proc-log: 4.2.0 promise-inflight: 1.0.1 promise-retry: 2.0.1 semver: 7.7.1 @@ -15707,7 +15783,7 @@ snapshots: '@npmcli/installed-package-contents@2.1.0': dependencies: - npm-bundled: 3.0.0 + npm-bundled: 3.0.1 npm-normalize-package-bin: 3.0.1 '@npmcli/map-workspaces@3.0.6': @@ -15719,7 +15795,7 @@ snapshots: '@npmcli/metavuln-calculator@7.1.1': dependencies: - cacache: 18.0.3 + cacache: 18.0.4 json-parse-even-better-errors: 3.0.2 pacote: 18.0.6 proc-log: 4.2.0 @@ -15734,7 +15810,7 @@ snapshots: '@npmcli/package-json@5.2.0': dependencies: - '@npmcli/git': 5.0.3 + '@npmcli/git': 5.0.8 glob: 10.4.5 hosted-git-info: 7.0.2 json-parse-even-better-errors: 3.0.2 @@ -15744,7 +15820,7 @@ snapshots: transitivePeerDependencies: - bluebird - '@npmcli/promise-spawn@7.0.0': + '@npmcli/promise-spawn@7.0.2': dependencies: which: 4.0.0 @@ -15758,68 +15834,77 @@ snapshots: dependencies: '@npmcli/node-gyp': 3.0.0 '@npmcli/package-json': 5.2.0 - '@npmcli/promise-spawn': 7.0.0 - node-gyp: 10.0.1 + '@npmcli/promise-spawn': 7.0.2 + node-gyp: 10.3.1 proc-log: 4.2.0 which: 4.0.0 transitivePeerDependencies: - bluebird - supports-color - '@nrwl/devkit@17.2.8(nx@20.4.0)': + '@nrwl/devkit@19.8.14(nx@19.8.14)': dependencies: - '@nx/devkit': 17.2.8(nx@20.4.0) + '@nx/devkit': 19.8.14(nx@19.8.14) transitivePeerDependencies: - nx - '@nx/devkit@17.2.8(nx@20.4.0)': + '@nrwl/tao@19.8.14': dependencies: - '@nrwl/devkit': 17.2.8(nx@20.4.0) - ejs: 3.1.8 + nx: 19.8.14 + tslib: 2.8.1 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + + '@nx/devkit@19.8.14(nx@19.8.14)': + dependencies: + '@nrwl/devkit': 19.8.14(nx@19.8.14) + ejs: 3.1.10 enquirer: 2.3.6 - ignore: 5.3.1 - nx: 20.4.0 - semver: 7.5.3 + ignore: 5.3.2 + minimatch: 9.0.3 + nx: 19.8.14 + semver: 7.7.1 tmp: 0.2.3 tslib: 2.8.1 + yargs-parser: 21.1.1 - '@nx/nx-darwin-arm64@20.4.0': + '@nx/nx-darwin-arm64@19.8.14': optional: true - '@nx/nx-darwin-x64@20.4.0': + '@nx/nx-darwin-x64@19.8.14': optional: true - '@nx/nx-freebsd-x64@20.4.0': + '@nx/nx-freebsd-x64@19.8.14': optional: true - '@nx/nx-linux-arm-gnueabihf@20.4.0': + '@nx/nx-linux-arm-gnueabihf@19.8.14': optional: true - '@nx/nx-linux-arm64-gnu@20.4.0': + '@nx/nx-linux-arm64-gnu@19.8.14': optional: true - '@nx/nx-linux-arm64-musl@20.4.0': + '@nx/nx-linux-arm64-musl@19.8.14': optional: true - '@nx/nx-linux-x64-gnu@20.4.0': + '@nx/nx-linux-x64-gnu@19.8.14': optional: true - '@nx/nx-linux-x64-musl@20.4.0': + '@nx/nx-linux-x64-musl@19.8.14': optional: true - '@nx/nx-win32-arm64-msvc@20.4.0': + '@nx/nx-win32-arm64-msvc@19.8.14': optional: true - '@nx/nx-win32-x64-msvc@20.4.0': + '@nx/nx-win32-x64-msvc@19.8.14': optional: true '@octokit/auth-token@2.5.0': dependencies: '@octokit/types': 6.41.0 - '@octokit/auth-token@3.0.1': - dependencies: - '@octokit/types': 7.4.0 + '@octokit/auth-token@3.0.4': {} '@octokit/auth-token@5.1.1': {} @@ -15830,20 +15915,20 @@ snapshots: '@octokit/request': 5.6.3(encoding@0.1.13) '@octokit/request-error': 2.1.0 '@octokit/types': 6.41.0 - before-after-hook: 2.2.2 - universal-user-agent: 6.0.0 + before-after-hook: 2.2.3 + universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding '@octokit/core@4.2.4(encoding@0.1.13)': dependencies: - '@octokit/auth-token': 3.0.1 - '@octokit/graphql': 5.0.1(encoding@0.1.13) - '@octokit/request': 6.2.1(encoding@0.1.13) - '@octokit/request-error': 3.0.1 + '@octokit/auth-token': 3.0.4 + '@octokit/graphql': 5.0.6(encoding@0.1.13) + '@octokit/request': 6.2.8(encoding@0.1.13) + '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 - before-after-hook: 2.2.2 - universal-user-agent: 6.0.0 + before-after-hook: 2.2.3 + universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding @@ -15866,27 +15951,27 @@ snapshots: dependencies: '@octokit/types': 6.41.0 is-plain-object: 5.0.0 - universal-user-agent: 6.0.0 + universal-user-agent: 6.0.1 - '@octokit/endpoint@7.0.2': + '@octokit/endpoint@7.0.6': dependencies: - '@octokit/types': 7.4.0 + '@octokit/types': 9.3.2 is-plain-object: 5.0.0 - universal-user-agent: 6.0.0 + universal-user-agent: 6.0.1 '@octokit/graphql@4.8.0(encoding@0.1.13)': dependencies: '@octokit/request': 5.6.3(encoding@0.1.13) '@octokit/types': 6.41.0 - universal-user-agent: 6.0.0 + universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - '@octokit/graphql@5.0.1(encoding@0.1.13)': + '@octokit/graphql@5.0.6(encoding@0.1.13)': dependencies: - '@octokit/request': 6.2.1(encoding@0.1.13) - '@octokit/types': 7.4.0 - universal-user-agent: 6.0.0 + '@octokit/request': 6.2.8(encoding@0.1.13) + '@octokit/types': 9.3.2 + universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding @@ -15898,9 +15983,7 @@ snapshots: '@octokit/openapi-types@12.11.0': {} - '@octokit/openapi-types@13.10.0': {} - - '@octokit/openapi-types@18.0.0': {} + '@octokit/openapi-types@18.1.1': {} '@octokit/openapi-types@23.0.1': {} @@ -15956,9 +16039,9 @@ snapshots: deprecation: 2.3.1 once: 1.4.0 - '@octokit/request-error@3.0.1': + '@octokit/request-error@3.0.3': dependencies: - '@octokit/types': 7.4.0 + '@octokit/types': 9.3.2 deprecation: 2.3.1 once: 1.4.0 @@ -15973,18 +16056,18 @@ snapshots: '@octokit/types': 6.41.0 is-plain-object: 5.0.0 node-fetch: 2.7.0(encoding@0.1.13) - universal-user-agent: 6.0.0 + universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - '@octokit/request@6.2.1(encoding@0.1.13)': + '@octokit/request@6.2.8(encoding@0.1.13)': dependencies: - '@octokit/endpoint': 7.0.2 - '@octokit/request-error': 3.0.1 - '@octokit/types': 7.4.0 + '@octokit/endpoint': 7.0.6 + '@octokit/request-error': 3.0.3 + '@octokit/types': 9.3.2 is-plain-object: 5.0.0 node-fetch: 2.7.0(encoding@0.1.13) - universal-user-agent: 6.0.0 + universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding @@ -16025,7 +16108,7 @@ snapshots: '@octokit/types@10.0.0': dependencies: - '@octokit/openapi-types': 18.0.0 + '@octokit/openapi-types': 18.1.1 '@octokit/types@13.7.0': dependencies: @@ -16035,13 +16118,9 @@ snapshots: dependencies: '@octokit/openapi-types': 12.11.0 - '@octokit/types@7.4.0': - dependencies: - '@octokit/openapi-types': 13.10.0 - '@octokit/types@9.3.2': dependencies: - '@octokit/openapi-types': 18.0.0 + '@octokit/openapi-types': 18.1.1 '@open-draft/deferred-promise@2.2.0': {} @@ -16055,17 +16134,18 @@ snapshots: '@opentelemetry/api@1.8.0': optional: true - '@pigment-css/nextjs-plugin@0.0.30(@types/react@19.0.8)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack-sources@3.2.3)': + '@pigment-css/nextjs-plugin@0.0.30(@types/react@19.0.8)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack-sources@3.2.3)': dependencies: - '@pigment-css/unplugin': 0.0.30(@types/react@19.0.8)(react@19.0.0)(webpack-sources@3.2.3) + '@pigment-css/unplugin': 0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3)(webpack-sources@3.2.3) next: 15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - '@types/react' - react - supports-color + - typescript - webpack-sources - '@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0)': + '@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3)': dependencies: '@babel/core': 7.26.7 '@babel/helper-module-imports': 7.25.9 @@ -16081,7 +16161,7 @@ snapshots: '@mui/utils': 6.4.1(@types/react@19.0.8)(react@19.0.0) '@wyw-in-js/processor-utils': 0.5.5 '@wyw-in-js/shared': 0.5.5 - '@wyw-in-js/transform': 0.5.5 + '@wyw-in-js/transform': 0.5.5(typescript@5.7.3) clsx: 2.1.1 cssesc: 3.0.0 csstype: 3.1.3 @@ -16093,34 +16173,37 @@ snapshots: transitivePeerDependencies: - '@types/react' - supports-color + - typescript - '@pigment-css/unplugin@0.0.30(@types/react@19.0.8)(react@19.0.0)(webpack-sources@3.2.3)': + '@pigment-css/unplugin@0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3)(webpack-sources@3.2.3)': dependencies: '@babel/core': 7.26.7 - '@pigment-css/react': 0.0.30(@types/react@19.0.8)(react@19.0.0) + '@pigment-css/react': 0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3) '@wyw-in-js/shared': 0.5.5 - '@wyw-in-js/transform': 0.5.5 + '@wyw-in-js/transform': 0.5.5(typescript@5.7.3) babel-plugin-define-var: 0.1.0 unplugin: 1.15.0(webpack-sources@3.2.3) transitivePeerDependencies: - '@types/react' - react - supports-color + - typescript - webpack-sources - '@pigment-css/vite-plugin@0.0.30(@types/react@19.0.8)(react@19.0.0)(vite@5.4.14(@types/node@20.17.17)(terser@5.37.0))': + '@pigment-css/vite-plugin@0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3)(vite@5.4.14(@types/node@20.17.17)(terser@5.37.0))': dependencies: '@babel/core': 7.26.7 '@babel/preset-typescript': 7.26.0(@babel/core@7.26.7) - '@pigment-css/react': 0.0.30(@types/react@19.0.8)(react@19.0.0) + '@pigment-css/react': 0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3) '@wyw-in-js/shared': 0.5.5 - '@wyw-in-js/transform': 0.5.5 + '@wyw-in-js/transform': 0.5.5(typescript@5.7.3) babel-plugin-define-var: 0.1.0 vite: 5.4.14(@types/node@20.17.17)(terser@5.37.0) transitivePeerDependencies: - '@types/react' - react - supports-color + - typescript '@pkgjs/parseargs@0.11.0': optional: true @@ -16572,17 +16655,17 @@ snapshots: '@sigstore/bundle@2.3.2': dependencies: - '@sigstore/protobuf-specs': 0.3.2 + '@sigstore/protobuf-specs': 0.3.3 '@sigstore/core@1.1.0': {} - '@sigstore/protobuf-specs@0.3.2': {} + '@sigstore/protobuf-specs@0.3.3': {} '@sigstore/sign@2.3.2': dependencies: '@sigstore/bundle': 2.3.2 '@sigstore/core': 1.1.0 - '@sigstore/protobuf-specs': 0.3.2 + '@sigstore/protobuf-specs': 0.3.3 make-fetch-happen: 13.0.1 proc-log: 4.2.0 promise-retry: 2.0.1 @@ -16591,7 +16674,7 @@ snapshots: '@sigstore/tuf@2.3.4': dependencies: - '@sigstore/protobuf-specs': 0.3.2 + '@sigstore/protobuf-specs': 0.3.3 tuf-js: 2.2.1 transitivePeerDependencies: - supports-color @@ -16600,7 +16683,7 @@ snapshots: dependencies: '@sigstore/bundle': 2.3.2 '@sigstore/core': 1.1.0 - '@sigstore/protobuf-specs': 0.3.2 + '@sigstore/protobuf-specs': 0.3.3 '@sinclair/typebox@0.27.8': {} @@ -16830,11 +16913,11 @@ snapshots: '@theme-ui/css': 0.17.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0)) react: 19.0.0 - '@toolpad/core@0.12.0(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material-pigment-css@6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/material@packages+mui-material+build)(@types/react@19.0.8)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react-router@7.1.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(vite@5.4.14(@types/node@20.17.17)(terser@5.37.0))': + '@toolpad/core@0.12.0(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material-pigment-css@6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3))(@types/react@19.0.8)(react@19.0.0))(@mui/material@packages+mui-material+build)(@types/react@19.0.8)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.8.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react-router@7.1.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(vite@5.4.14(@types/node@20.17.17)(terser@5.37.0))': dependencies: '@babel/runtime': 7.26.7 '@mui/icons-material': link:packages/mui-icons-material/build - '@mui/lab': 6.0.0-beta.22(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/material-pigment-css@6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/material@packages+mui-material+build)(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@mui/lab': 6.0.0-beta.22(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@mui/material-pigment-css@6.4.1(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@emotion/styled@11.13.5(@emotion/react@11.13.5(@types/react@19.0.8)(react@19.0.0))(@types/react@19.0.8)(react@19.0.0))(@pigment-css/react@0.0.30(@types/react@19.0.8)(react@19.0.0)(typescript@5.7.3))(@types/react@19.0.8)(react@19.0.0))(@mui/material@packages+mui-material+build)(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@mui/material': link:packages/mui-material/build '@mui/utils': 6.3.1(@types/react@19.0.8)(react@19.0.0) '@toolpad/utils': 0.12.0(react@19.0.0) @@ -17026,7 +17109,7 @@ snapshots: '@types/minimatch@3.0.5': {} - '@types/minimist@1.2.2': {} + '@types/minimist@1.2.5': {} '@types/mocha@10.0.10': {} @@ -17040,7 +17123,7 @@ snapshots: dependencies: undici-types: 6.19.8 - '@types/normalize-package-data@2.4.1': {} + '@types/normalize-package-data@2.4.4': {} '@types/parse-json@4.0.0': {} @@ -17136,7 +17219,7 @@ snapshots: '@typescript-eslint/visitor-keys': 7.18.0 eslint: 8.57.1 graphemer: 1.4.0 - ignore: 5.3.1 + ignore: 5.3.2 natural-compare: 1.4.0 ts-api-utils: 1.3.0(typescript@5.7.3) optionalDependencies: @@ -17431,7 +17514,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@wyw-in-js/transform@0.5.5': + '@wyw-in-js/transform@0.5.5(typescript@5.7.3)': dependencies: '@babel/core': 7.26.7 '@babel/generator': 7.26.5 @@ -17443,13 +17526,14 @@ snapshots: '@wyw-in-js/processor-utils': 0.5.5 '@wyw-in-js/shared': 0.5.5 babel-merge: 3.0.0(@babel/core@7.26.7) - cosmiconfig: 8.2.0 + cosmiconfig: 8.3.6(typescript@5.7.3) happy-dom: 15.11.6 source-map: 0.7.4 stylis: 4.3.4 ts-invariant: 0.10.3 transitivePeerDependencies: - supports-color + - typescript '@xtuc/ieee754@1.2.0': {} @@ -17457,7 +17541,7 @@ snapshots: '@yarnpkg/lockfile@1.1.0': {} - '@yarnpkg/parsers@3.0.2': + '@yarnpkg/parsers@3.0.0-rc.46': dependencies: js-yaml: 3.14.1 tslib: 2.8.1 @@ -17509,11 +17593,7 @@ snapshots: transitivePeerDependencies: - supports-color - agent-base@7.1.0: - dependencies: - debug: 4.4.0(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color + agent-base@7.1.3: {} aggregate-error@3.1.0: dependencies: @@ -17590,7 +17670,7 @@ snapshots: ansi-regex@5.0.1: {} - ansi-regex@6.0.1: {} + ansi-regex@6.1.0: {} ansi-styles@3.2.1: dependencies: @@ -17640,16 +17720,16 @@ snapshots: async: 2.6.4 buffer-crc32: 0.2.13 glob: 7.2.3 - readable-stream: 3.6.0 + readable-stream: 3.6.2 tar-stream: 2.2.0 zip-stream: 2.1.3 archiver@5.3.1: dependencies: archiver-utils: 2.1.0 - async: 3.2.4 + async: 3.2.6 buffer-crc32: 0.2.13 - readable-stream: 3.6.0 + readable-stream: 3.6.2 readdir-glob: 1.1.2 tar-stream: 2.2.0 zip-stream: 4.1.0 @@ -17810,7 +17890,7 @@ snapshots: dependencies: lodash: 4.17.21 - async@3.2.4: {} + async@3.2.6: {} asynckit@0.4.0: {} @@ -17889,7 +17969,7 @@ snapshots: babel-plugin-macros@3.1.0: dependencies: '@babel/runtime': 7.26.7 - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 resolve: 1.22.10 babel-plugin-module-resolver@5.0.2: @@ -17972,7 +18052,7 @@ snapshots: base64id@2.0.0: {} - before-after-hook@2.2.2: {} + before-after-hook@2.2.3: {} before-after-hook@3.0.2: {} @@ -18003,7 +18083,7 @@ snapshots: dependencies: buffer: 5.7.1 inherits: 2.0.4 - readable-stream: 3.6.0 + readable-stream: 3.6.2 bluebird@3.4.7: {} @@ -18211,10 +18291,10 @@ snapshots: cac@6.7.14: {} - cacache@18.0.3: + cacache@18.0.4: dependencies: '@npmcli/fs': 3.1.1 - fs-minipass: 3.0.2 + fs-minipass: 3.0.3 glob: 10.4.5 lru-cache: 10.4.3 minipass: 7.1.2 @@ -18400,7 +18480,7 @@ snapshots: ci-info@3.9.0: {} - ci-info@4.0.0: {} + ci-info@4.1.0: {} cipher-base@1.0.4: dependencies: @@ -18420,7 +18500,7 @@ snapshots: gunzip-maybe: 1.4.2 https-proxy-agent: 5.0.1 minimal-request-promise: 1.5.0 - minimist: 1.2.6 + minimist: 1.2.8 oh-no-i-insist: 1.1.1 sequential-promise-map: 1.2.0 tar-fs: 2.1.1 @@ -18447,7 +18527,7 @@ snapshots: cli-spinners@2.6.1: {} - cli-spinners@2.7.0: {} + cli-spinners@2.9.2: {} cli-width@3.0.0: {} @@ -18583,7 +18663,7 @@ snapshots: buffer-crc32: 0.2.13 crc32-stream: 4.0.2 normalize-path: 3.0.0 - readable-stream: 3.6.0 + readable-stream: 3.6.2 compressible@2.0.18: dependencies: @@ -18625,7 +18705,7 @@ snapshots: dependencies: buffer-from: 1.1.2 inherits: 2.0.4 - readable-stream: 3.6.0 + readable-stream: 3.6.2 typedarray: 0.0.6 concurrently@9.1.2: @@ -18693,7 +18773,7 @@ snapshots: dependencies: conventional-commits-filter: 3.0.0 dateformat: 3.0.3 - handlebars: 4.7.7 + handlebars: 4.7.8 json-stringify-safe: 5.0.1 meow: 8.1.2 semver: 7.7.1 @@ -18766,7 +18846,7 @@ snapshots: js-yaml: 3.14.1 parse-json: 4.0.0 - cosmiconfig@7.0.1: + cosmiconfig@7.1.0: dependencies: '@types/parse-json': 4.0.0 import-fresh: 3.3.0 @@ -18774,12 +18854,14 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 - cosmiconfig@8.2.0: + cosmiconfig@8.3.6(typescript@5.7.3): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 + optionalDependencies: + typescript: 5.7.3 cosmiconfig@9.0.0(typescript@5.7.3): dependencies: @@ -18817,12 +18899,12 @@ snapshots: crc32-stream@3.0.1: dependencies: crc: 3.8.0 - readable-stream: 3.6.0 + readable-stream: 3.6.2 crc32-stream@4.0.2: dependencies: crc-32: 1.2.2 - readable-stream: 3.6.0 + readable-stream: 3.6.2 crc@3.8.0: dependencies: @@ -18854,7 +18936,7 @@ snapshots: cross-env@7.0.3: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 cross-fetch@4.1.0(encoding@0.1.13): dependencies: @@ -18867,7 +18949,7 @@ snapshots: lru-cache: 4.1.5 which: 1.3.1 - cross-spawn@7.0.3: + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 @@ -19118,7 +19200,7 @@ snapshots: optionalDependencies: supports-color: 8.1.1 - decamelize-keys@1.1.0: + decamelize-keys@1.1.1: dependencies: decamelize: 1.2.0 map-obj: 1.0.1 @@ -19299,11 +19381,11 @@ snapshots: dependencies: is-obj: 2.0.0 - dotenv-expand@11.0.6: + dotenv-expand@11.0.7: dependencies: - dotenv: 16.4.5 + dotenv: 16.4.7 - dotenv@16.4.5: {} + dotenv@16.4.7: {} dunder-proto@1.0.1: dependencies: @@ -19332,9 +19414,9 @@ snapshots: ee-first@1.1.1: {} - ejs@3.1.8: + ejs@3.1.10: dependencies: - jake: 10.8.5 + jake: 10.9.2 electron-to-chromium@1.5.35: {} @@ -19639,7 +19721,7 @@ snapshots: eslint-import-resolver-node@0.3.9: dependencies: debug: 3.2.7 - is-core-module: 2.16.0 + is-core-module: 2.16.1 resolve: 1.22.10 transitivePeerDependencies: - supports-color @@ -19652,7 +19734,7 @@ snapshots: find-root: 1.1.0 hasown: 2.0.2 interpret: 1.4.0 - is-core-module: 2.16.0 + is-core-module: 2.16.1 is-regex: 1.2.1 lodash: 4.17.21 resolve: 2.0.0-next.5 @@ -19698,7 +19780,7 @@ snapshots: eslint-import-resolver-node: 0.3.9 eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.10)(eslint@8.57.1) hasown: 2.0.2 - is-core-module: 2.16.0 + is-core-module: 2.16.1 is-glob: 4.0.3 minimatch: 3.1.2 object.fromentries: 2.0.8 @@ -19811,7 +19893,7 @@ snapshots: '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 debug: 4.4.0(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 @@ -19826,7 +19908,7 @@ snapshots: glob-parent: 6.0.2 globals: 13.24.0 graphemer: 1.4.0 - ignore: 5.3.1 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 @@ -19915,7 +19997,7 @@ snapshots: dayjs: 1.11.13 fast-csv: 4.3.6 jszip: 3.10.1 - readable-stream: 3.6.0 + readable-stream: 3.6.2 saxes: 5.0.1 tmp: 0.2.3 unzipper: 0.10.11 @@ -19923,7 +20005,7 @@ snapshots: execa@5.0.0: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 get-stream: 6.0.1 human-signals: 2.1.0 is-stream: 2.0.1 @@ -19935,7 +20017,7 @@ snapshots: execa@5.1.1: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 get-stream: 6.0.1 human-signals: 2.1.0 is-stream: 2.0.1 @@ -19947,7 +20029,7 @@ snapshots: execa@8.0.1: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 get-stream: 8.0.1 human-signals: 5.0.0 is-stream: 3.0.0 @@ -19960,7 +20042,7 @@ snapshots: execa@9.5.2: dependencies: '@sindresorhus/merge-streams': 4.0.0 - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 figures: 6.1.0 get-stream: 9.0.1 human-signals: 8.0.0 @@ -20264,12 +20346,12 @@ snapshots: foreground-child@2.0.0: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 signal-exit: 3.0.7 foreground-child@3.3.0: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 signal-exit: 4.1.0 form-data@4.0.0: @@ -20324,11 +20406,11 @@ snapshots: fs-minipass@2.1.0: dependencies: - minipass: 3.3.4 + minipass: 3.3.6 - fs-minipass@3.0.2: + fs-minipass@3.0.3: dependencies: - minipass: 5.0.0 + minipass: 7.1.2 fs-readdir-recursive@1.1.0: {} @@ -20363,7 +20445,7 @@ snapshots: gaxios@6.1.1(encoding@0.1.13): dependencies: extend: 3.0.2 - https-proxy-agent: 7.0.5 + https-proxy-agent: 7.0.6 is-stream: 2.0.1 node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: @@ -20543,7 +20625,7 @@ snapshots: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.3.3 - ignore: 5.3.1 + ignore: 5.3.2 merge2: 1.4.1 slash: 3.0.0 @@ -20551,7 +20633,7 @@ snapshots: dependencies: dir-glob: 3.0.1 fast-glob: 3.3.3 - ignore: 5.3.1 + ignore: 5.3.2 merge2: 1.4.1 slash: 4.0.0 @@ -20559,7 +20641,7 @@ snapshots: dependencies: '@sindresorhus/merge-streams': 2.2.1 fast-glob: 3.3.3 - ignore: 5.3.1 + ignore: 5.3.2 path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 @@ -20632,14 +20714,14 @@ snapshots: dependencies: duplexer: 0.1.2 - handlebars@4.7.7: + handlebars@4.7.8: dependencies: - minimist: 1.2.6 + minimist: 1.2.8 neo-async: 2.6.2 source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.17.4 + uglify-js: 3.19.3 happy-dom@15.11.6: dependencies: @@ -20681,7 +20763,7 @@ snapshots: hash-base@3.1.0: dependencies: inherits: 2.0.4 - readable-stream: 3.6.0 + readable-stream: 3.6.2 safe-buffer: 5.2.1 hash.js@1.1.7: @@ -20768,7 +20850,7 @@ snapshots: dependencies: buffer-from: 0.1.2 inherits: 2.0.4 - minimist: 1.2.6 + minimist: 1.2.8 readable-stream: 1.0.34 through2: 0.4.2 @@ -20809,7 +20891,7 @@ snapshots: http-proxy-agent@7.0.2: dependencies: - agent-base: 7.1.0 + agent-base: 7.1.3 debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -20838,9 +20920,9 @@ snapshots: transitivePeerDependencies: - supports-color - https-proxy-agent@7.0.5: + https-proxy-agent@7.0.6: dependencies: - agent-base: 7.1.0 + agent-base: 7.1.3 debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -20871,11 +20953,11 @@ snapshots: ieee754@1.2.1: {} - ignore-walk@6.0.4: + ignore-walk@6.0.5: dependencies: minimatch: 9.0.5 - ignore@5.3.1: {} + ignore@5.3.2: {} ignore@7.0.3: {} @@ -20919,11 +21001,13 @@ snapshots: ini@1.3.8: {} + ini@4.1.3: {} + init-package-json@6.0.3: dependencies: '@npmcli/package-json': 5.2.0 npm-package-arg: 11.0.2 - promzard: 1.0.0 + promzard: 1.0.2 read: 3.0.1 semver: 7.7.1 validate-npm-package-license: 3.0.4 @@ -20931,7 +21015,7 @@ snapshots: transitivePeerDependencies: - bluebird - inquirer@8.2.4: + inquirer@8.2.6: dependencies: ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -20947,7 +21031,7 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 - wrap-ansi: 7.0.0 + wrap-ansi: 6.2.0 internal-slot@1.1.0: dependencies: @@ -20965,7 +21049,10 @@ snapshots: dependencies: loose-envify: 1.4.0 - ip@2.0.1: {} + ip-address@9.0.5: + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 ipaddr.js@1.9.1: {} @@ -21014,7 +21101,7 @@ snapshots: dependencies: ci-info: 3.9.0 - is-core-module@2.16.0: + is-core-module@2.16.1: dependencies: hasown: 2.0.2 @@ -21233,7 +21320,7 @@ snapshots: istanbul-lib-processinfo@2.0.3: dependencies: archy: 1.0.0 - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 istanbul-lib-coverage: 3.2.2 p-map: 3.0.0 rimraf: 3.0.2 @@ -21304,9 +21391,9 @@ snapshots: optionalDependencies: '@pkgjs/parseargs': 0.11.0 - jake@10.8.5: + jake@10.9.2: dependencies: - async: 3.2.4 + async: 3.2.6 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 @@ -21401,6 +21488,8 @@ snapshots: dependencies: argparse: 2.0.1 + jsbn@1.1.0: {} + jsc-android@250231.0.0: {} jsc-safe-url@0.2.4: {} @@ -21475,7 +21564,7 @@ snapshots: form-data: 4.0.0 html-encoding-sniffer: 4.0.0 http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.5 + https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.13 parse5: 7.1.2 @@ -21525,7 +21614,7 @@ snapshots: json5@1.0.2: dependencies: - minimist: 1.2.6 + minimist: 1.2.8 json5@2.2.3: {} @@ -21725,7 +21814,7 @@ snapshots: karma-mocha@2.0.1: dependencies: - minimist: 1.2.6 + minimist: 1.2.8 karma-sourcemap-loader@0.4.0: dependencies: @@ -21802,13 +21891,13 @@ snapshots: dependencies: readable-stream: 2.3.8 - lerna@8.1.9(babel-plugin-macros@3.1.0)(encoding@0.1.13): + lerna@8.1.8(babel-plugin-macros@3.1.0)(encoding@0.1.13): dependencies: - '@lerna/create': 8.1.9(babel-plugin-macros@3.1.0)(encoding@0.1.13)(typescript@5.7.3) + '@lerna/create': 8.1.8(babel-plugin-macros@3.1.0)(encoding@0.1.13)(typescript@5.7.3) '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 '@npmcli/run-script': 8.1.0 - '@nx/devkit': 17.2.8(nx@20.4.0) + '@nx/devkit': 19.8.14(nx@19.8.14) '@octokit/plugin-enterprise-rest': 6.0.1 '@octokit/rest': 19.0.11(encoding@0.1.13) aproba: 2.0.0 @@ -21822,7 +21911,7 @@ snapshots: conventional-changelog-angular: 7.0.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 9.0.0(typescript@5.7.3) + cosmiconfig: 8.3.6(typescript@5.7.3) dedent: 1.5.3(babel-plugin-macros@3.1.0) envinfo: 7.13.0 execa: 5.0.0 @@ -21837,7 +21926,7 @@ snapshots: import-local: 3.1.0 ini: 1.3.8 init-package-json: 6.0.3 - inquirer: 8.2.4 + inquirer: 8.2.6 is-ci: 3.0.1 is-stream: 2.0.0 jest-diff: 29.7.0 @@ -21853,7 +21942,7 @@ snapshots: npm-package-arg: 11.0.2 npm-packlist: 8.0.2 npm-registry-fetch: 17.1.0 - nx: 20.4.0 + nx: 19.8.14 p-map: 4.0.0 p-map-series: 2.1.0 p-pipe: 3.1.0 @@ -21910,7 +21999,7 @@ snapshots: libnpmpublish@9.0.9: dependencies: - ci-info: 4.0.0 + ci-info: 4.1.0 normalize-package-data: 6.0.2 npm-package-arg: 11.0.2 npm-registry-fetch: 17.1.0 @@ -22136,12 +22225,12 @@ snapshots: make-fetch-happen@13.0.1: dependencies: - '@npmcli/agent': 2.2.0 - cacache: 18.0.3 + '@npmcli/agent': 2.2.2 + cacache: 18.0.4 http-cache-semantics: 4.1.1 is-lambda: 1.0.1 minipass: 7.1.2 - minipass-fetch: 3.0.3 + minipass-fetch: 3.0.5 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 negotiator: 0.6.4 @@ -22293,9 +22382,9 @@ snapshots: meow@8.1.2: dependencies: - '@types/minimist': 1.2.2 + '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 - decamelize-keys: 1.1.0 + decamelize-keys: 1.1.1 hard-rejection: 2.1.0 minimist-options: 4.1.0 normalize-package-data: 3.0.3 @@ -22750,15 +22839,15 @@ snapshots: is-plain-obj: 1.1.0 kind-of: 6.0.3 - minimist@1.2.6: {} + minimist@1.2.8: {} minipass-collect@2.0.1: dependencies: minipass: 7.1.2 - minipass-fetch@3.0.3: + minipass-fetch@3.0.5: dependencies: - minipass: 5.0.0 + minipass: 7.1.2 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: @@ -22766,17 +22855,17 @@ snapshots: minipass-flush@1.0.5: dependencies: - minipass: 3.3.4 + minipass: 3.3.6 minipass-pipeline@1.2.4: dependencies: - minipass: 3.3.4 + minipass: 3.3.6 minipass-sized@1.0.3: dependencies: - minipass: 3.3.4 + minipass: 3.3.6 - minipass@3.3.4: + minipass@3.3.6: dependencies: yallist: 4.0.0 @@ -22788,14 +22877,14 @@ snapshots: minizlib@2.1.2: dependencies: - minipass: 3.3.4 + minipass: 3.3.6 yallist: 4.0.0 mkdirp-classic@0.5.3: {} mkdirp@0.5.6: dependencies: - minimist: 1.2.6 + minimist: 1.2.8 mkdirp@1.0.4: {} @@ -22976,7 +23065,7 @@ snapshots: node-forge@1.3.1: {} - node-gyp@10.0.1: + node-gyp@10.3.1: dependencies: env-paths: 2.2.1 exponential-backoff: 3.1.1 @@ -22984,7 +23073,7 @@ snapshots: graceful-fs: 4.2.11 make-fetch-happen: 13.0.1 nopt: 7.2.1 - proc-log: 3.0.0 + proc-log: 4.2.0 semver: 7.7.1 tar: 6.2.1 which: 4.0.0 @@ -23021,7 +23110,7 @@ snapshots: process: 0.11.10 punycode: 1.4.1 querystring-es3: 0.2.1 - readable-stream: 3.6.0 + readable-stream: 3.6.2 stream-browserify: 3.0.0 stream-http: 3.2.0 string_decoder: 1.3.0 @@ -23047,7 +23136,7 @@ snapshots: normalize-package-data@3.0.3: dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.16.0 + is-core-module: 2.16.1 semver: 7.7.1 validate-npm-package-license: 3.0.4 @@ -23070,7 +23159,7 @@ snapshots: transitivePeerDependencies: - csstype - npm-bundled@3.0.0: + npm-bundled@3.0.1: dependencies: npm-normalize-package-bin: 3.0.1 @@ -23089,9 +23178,9 @@ snapshots: npm-packlist@8.0.2: dependencies: - ignore-walk: 6.0.4 + ignore-walk: 6.0.5 - npm-pick-manifest@9.0.1: + npm-pick-manifest@9.1.0: dependencies: npm-install-checks: 6.3.0 npm-normalize-package-bin: 3.0.1 @@ -23104,7 +23193,7 @@ snapshots: jsonparse: 1.3.1 make-fetch-happen: 13.0.1 minipass: 7.1.2 - minipass-fetch: 3.0.3 + minipass-fetch: 3.0.5 minizlib: 2.1.2 npm-package-arg: 11.0.2 proc-log: 4.2.0 @@ -23134,53 +23223,53 @@ snapshots: nwsapi@2.2.13: {} - nx@20.4.0: + nx@19.8.14: dependencies: '@napi-rs/wasm-runtime': 0.2.4 + '@nrwl/tao': 19.8.14 '@yarnpkg/lockfile': 1.1.0 - '@yarnpkg/parsers': 3.0.2 + '@yarnpkg/parsers': 3.0.0-rc.46 '@zkochan/js-yaml': 0.0.7 axios: 1.7.9(debug@4.4.0) chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.6.1 cliui: 8.0.1 - dotenv: 16.4.5 - dotenv-expand: 11.0.6 + dotenv: 16.4.7 + dotenv-expand: 11.0.7 enquirer: 2.3.6 figures: 3.2.0 flat: 5.0.2 front-matter: 4.0.2 - ignore: 5.3.1 + ignore: 5.3.2 jest-diff: 29.7.0 jsonc-parser: 3.2.0 lines-and-columns: 2.0.3 minimatch: 9.0.3 node-machine-id: 1.1.12 npm-run-path: 4.0.1 - open: 8.4.0 + open: 8.4.2 ora: 5.3.0 - resolve.exports: 2.0.3 semver: 7.7.1 string-width: 4.2.3 + strong-log-transformer: 2.1.0 tar-stream: 2.2.0 tmp: 0.2.3 tsconfig-paths: 4.2.0 tslib: 2.8.1 - yaml: 2.7.0 yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@nx/nx-darwin-arm64': 20.4.0 - '@nx/nx-darwin-x64': 20.4.0 - '@nx/nx-freebsd-x64': 20.4.0 - '@nx/nx-linux-arm-gnueabihf': 20.4.0 - '@nx/nx-linux-arm64-gnu': 20.4.0 - '@nx/nx-linux-arm64-musl': 20.4.0 - '@nx/nx-linux-x64-gnu': 20.4.0 - '@nx/nx-linux-x64-musl': 20.4.0 - '@nx/nx-win32-arm64-msvc': 20.4.0 - '@nx/nx-win32-x64-msvc': 20.4.0 + '@nx/nx-darwin-arm64': 19.8.14 + '@nx/nx-darwin-x64': 19.8.14 + '@nx/nx-freebsd-x64': 19.8.14 + '@nx/nx-linux-arm-gnueabihf': 19.8.14 + '@nx/nx-linux-arm64-gnu': 19.8.14 + '@nx/nx-linux-arm64-musl': 19.8.14 + '@nx/nx-linux-x64-gnu': 19.8.14 + '@nx/nx-linux-x64-musl': 19.8.14 + '@nx/nx-win32-arm64-msvc': 19.8.14 + '@nx/nx-win32-x64-msvc': 19.8.14 transitivePeerDependencies: - debug @@ -23316,7 +23405,7 @@ snapshots: is-docker: 2.2.1 is-wsl: 2.2.0 - open@8.4.0: + open@8.4.2: dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 @@ -23348,7 +23437,7 @@ snapshots: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.7.0 + cli-spinners: 2.9.2 is-interactive: 1.0.0 log-symbols: 4.1.0 strip-ansi: 6.0.1 @@ -23359,7 +23448,7 @@ snapshots: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.7.0 + cli-spinners: 2.9.2 is-interactive: 1.0.0 is-unicode-supported: 0.1.0 log-symbols: 4.1.0 @@ -23481,17 +23570,17 @@ snapshots: pacote@18.0.6: dependencies: - '@npmcli/git': 5.0.3 + '@npmcli/git': 5.0.8 '@npmcli/installed-package-contents': 2.1.0 '@npmcli/package-json': 5.2.0 - '@npmcli/promise-spawn': 7.0.0 + '@npmcli/promise-spawn': 7.0.2 '@npmcli/run-script': 8.1.0 - cacache: 18.0.3 - fs-minipass: 3.0.2 + cacache: 18.0.4 + fs-minipass: 3.0.3 minipass: 7.1.2 npm-package-arg: 11.0.2 npm-packlist: 8.0.2 - npm-pick-manifest: 9.0.1 + npm-pick-manifest: 9.1.0 npm-registry-fetch: 17.1.0 proc-log: 4.2.0 promise-retry: 2.0.1 @@ -23878,7 +23967,7 @@ snapshots: dependencies: execa: 5.1.1 find-up: 5.0.0 - ignore: 5.3.1 + ignore: 5.3.2 mri: 1.2.0 picocolors: 1.1.1 picomatch: 3.0.1 @@ -23888,12 +23977,10 @@ snapshots: prettyjson@1.2.5: dependencies: colors: 1.4.0 - minimist: 1.2.6 + minimist: 1.2.8 prismjs@1.29.0: {} - proc-log@3.0.0: {} - proc-log@4.2.0: {} process-nextick-args@2.0.1: {} @@ -23908,7 +23995,7 @@ snapshots: promise-all-reject-late@1.0.1: {} - promise-call-limit@3.0.1: {} + promise-call-limit@3.0.2: {} promise-inflight@1.0.1: {} @@ -23926,9 +24013,9 @@ snapshots: kleur: 3.0.3 sisteransi: 1.0.5 - promzard@1.0.0: + promzard@1.0.2: dependencies: - read: 2.1.0 + read: 3.0.1 prop-types@15.8.1: dependencies: @@ -24041,7 +24128,7 @@ snapshots: dependencies: deep-extend: 0.6.0 ini: 1.3.8 - minimist: 1.2.6 + minimist: 1.2.8 strip-json-comments: 2.0.1 react-devtools-core@5.3.2: @@ -24381,15 +24468,11 @@ snapshots: read-pkg@5.2.0: dependencies: - '@types/normalize-package-data': 2.4.1 + '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 - read@2.1.0: - dependencies: - mute-stream: 1.0.0 - read@3.0.1: dependencies: mute-stream: 1.0.0 @@ -24411,7 +24494,7 @@ snapshots: string_decoder: 1.1.1 util-deprecate: 1.0.2 - readable-stream@3.6.0: + readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 @@ -24590,17 +24673,15 @@ snapshots: resolve-pkg-maps@1.0.0: {} - resolve.exports@2.0.3: {} - resolve@1.22.10: dependencies: - is-core-module: 2.16.0 + is-core-module: 2.16.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 resolve@2.0.0-next.5: dependencies: - is-core-module: 2.16.0 + is-core-module: 2.16.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 @@ -24772,10 +24853,6 @@ snapshots: semver@6.3.1: {} - semver@7.5.3: - dependencies: - lru-cache: 6.0.0 - semver@7.7.1: {} send@0.19.0: @@ -24950,7 +25027,7 @@ snapshots: shx@0.3.4: dependencies: - minimist: 1.2.6 + minimist: 1.2.8 shelljs: 0.8.5 side-channel-list@1.0.0: @@ -24991,7 +25068,7 @@ snapshots: dependencies: '@sigstore/bundle': 2.3.2 '@sigstore/core': 1.1.0 - '@sigstore/protobuf-specs': 0.3.2 + '@sigstore/protobuf-specs': 0.3.3 '@sigstore/sign': 2.3.2 '@sigstore/tuf': 2.3.4 '@sigstore/verify': 1.2.1 @@ -25077,17 +25154,17 @@ snapshots: - supports-color - utf-8-validate - socks-proxy-agent@8.0.2: + socks-proxy-agent@8.0.5: dependencies: - agent-base: 7.1.0 + agent-base: 7.1.3 debug: 4.4.0(supports-color@8.1.1) - socks: 2.7.1 + socks: 2.8.3 transitivePeerDependencies: - supports-color - socks@2.7.1: + socks@2.8.3: dependencies: - ip: 2.0.1 + ip-address: 9.0.5 smart-buffer: 4.2.0 sort-keys@2.0.0: @@ -25116,23 +25193,23 @@ snapshots: signal-exit: 3.0.7 which: 2.0.2 - spdx-correct@3.1.1: + spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.12 + spdx-license-ids: 3.0.21 - spdx-exceptions@2.3.0: {} + spdx-exceptions@2.5.0: {} spdx-expression-parse@3.0.1: dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.12 + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.21 - spdx-license-ids@3.0.12: {} + spdx-license-ids@3.0.21: {} split2@3.2.2: dependencies: - readable-stream: 3.6.0 + readable-stream: 3.6.2 split@0.3.3: dependencies: @@ -25144,6 +25221,8 @@ snapshots: sprintf-js@1.0.3: {} + sprintf-js@1.1.3: {} + ssri@10.0.6: dependencies: minipass: 7.1.2 @@ -25169,7 +25248,7 @@ snapshots: stream-browserify@3.0.0: dependencies: inherits: 2.0.4 - readable-stream: 3.6.0 + readable-stream: 3.6.2 stream-combiner@0.0.4: dependencies: @@ -25179,7 +25258,7 @@ snapshots: dependencies: builtin-status-codes: 3.0.0 inherits: 2.0.4 - readable-stream: 3.6.0 + readable-stream: 3.6.2 xtend: 4.0.2 stream-shift@1.0.1: {} @@ -25208,7 +25287,7 @@ snapshots: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 string.prototype.includes@2.0.1: dependencies: @@ -25278,9 +25357,9 @@ snapshots: dependencies: ansi-regex: 5.0.1 - strip-ansi@7.0.1: + strip-ansi@7.1.0: dependencies: - ansi-regex: 6.0.1 + ansi-regex: 6.1.0 strip-bom@3.0.0: {} @@ -25305,7 +25384,7 @@ snapshots: strong-log-transformer@2.1.0: dependencies: duplexer: 0.1.2 - minimist: 1.2.6 + minimist: 1.2.8 through: 2.3.8 styled-components@6.1.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0): @@ -25525,7 +25604,7 @@ snapshots: end-of-stream: 1.4.4 fs-constants: 1.0.0 inherits: 2.0.4 - readable-stream: 3.6.0 + readable-stream: 3.6.2 tar@6.2.1: dependencies: @@ -25712,13 +25791,13 @@ snapshots: dependencies: '@types/json5': 0.0.29 json5: 1.0.2 - minimist: 1.2.6 + minimist: 1.2.8 strip-bom: 3.0.0 tsconfig-paths@4.2.0: dependencies: json5: 2.2.3 - minimist: 1.2.6 + minimist: 1.2.8 strip-bom: 3.0.0 tslib@2.4.0: {} @@ -25832,7 +25911,7 @@ snapshots: ufo@1.5.4: {} - uglify-js@3.17.4: + uglify-js@3.19.3: optional: true unbox-primitive@1.1.0: @@ -25896,7 +25975,7 @@ snapshots: unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - universal-user-agent@6.0.0: {} + universal-user-agent@6.0.1: {} universal-user-agent@7.0.2: {} @@ -26013,7 +26092,7 @@ snapshots: validate-npm-package-license@3.0.4: dependencies: - spdx-correct: 3.1.1 + spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 validate-npm-package-name@5.0.1: {} @@ -26186,7 +26265,7 @@ snapshots: '@webpack-cli/serve': 3.0.1(webpack-cli@6.0.1(webpack-bundle-analyzer@4.10.2)(webpack@5.97.1))(webpack@5.97.1) colorette: 2.0.20 commander: 12.1.0 - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 envinfo: 7.14.0 fastest-levenshtein: 1.0.16 import-local: 3.1.0 @@ -26356,7 +26435,7 @@ snapshots: dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 wrappy@1.0.2: {} @@ -26512,13 +26591,13 @@ snapshots: dependencies: archiver-utils: 2.1.0 compress-commons: 2.1.1 - readable-stream: 3.6.0 + readable-stream: 3.6.2 zip-stream@4.1.0: dependencies: archiver-utils: 2.1.0 compress-commons: 4.1.1 - readable-stream: 3.6.0 + readable-stream: 3.6.2 zod-validation-error@3.3.1(zod@3.23.8): dependencies: diff --git a/scripts/build.mjs b/scripts/build.mjs index 56e8efbd87ab73..02c52df809844d 100644 --- a/scripts/build.mjs +++ b/scripts/build.mjs @@ -4,6 +4,7 @@ import path from 'path'; import { promisify } from 'util'; import yargs from 'yargs'; import * as fs from 'fs/promises'; +import { cjsCopy } from './copyFilesUtils.mjs'; import { getVersionEnvVariables, getWorkspaceRoot } from './utils.mjs'; const exec = promisify(childProcess.exec); @@ -18,7 +19,7 @@ const validBundles = [ ]; async function run(argv) { - const { bundle, largeFiles, outDir: relativeOutDir, verbose } = argv; + const { bundle, largeFiles, outDir: outDirBase, verbose } = argv; if (!validBundles.includes(bundle)) { throw new TypeError( @@ -36,14 +37,6 @@ async function run(argv) { ); } - const env = { - NODE_ENV: 'production', - BABEL_ENV: bundle, - MUI_BUILD_VERBOSE: verbose, - MUI_BABEL_RUNTIME_VERSION: babelRuntimeVersion, - ...(await getVersionEnvVariables()), - }; - const babelConfigPath = path.resolve(getWorkspaceRoot(), 'babel.config.js'); const srcDir = path.resolve('./src'); const extensions = ['.js', '.ts', '.tsx']; @@ -54,31 +47,28 @@ async function run(argv) { '**/*.spec.ts', '**/*.spec.tsx', '**/*.d.ts', + '**/*.test/*.*', + '**/test-cases/*.*', ]; - const topLevelNonIndexFiles = glob - .sync(`*{${extensions.join(',')}}`, { cwd: srcDir, ignore }) - .filter((file) => { - return path.basename(file, path.extname(file)) !== 'index'; - }); - const topLevelPathImportsCanBePackages = topLevelNonIndexFiles.length === 0; - - const outDir = path.resolve( - relativeOutDir, - // We generally support top level path imports e.g. - // 1. `import ArrowDownIcon from '@mui/icons-material/ArrowDown'`. - // 2. `import Typography from '@mui/material/Typography'`. - // The first case resolves to a file while the second case resolves to a package first i.e. a package.json - // This means that only in the second case the bundler can decide whether it uses ES modules or CommonJS modules. - // Different extensions are not viable yet since they require additional bundler config for users and additional transpilation steps in our repo. - // - // TODO v6: Switch to `exports` field. - { - node: topLevelPathImportsCanBePackages ? './node' : './', - modern: './modern', - stable: topLevelPathImportsCanBePackages ? './' : './esm', - }[bundle], - ); + const outFileExtension = '.js'; + + const relativeOutDir = { + node: './', + modern: './modern', + stable: './esm', + }[bundle]; + + const outDir = path.resolve(outDirBase, relativeOutDir); + + const env = { + NODE_ENV: 'production', + BABEL_ENV: bundle, + MUI_BUILD_VERBOSE: verbose, + MUI_BABEL_RUNTIME_VERSION: babelRuntimeVersion, + MUI_OUT_FILE_EXTENSION: outFileExtension, + ...(await getVersionEnvVariables()), + }; const babelArgs = [ '--config-file', @@ -92,6 +82,11 @@ async function run(argv) { // Need to put these patterns in quotes otherwise they might be evaluated by the used terminal. `"${ignore.join('","')}"`, ]; + + if (outFileExtension !== '.js') { + babelArgs.push('--out-file-extension', outFileExtension); + } + if (largeFiles) { babelArgs.push('--compact false'); } @@ -108,6 +103,20 @@ async function run(argv) { throw new Error(`'${command}' failed with \n${stderr}`); } + // cjs for reexporting from commons only modules. + // If we need to rely more on this we can think about setting up a separate commonjs => commonjs build for .cjs files to .cjs + // `--extensions-.cjs --out-file-extension .cjs` + await cjsCopy({ from: srcDir, to: outDir }); + + const isEsm = bundle === 'modern' || bundle === 'stable'; + if (isEsm && !argv.skipEsmPkg) { + const rootBundlePackageJson = path.join(outDir, 'package.json'); + await fs.writeFile( + rootBundlePackageJson, + JSON.stringify({ type: 'module', sideEffects: packageJson.sideEffects }), + ); + } + if (verbose) { // eslint-disable-next-line no-console console.log(stdout); @@ -129,6 +138,12 @@ yargs(process.argv.slice(2)) default: false, describe: 'Set to `true` if you know you are transpiling large files.', }) + .option('skipEsmPkg', { + type: 'boolean', + default: false, + describe: + "Set to `true` if you don't want to generate a package.json file in the /esm folder.", + }) .option('out-dir', { default: './build', type: 'string' }) .option('verbose', { type: 'boolean' }); }, diff --git a/scripts/buildTypes.mjs b/scripts/buildTypes.mjs index 0cb6dd8afce7dd..c8e292b34f7daf 100644 --- a/scripts/buildTypes.mjs +++ b/scripts/buildTypes.mjs @@ -1,3 +1,5 @@ +// Keeping this around for backwards compatibility for X. TODO: remove once X is on an alpha that implements ESM layout. + import chalk from 'chalk'; import glob from 'fast-glob'; import fse from 'fs-extra'; diff --git a/scripts/buildTypes.mts b/scripts/buildTypes.mts new file mode 100644 index 00000000000000..64f81702451e17 --- /dev/null +++ b/scripts/buildTypes.mts @@ -0,0 +1,97 @@ +import glob from 'fast-glob'; +import * as fs from 'fs/promises'; +import path from 'path'; +import yargs from 'yargs'; +import { $ } from 'execa'; +import * as babel from '@babel/core'; +import { typescriptCopy } from './copyFilesUtils.mjs'; + +const $$ = $({ stdio: 'inherit' }); + +async function emitDeclarations(tsconfig: string, outDir: string) { + console.log(`Building types for ${path.resolve(tsconfig)}`); + await $$`tsc -p ${tsconfig} --outDir ${outDir} --declaration --emitDeclarationOnly`; +} + +async function addImportExtensions(folder: string) { + console.log(`Adding import extensions`); + const dtsFiles = await glob('**/*.d.ts', { absolute: true, cwd: folder }); + if (dtsFiles.length === 0) { + throw new Error(`Unable to find declaration files in '${folder}'`); + } + + await Promise.all( + dtsFiles.map(async (dtsFile) => { + const result = await babel.transformFileAsync(dtsFile, { + configFile: false, + plugins: [ + ['@babel/plugin-syntax-typescript', { dts: true }], + ['@mui/internal-babel-plugin-resolve-imports'], + ], + }); + + if (typeof result?.code === 'string') { + await fs.writeFile(dtsFile, result.code); + } else { + console.error('failed to transform', dtsFile); + } + }), + ); +} + +async function copyDeclarations(sourceDirectory: string, destinationDirectory: string) { + const fullSourceDirectory = path.resolve(sourceDirectory); + const fullDestinationDirectory = path.resolve(destinationDirectory); + + console.log(`Copying declarations from ${fullSourceDirectory} to ${fullDestinationDirectory}`); + + await fs.cp(fullSourceDirectory, fullDestinationDirectory, { + recursive: true, + filter: (src) => { + // include directories and .d.ts files + return !src.includes('.') || src.endsWith('.d.ts'); + }, + }); +} + +async function main() { + const packageRoot = process.cwd(); + + const tsconfigPath = path.join(packageRoot, 'tsconfig.build.json'); + const tsconfigExists = await fs.access(tsconfigPath).then( + () => true, + () => false, + ); + if (!tsconfigExists) { + throw new Error( + 'Unable to find a tsconfig to build this project. ' + + `The package root needs to contain a 'tsconfig.build.json'. ` + + `The package root is '${packageRoot}'`, + ); + } + + const srcPath = path.join(packageRoot, 'src'); + const buildFolder = path.join(packageRoot, 'build'); + const esmFolder = path.join(buildFolder, 'esm'); + const modernFolder = path.join(buildFolder, 'modern'); + + await typescriptCopy({ from: srcPath, to: esmFolder }); + await emitDeclarations(tsconfigPath, esmFolder); + + await addImportExtensions(esmFolder); + + await copyDeclarations(esmFolder, buildFolder); + await copyDeclarations(esmFolder, modernFolder); +} + +yargs(process.argv.slice(2)) + .command({ + command: '$0', + description: + 'Builds a project with a fix for https://github.com/microsoft/TypeScript/issues/39117', + handler: main, + }) + .help() + .strict(true) + .version(false) + .parse(); diff --git a/scripts/copyFiles.mjs b/scripts/copyFiles.mjs index 8ebf82814563b7..85485d8fe387cb 100644 --- a/scripts/copyFiles.mjs +++ b/scripts/copyFiles.mjs @@ -1,16 +1,9 @@ /* eslint-disable no-console */ import path from 'path'; -import { - createModulePackages, - createPackageFile, - includeFileInBuild, - prepend, - typescriptCopy, -} from './copyFilesUtils.mjs'; +import { createPackageFile, includeFileInBuild, prepend } from './copyFilesUtils.mjs'; const packagePath = process.cwd(); const buildPath = path.join(packagePath, './build'); -const srcPath = path.join(packagePath, './src'); async function addLicense(packageData) { const license = `/** @@ -22,7 +15,7 @@ async function addLicense(packageData) { */ `; await Promise.all( - ['./index.js', './modern/index.js', './node/index.js'].map(async (file) => { + ['./index.js', './esm/index.js', './modern/index.js', './node/index.js'].map(async (file) => { try { await prepend(path.resolve(buildPath, file), license); } catch (err) { @@ -39,10 +32,7 @@ async function addLicense(packageData) { async function run() { const extraFiles = process.argv.slice(2); try { - // TypeScript - await typescriptCopy({ from: srcPath, to: buildPath }); - - const packageData = await createPackageFile(); + const packageData = await createPackageFile(true); await Promise.all( ['./README.md', '../../CHANGELOG.md', '../../LICENSE', ...extraFiles].map(async (file) => { @@ -52,8 +42,6 @@ async function run() { ); await addLicense(packageData); - - await createModulePackages({ from: srcPath, to: buildPath }); } catch (err) { console.error(err); process.exit(1); diff --git a/scripts/copyFilesUtils.mjs b/scripts/copyFilesUtils.mjs index 40b05542614f9e..705df59807b08e 100644 --- a/scripts/copyFilesUtils.mjs +++ b/scripts/copyFilesUtils.mjs @@ -28,6 +28,7 @@ export async function includeFileInBuild(file, target = path.basename(file)) { * * It also tests that an this import can be used in TypeScript by checking * if an index.d.ts is present at that path. + * TODO: kept around for backwards compatibility, remove once X is on ESM-exports package layout * @param {object} param0 * @param {string} param0.from * @param {string} param0.to @@ -91,26 +92,118 @@ export async function typescriptCopy({ from, to }) { return Promise.all(cmds); } -export async function createPackageFile() { +export async function cjsCopy({ from, to }) { + if (!(await fse.pathExists(to))) { + console.warn(`path ${to} does not exists`); + return []; + } + + const files = await glob('**/*.cjs', { cwd: from }); + const cmds = files.map((file) => fse.copy(path.resolve(from, file), path.resolve(to, file))); + return Promise.all(cmds); +} + +const srcCondition = 'mui-src'; +const modernCondition = 'mui-modern'; +const polyfillLegacyModern = false; +const legacyModernPrefix = './modern'; + +function createExportFor(exportName, conditions) { + if (typeof conditions === 'object') { + const { [srcCondition]: src, ...rest } = conditions; + if (typeof src === 'string') { + if (!/\.tsx?$/.test(src)) { + throw new Error(`Invalid src condition for ${exportName}: ${src}`); + } + const baseName = src.replace(/^\.\/src\//, '').replace(/\.tsx?$/, ''); + return { + [exportName]: { + require: { + types: `./${baseName}.d.ts`, + default: `./${baseName}.js`, + }, + import: { + types: `./esm/${baseName}.d.ts`, + default: `./esm/${baseName}.js`, + }, + [modernCondition]: { + types: `./modern/${baseName}.d.ts`, + default: `./modern/${baseName}.js`, + }, + ...rest, + }, + }; + } + } + + if (typeof conditions === 'string' && /\.tsx?$/.test(conditions)) { + return createExportFor(exportName, { [srcCondition]: conditions }); + } + + return { + [exportName]: conditions, + }; +} + +// TODO: remove useEsmExports paramater once X is on the ESM-exports package layout (default to true) +export async function createPackageFile(useEsmExports = false) { const packageData = await fse.readFile(path.resolve(packagePath, './package.json'), 'utf8'); const { nyc, scripts, devDependencies, workspaces, ...packageDataOther } = JSON.parse(packageData); - const newPackageData = { - ...packageDataOther, - private: false, - ...(packageDataOther.main - ? { - main: fse.existsSync(path.resolve(buildPath, './node/index.js')) - ? './node/index.js' - : './index.js', - module: fse.existsSync(path.resolve(buildPath, './esm/index.js')) - ? './esm/index.js' - : './index.js', - } - : {}), + const packageExports = { + ...createExportFor('.', { [srcCondition]: './src/index.ts' }), + ...createExportFor('./*', { [srcCondition]: './src/*/index.ts' }), }; + if (packageDataOther.exports) { + for (const [exportName, conditions] of Object.entries(packageDataOther.exports)) { + if (conditions) { + Object.assign(packageExports, createExportFor(exportName, conditions)); + } else { + delete packageExports[exportName]; + } + } + } + + if (polyfillLegacyModern) { + const exportedNames = new Set(Object.keys(packageExports)); + for (const exportedName of exportedNames) { + const modernName = exportedName.replace(/^\./, legacyModernPrefix); + const modernExport = packageExports[exportedName][modernCondition] ?? null; + if (modernExport && !exportedNames.has(modernName)) { + packageExports[modernName] = modernExport; + } + } + } + + const newPackageData = useEsmExports + ? { + ...packageDataOther, + private: false, + ...(packageDataOther.main + ? { + main: './index.js', + module: './esm/index.js', + } + : {}), + exports: packageExports, + } + : { + ...packageDataOther, + private: false, + ...(packageDataOther.main + ? { + main: fse.existsSync(path.resolve(buildPath, './node/index.js')) + ? './node/index.js' + : './index.js', + module: fse.existsSync(path.resolve(buildPath, './esm/index.js')) + ? './esm/index.js' + : './index.js', + } + : {}), + }; + const typeDefinitionsFilePath = path.resolve(buildPath, './index.d.ts'); if (await fse.pathExists(typeDefinitionsFilePath)) { newPackageData.types = './index.d.ts'; diff --git a/scripts/sizeSnapshot/webpack.config.js b/scripts/sizeSnapshot/webpack.config.js index e366985ba7d5db..c8fa049bd5fe24 100644 --- a/scripts/sizeSnapshot/webpack.config.js +++ b/scripts/sizeSnapshot/webpack.config.js @@ -177,11 +177,6 @@ function createWebpackConfig(entry, environment) { }, path: path.join(__dirname, 'build'), }, - resolve: { - alias: { - '@mui/utils': '@mui/utils/esm', - }, - }, plugins: [ new CompressionPlugin(), new BundleAnalyzerPlugin({ diff --git a/tsconfig.json b/tsconfig.json index a3878777bb17cb..dc74ceeb41d51b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -42,8 +42,8 @@ "@mui/material-nextjs/*": ["./packages/mui-material-nextjs/src/*"], "@mui/joy": ["./packages/mui-joy/src"], "@mui/joy/*": ["./packages/mui-joy/src/*"], - "@mui/icons-material": ["./packages/mui-icons-material/lib/esm/index.js"], - "@mui/icons-material/*": ["./packages/mui-icons-material/src/icon.d.ts"], + "@mui/icons-material": ["./packages/mui-icons-material/lib/esm"], + "@mui/icons-material/*": ["./packages/mui-icons-material/lib/esm/icon"], "@mui/internal-docs-utils": ["./packages-internal/docs-utils/src"], "@mui/internal-scripts/typescript-to-proptypes": [ "./packages-internal/scripts/typescript-to-proptypes/src"