|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250 |
- # Material Icons
-
- > materialdesignicons.com
-
- | | Name
- :-: | :----------:
- <img src="https://unpkg.com/@icons/material/svg/access-point.svg" width="24" height="24"> | `AccessPointIcon`
- <img src="https://unpkg.com/@icons/material/svg/access-point-network.svg" width="24" height="24"> | `AccessPointNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-alert.svg" width="24" height="24"> | `AccountAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-box.svg" width="24" height="24"> | `AccountBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-box-outline.svg" width="24" height="24"> | `AccountBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-card-details.svg" width="24" height="24"> | `AccountCardDetailsIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-check.svg" width="24" height="24"> | `AccountCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-circle.svg" width="24" height="24"> | `AccountCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-convert.svg" width="24" height="24"> | `AccountConvertIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-edit.svg" width="24" height="24"> | `AccountEditIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-group.svg" width="24" height="24"> | `AccountGroupIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-heart.svg" width="24" height="24"> | `AccountHeartIcon`
- <img src="https://unpkg.com/@icons/material/svg/account.svg" width="24" height="24"> | `AccountIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-key.svg" width="24" height="24"> | `AccountKeyIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-location.svg" width="24" height="24"> | `AccountLocationIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-minus.svg" width="24" height="24"> | `AccountMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-multiple.svg" width="24" height="24"> | `AccountMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-multiple-minus.svg" width="24" height="24"> | `AccountMultipleMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-multiple-outline.svg" width="24" height="24"> | `AccountMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-multiple-plus.svg" width="24" height="24"> | `AccountMultiplePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-multiple-plus-outline.svg" width="24" height="24"> | `AccountMultiplePlusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-network.svg" width="24" height="24"> | `AccountNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-off.svg" width="24" height="24"> | `AccountOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-outline.svg" width="24" height="24"> | `AccountOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-plus.svg" width="24" height="24"> | `AccountPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-plus-outline.svg" width="24" height="24"> | `AccountPlusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-remove.svg" width="24" height="24"> | `AccountRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-search.svg" width="24" height="24"> | `AccountSearchIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-settings.svg" width="24" height="24"> | `AccountSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-settings-variant.svg" width="24" height="24"> | `AccountSettingsVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-star.svg" width="24" height="24"> | `AccountStarIcon`
- <img src="https://unpkg.com/@icons/material/svg/account-switch.svg" width="24" height="24"> | `AccountSwitchIcon`
- <img src="https://unpkg.com/@icons/material/svg/accusoft.svg" width="24" height="24"> | `AccusoftIcon`
- <img src="https://unpkg.com/@icons/material/svg/adjust.svg" width="24" height="24"> | `AdjustIcon`
- <img src="https://unpkg.com/@icons/material/svg/air-conditioner.svg" width="24" height="24"> | `AirConditionerIcon`
- <img src="https://unpkg.com/@icons/material/svg/airballoon.svg" width="24" height="24"> | `AirballoonIcon`
- <img src="https://unpkg.com/@icons/material/svg/airplane.svg" width="24" height="24"> | `AirplaneIcon`
- <img src="https://unpkg.com/@icons/material/svg/airplane-landing.svg" width="24" height="24"> | `AirplaneLandingIcon`
- <img src="https://unpkg.com/@icons/material/svg/airplane-off.svg" width="24" height="24"> | `AirplaneOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/airplane-takeoff.svg" width="24" height="24"> | `AirplaneTakeoffIcon`
- <img src="https://unpkg.com/@icons/material/svg/airplay.svg" width="24" height="24"> | `AirplayIcon`
- <img src="https://unpkg.com/@icons/material/svg/airport.svg" width="24" height="24"> | `AirportIcon`
- <img src="https://unpkg.com/@icons/material/svg/alarm-bell.svg" width="24" height="24"> | `AlarmBellIcon`
- <img src="https://unpkg.com/@icons/material/svg/alarm-check.svg" width="24" height="24"> | `AlarmCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/alarm.svg" width="24" height="24"> | `AlarmIcon`
- <img src="https://unpkg.com/@icons/material/svg/alarm-light.svg" width="24" height="24"> | `AlarmLightIcon`
- <img src="https://unpkg.com/@icons/material/svg/alarm-multiple.svg" width="24" height="24"> | `AlarmMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/alarm-off.svg" width="24" height="24"> | `AlarmOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/alarm-plus.svg" width="24" height="24"> | `AlarmPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/alarm-snooze.svg" width="24" height="24"> | `AlarmSnoozeIcon`
- <img src="https://unpkg.com/@icons/material/svg/album.svg" width="24" height="24"> | `AlbumIcon`
- <img src="https://unpkg.com/@icons/material/svg/alert-box.svg" width="24" height="24"> | `AlertBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/alert-circle.svg" width="24" height="24"> | `AlertCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/alert-circle-outline.svg" width="24" height="24"> | `AlertCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/alert-decagram.svg" width="24" height="24"> | `AlertDecagramIcon`
- <img src="https://unpkg.com/@icons/material/svg/alert.svg" width="24" height="24"> | `AlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/alert-octagon.svg" width="24" height="24"> | `AlertOctagonIcon`
- <img src="https://unpkg.com/@icons/material/svg/alert-octagram.svg" width="24" height="24"> | `AlertOctagramIcon`
- <img src="https://unpkg.com/@icons/material/svg/alert-outline.svg" width="24" height="24"> | `AlertOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/alien.svg" width="24" height="24"> | `AlienIcon`
- <img src="https://unpkg.com/@icons/material/svg/all-inclusive.svg" width="24" height="24"> | `AllInclusiveIcon`
- <img src="https://unpkg.com/@icons/material/svg/allo.svg" width="24" height="24"> | `AlloIcon`
- <img src="https://unpkg.com/@icons/material/svg/alpha.svg" width="24" height="24"> | `AlphaIcon`
- <img src="https://unpkg.com/@icons/material/svg/alphabetical.svg" width="24" height="24"> | `AlphabeticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/altimeter.svg" width="24" height="24"> | `AltimeterIcon`
- <img src="https://unpkg.com/@icons/material/svg/amazon-clouddrive.svg" width="24" height="24"> | `AmazonClouddriveIcon`
- <img src="https://unpkg.com/@icons/material/svg/amazon.svg" width="24" height="24"> | `AmazonIcon`
- <img src="https://unpkg.com/@icons/material/svg/ambulance.svg" width="24" height="24"> | `AmbulanceIcon`
- <img src="https://unpkg.com/@icons/material/svg/amplifier.svg" width="24" height="24"> | `AmplifierIcon`
- <img src="https://unpkg.com/@icons/material/svg/anchor.svg" width="24" height="24"> | `AnchorIcon`
- <img src="https://unpkg.com/@icons/material/svg/android-debug-bridge.svg" width="24" height="24"> | `AndroidDebugBridgeIcon`
- <img src="https://unpkg.com/@icons/material/svg/android-head.svg" width="24" height="24"> | `AndroidHeadIcon`
- <img src="https://unpkg.com/@icons/material/svg/android.svg" width="24" height="24"> | `AndroidIcon`
- <img src="https://unpkg.com/@icons/material/svg/android-studio.svg" width="24" height="24"> | `AndroidStudioIcon`
- <img src="https://unpkg.com/@icons/material/svg/angular.svg" width="24" height="24"> | `AngularIcon`
- <img src="https://unpkg.com/@icons/material/svg/angularjs.svg" width="24" height="24"> | `AngularjsIcon`
- <img src="https://unpkg.com/@icons/material/svg/animation.svg" width="24" height="24"> | `AnimationIcon`
- <img src="https://unpkg.com/@icons/material/svg/anvil.svg" width="24" height="24"> | `AnvilIcon`
- <img src="https://unpkg.com/@icons/material/svg/apple-finder.svg" width="24" height="24"> | `AppleFinderIcon`
- <img src="https://unpkg.com/@icons/material/svg/apple.svg" width="24" height="24"> | `AppleIcon`
- <img src="https://unpkg.com/@icons/material/svg/apple-ios.svg" width="24" height="24"> | `AppleIosIcon`
- <img src="https://unpkg.com/@icons/material/svg/apple-keyboard-caps.svg" width="24" height="24"> | `AppleKeyboardCapsIcon`
- <img src="https://unpkg.com/@icons/material/svg/apple-keyboard-command.svg" width="24" height="24"> | `AppleKeyboardCommandIcon`
- <img src="https://unpkg.com/@icons/material/svg/apple-keyboard-control.svg" width="24" height="24"> | `AppleKeyboardControlIcon`
- <img src="https://unpkg.com/@icons/material/svg/apple-keyboard-option.svg" width="24" height="24"> | `AppleKeyboardOptionIcon`
- <img src="https://unpkg.com/@icons/material/svg/apple-keyboard-shift.svg" width="24" height="24"> | `AppleKeyboardShiftIcon`
- <img src="https://unpkg.com/@icons/material/svg/apple-mobileme.svg" width="24" height="24"> | `AppleMobilemeIcon`
- <img src="https://unpkg.com/@icons/material/svg/apple-safari.svg" width="24" height="24"> | `AppleSafariIcon`
- <img src="https://unpkg.com/@icons/material/svg/application.svg" width="24" height="24"> | `ApplicationIcon`
- <img src="https://unpkg.com/@icons/material/svg/approval.svg" width="24" height="24"> | `ApprovalIcon`
- <img src="https://unpkg.com/@icons/material/svg/apps.svg" width="24" height="24"> | `AppsIcon`
- <img src="https://unpkg.com/@icons/material/svg/archive.svg" width="24" height="24"> | `ArchiveIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrange-bring-forward.svg" width="24" height="24"> | `ArrangeBringForwardIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrange-bring-to-front.svg" width="24" height="24"> | `ArrangeBringToFrontIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrange-send-backward.svg" width="24" height="24"> | `ArrangeSendBackwardIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrange-send-to-back.svg" width="24" height="24"> | `ArrangeSendToBackIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-all.svg" width="24" height="24"> | `ArrowAllIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-bottom-left.svg" width="24" height="24"> | `ArrowBottomLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-bottom-right.svg" width="24" height="24"> | `ArrowBottomRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-all.svg" width="24" height="24"> | `ArrowCollapseAllIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-down.svg" width="24" height="24"> | `ArrowCollapseDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-horizontal.svg" width="24" height="24"> | `ArrowCollapseHorizontalIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-collapse.svg" width="24" height="24"> | `ArrowCollapseIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-left.svg" width="24" height="24"> | `ArrowCollapseLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-right.svg" width="24" height="24"> | `ArrowCollapseRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-up.svg" width="24" height="24"> | `ArrowCollapseUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-vertical.svg" width="24" height="24"> | `ArrowCollapseVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold-box.svg" width="24" height="24"> | `ArrowDownBoldBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold-box-outline.svg" width="24" height="24"> | `ArrowDownBoldBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold-circle.svg" width="24" height="24"> | `ArrowDownBoldCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold-circle-outline.svg" width="24" height="24"> | `ArrowDownBoldCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold-hexagon-outline.svg" width="24" height="24"> | `ArrowDownBoldHexagonOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold.svg" width="24" height="24"> | `ArrowDownBoldIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down-box.svg" width="24" height="24"> | `ArrowDownBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down-drop-circle.svg" width="24" height="24"> | `ArrowDownDropCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down-drop-circle-outline.svg" width="24" height="24"> | `ArrowDownDropCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down.svg" width="24" height="24"> | `ArrowDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-down-thick.svg" width="24" height="24"> | `ArrowDownThickIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-expand-all.svg" width="24" height="24"> | `ArrowExpandAllIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-expand-down.svg" width="24" height="24"> | `ArrowExpandDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-expand-horizontal.svg" width="24" height="24"> | `ArrowExpandHorizontalIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-expand.svg" width="24" height="24"> | `ArrowExpandIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-expand-left.svg" width="24" height="24"> | `ArrowExpandLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-expand-right.svg" width="24" height="24"> | `ArrowExpandRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-expand-up.svg" width="24" height="24"> | `ArrowExpandUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-expand-vertical.svg" width="24" height="24"> | `ArrowExpandVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold-box.svg" width="24" height="24"> | `ArrowLeftBoldBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold-box-outline.svg" width="24" height="24"> | `ArrowLeftBoldBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold-circle.svg" width="24" height="24"> | `ArrowLeftBoldCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold-circle-outline.svg" width="24" height="24"> | `ArrowLeftBoldCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold-hexagon-outline.svg" width="24" height="24"> | `ArrowLeftBoldHexagonOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold.svg" width="24" height="24"> | `ArrowLeftBoldIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left-box.svg" width="24" height="24"> | `ArrowLeftBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left-drop-circle.svg" width="24" height="24"> | `ArrowLeftDropCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left-drop-circle-outline.svg" width="24" height="24"> | `ArrowLeftDropCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left.svg" width="24" height="24"> | `ArrowLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-left-thick.svg" width="24" height="24"> | `ArrowLeftThickIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold-box.svg" width="24" height="24"> | `ArrowRightBoldBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold-box-outline.svg" width="24" height="24"> | `ArrowRightBoldBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold-circle.svg" width="24" height="24"> | `ArrowRightBoldCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold-circle-outline.svg" width="24" height="24"> | `ArrowRightBoldCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold-hexagon-outline.svg" width="24" height="24"> | `ArrowRightBoldHexagonOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold.svg" width="24" height="24"> | `ArrowRightBoldIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right-box.svg" width="24" height="24"> | `ArrowRightBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right-drop-circle.svg" width="24" height="24"> | `ArrowRightDropCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right-drop-circle-outline.svg" width="24" height="24"> | `ArrowRightDropCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right.svg" width="24" height="24"> | `ArrowRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-right-thick.svg" width="24" height="24"> | `ArrowRightThickIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-top-left.svg" width="24" height="24"> | `ArrowTopLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-top-right.svg" width="24" height="24"> | `ArrowTopRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold-box.svg" width="24" height="24"> | `ArrowUpBoldBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold-box-outline.svg" width="24" height="24"> | `ArrowUpBoldBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold-circle.svg" width="24" height="24"> | `ArrowUpBoldCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold-circle-outline.svg" width="24" height="24"> | `ArrowUpBoldCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold-hexagon-outline.svg" width="24" height="24"> | `ArrowUpBoldHexagonOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold.svg" width="24" height="24"> | `ArrowUpBoldIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up-box.svg" width="24" height="24"> | `ArrowUpBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up-drop-circle.svg" width="24" height="24"> | `ArrowUpDropCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up-drop-circle-outline.svg" width="24" height="24"> | `ArrowUpDropCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up.svg" width="24" height="24"> | `ArrowUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/arrow-up-thick.svg" width="24" height="24"> | `ArrowUpThickIcon`
- <img src="https://unpkg.com/@icons/material/svg/artist.svg" width="24" height="24"> | `ArtistIcon`
- <img src="https://unpkg.com/@icons/material/svg/assistant.svg" width="24" height="24"> | `AssistantIcon`
- <img src="https://unpkg.com/@icons/material/svg/asterisk.svg" width="24" height="24"> | `AsteriskIcon`
- <img src="https://unpkg.com/@icons/material/svg/at.svg" width="24" height="24"> | `AtIcon`
- <img src="https://unpkg.com/@icons/material/svg/atlassian.svg" width="24" height="24"> | `AtlassianIcon`
- <img src="https://unpkg.com/@icons/material/svg/atom.svg" width="24" height="24"> | `AtomIcon`
- <img src="https://unpkg.com/@icons/material/svg/attachment.svg" width="24" height="24"> | `AttachmentIcon`
- <img src="https://unpkg.com/@icons/material/svg/audiobook.svg" width="24" height="24"> | `AudiobookIcon`
- <img src="https://unpkg.com/@icons/material/svg/augmented-reality.svg" width="24" height="24"> | `AugmentedRealityIcon`
- <img src="https://unpkg.com/@icons/material/svg/auto-fix.svg" width="24" height="24"> | `AutoFixIcon`
- <img src="https://unpkg.com/@icons/material/svg/auto-upload.svg" width="24" height="24"> | `AutoUploadIcon`
- <img src="https://unpkg.com/@icons/material/svg/autorenew.svg" width="24" height="24"> | `AutorenewIcon`
- <img src="https://unpkg.com/@icons/material/svg/av-timer.svg" width="24" height="24"> | `AvTimerIcon`
- <img src="https://unpkg.com/@icons/material/svg/azure.svg" width="24" height="24"> | `AzureIcon`
- <img src="https://unpkg.com/@icons/material/svg/baby-buggy.svg" width="24" height="24"> | `BabyBuggyIcon`
- <img src="https://unpkg.com/@icons/material/svg/baby.svg" width="24" height="24"> | `BabyIcon`
- <img src="https://unpkg.com/@icons/material/svg/backburger.svg" width="24" height="24"> | `BackburgerIcon`
- <img src="https://unpkg.com/@icons/material/svg/backspace.svg" width="24" height="24"> | `BackspaceIcon`
- <img src="https://unpkg.com/@icons/material/svg/backup-restore.svg" width="24" height="24"> | `BackupRestoreIcon`
- <img src="https://unpkg.com/@icons/material/svg/badminton.svg" width="24" height="24"> | `BadmintonIcon`
- <img src="https://unpkg.com/@icons/material/svg/bandcamp.svg" width="24" height="24"> | `BandcampIcon`
- <img src="https://unpkg.com/@icons/material/svg/bank.svg" width="24" height="24"> | `BankIcon`
- <img src="https://unpkg.com/@icons/material/svg/barcode.svg" width="24" height="24"> | `BarcodeIcon`
- <img src="https://unpkg.com/@icons/material/svg/barcode-scan.svg" width="24" height="24"> | `BarcodeScanIcon`
- <img src="https://unpkg.com/@icons/material/svg/barley.svg" width="24" height="24"> | `BarleyIcon`
- <img src="https://unpkg.com/@icons/material/svg/barrel.svg" width="24" height="24"> | `BarrelIcon`
- <img src="https://unpkg.com/@icons/material/svg/baseball-bat.svg" width="24" height="24"> | `BaseballBatIcon`
- <img src="https://unpkg.com/@icons/material/svg/baseball.svg" width="24" height="24"> | `BaseballIcon`
- <img src="https://unpkg.com/@icons/material/svg/basecamp.svg" width="24" height="24"> | `BasecampIcon`
- <img src="https://unpkg.com/@icons/material/svg/basket-fill.svg" width="24" height="24"> | `BasketFillIcon`
- <img src="https://unpkg.com/@icons/material/svg/basket.svg" width="24" height="24"> | `BasketIcon`
- <img src="https://unpkg.com/@icons/material/svg/basket-unfill.svg" width="24" height="24"> | `BasketUnfillIcon`
- <img src="https://unpkg.com/@icons/material/svg/basketball.svg" width="24" height="24"> | `BasketballIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-alert.svg" width="24" height="24"> | `BatteryAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging.svg" width="24" height="24"> | `BatteryChargingIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-outline.svg" width="24" height="24"> | `BatteryChargingOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-alert.svg" width="24" height="24"> | `BatteryChargingWirelessAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless.svg" width="24" height="24"> | `BatteryChargingWirelessIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-outline.svg" width="24" height="24"> | `BatteryChargingWirelessOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-10.svg" width="24" height="24"> | `BatteryChargingWireless_10Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-20.svg" width="24" height="24"> | `BatteryChargingWireless_20Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-30.svg" width="24" height="24"> | `BatteryChargingWireless_30Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-40.svg" width="24" height="24"> | `BatteryChargingWireless_40Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-50.svg" width="24" height="24"> | `BatteryChargingWireless_50Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-60.svg" width="24" height="24"> | `BatteryChargingWireless_60Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-70.svg" width="24" height="24"> | `BatteryChargingWireless_70Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-80.svg" width="24" height="24"> | `BatteryChargingWireless_80Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-90.svg" width="24" height="24"> | `BatteryChargingWireless_90Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-100.svg" width="24" height="24"> | `BatteryCharging_100Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-10.svg" width="24" height="24"> | `BatteryCharging_10Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-20.svg" width="24" height="24"> | `BatteryCharging_20Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-30.svg" width="24" height="24"> | `BatteryCharging_30Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-40.svg" width="24" height="24"> | `BatteryCharging_40Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-50.svg" width="24" height="24"> | `BatteryCharging_50Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-60.svg" width="24" height="24"> | `BatteryCharging_60Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-70.svg" width="24" height="24"> | `BatteryCharging_70Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-80.svg" width="24" height="24"> | `BatteryCharging_80Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-charging-90.svg" width="24" height="24"> | `BatteryCharging_90Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery.svg" width="24" height="24"> | `BatteryIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-minus.svg" width="24" height="24"> | `BatteryMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-negative.svg" width="24" height="24"> | `BatteryNegativeIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-outline.svg" width="24" height="24"> | `BatteryOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-plus.svg" width="24" height="24"> | `BatteryPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-positive.svg" width="24" height="24"> | `BatteryPositiveIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-unknown.svg" width="24" height="24"> | `BatteryUnknownIcon`
- <img src="https://unpkg.com/@icons/material/svg/battery-10.svg" width="24" height="24"> | `Battery_10Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-20.svg" width="24" height="24"> | `Battery_20Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-30.svg" width="24" height="24"> | `Battery_30Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-40.svg" width="24" height="24"> | `Battery_40Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-50.svg" width="24" height="24"> | `Battery_50Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-60.svg" width="24" height="24"> | `Battery_60Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-70.svg" width="24" height="24"> | `Battery_70Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-80.svg" width="24" height="24"> | `Battery_80Icon`
- <img src="https://unpkg.com/@icons/material/svg/battery-90.svg" width="24" height="24"> | `Battery_90Icon`
- <img src="https://unpkg.com/@icons/material/svg/beach.svg" width="24" height="24"> | `BeachIcon`
- <img src="https://unpkg.com/@icons/material/svg/beaker.svg" width="24" height="24"> | `BeakerIcon`
- <img src="https://unpkg.com/@icons/material/svg/beats.svg" width="24" height="24"> | `BeatsIcon`
- <img src="https://unpkg.com/@icons/material/svg/bed-empty.svg" width="24" height="24"> | `BedEmptyIcon`
- <img src="https://unpkg.com/@icons/material/svg/beer.svg" width="24" height="24"> | `BeerIcon`
- <img src="https://unpkg.com/@icons/material/svg/behance.svg" width="24" height="24"> | `BehanceIcon`
- <img src="https://unpkg.com/@icons/material/svg/bell.svg" width="24" height="24"> | `BellIcon`
- <img src="https://unpkg.com/@icons/material/svg/bell-off.svg" width="24" height="24"> | `BellOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/bell-outline.svg" width="24" height="24"> | `BellOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/bell-plus.svg" width="24" height="24"> | `BellPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/bell-ring.svg" width="24" height="24"> | `BellRingIcon`
- <img src="https://unpkg.com/@icons/material/svg/bell-ring-outline.svg" width="24" height="24"> | `BellRingOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/bell-sleep.svg" width="24" height="24"> | `BellSleepIcon`
- <img src="https://unpkg.com/@icons/material/svg/beta.svg" width="24" height="24"> | `BetaIcon`
- <img src="https://unpkg.com/@icons/material/svg/bible.svg" width="24" height="24"> | `BibleIcon`
- <img src="https://unpkg.com/@icons/material/svg/bike.svg" width="24" height="24"> | `BikeIcon`
- <img src="https://unpkg.com/@icons/material/svg/bing.svg" width="24" height="24"> | `BingIcon`
- <img src="https://unpkg.com/@icons/material/svg/binoculars.svg" width="24" height="24"> | `BinocularsIcon`
- <img src="https://unpkg.com/@icons/material/svg/bio.svg" width="24" height="24"> | `BioIcon`
- <img src="https://unpkg.com/@icons/material/svg/biohazard.svg" width="24" height="24"> | `BiohazardIcon`
- <img src="https://unpkg.com/@icons/material/svg/bitbucket.svg" width="24" height="24"> | `BitbucketIcon`
- <img src="https://unpkg.com/@icons/material/svg/bitcoin.svg" width="24" height="24"> | `BitcoinIcon`
- <img src="https://unpkg.com/@icons/material/svg/black-mesa.svg" width="24" height="24"> | `BlackMesaIcon`
- <img src="https://unpkg.com/@icons/material/svg/blackberry.svg" width="24" height="24"> | `BlackberryIcon`
- <img src="https://unpkg.com/@icons/material/svg/blender.svg" width="24" height="24"> | `BlenderIcon`
- <img src="https://unpkg.com/@icons/material/svg/blinds.svg" width="24" height="24"> | `BlindsIcon`
- <img src="https://unpkg.com/@icons/material/svg/block-helper.svg" width="24" height="24"> | `BlockHelperIcon`
- <img src="https://unpkg.com/@icons/material/svg/blogger.svg" width="24" height="24"> | `BloggerIcon`
- <img src="https://unpkg.com/@icons/material/svg/bluetooth-audio.svg" width="24" height="24"> | `BluetoothAudioIcon`
- <img src="https://unpkg.com/@icons/material/svg/bluetooth-connect.svg" width="24" height="24"> | `BluetoothConnectIcon`
- <img src="https://unpkg.com/@icons/material/svg/bluetooth.svg" width="24" height="24"> | `BluetoothIcon`
- <img src="https://unpkg.com/@icons/material/svg/bluetooth-off.svg" width="24" height="24"> | `BluetoothOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/bluetooth-settings.svg" width="24" height="24"> | `BluetoothSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/bluetooth-transfer.svg" width="24" height="24"> | `BluetoothTransferIcon`
- <img src="https://unpkg.com/@icons/material/svg/blur.svg" width="24" height="24"> | `BlurIcon`
- <img src="https://unpkg.com/@icons/material/svg/blur-linear.svg" width="24" height="24"> | `BlurLinearIcon`
- <img src="https://unpkg.com/@icons/material/svg/blur-off.svg" width="24" height="24"> | `BlurOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/blur-radial.svg" width="24" height="24"> | `BlurRadialIcon`
- <img src="https://unpkg.com/@icons/material/svg/bomb.svg" width="24" height="24"> | `BombIcon`
- <img src="https://unpkg.com/@icons/material/svg/bomb-off.svg" width="24" height="24"> | `BombOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/bone.svg" width="24" height="24"> | `BoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/book.svg" width="24" height="24"> | `BookIcon`
- <img src="https://unpkg.com/@icons/material/svg/book-minus.svg" width="24" height="24"> | `BookMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/book-multiple.svg" width="24" height="24"> | `BookMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/book-multiple-variant.svg" width="24" height="24"> | `BookMultipleVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/book-open.svg" width="24" height="24"> | `BookOpenIcon`
- <img src="https://unpkg.com/@icons/material/svg/book-open-page-variant.svg" width="24" height="24"> | `BookOpenPageVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/book-open-variant.svg" width="24" height="24"> | `BookOpenVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/book-plus.svg" width="24" height="24"> | `BookPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/book-secure.svg" width="24" height="24"> | `BookSecureIcon`
- <img src="https://unpkg.com/@icons/material/svg/book-unsecure.svg" width="24" height="24"> | `BookUnsecureIcon`
- <img src="https://unpkg.com/@icons/material/svg/book-variant.svg" width="24" height="24"> | `BookVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/bookmark-check.svg" width="24" height="24"> | `BookmarkCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/bookmark.svg" width="24" height="24"> | `BookmarkIcon`
- <img src="https://unpkg.com/@icons/material/svg/bookmark-music.svg" width="24" height="24"> | `BookmarkMusicIcon`
- <img src="https://unpkg.com/@icons/material/svg/bookmark-outline.svg" width="24" height="24"> | `BookmarkOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/bookmark-plus.svg" width="24" height="24"> | `BookmarkPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/bookmark-plus-outline.svg" width="24" height="24"> | `BookmarkPlusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/bookmark-remove.svg" width="24" height="24"> | `BookmarkRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/boombox.svg" width="24" height="24"> | `BoomboxIcon`
- <img src="https://unpkg.com/@icons/material/svg/bootstrap.svg" width="24" height="24"> | `BootstrapIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-all.svg" width="24" height="24"> | `BorderAllIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-all-variant.svg" width="24" height="24"> | `BorderAllVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-bottom.svg" width="24" height="24"> | `BorderBottomIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-bottom-variant.svg" width="24" height="24"> | `BorderBottomVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-color.svg" width="24" height="24"> | `BorderColorIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-horizontal.svg" width="24" height="24"> | `BorderHorizontalIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-inside.svg" width="24" height="24"> | `BorderInsideIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-left.svg" width="24" height="24"> | `BorderLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-left-variant.svg" width="24" height="24"> | `BorderLeftVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-none.svg" width="24" height="24"> | `BorderNoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-none-variant.svg" width="24" height="24"> | `BorderNoneVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-outside.svg" width="24" height="24"> | `BorderOutsideIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-right.svg" width="24" height="24"> | `BorderRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-right-variant.svg" width="24" height="24"> | `BorderRightVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-style.svg" width="24" height="24"> | `BorderStyleIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-top.svg" width="24" height="24"> | `BorderTopIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-top-variant.svg" width="24" height="24"> | `BorderTopVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/border-vertical.svg" width="24" height="24"> | `BorderVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/bottle-wine.svg" width="24" height="24"> | `BottleWineIcon`
- <img src="https://unpkg.com/@icons/material/svg/bow-tie.svg" width="24" height="24"> | `BowTieIcon`
- <img src="https://unpkg.com/@icons/material/svg/bowl.svg" width="24" height="24"> | `BowlIcon`
- <img src="https://unpkg.com/@icons/material/svg/bowling.svg" width="24" height="24"> | `BowlingIcon`
- <img src="https://unpkg.com/@icons/material/svg/box-cutter.svg" width="24" height="24"> | `BoxCutterIcon`
- <img src="https://unpkg.com/@icons/material/svg/box.svg" width="24" height="24"> | `BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/box-shadow.svg" width="24" height="24"> | `BoxShadowIcon`
- <img src="https://unpkg.com/@icons/material/svg/bridge.svg" width="24" height="24"> | `BridgeIcon`
- <img src="https://unpkg.com/@icons/material/svg/briefcase-check.svg" width="24" height="24"> | `BriefcaseCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/briefcase-download.svg" width="24" height="24"> | `BriefcaseDownloadIcon`
- <img src="https://unpkg.com/@icons/material/svg/briefcase.svg" width="24" height="24"> | `BriefcaseIcon`
- <img src="https://unpkg.com/@icons/material/svg/briefcase-outline.svg" width="24" height="24"> | `BriefcaseOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/briefcase-upload.svg" width="24" height="24"> | `BriefcaseUploadIcon`
- <img src="https://unpkg.com/@icons/material/svg/brightness-auto.svg" width="24" height="24"> | `BrightnessAutoIcon`
- <img src="https://unpkg.com/@icons/material/svg/brightness-1.svg" width="24" height="24"> | `Brightness_1Icon`
- <img src="https://unpkg.com/@icons/material/svg/brightness-2.svg" width="24" height="24"> | `Brightness_2Icon`
- <img src="https://unpkg.com/@icons/material/svg/brightness-3.svg" width="24" height="24"> | `Brightness_3Icon`
- <img src="https://unpkg.com/@icons/material/svg/brightness-4.svg" width="24" height="24"> | `Brightness_4Icon`
- <img src="https://unpkg.com/@icons/material/svg/brightness-5.svg" width="24" height="24"> | `Brightness_5Icon`
- <img src="https://unpkg.com/@icons/material/svg/brightness-6.svg" width="24" height="24"> | `Brightness_6Icon`
- <img src="https://unpkg.com/@icons/material/svg/brightness-7.svg" width="24" height="24"> | `Brightness_7Icon`
- <img src="https://unpkg.com/@icons/material/svg/broom.svg" width="24" height="24"> | `BroomIcon`
- <img src="https://unpkg.com/@icons/material/svg/brush.svg" width="24" height="24"> | `BrushIcon`
- <img src="https://unpkg.com/@icons/material/svg/buffer.svg" width="24" height="24"> | `BufferIcon`
- <img src="https://unpkg.com/@icons/material/svg/bug.svg" width="24" height="24"> | `BugIcon`
- <img src="https://unpkg.com/@icons/material/svg/bulletin-board.svg" width="24" height="24"> | `BulletinBoardIcon`
- <img src="https://unpkg.com/@icons/material/svg/bullhorn.svg" width="24" height="24"> | `BullhornIcon`
- <img src="https://unpkg.com/@icons/material/svg/bullseye.svg" width="24" height="24"> | `BullseyeIcon`
- <img src="https://unpkg.com/@icons/material/svg/bus-articulated-end.svg" width="24" height="24"> | `BusArticulatedEndIcon`
- <img src="https://unpkg.com/@icons/material/svg/bus-articulated-front.svg" width="24" height="24"> | `BusArticulatedFrontIcon`
- <img src="https://unpkg.com/@icons/material/svg/bus-double-decker.svg" width="24" height="24"> | `BusDoubleDeckerIcon`
- <img src="https://unpkg.com/@icons/material/svg/bus.svg" width="24" height="24"> | `BusIcon`
- <img src="https://unpkg.com/@icons/material/svg/bus-school.svg" width="24" height="24"> | `BusSchoolIcon`
- <img src="https://unpkg.com/@icons/material/svg/bus-side.svg" width="24" height="24"> | `BusSideIcon`
- <img src="https://unpkg.com/@icons/material/svg/cached.svg" width="24" height="24"> | `CachedIcon`
- <img src="https://unpkg.com/@icons/material/svg/cake.svg" width="24" height="24"> | `CakeIcon`
- <img src="https://unpkg.com/@icons/material/svg/cake-layered.svg" width="24" height="24"> | `CakeLayeredIcon`
- <img src="https://unpkg.com/@icons/material/svg/cake-variant.svg" width="24" height="24"> | `CakeVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/calculator.svg" width="24" height="24"> | `CalculatorIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-blank.svg" width="24" height="24"> | `CalendarBlankIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-check.svg" width="24" height="24"> | `CalendarCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-clock.svg" width="24" height="24"> | `CalendarClockIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-edit.svg" width="24" height="24"> | `CalendarEditIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar.svg" width="24" height="24"> | `CalendarIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-multiple-check.svg" width="24" height="24"> | `CalendarMultipleCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-multiple.svg" width="24" height="24"> | `CalendarMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-plus.svg" width="24" height="24"> | `CalendarPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-question.svg" width="24" height="24"> | `CalendarQuestionIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-range.svg" width="24" height="24"> | `CalendarRangeIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-remove.svg" width="24" height="24"> | `CalendarRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-text.svg" width="24" height="24"> | `CalendarTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/calendar-today.svg" width="24" height="24"> | `CalendarTodayIcon`
- <img src="https://unpkg.com/@icons/material/svg/call-made.svg" width="24" height="24"> | `CallMadeIcon`
- <img src="https://unpkg.com/@icons/material/svg/call-merge.svg" width="24" height="24"> | `CallMergeIcon`
- <img src="https://unpkg.com/@icons/material/svg/call-missed.svg" width="24" height="24"> | `CallMissedIcon`
- <img src="https://unpkg.com/@icons/material/svg/call-received.svg" width="24" height="24"> | `CallReceivedIcon`
- <img src="https://unpkg.com/@icons/material/svg/call-split.svg" width="24" height="24"> | `CallSplitIcon`
- <img src="https://unpkg.com/@icons/material/svg/camcorder-box.svg" width="24" height="24"> | `CamcorderBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/camcorder-box-off.svg" width="24" height="24"> | `CamcorderBoxOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/camcorder.svg" width="24" height="24"> | `CamcorderIcon`
- <img src="https://unpkg.com/@icons/material/svg/camcorder-off.svg" width="24" height="24"> | `CamcorderOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-burst.svg" width="24" height="24"> | `CameraBurstIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-enhance.svg" width="24" height="24"> | `CameraEnhanceIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-front.svg" width="24" height="24"> | `CameraFrontIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-front-variant.svg" width="24" height="24"> | `CameraFrontVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-gopro.svg" width="24" height="24"> | `CameraGoproIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera.svg" width="24" height="24"> | `CameraIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-iris.svg" width="24" height="24"> | `CameraIrisIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-metering-center.svg" width="24" height="24"> | `CameraMeteringCenterIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-metering-matrix.svg" width="24" height="24"> | `CameraMeteringMatrixIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-metering-partial.svg" width="24" height="24"> | `CameraMeteringPartialIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-metering-spot.svg" width="24" height="24"> | `CameraMeteringSpotIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-off.svg" width="24" height="24"> | `CameraOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-party-mode.svg" width="24" height="24"> | `CameraPartyModeIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-rear.svg" width="24" height="24"> | `CameraRearIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-rear-variant.svg" width="24" height="24"> | `CameraRearVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-switch.svg" width="24" height="24"> | `CameraSwitchIcon`
- <img src="https://unpkg.com/@icons/material/svg/camera-timer.svg" width="24" height="24"> | `CameraTimerIcon`
- <img src="https://unpkg.com/@icons/material/svg/cancel.svg" width="24" height="24"> | `CancelIcon`
- <img src="https://unpkg.com/@icons/material/svg/candle.svg" width="24" height="24"> | `CandleIcon`
- <img src="https://unpkg.com/@icons/material/svg/candycane.svg" width="24" height="24"> | `CandycaneIcon`
- <img src="https://unpkg.com/@icons/material/svg/cannabis.svg" width="24" height="24"> | `CannabisIcon`
- <img src="https://unpkg.com/@icons/material/svg/car-battery.svg" width="24" height="24"> | `CarBatteryIcon`
- <img src="https://unpkg.com/@icons/material/svg/car-connected.svg" width="24" height="24"> | `CarConnectedIcon`
- <img src="https://unpkg.com/@icons/material/svg/car-convertible.svg" width="24" height="24"> | `CarConvertibleIcon`
- <img src="https://unpkg.com/@icons/material/svg/car-estate.svg" width="24" height="24"> | `CarEstateIcon`
- <img src="https://unpkg.com/@icons/material/svg/car-hatchback.svg" width="24" height="24"> | `CarHatchbackIcon`
- <img src="https://unpkg.com/@icons/material/svg/car.svg" width="24" height="24"> | `CarIcon`
- <img src="https://unpkg.com/@icons/material/svg/car-pickup.svg" width="24" height="24"> | `CarPickupIcon`
- <img src="https://unpkg.com/@icons/material/svg/car-side.svg" width="24" height="24"> | `CarSideIcon`
- <img src="https://unpkg.com/@icons/material/svg/car-sports.svg" width="24" height="24"> | `CarSportsIcon`
- <img src="https://unpkg.com/@icons/material/svg/car-wash.svg" width="24" height="24"> | `CarWashIcon`
- <img src="https://unpkg.com/@icons/material/svg/caravan.svg" width="24" height="24"> | `CaravanIcon`
- <img src="https://unpkg.com/@icons/material/svg/cards.svg" width="24" height="24"> | `CardsIcon`
- <img src="https://unpkg.com/@icons/material/svg/cards-outline.svg" width="24" height="24"> | `CardsOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/cards-playing-outline.svg" width="24" height="24"> | `CardsPlayingOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/cards-variant.svg" width="24" height="24"> | `CardsVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/carrot.svg" width="24" height="24"> | `CarrotIcon`
- <img src="https://unpkg.com/@icons/material/svg/cart.svg" width="24" height="24"> | `CartIcon`
- <img src="https://unpkg.com/@icons/material/svg/cart-off.svg" width="24" height="24"> | `CartOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/cart-outline.svg" width="24" height="24"> | `CartOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/cart-plus.svg" width="24" height="24"> | `CartPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/case-sensitive-alt.svg" width="24" height="24"> | `CaseSensitiveAltIcon`
- <img src="https://unpkg.com/@icons/material/svg/cash.svg" width="24" height="24"> | `CashIcon`
- <img src="https://unpkg.com/@icons/material/svg/cash-multiple.svg" width="24" height="24"> | `CashMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/cash-usd.svg" width="24" height="24"> | `CashUsdIcon`
- <img src="https://unpkg.com/@icons/material/svg/cash-100.svg" width="24" height="24"> | `Cash_100Icon`
- <img src="https://unpkg.com/@icons/material/svg/cast-connected.svg" width="24" height="24"> | `CastConnectedIcon`
- <img src="https://unpkg.com/@icons/material/svg/cast.svg" width="24" height="24"> | `CastIcon`
- <img src="https://unpkg.com/@icons/material/svg/cast-off.svg" width="24" height="24"> | `CastOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/castle.svg" width="24" height="24"> | `CastleIcon`
- <img src="https://unpkg.com/@icons/material/svg/cat.svg" width="24" height="24"> | `CatIcon`
- <img src="https://unpkg.com/@icons/material/svg/cctv.svg" width="24" height="24"> | `CctvIcon`
- <img src="https://unpkg.com/@icons/material/svg/ceiling-light.svg" width="24" height="24"> | `CeilingLightIcon`
- <img src="https://unpkg.com/@icons/material/svg/cellphone-android.svg" width="24" height="24"> | `CellphoneAndroidIcon`
- <img src="https://unpkg.com/@icons/material/svg/cellphone-basic.svg" width="24" height="24"> | `CellphoneBasicIcon`
- <img src="https://unpkg.com/@icons/material/svg/cellphone-dock.svg" width="24" height="24"> | `CellphoneDockIcon`
- <img src="https://unpkg.com/@icons/material/svg/cellphone.svg" width="24" height="24"> | `CellphoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/cellphone-iphone.svg" width="24" height="24"> | `CellphoneIphoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/cellphone-link.svg" width="24" height="24"> | `CellphoneLinkIcon`
- <img src="https://unpkg.com/@icons/material/svg/cellphone-link-off.svg" width="24" height="24"> | `CellphoneLinkOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/cellphone-settings.svg" width="24" height="24"> | `CellphoneSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/cellphone-wireless.svg" width="24" height="24"> | `CellphoneWirelessIcon`
- <img src="https://unpkg.com/@icons/material/svg/certificate.svg" width="24" height="24"> | `CertificateIcon`
- <img src="https://unpkg.com/@icons/material/svg/chair-school.svg" width="24" height="24"> | `ChairSchoolIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-arc.svg" width="24" height="24"> | `ChartArcIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-areaspline.svg" width="24" height="24"> | `ChartAreasplineIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-bar.svg" width="24" height="24"> | `ChartBarIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-bar-stacked.svg" width="24" height="24"> | `ChartBarStackedIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-bubble.svg" width="24" height="24"> | `ChartBubbleIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-donut.svg" width="24" height="24"> | `ChartDonutIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-donut-variant.svg" width="24" height="24"> | `ChartDonutVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-gantt.svg" width="24" height="24"> | `ChartGanttIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-histogram.svg" width="24" height="24"> | `ChartHistogramIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-line.svg" width="24" height="24"> | `ChartLineIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-line-stacked.svg" width="24" height="24"> | `ChartLineStackedIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-line-variant.svg" width="24" height="24"> | `ChartLineVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-pie.svg" width="24" height="24"> | `ChartPieIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-scatterplot-hexbin.svg" width="24" height="24"> | `ChartScatterplotHexbinIcon`
- <img src="https://unpkg.com/@icons/material/svg/chart-timeline.svg" width="24" height="24"> | `ChartTimelineIcon`
- <img src="https://unpkg.com/@icons/material/svg/check-all.svg" width="24" height="24"> | `CheckAllIcon`
- <img src="https://unpkg.com/@icons/material/svg/check-circle.svg" width="24" height="24"> | `CheckCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/check-circle-outline.svg" width="24" height="24"> | `CheckCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/check.svg" width="24" height="24"> | `CheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/check-outline.svg" width="24" height="24"> | `CheckOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-blank-circle.svg" width="24" height="24"> | `CheckboxBlankCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-blank-circle-outline.svg" width="24" height="24"> | `CheckboxBlankCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-blank.svg" width="24" height="24"> | `CheckboxBlankIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-blank-outline.svg" width="24" height="24"> | `CheckboxBlankOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-intermediate.svg" width="24" height="24"> | `CheckboxIntermediateIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-marked-circle.svg" width="24" height="24"> | `CheckboxMarkedCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-marked-circle-outline.svg" width="24" height="24"> | `CheckboxMarkedCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-marked.svg" width="24" height="24"> | `CheckboxMarkedIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-marked-outline.svg" width="24" height="24"> | `CheckboxMarkedOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-blank-circle.svg" width="24" height="24"> | `CheckboxMultipleBlankCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-blank-circle-outline.svg" width="24" height="24"> | `CheckboxMultipleBlankCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-blank.svg" width="24" height="24"> | `CheckboxMultipleBlankIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-blank-outline.svg" width="24" height="24"> | `CheckboxMultipleBlankOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-marked-circle.svg" width="24" height="24"> | `CheckboxMultipleMarkedCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-marked-circle-outline.svg" width="24" height="24"> | `CheckboxMultipleMarkedCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-marked.svg" width="24" height="24"> | `CheckboxMultipleMarkedIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-marked-outline.svg" width="24" height="24"> | `CheckboxMultipleMarkedOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/checkerboard.svg" width="24" height="24"> | `CheckerboardIcon`
- <img src="https://unpkg.com/@icons/material/svg/chemical-weapon.svg" width="24" height="24"> | `ChemicalWeaponIcon`
- <img src="https://unpkg.com/@icons/material/svg/chess-bishop.svg" width="24" height="24"> | `ChessBishopIcon`
- <img src="https://unpkg.com/@icons/material/svg/chess-king.svg" width="24" height="24"> | `ChessKingIcon`
- <img src="https://unpkg.com/@icons/material/svg/chess-knight.svg" width="24" height="24"> | `ChessKnightIcon`
- <img src="https://unpkg.com/@icons/material/svg/chess-pawn.svg" width="24" height="24"> | `ChessPawnIcon`
- <img src="https://unpkg.com/@icons/material/svg/chess-queen.svg" width="24" height="24"> | `ChessQueenIcon`
- <img src="https://unpkg.com/@icons/material/svg/chess-rook.svg" width="24" height="24"> | `ChessRookIcon`
- <img src="https://unpkg.com/@icons/material/svg/chevron-double-down.svg" width="24" height="24"> | `ChevronDoubleDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/chevron-double-left.svg" width="24" height="24"> | `ChevronDoubleLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/chevron-double-right.svg" width="24" height="24"> | `ChevronDoubleRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/chevron-double-up.svg" width="24" height="24"> | `ChevronDoubleUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/chevron-down.svg" width="24" height="24"> | `ChevronDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/chevron-left.svg" width="24" height="24"> | `ChevronLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/chevron-right.svg" width="24" height="24"> | `ChevronRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/chevron-up.svg" width="24" height="24"> | `ChevronUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/chili-hot.svg" width="24" height="24"> | `ChiliHotIcon`
- <img src="https://unpkg.com/@icons/material/svg/chili-medium.svg" width="24" height="24"> | `ChiliMediumIcon`
- <img src="https://unpkg.com/@icons/material/svg/chili-mild.svg" width="24" height="24"> | `ChiliMildIcon`
- <img src="https://unpkg.com/@icons/material/svg/chip.svg" width="24" height="24"> | `ChipIcon`
- <img src="https://unpkg.com/@icons/material/svg/church.svg" width="24" height="24"> | `ChurchIcon`
- <img src="https://unpkg.com/@icons/material/svg/circle.svg" width="24" height="24"> | `CircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/circle-outline.svg" width="24" height="24"> | `CircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/cisco-webex.svg" width="24" height="24"> | `CiscoWebexIcon`
- <img src="https://unpkg.com/@icons/material/svg/city.svg" width="24" height="24"> | `CityIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-account.svg" width="24" height="24"> | `ClipboardAccountIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-alert.svg" width="24" height="24"> | `ClipboardAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-arrow-down.svg" width="24" height="24"> | `ClipboardArrowDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-arrow-left.svg" width="24" height="24"> | `ClipboardArrowLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-check.svg" width="24" height="24"> | `ClipboardCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-check-outline.svg" width="24" height="24"> | `ClipboardCheckOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-flow.svg" width="24" height="24"> | `ClipboardFlowIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard.svg" width="24" height="24"> | `ClipboardIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-outline.svg" width="24" height="24"> | `ClipboardOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-plus.svg" width="24" height="24"> | `ClipboardPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-pulse.svg" width="24" height="24"> | `ClipboardPulseIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-pulse-outline.svg" width="24" height="24"> | `ClipboardPulseOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/clipboard-text.svg" width="24" height="24"> | `ClipboardTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/clippy.svg" width="24" height="24"> | `ClippyIcon`
- <img src="https://unpkg.com/@icons/material/svg/clock-alert.svg" width="24" height="24"> | `ClockAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/clock-end.svg" width="24" height="24"> | `ClockEndIcon`
- <img src="https://unpkg.com/@icons/material/svg/clock-fast.svg" width="24" height="24"> | `ClockFastIcon`
- <img src="https://unpkg.com/@icons/material/svg/clock.svg" width="24" height="24"> | `ClockIcon`
- <img src="https://unpkg.com/@icons/material/svg/clock-in.svg" width="24" height="24"> | `ClockInIcon`
- <img src="https://unpkg.com/@icons/material/svg/clock-out.svg" width="24" height="24"> | `ClockOutIcon`
- <img src="https://unpkg.com/@icons/material/svg/clock-start.svg" width="24" height="24"> | `ClockStartIcon`
- <img src="https://unpkg.com/@icons/material/svg/close-box.svg" width="24" height="24"> | `CloseBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/close-box-outline.svg" width="24" height="24"> | `CloseBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/close-circle.svg" width="24" height="24"> | `CloseCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/close-circle-outline.svg" width="24" height="24"> | `CloseCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/close.svg" width="24" height="24"> | `CloseIcon`
- <img src="https://unpkg.com/@icons/material/svg/close-network.svg" width="24" height="24"> | `CloseNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/close-octagon.svg" width="24" height="24"> | `CloseOctagonIcon`
- <img src="https://unpkg.com/@icons/material/svg/close-octagon-outline.svg" width="24" height="24"> | `CloseOctagonOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/close-outline.svg" width="24" height="24"> | `CloseOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/closed-caption.svg" width="24" height="24"> | `ClosedCaptionIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-braces.svg" width="24" height="24"> | `CloudBracesIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-check.svg" width="24" height="24"> | `CloudCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-circle.svg" width="24" height="24"> | `CloudCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-download.svg" width="24" height="24"> | `CloudDownloadIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud.svg" width="24" height="24"> | `CloudIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-off-outline.svg" width="24" height="24"> | `CloudOffOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-outline.svg" width="24" height="24"> | `CloudOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-print.svg" width="24" height="24"> | `CloudPrintIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-print-outline.svg" width="24" height="24"> | `CloudPrintOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-sync.svg" width="24" height="24"> | `CloudSyncIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-tags.svg" width="24" height="24"> | `CloudTagsIcon`
- <img src="https://unpkg.com/@icons/material/svg/cloud-upload.svg" width="24" height="24"> | `CloudUploadIcon`
- <img src="https://unpkg.com/@icons/material/svg/clover.svg" width="24" height="24"> | `CloverIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-array.svg" width="24" height="24"> | `CodeArrayIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-braces.svg" width="24" height="24"> | `CodeBracesIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-brackets.svg" width="24" height="24"> | `CodeBracketsIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-equal.svg" width="24" height="24"> | `CodeEqualIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-greater-than.svg" width="24" height="24"> | `CodeGreaterThanIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-greater-than-or-equal.svg" width="24" height="24"> | `CodeGreaterThanOrEqualIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-less-than.svg" width="24" height="24"> | `CodeLessThanIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-less-than-or-equal.svg" width="24" height="24"> | `CodeLessThanOrEqualIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-not-equal.svg" width="24" height="24"> | `CodeNotEqualIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-not-equal-variant.svg" width="24" height="24"> | `CodeNotEqualVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-parentheses.svg" width="24" height="24"> | `CodeParenthesesIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-string.svg" width="24" height="24"> | `CodeStringIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-tags-check.svg" width="24" height="24"> | `CodeTagsCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/code-tags.svg" width="24" height="24"> | `CodeTagsIcon`
- <img src="https://unpkg.com/@icons/material/svg/codepen.svg" width="24" height="24"> | `CodepenIcon`
- <img src="https://unpkg.com/@icons/material/svg/coffee.svg" width="24" height="24"> | `CoffeeIcon`
- <img src="https://unpkg.com/@icons/material/svg/coffee-outline.svg" width="24" height="24"> | `CoffeeOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/coffee-to-go.svg" width="24" height="24"> | `CoffeeToGoIcon`
- <img src="https://unpkg.com/@icons/material/svg/coin.svg" width="24" height="24"> | `CoinIcon`
- <img src="https://unpkg.com/@icons/material/svg/coins.svg" width="24" height="24"> | `CoinsIcon`
- <img src="https://unpkg.com/@icons/material/svg/collage.svg" width="24" height="24"> | `CollageIcon`
- <img src="https://unpkg.com/@icons/material/svg/color-helper.svg" width="24" height="24"> | `ColorHelperIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-account.svg" width="24" height="24"> | `CommentAccountIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-account-outline.svg" width="24" height="24"> | `CommentAccountOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-alert.svg" width="24" height="24"> | `CommentAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-alert-outline.svg" width="24" height="24"> | `CommentAlertOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-check.svg" width="24" height="24"> | `CommentCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-check-outline.svg" width="24" height="24"> | `CommentCheckOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment.svg" width="24" height="24"> | `CommentIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-multiple.svg" width="24" height="24"> | `CommentMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-multiple-outline.svg" width="24" height="24"> | `CommentMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-outline.svg" width="24" height="24"> | `CommentOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-plus-outline.svg" width="24" height="24"> | `CommentPlusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-processing.svg" width="24" height="24"> | `CommentProcessingIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-processing-outline.svg" width="24" height="24"> | `CommentProcessingOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-question.svg" width="24" height="24"> | `CommentQuestionIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-question-outline.svg" width="24" height="24"> | `CommentQuestionOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-remove.svg" width="24" height="24"> | `CommentRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-remove-outline.svg" width="24" height="24"> | `CommentRemoveOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-text.svg" width="24" height="24"> | `CommentTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-text-multiple.svg" width="24" height="24"> | `CommentTextMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-text-multiple-outline.svg" width="24" height="24"> | `CommentTextMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/comment-text-outline.svg" width="24" height="24"> | `CommentTextOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/compare.svg" width="24" height="24"> | `CompareIcon`
- <img src="https://unpkg.com/@icons/material/svg/compass.svg" width="24" height="24"> | `CompassIcon`
- <img src="https://unpkg.com/@icons/material/svg/compass-outline.svg" width="24" height="24"> | `CompassOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/console.svg" width="24" height="24"> | `ConsoleIcon`
- <img src="https://unpkg.com/@icons/material/svg/console-line.svg" width="24" height="24"> | `ConsoleLineIcon`
- <img src="https://unpkg.com/@icons/material/svg/console-network.svg" width="24" height="24"> | `ConsoleNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/contact-mail.svg" width="24" height="24"> | `ContactMailIcon`
- <img src="https://unpkg.com/@icons/material/svg/contacts.svg" width="24" height="24"> | `ContactsIcon`
- <img src="https://unpkg.com/@icons/material/svg/content-copy.svg" width="24" height="24"> | `ContentCopyIcon`
- <img src="https://unpkg.com/@icons/material/svg/content-cut.svg" width="24" height="24"> | `ContentCutIcon`
- <img src="https://unpkg.com/@icons/material/svg/content-duplicate.svg" width="24" height="24"> | `ContentDuplicateIcon`
- <img src="https://unpkg.com/@icons/material/svg/content-paste.svg" width="24" height="24"> | `ContentPasteIcon`
- <img src="https://unpkg.com/@icons/material/svg/content-save-all.svg" width="24" height="24"> | `ContentSaveAllIcon`
- <img src="https://unpkg.com/@icons/material/svg/content-save.svg" width="24" height="24"> | `ContentSaveIcon`
- <img src="https://unpkg.com/@icons/material/svg/content-save-outline.svg" width="24" height="24"> | `ContentSaveOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/content-save-settings.svg" width="24" height="24"> | `ContentSaveSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/contrast-box.svg" width="24" height="24"> | `ContrastBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/contrast-circle.svg" width="24" height="24"> | `ContrastCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/contrast.svg" width="24" height="24"> | `ContrastIcon`
- <img src="https://unpkg.com/@icons/material/svg/cookie.svg" width="24" height="24"> | `CookieIcon`
- <img src="https://unpkg.com/@icons/material/svg/copyright.svg" width="24" height="24"> | `CopyrightIcon`
- <img src="https://unpkg.com/@icons/material/svg/corn.svg" width="24" height="24"> | `CornIcon`
- <img src="https://unpkg.com/@icons/material/svg/counter.svg" width="24" height="24"> | `CounterIcon`
- <img src="https://unpkg.com/@icons/material/svg/cow.svg" width="24" height="24"> | `CowIcon`
- <img src="https://unpkg.com/@icons/material/svg/crane.svg" width="24" height="24"> | `CraneIcon`
- <img src="https://unpkg.com/@icons/material/svg/creation.svg" width="24" height="24"> | `CreationIcon`
- <img src="https://unpkg.com/@icons/material/svg/credit-card.svg" width="24" height="24"> | `CreditCardIcon`
- <img src="https://unpkg.com/@icons/material/svg/credit-card-multiple.svg" width="24" height="24"> | `CreditCardMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/credit-card-off.svg" width="24" height="24"> | `CreditCardOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/credit-card-plus.svg" width="24" height="24"> | `CreditCardPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/credit-card-scan.svg" width="24" height="24"> | `CreditCardScanIcon`
- <img src="https://unpkg.com/@icons/material/svg/crop-free.svg" width="24" height="24"> | `CropFreeIcon`
- <img src="https://unpkg.com/@icons/material/svg/crop.svg" width="24" height="24"> | `CropIcon`
- <img src="https://unpkg.com/@icons/material/svg/crop-landscape.svg" width="24" height="24"> | `CropLandscapeIcon`
- <img src="https://unpkg.com/@icons/material/svg/crop-portrait.svg" width="24" height="24"> | `CropPortraitIcon`
- <img src="https://unpkg.com/@icons/material/svg/crop-rotate.svg" width="24" height="24"> | `CropRotateIcon`
- <img src="https://unpkg.com/@icons/material/svg/crop-square.svg" width="24" height="24"> | `CropSquareIcon`
- <img src="https://unpkg.com/@icons/material/svg/crosshairs-gps.svg" width="24" height="24"> | `CrosshairsGpsIcon`
- <img src="https://unpkg.com/@icons/material/svg/crosshairs.svg" width="24" height="24"> | `CrosshairsIcon`
- <img src="https://unpkg.com/@icons/material/svg/crown.svg" width="24" height="24"> | `CrownIcon`
- <img src="https://unpkg.com/@icons/material/svg/cube.svg" width="24" height="24"> | `CubeIcon`
- <img src="https://unpkg.com/@icons/material/svg/cube-outline.svg" width="24" height="24"> | `CubeOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/cube-send.svg" width="24" height="24"> | `CubeSendIcon`
- <img src="https://unpkg.com/@icons/material/svg/cube-unfolded.svg" width="24" height="24"> | `CubeUnfoldedIcon`
- <img src="https://unpkg.com/@icons/material/svg/cup.svg" width="24" height="24"> | `CupIcon`
- <img src="https://unpkg.com/@icons/material/svg/cup-off.svg" width="24" height="24"> | `CupOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/cup-water.svg" width="24" height="24"> | `CupWaterIcon`
- <img src="https://unpkg.com/@icons/material/svg/curling.svg" width="24" height="24"> | `CurlingIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-bdt.svg" width="24" height="24"> | `CurrencyBdtIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-btc.svg" width="24" height="24"> | `CurrencyBtcIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-chf.svg" width="24" height="24"> | `CurrencyChfIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-cny.svg" width="24" height="24"> | `CurrencyCnyIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-eth.svg" width="24" height="24"> | `CurrencyEthIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-eur.svg" width="24" height="24"> | `CurrencyEurIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-gbp.svg" width="24" height="24"> | `CurrencyGbpIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-inr.svg" width="24" height="24"> | `CurrencyInrIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-jpy.svg" width="24" height="24"> | `CurrencyJpyIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-krw.svg" width="24" height="24"> | `CurrencyKrwIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-kzt.svg" width="24" height="24"> | `CurrencyKztIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-ngn.svg" width="24" height="24"> | `CurrencyNgnIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-rub.svg" width="24" height="24"> | `CurrencyRubIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-sign.svg" width="24" height="24"> | `CurrencySignIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-try.svg" width="24" height="24"> | `CurrencyTryIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-twd.svg" width="24" height="24"> | `CurrencyTwdIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-usd.svg" width="24" height="24"> | `CurrencyUsdIcon`
- <img src="https://unpkg.com/@icons/material/svg/currency-usd-off.svg" width="24" height="24"> | `CurrencyUsdOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/cursor-default.svg" width="24" height="24"> | `CursorDefaultIcon`
- <img src="https://unpkg.com/@icons/material/svg/cursor-default-outline.svg" width="24" height="24"> | `CursorDefaultOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/cursor-move.svg" width="24" height="24"> | `CursorMoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/cursor-pointer.svg" width="24" height="24"> | `CursorPointerIcon`
- <img src="https://unpkg.com/@icons/material/svg/cursor-text.svg" width="24" height="24"> | `CursorTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/database.svg" width="24" height="24"> | `DatabaseIcon`
- <img src="https://unpkg.com/@icons/material/svg/database-minus.svg" width="24" height="24"> | `DatabaseMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/database-plus.svg" width="24" height="24"> | `DatabasePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/database-search.svg" width="24" height="24"> | `DatabaseSearchIcon`
- <img src="https://unpkg.com/@icons/material/svg/debug-step-into.svg" width="24" height="24"> | `DebugStepIntoIcon`
- <img src="https://unpkg.com/@icons/material/svg/debug-step-out.svg" width="24" height="24"> | `DebugStepOutIcon`
- <img src="https://unpkg.com/@icons/material/svg/debug-step-over.svg" width="24" height="24"> | `DebugStepOverIcon`
- <img src="https://unpkg.com/@icons/material/svg/decagram.svg" width="24" height="24"> | `DecagramIcon`
- <img src="https://unpkg.com/@icons/material/svg/decagram-outline.svg" width="24" height="24"> | `DecagramOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/decimal-decrease.svg" width="24" height="24"> | `DecimalDecreaseIcon`
- <img src="https://unpkg.com/@icons/material/svg/decimal-increase.svg" width="24" height="24"> | `DecimalIncreaseIcon`
- <img src="https://unpkg.com/@icons/material/svg/delete-circle.svg" width="24" height="24"> | `DeleteCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/delete-empty.svg" width="24" height="24"> | `DeleteEmptyIcon`
- <img src="https://unpkg.com/@icons/material/svg/delete-forever.svg" width="24" height="24"> | `DeleteForeverIcon`
- <img src="https://unpkg.com/@icons/material/svg/delete.svg" width="24" height="24"> | `DeleteIcon`
- <img src="https://unpkg.com/@icons/material/svg/delete-restore.svg" width="24" height="24"> | `DeleteRestoreIcon`
- <img src="https://unpkg.com/@icons/material/svg/delete-sweep.svg" width="24" height="24"> | `DeleteSweepIcon`
- <img src="https://unpkg.com/@icons/material/svg/delete-variant.svg" width="24" height="24"> | `DeleteVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/delta.svg" width="24" height="24"> | `DeltaIcon`
- <img src="https://unpkg.com/@icons/material/svg/deskphone.svg" width="24" height="24"> | `DeskphoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/desktop-classic.svg" width="24" height="24"> | `DesktopClassicIcon`
- <img src="https://unpkg.com/@icons/material/svg/desktop-mac.svg" width="24" height="24"> | `DesktopMacIcon`
- <img src="https://unpkg.com/@icons/material/svg/desktop-tower.svg" width="24" height="24"> | `DesktopTowerIcon`
- <img src="https://unpkg.com/@icons/material/svg/details.svg" width="24" height="24"> | `DetailsIcon`
- <img src="https://unpkg.com/@icons/material/svg/developer-board.svg" width="24" height="24"> | `DeveloperBoardIcon`
- <img src="https://unpkg.com/@icons/material/svg/deviantart.svg" width="24" height="24"> | `DeviantartIcon`
- <img src="https://unpkg.com/@icons/material/svg/dialpad.svg" width="24" height="24"> | `DialpadIcon`
- <img src="https://unpkg.com/@icons/material/svg/diamond.svg" width="24" height="24"> | `DiamondIcon`
- <img src="https://unpkg.com/@icons/material/svg/dice-d10.svg" width="24" height="24"> | `DiceD10Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-d12.svg" width="24" height="24"> | `DiceD12Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-d20.svg" width="24" height="24"> | `DiceD20Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-d4.svg" width="24" height="24"> | `DiceD4Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-d6.svg" width="24" height="24"> | `DiceD6Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-d8.svg" width="24" height="24"> | `DiceD8Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-multiple.svg" width="24" height="24"> | `DiceMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/dice-1.svg" width="24" height="24"> | `Dice_1Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-2.svg" width="24" height="24"> | `Dice_2Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-3.svg" width="24" height="24"> | `Dice_3Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-4.svg" width="24" height="24"> | `Dice_4Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-5.svg" width="24" height="24"> | `Dice_5Icon`
- <img src="https://unpkg.com/@icons/material/svg/dice-6.svg" width="24" height="24"> | `Dice_6Icon`
- <img src="https://unpkg.com/@icons/material/svg/dictionary.svg" width="24" height="24"> | `DictionaryIcon`
- <img src="https://unpkg.com/@icons/material/svg/dip-switch.svg" width="24" height="24"> | `DipSwitchIcon`
- <img src="https://unpkg.com/@icons/material/svg/directions-fork.svg" width="24" height="24"> | `DirectionsForkIcon`
- <img src="https://unpkg.com/@icons/material/svg/directions.svg" width="24" height="24"> | `DirectionsIcon`
- <img src="https://unpkg.com/@icons/material/svg/discord.svg" width="24" height="24"> | `DiscordIcon`
- <img src="https://unpkg.com/@icons/material/svg/disk-alert.svg" width="24" height="24"> | `DiskAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/disk.svg" width="24" height="24"> | `DiskIcon`
- <img src="https://unpkg.com/@icons/material/svg/disqus.svg" width="24" height="24"> | `DisqusIcon`
- <img src="https://unpkg.com/@icons/material/svg/disqus-outline.svg" width="24" height="24"> | `DisqusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/division-box.svg" width="24" height="24"> | `DivisionBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/division.svg" width="24" height="24"> | `DivisionIcon`
- <img src="https://unpkg.com/@icons/material/svg/dna.svg" width="24" height="24"> | `DnaIcon`
- <img src="https://unpkg.com/@icons/material/svg/dns.svg" width="24" height="24"> | `DnsIcon`
- <img src="https://unpkg.com/@icons/material/svg/do-not-disturb.svg" width="24" height="24"> | `DoNotDisturbIcon`
- <img src="https://unpkg.com/@icons/material/svg/do-not-disturb-off.svg" width="24" height="24"> | `DoNotDisturbOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/docker.svg" width="24" height="24"> | `DockerIcon`
- <img src="https://unpkg.com/@icons/material/svg/dolby.svg" width="24" height="24"> | `DolbyIcon`
- <img src="https://unpkg.com/@icons/material/svg/domain.svg" width="24" height="24"> | `DomainIcon`
- <img src="https://unpkg.com/@icons/material/svg/donkey.svg" width="24" height="24"> | `DonkeyIcon`
- <img src="https://unpkg.com/@icons/material/svg/door-closed.svg" width="24" height="24"> | `DoorClosedIcon`
- <img src="https://unpkg.com/@icons/material/svg/door.svg" width="24" height="24"> | `DoorIcon`
- <img src="https://unpkg.com/@icons/material/svg/door-open.svg" width="24" height="24"> | `DoorOpenIcon`
- <img src="https://unpkg.com/@icons/material/svg/doorbell-video.svg" width="24" height="24"> | `DoorbellVideoIcon`
- <img src="https://unpkg.com/@icons/material/svg/dots-horizontal-circle.svg" width="24" height="24"> | `DotsHorizontalCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/dots-horizontal.svg" width="24" height="24"> | `DotsHorizontalIcon`
- <img src="https://unpkg.com/@icons/material/svg/dots-vertical-circle.svg" width="24" height="24"> | `DotsVerticalCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/dots-vertical.svg" width="24" height="24"> | `DotsVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/douban.svg" width="24" height="24"> | `DoubanIcon`
- <img src="https://unpkg.com/@icons/material/svg/download.svg" width="24" height="24"> | `DownloadIcon`
- <img src="https://unpkg.com/@icons/material/svg/download-network.svg" width="24" height="24"> | `DownloadNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/drag-horizontal.svg" width="24" height="24"> | `DragHorizontalIcon`
- <img src="https://unpkg.com/@icons/material/svg/drag.svg" width="24" height="24"> | `DragIcon`
- <img src="https://unpkg.com/@icons/material/svg/drag-vertical.svg" width="24" height="24"> | `DragVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/drawing-box.svg" width="24" height="24"> | `DrawingBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/drawing.svg" width="24" height="24"> | `DrawingIcon`
- <img src="https://unpkg.com/@icons/material/svg/dribbble-box.svg" width="24" height="24"> | `DribbbleBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/dribbble.svg" width="24" height="24"> | `DribbbleIcon`
- <img src="https://unpkg.com/@icons/material/svg/drone.svg" width="24" height="24"> | `DroneIcon`
- <img src="https://unpkg.com/@icons/material/svg/dropbox.svg" width="24" height="24"> | `DropboxIcon`
- <img src="https://unpkg.com/@icons/material/svg/drupal.svg" width="24" height="24"> | `DrupalIcon`
- <img src="https://unpkg.com/@icons/material/svg/duck.svg" width="24" height="24"> | `DuckIcon`
- <img src="https://unpkg.com/@icons/material/svg/dumbbell.svg" width="24" height="24"> | `DumbbellIcon`
- <img src="https://unpkg.com/@icons/material/svg/ear-hearing.svg" width="24" height="24"> | `EarHearingIcon`
- <img src="https://unpkg.com/@icons/material/svg/earth-box.svg" width="24" height="24"> | `EarthBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/earth-box-off.svg" width="24" height="24"> | `EarthBoxOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/earth.svg" width="24" height="24"> | `EarthIcon`
- <img src="https://unpkg.com/@icons/material/svg/earth-off.svg" width="24" height="24"> | `EarthOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/edge.svg" width="24" height="24"> | `EdgeIcon`
- <img src="https://unpkg.com/@icons/material/svg/eject.svg" width="24" height="24"> | `EjectIcon`
- <img src="https://unpkg.com/@icons/material/svg/elephant.svg" width="24" height="24"> | `ElephantIcon`
- <img src="https://unpkg.com/@icons/material/svg/elevation-decline.svg" width="24" height="24"> | `ElevationDeclineIcon`
- <img src="https://unpkg.com/@icons/material/svg/elevation-rise.svg" width="24" height="24"> | `ElevationRiseIcon`
- <img src="https://unpkg.com/@icons/material/svg/elevator.svg" width="24" height="24"> | `ElevatorIcon`
- <img src="https://unpkg.com/@icons/material/svg/email-alert.svg" width="24" height="24"> | `EmailAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/email.svg" width="24" height="24"> | `EmailIcon`
- <img src="https://unpkg.com/@icons/material/svg/email-open.svg" width="24" height="24"> | `EmailOpenIcon`
- <img src="https://unpkg.com/@icons/material/svg/email-open-outline.svg" width="24" height="24"> | `EmailOpenOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/email-outline.svg" width="24" height="24"> | `EmailOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/email-secure.svg" width="24" height="24"> | `EmailSecureIcon`
- <img src="https://unpkg.com/@icons/material/svg/email-variant.svg" width="24" height="24"> | `EmailVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/emby.svg" width="24" height="24"> | `EmbyIcon`
- <img src="https://unpkg.com/@icons/material/svg/emoticon-cool.svg" width="24" height="24"> | `EmoticonCoolIcon`
- <img src="https://unpkg.com/@icons/material/svg/emoticon-dead.svg" width="24" height="24"> | `EmoticonDeadIcon`
- <img src="https://unpkg.com/@icons/material/svg/emoticon-devil.svg" width="24" height="24"> | `EmoticonDevilIcon`
- <img src="https://unpkg.com/@icons/material/svg/emoticon-excited.svg" width="24" height="24"> | `EmoticonExcitedIcon`
- <img src="https://unpkg.com/@icons/material/svg/emoticon-happy.svg" width="24" height="24"> | `EmoticonHappyIcon`
- <img src="https://unpkg.com/@icons/material/svg/emoticon.svg" width="24" height="24"> | `EmoticonIcon`
- <img src="https://unpkg.com/@icons/material/svg/emoticon-neutral.svg" width="24" height="24"> | `EmoticonNeutralIcon`
- <img src="https://unpkg.com/@icons/material/svg/emoticon-poop.svg" width="24" height="24"> | `EmoticonPoopIcon`
- <img src="https://unpkg.com/@icons/material/svg/emoticon-sad.svg" width="24" height="24"> | `EmoticonSadIcon`
- <img src="https://unpkg.com/@icons/material/svg/emoticon-tongue.svg" width="24" height="24"> | `EmoticonTongueIcon`
- <img src="https://unpkg.com/@icons/material/svg/engine.svg" width="24" height="24"> | `EngineIcon`
- <img src="https://unpkg.com/@icons/material/svg/engine-outline.svg" width="24" height="24"> | `EngineOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/equal-box.svg" width="24" height="24"> | `EqualBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/equal.svg" width="24" height="24"> | `EqualIcon`
- <img src="https://unpkg.com/@icons/material/svg/eraser.svg" width="24" height="24"> | `EraserIcon`
- <img src="https://unpkg.com/@icons/material/svg/eraser-variant.svg" width="24" height="24"> | `EraserVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/escalator.svg" width="24" height="24"> | `EscalatorIcon`
- <img src="https://unpkg.com/@icons/material/svg/ethereum.svg" width="24" height="24"> | `EthereumIcon`
- <img src="https://unpkg.com/@icons/material/svg/ethernet-cable.svg" width="24" height="24"> | `EthernetCableIcon`
- <img src="https://unpkg.com/@icons/material/svg/ethernet-cable-off.svg" width="24" height="24"> | `EthernetCableOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/ethernet.svg" width="24" height="24"> | `EthernetIcon`
- <img src="https://unpkg.com/@icons/material/svg/etsy.svg" width="24" height="24"> | `EtsyIcon`
- <img src="https://unpkg.com/@icons/material/svg/ev-station.svg" width="24" height="24"> | `EvStationIcon`
- <img src="https://unpkg.com/@icons/material/svg/eventbrite.svg" width="24" height="24"> | `EventbriteIcon`
- <img src="https://unpkg.com/@icons/material/svg/evernote.svg" width="24" height="24"> | `EvernoteIcon`
- <img src="https://unpkg.com/@icons/material/svg/exclamation.svg" width="24" height="24"> | `ExclamationIcon`
- <img src="https://unpkg.com/@icons/material/svg/exit-to-app.svg" width="24" height="24"> | `ExitToAppIcon`
- <img src="https://unpkg.com/@icons/material/svg/export.svg" width="24" height="24"> | `ExportIcon`
- <img src="https://unpkg.com/@icons/material/svg/eye.svg" width="24" height="24"> | `EyeIcon`
- <img src="https://unpkg.com/@icons/material/svg/eye-off.svg" width="24" height="24"> | `EyeOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/eye-off-outline.svg" width="24" height="24"> | `EyeOffOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/eye-outline.svg" width="24" height="24"> | `EyeOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/eye-plus.svg" width="24" height="24"> | `EyePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/eye-plus-outline.svg" width="24" height="24"> | `EyePlusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/eye-settings.svg" width="24" height="24"> | `EyeSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/eye-settings-outline.svg" width="24" height="24"> | `EyeSettingsOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/eyedropper.svg" width="24" height="24"> | `EyedropperIcon`
- <img src="https://unpkg.com/@icons/material/svg/eyedropper-variant.svg" width="24" height="24"> | `EyedropperVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/face.svg" width="24" height="24"> | `FaceIcon`
- <img src="https://unpkg.com/@icons/material/svg/face-profile.svg" width="24" height="24"> | `FaceProfileIcon`
- <img src="https://unpkg.com/@icons/material/svg/facebook-box.svg" width="24" height="24"> | `FacebookBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/facebook.svg" width="24" height="24"> | `FacebookIcon`
- <img src="https://unpkg.com/@icons/material/svg/facebook-messenger.svg" width="24" height="24"> | `FacebookMessengerIcon`
- <img src="https://unpkg.com/@icons/material/svg/factory.svg" width="24" height="24"> | `FactoryIcon`
- <img src="https://unpkg.com/@icons/material/svg/fan.svg" width="24" height="24"> | `FanIcon`
- <img src="https://unpkg.com/@icons/material/svg/fan-off.svg" width="24" height="24"> | `FanOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/fast-forward.svg" width="24" height="24"> | `FastForwardIcon`
- <img src="https://unpkg.com/@icons/material/svg/fast-forward-outline.svg" width="24" height="24"> | `FastForwardOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/fax.svg" width="24" height="24"> | `FaxIcon`
- <img src="https://unpkg.com/@icons/material/svg/feather.svg" width="24" height="24"> | `FeatherIcon`
- <img src="https://unpkg.com/@icons/material/svg/ferry.svg" width="24" height="24"> | `FerryIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-account.svg" width="24" height="24"> | `FileAccountIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-chart.svg" width="24" height="24"> | `FileChartIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-check.svg" width="24" height="24"> | `FileCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-cloud.svg" width="24" height="24"> | `FileCloudIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-compare.svg" width="24" height="24"> | `FileCompareIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-delimited.svg" width="24" height="24"> | `FileDelimitedIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-document-box.svg" width="24" height="24"> | `FileDocumentBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-document.svg" width="24" height="24"> | `FileDocumentIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-excel-box.svg" width="24" height="24"> | `FileExcelBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-excel.svg" width="24" height="24"> | `FileExcelIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-export.svg" width="24" height="24"> | `FileExportIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-find.svg" width="24" height="24"> | `FileFindIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-hidden.svg" width="24" height="24"> | `FileHiddenIcon`
- <img src="https://unpkg.com/@icons/material/svg/file.svg" width="24" height="24"> | `FileIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-image.svg" width="24" height="24"> | `FileImageIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-import.svg" width="24" height="24"> | `FileImportIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-lock.svg" width="24" height="24"> | `FileLockIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-multiple.svg" width="24" height="24"> | `FileMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-music.svg" width="24" height="24"> | `FileMusicIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-outline.svg" width="24" height="24"> | `FileOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-pdf-box.svg" width="24" height="24"> | `FilePdfBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-pdf.svg" width="24" height="24"> | `FilePdfIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-percent.svg" width="24" height="24"> | `FilePercentIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-plus.svg" width="24" height="24"> | `FilePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-powerpoint-box.svg" width="24" height="24"> | `FilePowerpointBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-powerpoint.svg" width="24" height="24"> | `FilePowerpointIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-presentation-box.svg" width="24" height="24"> | `FilePresentationBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-question.svg" width="24" height="24"> | `FileQuestionIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-restore.svg" width="24" height="24"> | `FileRestoreIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-send.svg" width="24" height="24"> | `FileSendIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-tree.svg" width="24" height="24"> | `FileTreeIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-video.svg" width="24" height="24"> | `FileVideoIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-word-box.svg" width="24" height="24"> | `FileWordBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-word.svg" width="24" height="24"> | `FileWordIcon`
- <img src="https://unpkg.com/@icons/material/svg/file-xml.svg" width="24" height="24"> | `FileXmlIcon`
- <img src="https://unpkg.com/@icons/material/svg/film.svg" width="24" height="24"> | `FilmIcon`
- <img src="https://unpkg.com/@icons/material/svg/filmstrip.svg" width="24" height="24"> | `FilmstripIcon`
- <img src="https://unpkg.com/@icons/material/svg/filmstrip-off.svg" width="24" height="24"> | `FilmstripOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/filter.svg" width="24" height="24"> | `FilterIcon`
- <img src="https://unpkg.com/@icons/material/svg/filter-outline.svg" width="24" height="24"> | `FilterOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/filter-remove.svg" width="24" height="24"> | `FilterRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/filter-remove-outline.svg" width="24" height="24"> | `FilterRemoveOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/filter-variant.svg" width="24" height="24"> | `FilterVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/finance.svg" width="24" height="24"> | `FinanceIcon`
- <img src="https://unpkg.com/@icons/material/svg/find-replace.svg" width="24" height="24"> | `FindReplaceIcon`
- <img src="https://unpkg.com/@icons/material/svg/fingerprint.svg" width="24" height="24"> | `FingerprintIcon`
- <img src="https://unpkg.com/@icons/material/svg/fire.svg" width="24" height="24"> | `FireIcon`
- <img src="https://unpkg.com/@icons/material/svg/fire-truck.svg" width="24" height="24"> | `FireTruckIcon`
- <img src="https://unpkg.com/@icons/material/svg/firefox.svg" width="24" height="24"> | `FirefoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/fish.svg" width="24" height="24"> | `FishIcon`
- <img src="https://unpkg.com/@icons/material/svg/flag-checkered.svg" width="24" height="24"> | `FlagCheckeredIcon`
- <img src="https://unpkg.com/@icons/material/svg/flag.svg" width="24" height="24"> | `FlagIcon`
- <img src="https://unpkg.com/@icons/material/svg/flag-outline.svg" width="24" height="24"> | `FlagOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/flag-triangle.svg" width="24" height="24"> | `FlagTriangleIcon`
- <img src="https://unpkg.com/@icons/material/svg/flag-variant.svg" width="24" height="24"> | `FlagVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/flag-variant-outline.svg" width="24" height="24"> | `FlagVariantOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/flash-auto.svg" width="24" height="24"> | `FlashAutoIcon`
- <img src="https://unpkg.com/@icons/material/svg/flash-circle.svg" width="24" height="24"> | `FlashCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/flash.svg" width="24" height="24"> | `FlashIcon`
- <img src="https://unpkg.com/@icons/material/svg/flash-off.svg" width="24" height="24"> | `FlashOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/flash-outline.svg" width="24" height="24"> | `FlashOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/flash-red-eye.svg" width="24" height="24"> | `FlashRedEyeIcon`
- <img src="https://unpkg.com/@icons/material/svg/flashlight.svg" width="24" height="24"> | `FlashlightIcon`
- <img src="https://unpkg.com/@icons/material/svg/flashlight-off.svg" width="24" height="24"> | `FlashlightOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/flask-empty.svg" width="24" height="24"> | `FlaskEmptyIcon`
- <img src="https://unpkg.com/@icons/material/svg/flask-empty-outline.svg" width="24" height="24"> | `FlaskEmptyOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/flask.svg" width="24" height="24"> | `FlaskIcon`
- <img src="https://unpkg.com/@icons/material/svg/flask-outline.svg" width="24" height="24"> | `FlaskOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/flattr.svg" width="24" height="24"> | `FlattrIcon`
- <img src="https://unpkg.com/@icons/material/svg/flip-to-back.svg" width="24" height="24"> | `FlipToBackIcon`
- <img src="https://unpkg.com/@icons/material/svg/flip-to-front.svg" width="24" height="24"> | `FlipToFrontIcon`
- <img src="https://unpkg.com/@icons/material/svg/floor-plan.svg" width="24" height="24"> | `FloorPlanIcon`
- <img src="https://unpkg.com/@icons/material/svg/floppy.svg" width="24" height="24"> | `FloppyIcon`
- <img src="https://unpkg.com/@icons/material/svg/flower.svg" width="24" height="24"> | `FlowerIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-account.svg" width="24" height="24"> | `FolderAccountIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-download.svg" width="24" height="24"> | `FolderDownloadIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-google-drive.svg" width="24" height="24"> | `FolderGoogleDriveIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder.svg" width="24" height="24"> | `FolderIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-image.svg" width="24" height="24"> | `FolderImageIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-key.svg" width="24" height="24"> | `FolderKeyIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-key-network.svg" width="24" height="24"> | `FolderKeyNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-lock.svg" width="24" height="24"> | `FolderLockIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-lock-open.svg" width="24" height="24"> | `FolderLockOpenIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-move.svg" width="24" height="24"> | `FolderMoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-multiple.svg" width="24" height="24"> | `FolderMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-multiple-image.svg" width="24" height="24"> | `FolderMultipleImageIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-multiple-outline.svg" width="24" height="24"> | `FolderMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-network.svg" width="24" height="24"> | `FolderNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-open.svg" width="24" height="24"> | `FolderOpenIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-outline.svg" width="24" height="24"> | `FolderOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-plus.svg" width="24" height="24"> | `FolderPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-remove.svg" width="24" height="24"> | `FolderRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-star.svg" width="24" height="24"> | `FolderStarIcon`
- <img src="https://unpkg.com/@icons/material/svg/folder-upload.svg" width="24" height="24"> | `FolderUploadIcon`
- <img src="https://unpkg.com/@icons/material/svg/font-awesome.svg" width="24" height="24"> | `FontAwesomeIcon`
- <img src="https://unpkg.com/@icons/material/svg/food-apple.svg" width="24" height="24"> | `FoodAppleIcon`
- <img src="https://unpkg.com/@icons/material/svg/food-croissant.svg" width="24" height="24"> | `FoodCroissantIcon`
- <img src="https://unpkg.com/@icons/material/svg/food-fork-drink.svg" width="24" height="24"> | `FoodForkDrinkIcon`
- <img src="https://unpkg.com/@icons/material/svg/food.svg" width="24" height="24"> | `FoodIcon`
- <img src="https://unpkg.com/@icons/material/svg/food-off.svg" width="24" height="24"> | `FoodOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/food-variant.svg" width="24" height="24"> | `FoodVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/football-australian.svg" width="24" height="24"> | `FootballAustralianIcon`
- <img src="https://unpkg.com/@icons/material/svg/football-helmet.svg" width="24" height="24"> | `FootballHelmetIcon`
- <img src="https://unpkg.com/@icons/material/svg/football.svg" width="24" height="24"> | `FootballIcon`
- <img src="https://unpkg.com/@icons/material/svg/forklift.svg" width="24" height="24"> | `ForkliftIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-align-bottom.svg" width="24" height="24"> | `FormatAlignBottomIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-align-center.svg" width="24" height="24"> | `FormatAlignCenterIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-align-justify.svg" width="24" height="24"> | `FormatAlignJustifyIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-align-left.svg" width="24" height="24"> | `FormatAlignLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-align-middle.svg" width="24" height="24"> | `FormatAlignMiddleIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-align-right.svg" width="24" height="24"> | `FormatAlignRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-align-top.svg" width="24" height="24"> | `FormatAlignTopIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-annotation-plus.svg" width="24" height="24"> | `FormatAnnotationPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-bold.svg" width="24" height="24"> | `FormatBoldIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-clear.svg" width="24" height="24"> | `FormatClearIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-color-fill.svg" width="24" height="24"> | `FormatColorFillIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-color-text.svg" width="24" height="24"> | `FormatColorTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-float-center.svg" width="24" height="24"> | `FormatFloatCenterIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-float-left.svg" width="24" height="24"> | `FormatFloatLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-float-none.svg" width="24" height="24"> | `FormatFloatNoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-float-right.svg" width="24" height="24"> | `FormatFloatRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-font.svg" width="24" height="24"> | `FormatFontIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-header-decrease.svg" width="24" height="24"> | `FormatHeaderDecreaseIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-header-equal.svg" width="24" height="24"> | `FormatHeaderEqualIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-header-increase.svg" width="24" height="24"> | `FormatHeaderIncreaseIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-header-pound.svg" width="24" height="24"> | `FormatHeaderPoundIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-header-1.svg" width="24" height="24"> | `FormatHeader_1Icon`
- <img src="https://unpkg.com/@icons/material/svg/format-header-2.svg" width="24" height="24"> | `FormatHeader_2Icon`
- <img src="https://unpkg.com/@icons/material/svg/format-header-3.svg" width="24" height="24"> | `FormatHeader_3Icon`
- <img src="https://unpkg.com/@icons/material/svg/format-header-4.svg" width="24" height="24"> | `FormatHeader_4Icon`
- <img src="https://unpkg.com/@icons/material/svg/format-header-5.svg" width="24" height="24"> | `FormatHeader_5Icon`
- <img src="https://unpkg.com/@icons/material/svg/format-header-6.svg" width="24" height="24"> | `FormatHeader_6Icon`
- <img src="https://unpkg.com/@icons/material/svg/format-horizontal-align-center.svg" width="24" height="24"> | `FormatHorizontalAlignCenterIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-horizontal-align-left.svg" width="24" height="24"> | `FormatHorizontalAlignLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-horizontal-align-right.svg" width="24" height="24"> | `FormatHorizontalAlignRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-indent-decrease.svg" width="24" height="24"> | `FormatIndentDecreaseIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-indent-increase.svg" width="24" height="24"> | `FormatIndentIncreaseIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-italic.svg" width="24" height="24"> | `FormatItalicIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-line-spacing.svg" width="24" height="24"> | `FormatLineSpacingIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-line-style.svg" width="24" height="24"> | `FormatLineStyleIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-line-weight.svg" width="24" height="24"> | `FormatLineWeightIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-list-bulleted.svg" width="24" height="24"> | `FormatListBulletedIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-list-bulleted-type.svg" width="24" height="24"> | `FormatListBulletedTypeIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-list-checks.svg" width="24" height="24"> | `FormatListChecksIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-list-numbers.svg" width="24" height="24"> | `FormatListNumbersIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-page-break.svg" width="24" height="24"> | `FormatPageBreakIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-paint.svg" width="24" height="24"> | `FormatPaintIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-paragraph.svg" width="24" height="24"> | `FormatParagraphIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-pilcrow.svg" width="24" height="24"> | `FormatPilcrowIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-quote-close.svg" width="24" height="24"> | `FormatQuoteCloseIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-quote-open.svg" width="24" height="24"> | `FormatQuoteOpenIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-rotate-90.svg" width="24" height="24"> | `FormatRotate_90Icon`
- <img src="https://unpkg.com/@icons/material/svg/format-section.svg" width="24" height="24"> | `FormatSectionIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-size.svg" width="24" height="24"> | `FormatSizeIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-strikethrough.svg" width="24" height="24"> | `FormatStrikethroughIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-strikethrough-variant.svg" width="24" height="24"> | `FormatStrikethroughVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-subscript.svg" width="24" height="24"> | `FormatSubscriptIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-superscript.svg" width="24" height="24"> | `FormatSuperscriptIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-text.svg" width="24" height="24"> | `FormatTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-textdirection-l-to-r.svg" width="24" height="24"> | `FormatTextdirectionLToRIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-textdirection-r-to-l.svg" width="24" height="24"> | `FormatTextdirectionRToLIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-title.svg" width="24" height="24"> | `FormatTitleIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-underline.svg" width="24" height="24"> | `FormatUnderlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-vertical-align-bottom.svg" width="24" height="24"> | `FormatVerticalAlignBottomIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-vertical-align-center.svg" width="24" height="24"> | `FormatVerticalAlignCenterIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-vertical-align-top.svg" width="24" height="24"> | `FormatVerticalAlignTopIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-wrap-inline.svg" width="24" height="24"> | `FormatWrapInlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-wrap-square.svg" width="24" height="24"> | `FormatWrapSquareIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-wrap-tight.svg" width="24" height="24"> | `FormatWrapTightIcon`
- <img src="https://unpkg.com/@icons/material/svg/format-wrap-top-bottom.svg" width="24" height="24"> | `FormatWrapTopBottomIcon`
- <img src="https://unpkg.com/@icons/material/svg/forum.svg" width="24" height="24"> | `ForumIcon`
- <img src="https://unpkg.com/@icons/material/svg/forum-outline.svg" width="24" height="24"> | `ForumOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/forward.svg" width="24" height="24"> | `ForwardIcon`
- <img src="https://unpkg.com/@icons/material/svg/foursquare.svg" width="24" height="24"> | `FoursquareIcon`
- <img src="https://unpkg.com/@icons/material/svg/fridge-filled-bottom.svg" width="24" height="24"> | `FridgeFilledBottomIcon`
- <img src="https://unpkg.com/@icons/material/svg/fridge-filled.svg" width="24" height="24"> | `FridgeFilledIcon`
- <img src="https://unpkg.com/@icons/material/svg/fridge-filled-top.svg" width="24" height="24"> | `FridgeFilledTopIcon`
- <img src="https://unpkg.com/@icons/material/svg/fridge.svg" width="24" height="24"> | `FridgeIcon`
- <img src="https://unpkg.com/@icons/material/svg/fuel.svg" width="24" height="24"> | `FuelIcon`
- <img src="https://unpkg.com/@icons/material/svg/fullscreen-exit.svg" width="24" height="24"> | `FullscreenExitIcon`
- <img src="https://unpkg.com/@icons/material/svg/fullscreen.svg" width="24" height="24"> | `FullscreenIcon`
- <img src="https://unpkg.com/@icons/material/svg/function.svg" width="24" height="24"> | `FunctionIcon`
- <img src="https://unpkg.com/@icons/material/svg/function-variant.svg" width="24" height="24"> | `FunctionVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/gamepad.svg" width="24" height="24"> | `GamepadIcon`
- <img src="https://unpkg.com/@icons/material/svg/gamepad-variant.svg" width="24" height="24"> | `GamepadVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/garage-alert.svg" width="24" height="24"> | `GarageAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/garage.svg" width="24" height="24"> | `GarageIcon`
- <img src="https://unpkg.com/@icons/material/svg/garage-open.svg" width="24" height="24"> | `GarageOpenIcon`
- <img src="https://unpkg.com/@icons/material/svg/gas-cylinder.svg" width="24" height="24"> | `GasCylinderIcon`
- <img src="https://unpkg.com/@icons/material/svg/gas-station.svg" width="24" height="24"> | `GasStationIcon`
- <img src="https://unpkg.com/@icons/material/svg/gate.svg" width="24" height="24"> | `GateIcon`
- <img src="https://unpkg.com/@icons/material/svg/gauge-empty.svg" width="24" height="24"> | `GaugeEmptyIcon`
- <img src="https://unpkg.com/@icons/material/svg/gauge-full.svg" width="24" height="24"> | `GaugeFullIcon`
- <img src="https://unpkg.com/@icons/material/svg/gauge.svg" width="24" height="24"> | `GaugeIcon`
- <img src="https://unpkg.com/@icons/material/svg/gauge-low.svg" width="24" height="24"> | `GaugeLowIcon`
- <img src="https://unpkg.com/@icons/material/svg/gavel.svg" width="24" height="24"> | `GavelIcon`
- <img src="https://unpkg.com/@icons/material/svg/gender-female.svg" width="24" height="24"> | `GenderFemaleIcon`
- <img src="https://unpkg.com/@icons/material/svg/gender-male-female.svg" width="24" height="24"> | `GenderMaleFemaleIcon`
- <img src="https://unpkg.com/@icons/material/svg/gender-male.svg" width="24" height="24"> | `GenderMaleIcon`
- <img src="https://unpkg.com/@icons/material/svg/gender-transgender.svg" width="24" height="24"> | `GenderTransgenderIcon`
- <img src="https://unpkg.com/@icons/material/svg/gesture-double-tap.svg" width="24" height="24"> | `GestureDoubleTapIcon`
- <img src="https://unpkg.com/@icons/material/svg/gesture.svg" width="24" height="24"> | `GestureIcon`
- <img src="https://unpkg.com/@icons/material/svg/gesture-swipe-down.svg" width="24" height="24"> | `GestureSwipeDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/gesture-swipe-left.svg" width="24" height="24"> | `GestureSwipeLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/gesture-swipe-right.svg" width="24" height="24"> | `GestureSwipeRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/gesture-swipe-up.svg" width="24" height="24"> | `GestureSwipeUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/gesture-tap.svg" width="24" height="24"> | `GestureTapIcon`
- <img src="https://unpkg.com/@icons/material/svg/gesture-two-double-tap.svg" width="24" height="24"> | `GestureTwoDoubleTapIcon`
- <img src="https://unpkg.com/@icons/material/svg/gesture-two-tap.svg" width="24" height="24"> | `GestureTwoTapIcon`
- <img src="https://unpkg.com/@icons/material/svg/ghost.svg" width="24" height="24"> | `GhostIcon`
- <img src="https://unpkg.com/@icons/material/svg/gift.svg" width="24" height="24"> | `GiftIcon`
- <img src="https://unpkg.com/@icons/material/svg/git.svg" width="24" height="24"> | `GitIcon`
- <img src="https://unpkg.com/@icons/material/svg/github-box.svg" width="24" height="24"> | `GithubBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/github-circle.svg" width="24" height="24"> | `GithubCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/github-face.svg" width="24" height="24"> | `GithubFaceIcon`
- <img src="https://unpkg.com/@icons/material/svg/glass-cocktail.svg" width="24" height="24"> | `GlassCocktailIcon`
- <img src="https://unpkg.com/@icons/material/svg/glass-flute.svg" width="24" height="24"> | `GlassFluteIcon`
- <img src="https://unpkg.com/@icons/material/svg/glass-mug.svg" width="24" height="24"> | `GlassMugIcon`
- <img src="https://unpkg.com/@icons/material/svg/glass-stange.svg" width="24" height="24"> | `GlassStangeIcon`
- <img src="https://unpkg.com/@icons/material/svg/glass-tulip.svg" width="24" height="24"> | `GlassTulipIcon`
- <img src="https://unpkg.com/@icons/material/svg/glass-wine.svg" width="24" height="24"> | `GlassWineIcon`
- <img src="https://unpkg.com/@icons/material/svg/glassdoor.svg" width="24" height="24"> | `GlassdoorIcon`
- <img src="https://unpkg.com/@icons/material/svg/glasses.svg" width="24" height="24"> | `GlassesIcon`
- <img src="https://unpkg.com/@icons/material/svg/gmail.svg" width="24" height="24"> | `GmailIcon`
- <img src="https://unpkg.com/@icons/material/svg/gnome.svg" width="24" height="24"> | `GnomeIcon`
- <img src="https://unpkg.com/@icons/material/svg/golf.svg" width="24" height="24"> | `GolfIcon`
- <img src="https://unpkg.com/@icons/material/svg/gondola.svg" width="24" height="24"> | `GondolaIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-analytics.svg" width="24" height="24"> | `GoogleAnalyticsIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-assistant.svg" width="24" height="24"> | `GoogleAssistantIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-cardboard.svg" width="24" height="24"> | `GoogleCardboardIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-chrome.svg" width="24" height="24"> | `GoogleChromeIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-circles-communities.svg" width="24" height="24"> | `GoogleCirclesCommunitiesIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-circles-extended.svg" width="24" height="24"> | `GoogleCirclesExtendedIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-circles-group.svg" width="24" height="24"> | `GoogleCirclesGroupIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-circles.svg" width="24" height="24"> | `GoogleCirclesIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-controller.svg" width="24" height="24"> | `GoogleControllerIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-controller-off.svg" width="24" height="24"> | `GoogleControllerOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-drive.svg" width="24" height="24"> | `GoogleDriveIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-earth.svg" width="24" height="24"> | `GoogleEarthIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-glass.svg" width="24" height="24"> | `GoogleGlassIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-home.svg" width="24" height="24"> | `GoogleHomeIcon`
- <img src="https://unpkg.com/@icons/material/svg/google.svg" width="24" height="24"> | `GoogleIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-keep.svg" width="24" height="24"> | `GoogleKeepIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-maps.svg" width="24" height="24"> | `GoogleMapsIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-nearby.svg" width="24" height="24"> | `GoogleNearbyIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-pages.svg" width="24" height="24"> | `GooglePagesIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-photos.svg" width="24" height="24"> | `GooglePhotosIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-physical-web.svg" width="24" height="24"> | `GooglePhysicalWebIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-play.svg" width="24" height="24"> | `GooglePlayIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-plus-box.svg" width="24" height="24"> | `GooglePlusBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-plus.svg" width="24" height="24"> | `GooglePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-translate.svg" width="24" height="24"> | `GoogleTranslateIcon`
- <img src="https://unpkg.com/@icons/material/svg/google-wallet.svg" width="24" height="24"> | `GoogleWalletIcon`
- <img src="https://unpkg.com/@icons/material/svg/gpu.svg" width="24" height="24"> | `GpuIcon`
- <img src="https://unpkg.com/@icons/material/svg/gradient.svg" width="24" height="24"> | `GradientIcon`
- <img src="https://unpkg.com/@icons/material/svg/graphql.svg" width="24" height="24"> | `GraphqlIcon`
- <img src="https://unpkg.com/@icons/material/svg/grease-pencil.svg" width="24" height="24"> | `GreasePencilIcon`
- <img src="https://unpkg.com/@icons/material/svg/grid.svg" width="24" height="24"> | `GridIcon`
- <img src="https://unpkg.com/@icons/material/svg/grid-large.svg" width="24" height="24"> | `GridLargeIcon`
- <img src="https://unpkg.com/@icons/material/svg/grid-off.svg" width="24" height="24"> | `GridOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/group.svg" width="24" height="24"> | `GroupIcon`
- <img src="https://unpkg.com/@icons/material/svg/guitar-acoustic.svg" width="24" height="24"> | `GuitarAcousticIcon`
- <img src="https://unpkg.com/@icons/material/svg/guitar-electric.svg" width="24" height="24"> | `GuitarElectricIcon`
- <img src="https://unpkg.com/@icons/material/svg/guitar-pick.svg" width="24" height="24"> | `GuitarPickIcon`
- <img src="https://unpkg.com/@icons/material/svg/guitar-pick-outline.svg" width="24" height="24"> | `GuitarPickOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/guy-fawkes-mask.svg" width="24" height="24"> | `GuyFawkesMaskIcon`
- <img src="https://unpkg.com/@icons/material/svg/hackernews.svg" width="24" height="24"> | `HackernewsIcon`
- <img src="https://unpkg.com/@icons/material/svg/hamburger.svg" width="24" height="24"> | `HamburgerIcon`
- <img src="https://unpkg.com/@icons/material/svg/hand-pointing-right.svg" width="24" height="24"> | `HandPointingRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/hanger.svg" width="24" height="24"> | `HangerIcon`
- <img src="https://unpkg.com/@icons/material/svg/hangouts.svg" width="24" height="24"> | `HangoutsIcon`
- <img src="https://unpkg.com/@icons/material/svg/harddisk.svg" width="24" height="24"> | `HarddiskIcon`
- <img src="https://unpkg.com/@icons/material/svg/headphones-box.svg" width="24" height="24"> | `HeadphonesBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/headphones.svg" width="24" height="24"> | `HeadphonesIcon`
- <img src="https://unpkg.com/@icons/material/svg/headphones-off.svg" width="24" height="24"> | `HeadphonesOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/headphones-settings.svg" width="24" height="24"> | `HeadphonesSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/headset-dock.svg" width="24" height="24"> | `HeadsetDockIcon`
- <img src="https://unpkg.com/@icons/material/svg/headset.svg" width="24" height="24"> | `HeadsetIcon`
- <img src="https://unpkg.com/@icons/material/svg/headset-off.svg" width="24" height="24"> | `HeadsetOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/heart-box.svg" width="24" height="24"> | `HeartBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/heart-box-outline.svg" width="24" height="24"> | `HeartBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/heart-broken.svg" width="24" height="24"> | `HeartBrokenIcon`
- <img src="https://unpkg.com/@icons/material/svg/heart-half-full.svg" width="24" height="24"> | `HeartHalfFullIcon`
- <img src="https://unpkg.com/@icons/material/svg/heart-half.svg" width="24" height="24"> | `HeartHalfIcon`
- <img src="https://unpkg.com/@icons/material/svg/heart-half-outline.svg" width="24" height="24"> | `HeartHalfOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/heart.svg" width="24" height="24"> | `HeartIcon`
- <img src="https://unpkg.com/@icons/material/svg/heart-off.svg" width="24" height="24"> | `HeartOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/heart-outline.svg" width="24" height="24"> | `HeartOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/heart-pulse.svg" width="24" height="24"> | `HeartPulseIcon`
- <img src="https://unpkg.com/@icons/material/svg/help-box.svg" width="24" height="24"> | `HelpBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/help-circle.svg" width="24" height="24"> | `HelpCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/help-circle-outline.svg" width="24" height="24"> | `HelpCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/help.svg" width="24" height="24"> | `HelpIcon`
- <img src="https://unpkg.com/@icons/material/svg/help-network.svg" width="24" height="24"> | `HelpNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/hexagon.svg" width="24" height="24"> | `HexagonIcon`
- <img src="https://unpkg.com/@icons/material/svg/hexagon-multiple.svg" width="24" height="24"> | `HexagonMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/hexagon-outline.svg" width="24" height="24"> | `HexagonOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/high-definition-box.svg" width="24" height="24"> | `HighDefinitionBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/high-definition.svg" width="24" height="24"> | `HighDefinitionIcon`
- <img src="https://unpkg.com/@icons/material/svg/highway.svg" width="24" height="24"> | `HighwayIcon`
- <img src="https://unpkg.com/@icons/material/svg/history.svg" width="24" height="24"> | `HistoryIcon`
- <img src="https://unpkg.com/@icons/material/svg/hockey-puck.svg" width="24" height="24"> | `HockeyPuckIcon`
- <img src="https://unpkg.com/@icons/material/svg/hockey-sticks.svg" width="24" height="24"> | `HockeySticksIcon`
- <img src="https://unpkg.com/@icons/material/svg/hololens.svg" width="24" height="24"> | `HololensIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-account.svg" width="24" height="24"> | `HomeAccountIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-alert.svg" width="24" height="24"> | `HomeAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-assistant.svg" width="24" height="24"> | `HomeAssistantIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-automation.svg" width="24" height="24"> | `HomeAutomationIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-circle.svg" width="24" height="24"> | `HomeCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-currency-usd.svg" width="24" height="24"> | `HomeCurrencyUsdIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-heart.svg" width="24" height="24"> | `HomeHeartIcon`
- <img src="https://unpkg.com/@icons/material/svg/home.svg" width="24" height="24"> | `HomeIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-map-marker.svg" width="24" height="24"> | `HomeMapMarkerIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-modern.svg" width="24" height="24"> | `HomeModernIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-outline.svg" width="24" height="24"> | `HomeOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/home-variant.svg" width="24" height="24"> | `HomeVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/hook.svg" width="24" height="24"> | `HookIcon`
- <img src="https://unpkg.com/@icons/material/svg/hook-off.svg" width="24" height="24"> | `HookOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/hops.svg" width="24" height="24"> | `HopsIcon`
- <img src="https://unpkg.com/@icons/material/svg/hospital-building.svg" width="24" height="24"> | `HospitalBuildingIcon`
- <img src="https://unpkg.com/@icons/material/svg/hospital.svg" width="24" height="24"> | `HospitalIcon`
- <img src="https://unpkg.com/@icons/material/svg/hospital-marker.svg" width="24" height="24"> | `HospitalMarkerIcon`
- <img src="https://unpkg.com/@icons/material/svg/hot-tub.svg" width="24" height="24"> | `HotTubIcon`
- <img src="https://unpkg.com/@icons/material/svg/hotel.svg" width="24" height="24"> | `HotelIcon`
- <img src="https://unpkg.com/@icons/material/svg/houzz-box.svg" width="24" height="24"> | `HouzzBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/houzz.svg" width="24" height="24"> | `HouzzIcon`
- <img src="https://unpkg.com/@icons/material/svg/hulu.svg" width="24" height="24"> | `HuluIcon`
- <img src="https://unpkg.com/@icons/material/svg/human-child.svg" width="24" height="24"> | `HumanChildIcon`
- <img src="https://unpkg.com/@icons/material/svg/human-female.svg" width="24" height="24"> | `HumanFemaleIcon`
- <img src="https://unpkg.com/@icons/material/svg/human-greeting.svg" width="24" height="24"> | `HumanGreetingIcon`
- <img src="https://unpkg.com/@icons/material/svg/human-handsdown.svg" width="24" height="24"> | `HumanHandsdownIcon`
- <img src="https://unpkg.com/@icons/material/svg/human-handsup.svg" width="24" height="24"> | `HumanHandsupIcon`
- <img src="https://unpkg.com/@icons/material/svg/human.svg" width="24" height="24"> | `HumanIcon`
- <img src="https://unpkg.com/@icons/material/svg/human-male-female.svg" width="24" height="24"> | `HumanMaleFemaleIcon`
- <img src="https://unpkg.com/@icons/material/svg/human-male.svg" width="24" height="24"> | `HumanMaleIcon`
- <img src="https://unpkg.com/@icons/material/svg/human-pregnant.svg" width="24" height="24"> | `HumanPregnantIcon`
- <img src="https://unpkg.com/@icons/material/svg/humble-bundle.svg" width="24" height="24"> | `HumbleBundleIcon`
- <img src="https://unpkg.com/@icons/material/svg/ice-cream.svg" width="24" height="24"> | `IceCreamIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-album.svg" width="24" height="24"> | `ImageAlbumIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-area-close.svg" width="24" height="24"> | `ImageAreaCloseIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-area.svg" width="24" height="24"> | `ImageAreaIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-broken.svg" width="24" height="24"> | `ImageBrokenIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-broken-variant.svg" width="24" height="24"> | `ImageBrokenVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-filter-black-white.svg" width="24" height="24"> | `ImageFilterBlackWhiteIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-filter-center-focus.svg" width="24" height="24"> | `ImageFilterCenterFocusIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-filter-center-focus-weak.svg" width="24" height="24"> | `ImageFilterCenterFocusWeakIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-filter-drama.svg" width="24" height="24"> | `ImageFilterDramaIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-filter-frames.svg" width="24" height="24"> | `ImageFilterFramesIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-filter-hdr.svg" width="24" height="24"> | `ImageFilterHdrIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-filter.svg" width="24" height="24"> | `ImageFilterIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-filter-none.svg" width="24" height="24"> | `ImageFilterNoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-filter-tilt-shift.svg" width="24" height="24"> | `ImageFilterTiltShiftIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-filter-vintage.svg" width="24" height="24"> | `ImageFilterVintageIcon`
- <img src="https://unpkg.com/@icons/material/svg/image.svg" width="24" height="24"> | `ImageIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-multiple.svg" width="24" height="24"> | `ImageMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-off.svg" width="24" height="24"> | `ImageOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/image-plus.svg" width="24" height="24"> | `ImagePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/import.svg" width="24" height="24"> | `ImportIcon`
- <img src="https://unpkg.com/@icons/material/svg/inbox-arrow-down.svg" width="24" height="24"> | `InboxArrowDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/inbox-arrow-up.svg" width="24" height="24"> | `InboxArrowUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/inbox.svg" width="24" height="24"> | `InboxIcon`
- <img src="https://unpkg.com/@icons/material/svg/inbox-multiple.svg" width="24" height="24"> | `InboxMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/incognito.svg" width="24" height="24"> | `IncognitoIcon`
- <img src="https://unpkg.com/@icons/material/svg/infinity.svg" width="24" height="24"> | `InfinityIcon`
- <img src="https://unpkg.com/@icons/material/svg/information.svg" width="24" height="24"> | `InformationIcon`
- <img src="https://unpkg.com/@icons/material/svg/information-outline.svg" width="24" height="24"> | `InformationOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/information-variant.svg" width="24" height="24"> | `InformationVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/instagram.svg" width="24" height="24"> | `InstagramIcon`
- <img src="https://unpkg.com/@icons/material/svg/instapaper.svg" width="24" height="24"> | `InstapaperIcon`
- <img src="https://unpkg.com/@icons/material/svg/internet-explorer.svg" width="24" height="24"> | `InternetExplorerIcon`
- <img src="https://unpkg.com/@icons/material/svg/invert-colors.svg" width="24" height="24"> | `InvertColorsIcon`
- <img src="https://unpkg.com/@icons/material/svg/itunes.svg" width="24" height="24"> | `ItunesIcon`
- <img src="https://unpkg.com/@icons/material/svg/jeepney.svg" width="24" height="24"> | `JeepneyIcon`
- <img src="https://unpkg.com/@icons/material/svg/jira.svg" width="24" height="24"> | `JiraIcon`
- <img src="https://unpkg.com/@icons/material/svg/jquery.svg" width="24" height="24"> | `JqueryIcon`
- <img src="https://unpkg.com/@icons/material/svg/jsfiddle.svg" width="24" height="24"> | `JsfiddleIcon`
- <img src="https://unpkg.com/@icons/material/svg/json.svg" width="24" height="24"> | `JsonIcon`
- <img src="https://unpkg.com/@icons/material/svg/karate.svg" width="24" height="24"> | `KarateIcon`
- <img src="https://unpkg.com/@icons/material/svg/keg.svg" width="24" height="24"> | `KegIcon`
- <img src="https://unpkg.com/@icons/material/svg/kettle.svg" width="24" height="24"> | `KettleIcon`
- <img src="https://unpkg.com/@icons/material/svg/key-change.svg" width="24" height="24"> | `KeyChangeIcon`
- <img src="https://unpkg.com/@icons/material/svg/key.svg" width="24" height="24"> | `KeyIcon`
- <img src="https://unpkg.com/@icons/material/svg/key-minus.svg" width="24" height="24"> | `KeyMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/key-plus.svg" width="24" height="24"> | `KeyPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/key-remove.svg" width="24" height="24"> | `KeyRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/key-variant.svg" width="24" height="24"> | `KeyVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/keyboard-backspace.svg" width="24" height="24"> | `KeyboardBackspaceIcon`
- <img src="https://unpkg.com/@icons/material/svg/keyboard-caps.svg" width="24" height="24"> | `KeyboardCapsIcon`
- <img src="https://unpkg.com/@icons/material/svg/keyboard-close.svg" width="24" height="24"> | `KeyboardCloseIcon`
- <img src="https://unpkg.com/@icons/material/svg/keyboard.svg" width="24" height="24"> | `KeyboardIcon`
- <img src="https://unpkg.com/@icons/material/svg/keyboard-off.svg" width="24" height="24"> | `KeyboardOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/keyboard-return.svg" width="24" height="24"> | `KeyboardReturnIcon`
- <img src="https://unpkg.com/@icons/material/svg/keyboard-tab.svg" width="24" height="24"> | `KeyboardTabIcon`
- <img src="https://unpkg.com/@icons/material/svg/keyboard-variant.svg" width="24" height="24"> | `KeyboardVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/kickstarter.svg" width="24" height="24"> | `KickstarterIcon`
- <img src="https://unpkg.com/@icons/material/svg/kodi.svg" width="24" height="24"> | `KodiIcon`
- <img src="https://unpkg.com/@icons/material/svg/label.svg" width="24" height="24"> | `LabelIcon`
- <img src="https://unpkg.com/@icons/material/svg/label-outline.svg" width="24" height="24"> | `LabelOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/ladybug.svg" width="24" height="24"> | `LadybugIcon`
- <img src="https://unpkg.com/@icons/material/svg/lambda.svg" width="24" height="24"> | `LambdaIcon`
- <img src="https://unpkg.com/@icons/material/svg/lamp.svg" width="24" height="24"> | `LampIcon`
- <img src="https://unpkg.com/@icons/material/svg/lan-connect.svg" width="24" height="24"> | `LanConnectIcon`
- <img src="https://unpkg.com/@icons/material/svg/lan-disconnect.svg" width="24" height="24"> | `LanDisconnectIcon`
- <img src="https://unpkg.com/@icons/material/svg/lan.svg" width="24" height="24"> | `LanIcon`
- <img src="https://unpkg.com/@icons/material/svg/lan-pending.svg" width="24" height="24"> | `LanPendingIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-c.svg" width="24" height="24"> | `LanguageCIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-cpp.svg" width="24" height="24"> | `LanguageCppIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-csharp.svg" width="24" height="24"> | `LanguageCsharpIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-css3.svg" width="24" height="24"> | `LanguageCss3Icon`
- <img src="https://unpkg.com/@icons/material/svg/language-go.svg" width="24" height="24"> | `LanguageGoIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-html5.svg" width="24" height="24"> | `LanguageHtml5Icon`
- <img src="https://unpkg.com/@icons/material/svg/language-javascript.svg" width="24" height="24"> | `LanguageJavascriptIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-lua.svg" width="24" height="24"> | `LanguageLuaIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-php.svg" width="24" height="24"> | `LanguagePhpIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-python.svg" width="24" height="24"> | `LanguagePythonIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-python-text.svg" width="24" height="24"> | `LanguagePythonTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-r.svg" width="24" height="24"> | `LanguageRIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-swift.svg" width="24" height="24"> | `LanguageSwiftIcon`
- <img src="https://unpkg.com/@icons/material/svg/language-typescript.svg" width="24" height="24"> | `LanguageTypescriptIcon`
- <img src="https://unpkg.com/@icons/material/svg/laptop-chromebook.svg" width="24" height="24"> | `LaptopChromebookIcon`
- <img src="https://unpkg.com/@icons/material/svg/laptop.svg" width="24" height="24"> | `LaptopIcon`
- <img src="https://unpkg.com/@icons/material/svg/laptop-mac.svg" width="24" height="24"> | `LaptopMacIcon`
- <img src="https://unpkg.com/@icons/material/svg/laptop-off.svg" width="24" height="24"> | `LaptopOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/laptop-windows.svg" width="24" height="24"> | `LaptopWindowsIcon`
- <img src="https://unpkg.com/@icons/material/svg/lastfm.svg" width="24" height="24"> | `LastfmIcon`
- <img src="https://unpkg.com/@icons/material/svg/lastpass.svg" width="24" height="24"> | `LastpassIcon`
- <img src="https://unpkg.com/@icons/material/svg/launch.svg" width="24" height="24"> | `LaunchIcon`
- <img src="https://unpkg.com/@icons/material/svg/lava-lamp.svg" width="24" height="24"> | `LavaLampIcon`
- <img src="https://unpkg.com/@icons/material/svg/layers.svg" width="24" height="24"> | `LayersIcon`
- <img src="https://unpkg.com/@icons/material/svg/layers-off.svg" width="24" height="24"> | `LayersOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/lead-pencil.svg" width="24" height="24"> | `LeadPencilIcon`
- <img src="https://unpkg.com/@icons/material/svg/leaf.svg" width="24" height="24"> | `LeafIcon`
- <img src="https://unpkg.com/@icons/material/svg/led-off.svg" width="24" height="24"> | `LedOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/led-on.svg" width="24" height="24"> | `LedOnIcon`
- <img src="https://unpkg.com/@icons/material/svg/led-outline.svg" width="24" height="24"> | `LedOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/led-strip.svg" width="24" height="24"> | `LedStripIcon`
- <img src="https://unpkg.com/@icons/material/svg/led-variant-off.svg" width="24" height="24"> | `LedVariantOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/led-variant-on.svg" width="24" height="24"> | `LedVariantOnIcon`
- <img src="https://unpkg.com/@icons/material/svg/led-variant-outline.svg" width="24" height="24"> | `LedVariantOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/library-books.svg" width="24" height="24"> | `LibraryBooksIcon`
- <img src="https://unpkg.com/@icons/material/svg/library.svg" width="24" height="24"> | `LibraryIcon`
- <img src="https://unpkg.com/@icons/material/svg/library-music.svg" width="24" height="24"> | `LibraryMusicIcon`
- <img src="https://unpkg.com/@icons/material/svg/library-plus.svg" width="24" height="24"> | `LibraryPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/lifebuoy.svg" width="24" height="24"> | `LifebuoyIcon`
- <img src="https://unpkg.com/@icons/material/svg/lightbulb.svg" width="24" height="24"> | `LightbulbIcon`
- <img src="https://unpkg.com/@icons/material/svg/lightbulb-on.svg" width="24" height="24"> | `LightbulbOnIcon`
- <img src="https://unpkg.com/@icons/material/svg/lightbulb-on-outline.svg" width="24" height="24"> | `LightbulbOnOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/lightbulb-outline.svg" width="24" height="24"> | `LightbulbOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/link.svg" width="24" height="24"> | `LinkIcon`
- <img src="https://unpkg.com/@icons/material/svg/link-off.svg" width="24" height="24"> | `LinkOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/link-variant.svg" width="24" height="24"> | `LinkVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/link-variant-off.svg" width="24" height="24"> | `LinkVariantOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/linkedin-box.svg" width="24" height="24"> | `LinkedinBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/linkedin.svg" width="24" height="24"> | `LinkedinIcon`
- <img src="https://unpkg.com/@icons/material/svg/linux.svg" width="24" height="24"> | `LinuxIcon`
- <img src="https://unpkg.com/@icons/material/svg/loading.svg" width="24" height="24"> | `LoadingIcon`
- <img src="https://unpkg.com/@icons/material/svg/lock.svg" width="24" height="24"> | `LockIcon`
- <img src="https://unpkg.com/@icons/material/svg/lock-open.svg" width="24" height="24"> | `LockOpenIcon`
- <img src="https://unpkg.com/@icons/material/svg/lock-open-outline.svg" width="24" height="24"> | `LockOpenOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/lock-outline.svg" width="24" height="24"> | `LockOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/lock-pattern.svg" width="24" height="24"> | `LockPatternIcon`
- <img src="https://unpkg.com/@icons/material/svg/lock-plus.svg" width="24" height="24"> | `LockPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/lock-reset.svg" width="24" height="24"> | `LockResetIcon`
- <img src="https://unpkg.com/@icons/material/svg/lock-smart.svg" width="24" height="24"> | `LockSmartIcon`
- <img src="https://unpkg.com/@icons/material/svg/locker.svg" width="24" height="24"> | `LockerIcon`
- <img src="https://unpkg.com/@icons/material/svg/locker-multiple.svg" width="24" height="24"> | `LockerMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/login.svg" width="24" height="24"> | `LoginIcon`
- <img src="https://unpkg.com/@icons/material/svg/login-variant.svg" width="24" height="24"> | `LoginVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/logout.svg" width="24" height="24"> | `LogoutIcon`
- <img src="https://unpkg.com/@icons/material/svg/logout-variant.svg" width="24" height="24"> | `LogoutVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/looks.svg" width="24" height="24"> | `LooksIcon`
- <img src="https://unpkg.com/@icons/material/svg/loop.svg" width="24" height="24"> | `LoopIcon`
- <img src="https://unpkg.com/@icons/material/svg/loupe.svg" width="24" height="24"> | `LoupeIcon`
- <img src="https://unpkg.com/@icons/material/svg/lumx.svg" width="24" height="24"> | `LumxIcon`
- <img src="https://unpkg.com/@icons/material/svg/magnet.svg" width="24" height="24"> | `MagnetIcon`
- <img src="https://unpkg.com/@icons/material/svg/magnet-on.svg" width="24" height="24"> | `MagnetOnIcon`
- <img src="https://unpkg.com/@icons/material/svg/magnify.svg" width="24" height="24"> | `MagnifyIcon`
- <img src="https://unpkg.com/@icons/material/svg/magnify-minus.svg" width="24" height="24"> | `MagnifyMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/magnify-minus-outline.svg" width="24" height="24"> | `MagnifyMinusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/magnify-plus.svg" width="24" height="24"> | `MagnifyPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/magnify-plus-outline.svg" width="24" height="24"> | `MagnifyPlusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/mail-ru.svg" width="24" height="24"> | `MailRuIcon`
- <img src="https://unpkg.com/@icons/material/svg/mailbox.svg" width="24" height="24"> | `MailboxIcon`
- <img src="https://unpkg.com/@icons/material/svg/map.svg" width="24" height="24"> | `MapIcon`
- <img src="https://unpkg.com/@icons/material/svg/map-marker-circle.svg" width="24" height="24"> | `MapMarkerCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/map-marker.svg" width="24" height="24"> | `MapMarkerIcon`
- <img src="https://unpkg.com/@icons/material/svg/map-marker-minus.svg" width="24" height="24"> | `MapMarkerMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/map-marker-multiple.svg" width="24" height="24"> | `MapMarkerMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/map-marker-off.svg" width="24" height="24"> | `MapMarkerOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/map-marker-outline.svg" width="24" height="24"> | `MapMarkerOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/map-marker-plus.svg" width="24" height="24"> | `MapMarkerPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/map-marker-radius.svg" width="24" height="24"> | `MapMarkerRadiusIcon`
- <img src="https://unpkg.com/@icons/material/svg/margin.svg" width="24" height="24"> | `MarginIcon`
- <img src="https://unpkg.com/@icons/material/svg/markdown.svg" width="24" height="24"> | `MarkdownIcon`
- <img src="https://unpkg.com/@icons/material/svg/marker-check.svg" width="24" height="24"> | `MarkerCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/marker.svg" width="24" height="24"> | `MarkerIcon`
- <img src="https://unpkg.com/@icons/material/svg/material-ui.svg" width="24" height="24"> | `MaterialUiIcon`
- <img src="https://unpkg.com/@icons/material/svg/math-compass.svg" width="24" height="24"> | `MathCompassIcon`
- <img src="https://unpkg.com/@icons/material/svg/matrix.svg" width="24" height="24"> | `MatrixIcon`
- <img src="https://unpkg.com/@icons/material/svg/maxcdn.svg" width="24" height="24"> | `MaxcdnIcon`
- <img src="https://unpkg.com/@icons/material/svg/medical-bag.svg" width="24" height="24"> | `MedicalBagIcon`
- <img src="https://unpkg.com/@icons/material/svg/medium.svg" width="24" height="24"> | `MediumIcon`
- <img src="https://unpkg.com/@icons/material/svg/memory.svg" width="24" height="24"> | `MemoryIcon`
- <img src="https://unpkg.com/@icons/material/svg/menu-down.svg" width="24" height="24"> | `MenuDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/menu-down-outline.svg" width="24" height="24"> | `MenuDownOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/menu.svg" width="24" height="24"> | `MenuIcon`
- <img src="https://unpkg.com/@icons/material/svg/menu-left.svg" width="24" height="24"> | `MenuLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/menu-right.svg" width="24" height="24"> | `MenuRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/menu-up.svg" width="24" height="24"> | `MenuUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/menu-up-outline.svg" width="24" height="24"> | `MenuUpOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-alert.svg" width="24" height="24"> | `MessageAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-bulleted.svg" width="24" height="24"> | `MessageBulletedIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-bulleted-off.svg" width="24" height="24"> | `MessageBulletedOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-draw.svg" width="24" height="24"> | `MessageDrawIcon`
- <img src="https://unpkg.com/@icons/material/svg/message.svg" width="24" height="24"> | `MessageIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-image.svg" width="24" height="24"> | `MessageImageIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-outline.svg" width="24" height="24"> | `MessageOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-plus.svg" width="24" height="24"> | `MessagePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-processing.svg" width="24" height="24"> | `MessageProcessingIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-reply.svg" width="24" height="24"> | `MessageReplyIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-reply-text.svg" width="24" height="24"> | `MessageReplyTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-settings.svg" width="24" height="24"> | `MessageSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-settings-variant.svg" width="24" height="24"> | `MessageSettingsVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-text.svg" width="24" height="24"> | `MessageTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-text-outline.svg" width="24" height="24"> | `MessageTextOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/message-video.svg" width="24" height="24"> | `MessageVideoIcon`
- <img src="https://unpkg.com/@icons/material/svg/meteor.svg" width="24" height="24"> | `MeteorIcon`
- <img src="https://unpkg.com/@icons/material/svg/metronome.svg" width="24" height="24"> | `MetronomeIcon`
- <img src="https://unpkg.com/@icons/material/svg/metronome-tick.svg" width="24" height="24"> | `MetronomeTickIcon`
- <img src="https://unpkg.com/@icons/material/svg/micro-sd.svg" width="24" height="24"> | `MicroSdIcon`
- <img src="https://unpkg.com/@icons/material/svg/microphone.svg" width="24" height="24"> | `MicrophoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/microphone-minus.svg" width="24" height="24"> | `MicrophoneMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/microphone-off.svg" width="24" height="24"> | `MicrophoneOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/microphone-outline.svg" width="24" height="24"> | `MicrophoneOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/microphone-plus.svg" width="24" height="24"> | `MicrophonePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/microphone-settings.svg" width="24" height="24"> | `MicrophoneSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/microphone-variant.svg" width="24" height="24"> | `MicrophoneVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/microphone-variant-off.svg" width="24" height="24"> | `MicrophoneVariantOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/microscope.svg" width="24" height="24"> | `MicroscopeIcon`
- <img src="https://unpkg.com/@icons/material/svg/microsoft.svg" width="24" height="24"> | `MicrosoftIcon`
- <img src="https://unpkg.com/@icons/material/svg/minecraft.svg" width="24" height="24"> | `MinecraftIcon`
- <img src="https://unpkg.com/@icons/material/svg/minus-box.svg" width="24" height="24"> | `MinusBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/minus-box-outline.svg" width="24" height="24"> | `MinusBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/minus-circle.svg" width="24" height="24"> | `MinusCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/minus-circle-outline.svg" width="24" height="24"> | `MinusCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/minus.svg" width="24" height="24"> | `MinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/minus-network.svg" width="24" height="24"> | `MinusNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/mixcloud.svg" width="24" height="24"> | `MixcloudIcon`
- <img src="https://unpkg.com/@icons/material/svg/mixed-reality.svg" width="24" height="24"> | `MixedRealityIcon`
- <img src="https://unpkg.com/@icons/material/svg/mixer.svg" width="24" height="24"> | `MixerIcon`
- <img src="https://unpkg.com/@icons/material/svg/monitor.svg" width="24" height="24"> | `MonitorIcon`
- <img src="https://unpkg.com/@icons/material/svg/monitor-multiple.svg" width="24" height="24"> | `MonitorMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/more.svg" width="24" height="24"> | `MoreIcon`
- <img src="https://unpkg.com/@icons/material/svg/motorbike.svg" width="24" height="24"> | `MotorbikeIcon`
- <img src="https://unpkg.com/@icons/material/svg/mouse.svg" width="24" height="24"> | `MouseIcon`
- <img src="https://unpkg.com/@icons/material/svg/mouse-off.svg" width="24" height="24"> | `MouseOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/mouse-variant.svg" width="24" height="24"> | `MouseVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/mouse-variant-off.svg" width="24" height="24"> | `MouseVariantOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/move-resize.svg" width="24" height="24"> | `MoveResizeIcon`
- <img src="https://unpkg.com/@icons/material/svg/move-resize-variant.svg" width="24" height="24"> | `MoveResizeVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/movie.svg" width="24" height="24"> | `MovieIcon`
- <img src="https://unpkg.com/@icons/material/svg/movie-roll.svg" width="24" height="24"> | `MovieRollIcon`
- <img src="https://unpkg.com/@icons/material/svg/multiplication-box.svg" width="24" height="24"> | `MultiplicationBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/multiplication.svg" width="24" height="24"> | `MultiplicationIcon`
- <img src="https://unpkg.com/@icons/material/svg/mushroom.svg" width="24" height="24"> | `MushroomIcon`
- <img src="https://unpkg.com/@icons/material/svg/mushroom-outline.svg" width="24" height="24"> | `MushroomOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-box.svg" width="24" height="24"> | `MusicBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-box-outline.svg" width="24" height="24"> | `MusicBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-circle.svg" width="24" height="24"> | `MusicCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/music.svg" width="24" height="24"> | `MusicIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-note-bluetooth.svg" width="24" height="24"> | `MusicNoteBluetoothIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-note-bluetooth-off.svg" width="24" height="24"> | `MusicNoteBluetoothOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-note-eighth.svg" width="24" height="24"> | `MusicNoteEighthIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-note-half.svg" width="24" height="24"> | `MusicNoteHalfIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-note.svg" width="24" height="24"> | `MusicNoteIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-note-off.svg" width="24" height="24"> | `MusicNoteOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-note-quarter.svg" width="24" height="24"> | `MusicNoteQuarterIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-note-sixteenth.svg" width="24" height="24"> | `MusicNoteSixteenthIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-note-whole.svg" width="24" height="24"> | `MusicNoteWholeIcon`
- <img src="https://unpkg.com/@icons/material/svg/music-off.svg" width="24" height="24"> | `MusicOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/nativescript.svg" width="24" height="24"> | `NativescriptIcon`
- <img src="https://unpkg.com/@icons/material/svg/nature.svg" width="24" height="24"> | `NatureIcon`
- <img src="https://unpkg.com/@icons/material/svg/nature-people.svg" width="24" height="24"> | `NaturePeopleIcon`
- <img src="https://unpkg.com/@icons/material/svg/navigation.svg" width="24" height="24"> | `NavigationIcon`
- <img src="https://unpkg.com/@icons/material/svg/near-me.svg" width="24" height="24"> | `NearMeIcon`
- <img src="https://unpkg.com/@icons/material/svg/needle.svg" width="24" height="24"> | `NeedleIcon`
- <img src="https://unpkg.com/@icons/material/svg/nest-protect.svg" width="24" height="24"> | `NestProtectIcon`
- <img src="https://unpkg.com/@icons/material/svg/nest-thermostat.svg" width="24" height="24"> | `NestThermostatIcon`
- <img src="https://unpkg.com/@icons/material/svg/netflix.svg" width="24" height="24"> | `NetflixIcon`
- <img src="https://unpkg.com/@icons/material/svg/network.svg" width="24" height="24"> | `NetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/new-box.svg" width="24" height="24"> | `NewBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/newspaper.svg" width="24" height="24"> | `NewspaperIcon`
- <img src="https://unpkg.com/@icons/material/svg/nfc.svg" width="24" height="24"> | `NfcIcon`
- <img src="https://unpkg.com/@icons/material/svg/nfc-tap.svg" width="24" height="24"> | `NfcTapIcon`
- <img src="https://unpkg.com/@icons/material/svg/nfc-variant.svg" width="24" height="24"> | `NfcVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/ninja.svg" width="24" height="24"> | `NinjaIcon`
- <img src="https://unpkg.com/@icons/material/svg/nintendo-switch.svg" width="24" height="24"> | `NintendoSwitchIcon`
- <img src="https://unpkg.com/@icons/material/svg/nodejs.svg" width="24" height="24"> | `NodejsIcon`
- <img src="https://unpkg.com/@icons/material/svg/note.svg" width="24" height="24"> | `NoteIcon`
- <img src="https://unpkg.com/@icons/material/svg/note-multiple.svg" width="24" height="24"> | `NoteMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/note-multiple-outline.svg" width="24" height="24"> | `NoteMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/note-outline.svg" width="24" height="24"> | `NoteOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/note-plus.svg" width="24" height="24"> | `NotePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/note-plus-outline.svg" width="24" height="24"> | `NotePlusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/note-text.svg" width="24" height="24"> | `NoteTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/notebook.svg" width="24" height="24"> | `NotebookIcon`
- <img src="https://unpkg.com/@icons/material/svg/notification-clear-all.svg" width="24" height="24"> | `NotificationClearAllIcon`
- <img src="https://unpkg.com/@icons/material/svg/npm.svg" width="24" height="24"> | `NpmIcon`
- <img src="https://unpkg.com/@icons/material/svg/nuke.svg" width="24" height="24"> | `NukeIcon`
- <img src="https://unpkg.com/@icons/material/svg/null.svg" width="24" height="24"> | `NullIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric.svg" width="24" height="24"> | `NumericIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-0-box.svg" width="24" height="24"> | `Numeric_0BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-0-box-multiple-outline.svg" width="24" height="24"> | `Numeric_0BoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-0-box-outline.svg" width="24" height="24"> | `Numeric_0BoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-1-box.svg" width="24" height="24"> | `Numeric_1BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-1-box-multiple-outline.svg" width="24" height="24"> | `Numeric_1BoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-1-box-outline.svg" width="24" height="24"> | `Numeric_1BoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-2-box.svg" width="24" height="24"> | `Numeric_2BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-2-box-multiple-outline.svg" width="24" height="24"> | `Numeric_2BoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-2-box-outline.svg" width="24" height="24"> | `Numeric_2BoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-3-box.svg" width="24" height="24"> | `Numeric_3BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-3-box-multiple-outline.svg" width="24" height="24"> | `Numeric_3BoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-3-box-outline.svg" width="24" height="24"> | `Numeric_3BoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-4-box.svg" width="24" height="24"> | `Numeric_4BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-4-box-multiple-outline.svg" width="24" height="24"> | `Numeric_4BoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-4-box-outline.svg" width="24" height="24"> | `Numeric_4BoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-5-box.svg" width="24" height="24"> | `Numeric_5BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-5-box-multiple-outline.svg" width="24" height="24"> | `Numeric_5BoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-5-box-outline.svg" width="24" height="24"> | `Numeric_5BoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-6-box.svg" width="24" height="24"> | `Numeric_6BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-6-box-multiple-outline.svg" width="24" height="24"> | `Numeric_6BoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-6-box-outline.svg" width="24" height="24"> | `Numeric_6BoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-7-box.svg" width="24" height="24"> | `Numeric_7BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-7-box-multiple-outline.svg" width="24" height="24"> | `Numeric_7BoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-7-box-outline.svg" width="24" height="24"> | `Numeric_7BoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-8-box.svg" width="24" height="24"> | `Numeric_8BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-8-box-multiple-outline.svg" width="24" height="24"> | `Numeric_8BoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-8-box-outline.svg" width="24" height="24"> | `Numeric_8BoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-9-box.svg" width="24" height="24"> | `Numeric_9BoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-9-box-multiple-outline.svg" width="24" height="24"> | `Numeric_9BoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-9-box-outline.svg" width="24" height="24"> | `Numeric_9BoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-9-plus-box.svg" width="24" height="24"> | `Numeric_9PlusBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-9-plus-box-multiple-outline.svg" width="24" height="24"> | `Numeric_9PlusBoxMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/numeric-9-plus-box-outline.svg" width="24" height="24"> | `Numeric_9PlusBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/nut.svg" width="24" height="24"> | `NutIcon`
- <img src="https://unpkg.com/@icons/material/svg/nutrition.svg" width="24" height="24"> | `NutritionIcon`
- <img src="https://unpkg.com/@icons/material/svg/oar.svg" width="24" height="24"> | `OarIcon`
- <img src="https://unpkg.com/@icons/material/svg/octagon.svg" width="24" height="24"> | `OctagonIcon`
- <img src="https://unpkg.com/@icons/material/svg/octagon-outline.svg" width="24" height="24"> | `OctagonOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/octagram.svg" width="24" height="24"> | `OctagramIcon`
- <img src="https://unpkg.com/@icons/material/svg/octagram-outline.svg" width="24" height="24"> | `OctagramOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/odnoklassniki.svg" width="24" height="24"> | `OdnoklassnikiIcon`
- <img src="https://unpkg.com/@icons/material/svg/office.svg" width="24" height="24"> | `OfficeIcon`
- <img src="https://unpkg.com/@icons/material/svg/oil.svg" width="24" height="24"> | `OilIcon`
- <img src="https://unpkg.com/@icons/material/svg/oil-temperature.svg" width="24" height="24"> | `OilTemperatureIcon`
- <img src="https://unpkg.com/@icons/material/svg/omega.svg" width="24" height="24"> | `OmegaIcon`
- <img src="https://unpkg.com/@icons/material/svg/onedrive.svg" width="24" height="24"> | `OnedriveIcon`
- <img src="https://unpkg.com/@icons/material/svg/onenote.svg" width="24" height="24"> | `OnenoteIcon`
- <img src="https://unpkg.com/@icons/material/svg/onepassword.svg" width="24" height="24"> | `OnepasswordIcon`
- <img src="https://unpkg.com/@icons/material/svg/opacity.svg" width="24" height="24"> | `OpacityIcon`
- <img src="https://unpkg.com/@icons/material/svg/open-in-app.svg" width="24" height="24"> | `OpenInAppIcon`
- <img src="https://unpkg.com/@icons/material/svg/open-in-new.svg" width="24" height="24"> | `OpenInNewIcon`
- <img src="https://unpkg.com/@icons/material/svg/openid.svg" width="24" height="24"> | `OpenidIcon`
- <img src="https://unpkg.com/@icons/material/svg/opera.svg" width="24" height="24"> | `OperaIcon`
- <img src="https://unpkg.com/@icons/material/svg/orbit.svg" width="24" height="24"> | `OrbitIcon`
- <img src="https://unpkg.com/@icons/material/svg/ornament.svg" width="24" height="24"> | `OrnamentIcon`
- <img src="https://unpkg.com/@icons/material/svg/ornament-variant.svg" width="24" height="24"> | `OrnamentVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/owl.svg" width="24" height="24"> | `OwlIcon`
- <img src="https://unpkg.com/@icons/material/svg/package-down.svg" width="24" height="24"> | `PackageDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/package.svg" width="24" height="24"> | `PackageIcon`
- <img src="https://unpkg.com/@icons/material/svg/package-up.svg" width="24" height="24"> | `PackageUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/package-variant-closed.svg" width="24" height="24"> | `PackageVariantClosedIcon`
- <img src="https://unpkg.com/@icons/material/svg/package-variant.svg" width="24" height="24"> | `PackageVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/page-first.svg" width="24" height="24"> | `PageFirstIcon`
- <img src="https://unpkg.com/@icons/material/svg/page-last.svg" width="24" height="24"> | `PageLastIcon`
- <img src="https://unpkg.com/@icons/material/svg/page-layout-body.svg" width="24" height="24"> | `PageLayoutBodyIcon`
- <img src="https://unpkg.com/@icons/material/svg/page-layout-footer.svg" width="24" height="24"> | `PageLayoutFooterIcon`
- <img src="https://unpkg.com/@icons/material/svg/page-layout-header.svg" width="24" height="24"> | `PageLayoutHeaderIcon`
- <img src="https://unpkg.com/@icons/material/svg/page-layout-sidebar-left.svg" width="24" height="24"> | `PageLayoutSidebarLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/page-layout-sidebar-right.svg" width="24" height="24"> | `PageLayoutSidebarRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/palette-advanced.svg" width="24" height="24"> | `PaletteAdvancedIcon`
- <img src="https://unpkg.com/@icons/material/svg/palette.svg" width="24" height="24"> | `PaletteIcon`
- <img src="https://unpkg.com/@icons/material/svg/palette-swatch.svg" width="24" height="24"> | `PaletteSwatchIcon`
- <img src="https://unpkg.com/@icons/material/svg/panda.svg" width="24" height="24"> | `PandaIcon`
- <img src="https://unpkg.com/@icons/material/svg/pandora.svg" width="24" height="24"> | `PandoraIcon`
- <img src="https://unpkg.com/@icons/material/svg/panorama-fisheye.svg" width="24" height="24"> | `PanoramaFisheyeIcon`
- <img src="https://unpkg.com/@icons/material/svg/panorama-horizontal.svg" width="24" height="24"> | `PanoramaHorizontalIcon`
- <img src="https://unpkg.com/@icons/material/svg/panorama.svg" width="24" height="24"> | `PanoramaIcon`
- <img src="https://unpkg.com/@icons/material/svg/panorama-vertical.svg" width="24" height="24"> | `PanoramaVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/panorama-wide-angle.svg" width="24" height="24"> | `PanoramaWideAngleIcon`
- <img src="https://unpkg.com/@icons/material/svg/paper-cut-vertical.svg" width="24" height="24"> | `PaperCutVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/paperclip.svg" width="24" height="24"> | `PaperclipIcon`
- <img src="https://unpkg.com/@icons/material/svg/parking.svg" width="24" height="24"> | `ParkingIcon`
- <img src="https://unpkg.com/@icons/material/svg/passport.svg" width="24" height="24"> | `PassportIcon`
- <img src="https://unpkg.com/@icons/material/svg/patreon.svg" width="24" height="24"> | `PatreonIcon`
- <img src="https://unpkg.com/@icons/material/svg/pause-circle.svg" width="24" height="24"> | `PauseCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/pause-circle-outline.svg" width="24" height="24"> | `PauseCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/pause.svg" width="24" height="24"> | `PauseIcon`
- <img src="https://unpkg.com/@icons/material/svg/pause-octagon.svg" width="24" height="24"> | `PauseOctagonIcon`
- <img src="https://unpkg.com/@icons/material/svg/pause-octagon-outline.svg" width="24" height="24"> | `PauseOctagonOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/paw.svg" width="24" height="24"> | `PawIcon`
- <img src="https://unpkg.com/@icons/material/svg/paw-off.svg" width="24" height="24"> | `PawOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/paypal.svg" width="24" height="24"> | `PaypalIcon`
- <img src="https://unpkg.com/@icons/material/svg/peace.svg" width="24" height="24"> | `PeaceIcon`
- <img src="https://unpkg.com/@icons/material/svg/pen.svg" width="24" height="24"> | `PenIcon`
- <img src="https://unpkg.com/@icons/material/svg/pencil-box.svg" width="24" height="24"> | `PencilBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/pencil-box-outline.svg" width="24" height="24"> | `PencilBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/pencil-circle.svg" width="24" height="24"> | `PencilCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/pencil-circle-outline.svg" width="24" height="24"> | `PencilCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/pencil.svg" width="24" height="24"> | `PencilIcon`
- <img src="https://unpkg.com/@icons/material/svg/pencil-lock.svg" width="24" height="24"> | `PencilLockIcon`
- <img src="https://unpkg.com/@icons/material/svg/pencil-off.svg" width="24" height="24"> | `PencilOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/pentagon.svg" width="24" height="24"> | `PentagonIcon`
- <img src="https://unpkg.com/@icons/material/svg/pentagon-outline.svg" width="24" height="24"> | `PentagonOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/percent.svg" width="24" height="24"> | `PercentIcon`
- <img src="https://unpkg.com/@icons/material/svg/periodic-table-co2.svg" width="24" height="24"> | `PeriodicTableCo2Icon`
- <img src="https://unpkg.com/@icons/material/svg/periodic-table.svg" width="24" height="24"> | `PeriodicTableIcon`
- <img src="https://unpkg.com/@icons/material/svg/periscope.svg" width="24" height="24"> | `PeriscopeIcon`
- <img src="https://unpkg.com/@icons/material/svg/pharmacy.svg" width="24" height="24"> | `PharmacyIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-bluetooth.svg" width="24" height="24"> | `PhoneBluetoothIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-classic.svg" width="24" height="24"> | `PhoneClassicIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-forward.svg" width="24" height="24"> | `PhoneForwardIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-hangup.svg" width="24" height="24"> | `PhoneHangupIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone.svg" width="24" height="24"> | `PhoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-in-talk.svg" width="24" height="24"> | `PhoneInTalkIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-incoming.svg" width="24" height="24"> | `PhoneIncomingIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-locked.svg" width="24" height="24"> | `PhoneLockedIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-log.svg" width="24" height="24"> | `PhoneLogIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-minus.svg" width="24" height="24"> | `PhoneMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-missed.svg" width="24" height="24"> | `PhoneMissedIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-outgoing.svg" width="24" height="24"> | `PhoneOutgoingIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-paused.svg" width="24" height="24"> | `PhonePausedIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-plus.svg" width="24" height="24"> | `PhonePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-return.svg" width="24" height="24"> | `PhoneReturnIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-rotate-landscape.svg" width="24" height="24"> | `PhoneRotateLandscapeIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-rotate-portrait.svg" width="24" height="24"> | `PhoneRotatePortraitIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-settings.svg" width="24" height="24"> | `PhoneSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/phone-voip.svg" width="24" height="24"> | `PhoneVoipIcon`
- <img src="https://unpkg.com/@icons/material/svg/pi-box.svg" width="24" height="24"> | `PiBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/pi.svg" width="24" height="24"> | `PiIcon`
- <img src="https://unpkg.com/@icons/material/svg/piano.svg" width="24" height="24"> | `PianoIcon`
- <img src="https://unpkg.com/@icons/material/svg/pickaxe.svg" width="24" height="24"> | `PickaxeIcon`
- <img src="https://unpkg.com/@icons/material/svg/pier-crane.svg" width="24" height="24"> | `PierCraneIcon`
- <img src="https://unpkg.com/@icons/material/svg/pier.svg" width="24" height="24"> | `PierIcon`
- <img src="https://unpkg.com/@icons/material/svg/pig.svg" width="24" height="24"> | `PigIcon`
- <img src="https://unpkg.com/@icons/material/svg/pill.svg" width="24" height="24"> | `PillIcon`
- <img src="https://unpkg.com/@icons/material/svg/pillar.svg" width="24" height="24"> | `PillarIcon`
- <img src="https://unpkg.com/@icons/material/svg/pin.svg" width="24" height="24"> | `PinIcon`
- <img src="https://unpkg.com/@icons/material/svg/pin-off.svg" width="24" height="24"> | `PinOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/pine-tree-box.svg" width="24" height="24"> | `PineTreeBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/pine-tree.svg" width="24" height="24"> | `PineTreeIcon`
- <img src="https://unpkg.com/@icons/material/svg/pinterest-box.svg" width="24" height="24"> | `PinterestBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/pinterest.svg" width="24" height="24"> | `PinterestIcon`
- <img src="https://unpkg.com/@icons/material/svg/pipe-disconnected.svg" width="24" height="24"> | `PipeDisconnectedIcon`
- <img src="https://unpkg.com/@icons/material/svg/pipe.svg" width="24" height="24"> | `PipeIcon`
- <img src="https://unpkg.com/@icons/material/svg/pipe-leak.svg" width="24" height="24"> | `PipeLeakIcon`
- <img src="https://unpkg.com/@icons/material/svg/pistol.svg" width="24" height="24"> | `PistolIcon`
- <img src="https://unpkg.com/@icons/material/svg/piston.svg" width="24" height="24"> | `PistonIcon`
- <img src="https://unpkg.com/@icons/material/svg/pizza.svg" width="24" height="24"> | `PizzaIcon`
- <img src="https://unpkg.com/@icons/material/svg/plane-shield.svg" width="24" height="24"> | `PlaneShieldIcon`
- <img src="https://unpkg.com/@icons/material/svg/play-box-outline.svg" width="24" height="24"> | `PlayBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/play-circle.svg" width="24" height="24"> | `PlayCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/play-circle-outline.svg" width="24" height="24"> | `PlayCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/play.svg" width="24" height="24"> | `PlayIcon`
- <img src="https://unpkg.com/@icons/material/svg/play-network.svg" width="24" height="24"> | `PlayNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/play-pause.svg" width="24" height="24"> | `PlayPauseIcon`
- <img src="https://unpkg.com/@icons/material/svg/play-protected-content.svg" width="24" height="24"> | `PlayProtectedContentIcon`
- <img src="https://unpkg.com/@icons/material/svg/playlist-check.svg" width="24" height="24"> | `PlaylistCheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/playlist-minus.svg" width="24" height="24"> | `PlaylistMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/playlist-play.svg" width="24" height="24"> | `PlaylistPlayIcon`
- <img src="https://unpkg.com/@icons/material/svg/playlist-plus.svg" width="24" height="24"> | `PlaylistPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/playlist-remove.svg" width="24" height="24"> | `PlaylistRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/playstation.svg" width="24" height="24"> | `PlaystationIcon`
- <img src="https://unpkg.com/@icons/material/svg/plex.svg" width="24" height="24"> | `PlexIcon`
- <img src="https://unpkg.com/@icons/material/svg/plus-box.svg" width="24" height="24"> | `PlusBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/plus-box-outline.svg" width="24" height="24"> | `PlusBoxOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/plus-circle.svg" width="24" height="24"> | `PlusCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/plus-circle-multiple-outline.svg" width="24" height="24"> | `PlusCircleMultipleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/plus-circle-outline.svg" width="24" height="24"> | `PlusCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/plus.svg" width="24" height="24"> | `PlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/plus-network.svg" width="24" height="24"> | `PlusNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/plus-one.svg" width="24" height="24"> | `PlusOneIcon`
- <img src="https://unpkg.com/@icons/material/svg/plus-outline.svg" width="24" height="24"> | `PlusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/pocket.svg" width="24" height="24"> | `PocketIcon`
- <img src="https://unpkg.com/@icons/material/svg/pokeball.svg" width="24" height="24"> | `PokeballIcon`
- <img src="https://unpkg.com/@icons/material/svg/poker-chip.svg" width="24" height="24"> | `PokerChipIcon`
- <img src="https://unpkg.com/@icons/material/svg/polaroid.svg" width="24" height="24"> | `PolaroidIcon`
- <img src="https://unpkg.com/@icons/material/svg/poll-box.svg" width="24" height="24"> | `PollBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/poll.svg" width="24" height="24"> | `PollIcon`
- <img src="https://unpkg.com/@icons/material/svg/polymer.svg" width="24" height="24"> | `PolymerIcon`
- <img src="https://unpkg.com/@icons/material/svg/pool.svg" width="24" height="24"> | `PoolIcon`
- <img src="https://unpkg.com/@icons/material/svg/popcorn.svg" width="24" height="24"> | `PopcornIcon`
- <img src="https://unpkg.com/@icons/material/svg/pot.svg" width="24" height="24"> | `PotIcon`
- <img src="https://unpkg.com/@icons/material/svg/pot-mix.svg" width="24" height="24"> | `PotMixIcon`
- <img src="https://unpkg.com/@icons/material/svg/pound-box.svg" width="24" height="24"> | `PoundBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/pound.svg" width="24" height="24"> | `PoundIcon`
- <img src="https://unpkg.com/@icons/material/svg/power.svg" width="24" height="24"> | `PowerIcon`
- <img src="https://unpkg.com/@icons/material/svg/power-plug.svg" width="24" height="24"> | `PowerPlugIcon`
- <img src="https://unpkg.com/@icons/material/svg/power-plug-off.svg" width="24" height="24"> | `PowerPlugOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/power-settings.svg" width="24" height="24"> | `PowerSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/power-socket-eu.svg" width="24" height="24"> | `PowerSocketEuIcon`
- <img src="https://unpkg.com/@icons/material/svg/power-socket.svg" width="24" height="24"> | `PowerSocketIcon`
- <img src="https://unpkg.com/@icons/material/svg/power-socket-uk.svg" width="24" height="24"> | `PowerSocketUkIcon`
- <img src="https://unpkg.com/@icons/material/svg/power-socket-us.svg" width="24" height="24"> | `PowerSocketUsIcon`
- <img src="https://unpkg.com/@icons/material/svg/prescription.svg" width="24" height="24"> | `PrescriptionIcon`
- <img src="https://unpkg.com/@icons/material/svg/presentation.svg" width="24" height="24"> | `PresentationIcon`
- <img src="https://unpkg.com/@icons/material/svg/presentation-play.svg" width="24" height="24"> | `PresentationPlayIcon`
- <img src="https://unpkg.com/@icons/material/svg/printer-alert.svg" width="24" height="24"> | `PrinterAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/printer.svg" width="24" height="24"> | `PrinterIcon`
- <img src="https://unpkg.com/@icons/material/svg/printer-settings.svg" width="24" height="24"> | `PrinterSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/printer-3d.svg" width="24" height="24"> | `Printer_3dIcon`
- <img src="https://unpkg.com/@icons/material/svg/priority-high.svg" width="24" height="24"> | `PriorityHighIcon`
- <img src="https://unpkg.com/@icons/material/svg/priority-low.svg" width="24" height="24"> | `PriorityLowIcon`
- <img src="https://unpkg.com/@icons/material/svg/professional-hexagon.svg" width="24" height="24"> | `ProfessionalHexagonIcon`
- <img src="https://unpkg.com/@icons/material/svg/projector.svg" width="24" height="24"> | `ProjectorIcon`
- <img src="https://unpkg.com/@icons/material/svg/projector-screen.svg" width="24" height="24"> | `ProjectorScreenIcon`
- <img src="https://unpkg.com/@icons/material/svg/publish.svg" width="24" height="24"> | `PublishIcon`
- <img src="https://unpkg.com/@icons/material/svg/pulse.svg" width="24" height="24"> | `PulseIcon`
- <img src="https://unpkg.com/@icons/material/svg/puzzle.svg" width="24" height="24"> | `PuzzleIcon`
- <img src="https://unpkg.com/@icons/material/svg/qqchat.svg" width="24" height="24"> | `QqchatIcon`
- <img src="https://unpkg.com/@icons/material/svg/qrcode-edit.svg" width="24" height="24"> | `QrcodeEditIcon`
- <img src="https://unpkg.com/@icons/material/svg/qrcode.svg" width="24" height="24"> | `QrcodeIcon`
- <img src="https://unpkg.com/@icons/material/svg/qrcode-scan.svg" width="24" height="24"> | `QrcodeScanIcon`
- <img src="https://unpkg.com/@icons/material/svg/quadcopter.svg" width="24" height="24"> | `QuadcopterIcon`
- <img src="https://unpkg.com/@icons/material/svg/quality-high.svg" width="24" height="24"> | `QualityHighIcon`
- <img src="https://unpkg.com/@icons/material/svg/quicktime.svg" width="24" height="24"> | `QuicktimeIcon`
- <img src="https://unpkg.com/@icons/material/svg/radar.svg" width="24" height="24"> | `RadarIcon`
- <img src="https://unpkg.com/@icons/material/svg/radiator.svg" width="24" height="24"> | `RadiatorIcon`
- <img src="https://unpkg.com/@icons/material/svg/radio-handheld.svg" width="24" height="24"> | `RadioHandheldIcon`
- <img src="https://unpkg.com/@icons/material/svg/radio.svg" width="24" height="24"> | `RadioIcon`
- <img src="https://unpkg.com/@icons/material/svg/radio-tower.svg" width="24" height="24"> | `RadioTowerIcon`
- <img src="https://unpkg.com/@icons/material/svg/radioactive.svg" width="24" height="24"> | `RadioactiveIcon`
- <img src="https://unpkg.com/@icons/material/svg/radiobox-blank.svg" width="24" height="24"> | `RadioboxBlankIcon`
- <img src="https://unpkg.com/@icons/material/svg/radiobox-marked.svg" width="24" height="24"> | `RadioboxMarkedIcon`
- <img src="https://unpkg.com/@icons/material/svg/raspberrypi.svg" width="24" height="24"> | `RaspberrypiIcon`
- <img src="https://unpkg.com/@icons/material/svg/ray-end-arrow.svg" width="24" height="24"> | `RayEndArrowIcon`
- <img src="https://unpkg.com/@icons/material/svg/ray-end.svg" width="24" height="24"> | `RayEndIcon`
- <img src="https://unpkg.com/@icons/material/svg/ray-start-arrow.svg" width="24" height="24"> | `RayStartArrowIcon`
- <img src="https://unpkg.com/@icons/material/svg/ray-start-end.svg" width="24" height="24"> | `RayStartEndIcon`
- <img src="https://unpkg.com/@icons/material/svg/ray-start.svg" width="24" height="24"> | `RayStartIcon`
- <img src="https://unpkg.com/@icons/material/svg/ray-vertex.svg" width="24" height="24"> | `RayVertexIcon`
- <img src="https://unpkg.com/@icons/material/svg/react.svg" width="24" height="24"> | `ReactIcon`
- <img src="https://unpkg.com/@icons/material/svg/read.svg" width="24" height="24"> | `ReadIcon`
- <img src="https://unpkg.com/@icons/material/svg/receipt.svg" width="24" height="24"> | `ReceiptIcon`
- <img src="https://unpkg.com/@icons/material/svg/record.svg" width="24" height="24"> | `RecordIcon`
- <img src="https://unpkg.com/@icons/material/svg/record-rec.svg" width="24" height="24"> | `RecordRecIcon`
- <img src="https://unpkg.com/@icons/material/svg/recycle.svg" width="24" height="24"> | `RecycleIcon`
- <img src="https://unpkg.com/@icons/material/svg/reddit.svg" width="24" height="24"> | `RedditIcon`
- <img src="https://unpkg.com/@icons/material/svg/redo.svg" width="24" height="24"> | `RedoIcon`
- <img src="https://unpkg.com/@icons/material/svg/redo-variant.svg" width="24" height="24"> | `RedoVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/refresh.svg" width="24" height="24"> | `RefreshIcon`
- <img src="https://unpkg.com/@icons/material/svg/regex.svg" width="24" height="24"> | `RegexIcon`
- <img src="https://unpkg.com/@icons/material/svg/relative-scale.svg" width="24" height="24"> | `RelativeScaleIcon`
- <img src="https://unpkg.com/@icons/material/svg/reload.svg" width="24" height="24"> | `ReloadIcon`
- <img src="https://unpkg.com/@icons/material/svg/reminder.svg" width="24" height="24"> | `ReminderIcon`
- <img src="https://unpkg.com/@icons/material/svg/remote-desktop.svg" width="24" height="24"> | `RemoteDesktopIcon`
- <img src="https://unpkg.com/@icons/material/svg/remote.svg" width="24" height="24"> | `RemoteIcon`
- <img src="https://unpkg.com/@icons/material/svg/rename-box.svg" width="24" height="24"> | `RenameBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/reorder-horizontal.svg" width="24" height="24"> | `ReorderHorizontalIcon`
- <img src="https://unpkg.com/@icons/material/svg/reorder-vertical.svg" width="24" height="24"> | `ReorderVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/repeat.svg" width="24" height="24"> | `RepeatIcon`
- <img src="https://unpkg.com/@icons/material/svg/repeat-off.svg" width="24" height="24"> | `RepeatOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/repeat-once.svg" width="24" height="24"> | `RepeatOnceIcon`
- <img src="https://unpkg.com/@icons/material/svg/replay.svg" width="24" height="24"> | `ReplayIcon`
- <img src="https://unpkg.com/@icons/material/svg/reply-all.svg" width="24" height="24"> | `ReplyAllIcon`
- <img src="https://unpkg.com/@icons/material/svg/reply.svg" width="24" height="24"> | `ReplyIcon`
- <img src="https://unpkg.com/@icons/material/svg/reproduction.svg" width="24" height="24"> | `ReproductionIcon`
- <img src="https://unpkg.com/@icons/material/svg/resize-bottom-right.svg" width="24" height="24"> | `ResizeBottomRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/responsive.svg" width="24" height="24"> | `ResponsiveIcon`
- <img src="https://unpkg.com/@icons/material/svg/restart.svg" width="24" height="24"> | `RestartIcon`
- <img src="https://unpkg.com/@icons/material/svg/restore.svg" width="24" height="24"> | `RestoreIcon`
- <img src="https://unpkg.com/@icons/material/svg/rewind.svg" width="24" height="24"> | `RewindIcon`
- <img src="https://unpkg.com/@icons/material/svg/rewind-outline.svg" width="24" height="24"> | `RewindOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/rhombus.svg" width="24" height="24"> | `RhombusIcon`
- <img src="https://unpkg.com/@icons/material/svg/rhombus-outline.svg" width="24" height="24"> | `RhombusOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/ribbon.svg" width="24" height="24"> | `RibbonIcon`
- <img src="https://unpkg.com/@icons/material/svg/rice.svg" width="24" height="24"> | `RiceIcon`
- <img src="https://unpkg.com/@icons/material/svg/ring.svg" width="24" height="24"> | `RingIcon`
- <img src="https://unpkg.com/@icons/material/svg/road.svg" width="24" height="24"> | `RoadIcon`
- <img src="https://unpkg.com/@icons/material/svg/road-variant.svg" width="24" height="24"> | `RoadVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/robot.svg" width="24" height="24"> | `RobotIcon`
- <img src="https://unpkg.com/@icons/material/svg/rocket.svg" width="24" height="24"> | `RocketIcon`
- <img src="https://unpkg.com/@icons/material/svg/room-service.svg" width="24" height="24"> | `RoomServiceIcon`
- <img src="https://unpkg.com/@icons/material/svg/roomba.svg" width="24" height="24"> | `RoombaIcon`
- <img src="https://unpkg.com/@icons/material/svg/rotate-left.svg" width="24" height="24"> | `RotateLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/rotate-left-variant.svg" width="24" height="24"> | `RotateLeftVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/rotate-right.svg" width="24" height="24"> | `RotateRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/rotate-right-variant.svg" width="24" height="24"> | `RotateRightVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/rotate-3d.svg" width="24" height="24"> | `Rotate_3dIcon`
- <img src="https://unpkg.com/@icons/material/svg/rounded-corner.svg" width="24" height="24"> | `RoundedCornerIcon`
- <img src="https://unpkg.com/@icons/material/svg/router-wireless.svg" width="24" height="24"> | `RouterWirelessIcon`
- <img src="https://unpkg.com/@icons/material/svg/routes.svg" width="24" height="24"> | `RoutesIcon`
- <img src="https://unpkg.com/@icons/material/svg/rowing.svg" width="24" height="24"> | `RowingIcon`
- <img src="https://unpkg.com/@icons/material/svg/rss-box.svg" width="24" height="24"> | `RssBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/rss.svg" width="24" height="24"> | `RssIcon`
- <img src="https://unpkg.com/@icons/material/svg/ruler.svg" width="24" height="24"> | `RulerIcon`
- <img src="https://unpkg.com/@icons/material/svg/run-fast.svg" width="24" height="24"> | `RunFastIcon`
- <img src="https://unpkg.com/@icons/material/svg/run.svg" width="24" height="24"> | `RunIcon`
- <img src="https://unpkg.com/@icons/material/svg/sale.svg" width="24" height="24"> | `SaleIcon`
- <img src="https://unpkg.com/@icons/material/svg/salesforce.svg" width="24" height="24"> | `SalesforceIcon`
- <img src="https://unpkg.com/@icons/material/svg/sass.svg" width="24" height="24"> | `SassIcon`
- <img src="https://unpkg.com/@icons/material/svg/satellite.svg" width="24" height="24"> | `SatelliteIcon`
- <img src="https://unpkg.com/@icons/material/svg/satellite-variant.svg" width="24" height="24"> | `SatelliteVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/sausage.svg" width="24" height="24"> | `SausageIcon`
- <img src="https://unpkg.com/@icons/material/svg/saxophone.svg" width="24" height="24"> | `SaxophoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/scale-balance.svg" width="24" height="24"> | `ScaleBalanceIcon`
- <img src="https://unpkg.com/@icons/material/svg/scale-bathroom.svg" width="24" height="24"> | `ScaleBathroomIcon`
- <img src="https://unpkg.com/@icons/material/svg/scale.svg" width="24" height="24"> | `ScaleIcon`
- <img src="https://unpkg.com/@icons/material/svg/scanner.svg" width="24" height="24"> | `ScannerIcon`
- <img src="https://unpkg.com/@icons/material/svg/school.svg" width="24" height="24"> | `SchoolIcon`
- <img src="https://unpkg.com/@icons/material/svg/screen-rotation.svg" width="24" height="24"> | `ScreenRotationIcon`
- <img src="https://unpkg.com/@icons/material/svg/screen-rotation-lock.svg" width="24" height="24"> | `ScreenRotationLockIcon`
- <img src="https://unpkg.com/@icons/material/svg/screwdriver.svg" width="24" height="24"> | `ScrewdriverIcon`
- <img src="https://unpkg.com/@icons/material/svg/script.svg" width="24" height="24"> | `ScriptIcon`
- <img src="https://unpkg.com/@icons/material/svg/sd.svg" width="24" height="24"> | `SdIcon`
- <img src="https://unpkg.com/@icons/material/svg/seal.svg" width="24" height="24"> | `SealIcon`
- <img src="https://unpkg.com/@icons/material/svg/search-web.svg" width="24" height="24"> | `SearchWebIcon`
- <img src="https://unpkg.com/@icons/material/svg/seat-flat-angled.svg" width="24" height="24"> | `SeatFlatAngledIcon`
- <img src="https://unpkg.com/@icons/material/svg/seat-flat.svg" width="24" height="24"> | `SeatFlatIcon`
- <img src="https://unpkg.com/@icons/material/svg/seat-individual-suite.svg" width="24" height="24"> | `SeatIndividualSuiteIcon`
- <img src="https://unpkg.com/@icons/material/svg/seat-legroom-extra.svg" width="24" height="24"> | `SeatLegroomExtraIcon`
- <img src="https://unpkg.com/@icons/material/svg/seat-legroom-normal.svg" width="24" height="24"> | `SeatLegroomNormalIcon`
- <img src="https://unpkg.com/@icons/material/svg/seat-legroom-reduced.svg" width="24" height="24"> | `SeatLegroomReducedIcon`
- <img src="https://unpkg.com/@icons/material/svg/seat-recline-extra.svg" width="24" height="24"> | `SeatReclineExtraIcon`
- <img src="https://unpkg.com/@icons/material/svg/seat-recline-normal.svg" width="24" height="24"> | `SeatReclineNormalIcon`
- <img src="https://unpkg.com/@icons/material/svg/security-account.svg" width="24" height="24"> | `SecurityAccountIcon`
- <img src="https://unpkg.com/@icons/material/svg/security-home.svg" width="24" height="24"> | `SecurityHomeIcon`
- <img src="https://unpkg.com/@icons/material/svg/security.svg" width="24" height="24"> | `SecurityIcon`
- <img src="https://unpkg.com/@icons/material/svg/security-network.svg" width="24" height="24"> | `SecurityNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/select-all.svg" width="24" height="24"> | `SelectAllIcon`
- <img src="https://unpkg.com/@icons/material/svg/select.svg" width="24" height="24"> | `SelectIcon`
- <img src="https://unpkg.com/@icons/material/svg/select-inverse.svg" width="24" height="24"> | `SelectInverseIcon`
- <img src="https://unpkg.com/@icons/material/svg/select-off.svg" width="24" height="24"> | `SelectOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/selection.svg" width="24" height="24"> | `SelectionIcon`
- <img src="https://unpkg.com/@icons/material/svg/selection-off.svg" width="24" height="24"> | `SelectionOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/send.svg" width="24" height="24"> | `SendIcon`
- <img src="https://unpkg.com/@icons/material/svg/send-secure.svg" width="24" height="24"> | `SendSecureIcon`
- <img src="https://unpkg.com/@icons/material/svg/serial-port.svg" width="24" height="24"> | `SerialPortIcon`
- <img src="https://unpkg.com/@icons/material/svg/server.svg" width="24" height="24"> | `ServerIcon`
- <img src="https://unpkg.com/@icons/material/svg/server-minus.svg" width="24" height="24"> | `ServerMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/server-network.svg" width="24" height="24"> | `ServerNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/server-network-off.svg" width="24" height="24"> | `ServerNetworkOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/server-off.svg" width="24" height="24"> | `ServerOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/server-plus.svg" width="24" height="24"> | `ServerPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/server-remove.svg" width="24" height="24"> | `ServerRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/server-security.svg" width="24" height="24"> | `ServerSecurityIcon`
- <img src="https://unpkg.com/@icons/material/svg/set-all.svg" width="24" height="24"> | `SetAllIcon`
- <img src="https://unpkg.com/@icons/material/svg/set-center.svg" width="24" height="24"> | `SetCenterIcon`
- <img src="https://unpkg.com/@icons/material/svg/set-center-right.svg" width="24" height="24"> | `SetCenterRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/set-left-center.svg" width="24" height="24"> | `SetLeftCenterIcon`
- <img src="https://unpkg.com/@icons/material/svg/set-left.svg" width="24" height="24"> | `SetLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/set-left-right.svg" width="24" height="24"> | `SetLeftRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/set-none.svg" width="24" height="24"> | `SetNoneIcon`
- <img src="https://unpkg.com/@icons/material/svg/set-right.svg" width="24" height="24"> | `SetRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/settings-box.svg" width="24" height="24"> | `SettingsBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/settings.svg" width="24" height="24"> | `SettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/settings-outline.svg" width="24" height="24"> | `SettingsOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/shape-circle-plus.svg" width="24" height="24"> | `ShapeCirclePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/shape.svg" width="24" height="24"> | `ShapeIcon`
- <img src="https://unpkg.com/@icons/material/svg/shape-outline.svg" width="24" height="24"> | `ShapeOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/shape-plus.svg" width="24" height="24"> | `ShapePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/shape-polygon-plus.svg" width="24" height="24"> | `ShapePolygonPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/shape-rectangle-plus.svg" width="24" height="24"> | `ShapeRectanglePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/shape-square-plus.svg" width="24" height="24"> | `ShapeSquarePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/share.svg" width="24" height="24"> | `ShareIcon`
- <img src="https://unpkg.com/@icons/material/svg/share-variant.svg" width="24" height="24"> | `ShareVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/shield-half-full.svg" width="24" height="24"> | `ShieldHalfFullIcon`
- <img src="https://unpkg.com/@icons/material/svg/shield.svg" width="24" height="24"> | `ShieldIcon`
- <img src="https://unpkg.com/@icons/material/svg/shield-outline.svg" width="24" height="24"> | `ShieldOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/ship-wheel.svg" width="24" height="24"> | `ShipWheelIcon`
- <img src="https://unpkg.com/@icons/material/svg/shopping.svg" width="24" height="24"> | `ShoppingIcon`
- <img src="https://unpkg.com/@icons/material/svg/shopping-music.svg" width="24" height="24"> | `ShoppingMusicIcon`
- <img src="https://unpkg.com/@icons/material/svg/shovel.svg" width="24" height="24"> | `ShovelIcon`
- <img src="https://unpkg.com/@icons/material/svg/shovel-off.svg" width="24" height="24"> | `ShovelOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/shredder.svg" width="24" height="24"> | `ShredderIcon`
- <img src="https://unpkg.com/@icons/material/svg/shuffle-disabled.svg" width="24" height="24"> | `ShuffleDisabledIcon`
- <img src="https://unpkg.com/@icons/material/svg/shuffle.svg" width="24" height="24"> | `ShuffleIcon`
- <img src="https://unpkg.com/@icons/material/svg/shuffle-variant.svg" width="24" height="24"> | `ShuffleVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/sigma.svg" width="24" height="24"> | `SigmaIcon`
- <img src="https://unpkg.com/@icons/material/svg/sigma-lower.svg" width="24" height="24"> | `SigmaLowerIcon`
- <img src="https://unpkg.com/@icons/material/svg/sign-caution.svg" width="24" height="24"> | `SignCautionIcon`
- <img src="https://unpkg.com/@icons/material/svg/sign-direction.svg" width="24" height="24"> | `SignDirectionIcon`
- <img src="https://unpkg.com/@icons/material/svg/sign-text.svg" width="24" height="24"> | `SignTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/signal-cellular-outline.svg" width="24" height="24"> | `SignalCellularOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/signal-cellular-1.svg" width="24" height="24"> | `SignalCellular_1Icon`
- <img src="https://unpkg.com/@icons/material/svg/signal-cellular-2.svg" width="24" height="24"> | `SignalCellular_2Icon`
- <img src="https://unpkg.com/@icons/material/svg/signal-cellular-3.svg" width="24" height="24"> | `SignalCellular_3Icon`
- <img src="https://unpkg.com/@icons/material/svg/signal-hspa.svg" width="24" height="24"> | `SignalHspaIcon`
- <img src="https://unpkg.com/@icons/material/svg/signal-hspa-plus.svg" width="24" height="24"> | `SignalHspaPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/signal.svg" width="24" height="24"> | `SignalIcon`
- <img src="https://unpkg.com/@icons/material/svg/signal-off.svg" width="24" height="24"> | `SignalOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/signal-variant.svg" width="24" height="24"> | `SignalVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/signal-2g.svg" width="24" height="24"> | `Signal_2gIcon`
- <img src="https://unpkg.com/@icons/material/svg/signal-3g.svg" width="24" height="24"> | `Signal_3gIcon`
- <img src="https://unpkg.com/@icons/material/svg/signal-4g.svg" width="24" height="24"> | `Signal_4gIcon`
- <img src="https://unpkg.com/@icons/material/svg/silverware-fork.svg" width="24" height="24"> | `SilverwareForkIcon`
- <img src="https://unpkg.com/@icons/material/svg/silverware.svg" width="24" height="24"> | `SilverwareIcon`
- <img src="https://unpkg.com/@icons/material/svg/silverware-spoon.svg" width="24" height="24"> | `SilverwareSpoonIcon`
- <img src="https://unpkg.com/@icons/material/svg/silverware-variant.svg" width="24" height="24"> | `SilverwareVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/sim-alert.svg" width="24" height="24"> | `SimAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/sim.svg" width="24" height="24"> | `SimIcon`
- <img src="https://unpkg.com/@icons/material/svg/sim-off.svg" width="24" height="24"> | `SimOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/sitemap.svg" width="24" height="24"> | `SitemapIcon`
- <img src="https://unpkg.com/@icons/material/svg/skip-backward.svg" width="24" height="24"> | `SkipBackwardIcon`
- <img src="https://unpkg.com/@icons/material/svg/skip-forward.svg" width="24" height="24"> | `SkipForwardIcon`
- <img src="https://unpkg.com/@icons/material/svg/skip-next-circle.svg" width="24" height="24"> | `SkipNextCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/skip-next-circle-outline.svg" width="24" height="24"> | `SkipNextCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/skip-next.svg" width="24" height="24"> | `SkipNextIcon`
- <img src="https://unpkg.com/@icons/material/svg/skip-previous-circle.svg" width="24" height="24"> | `SkipPreviousCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/skip-previous-circle-outline.svg" width="24" height="24"> | `SkipPreviousCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/skip-previous.svg" width="24" height="24"> | `SkipPreviousIcon`
- <img src="https://unpkg.com/@icons/material/svg/skull.svg" width="24" height="24"> | `SkullIcon`
- <img src="https://unpkg.com/@icons/material/svg/skype-business.svg" width="24" height="24"> | `SkypeBusinessIcon`
- <img src="https://unpkg.com/@icons/material/svg/skype.svg" width="24" height="24"> | `SkypeIcon`
- <img src="https://unpkg.com/@icons/material/svg/slack.svg" width="24" height="24"> | `SlackIcon`
- <img src="https://unpkg.com/@icons/material/svg/sleep.svg" width="24" height="24"> | `SleepIcon`
- <img src="https://unpkg.com/@icons/material/svg/sleep-off.svg" width="24" height="24"> | `SleepOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/smoking.svg" width="24" height="24"> | `SmokingIcon`
- <img src="https://unpkg.com/@icons/material/svg/smoking-off.svg" width="24" height="24"> | `SmokingOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/snapchat.svg" width="24" height="24"> | `SnapchatIcon`
- <img src="https://unpkg.com/@icons/material/svg/snowflake.svg" width="24" height="24"> | `SnowflakeIcon`
- <img src="https://unpkg.com/@icons/material/svg/snowman.svg" width="24" height="24"> | `SnowmanIcon`
- <img src="https://unpkg.com/@icons/material/svg/soccer-field.svg" width="24" height="24"> | `SoccerFieldIcon`
- <img src="https://unpkg.com/@icons/material/svg/soccer.svg" width="24" height="24"> | `SoccerIcon`
- <img src="https://unpkg.com/@icons/material/svg/sofa.svg" width="24" height="24"> | `SofaIcon`
- <img src="https://unpkg.com/@icons/material/svg/solid.svg" width="24" height="24"> | `SolidIcon`
- <img src="https://unpkg.com/@icons/material/svg/sort-alphabetical.svg" width="24" height="24"> | `SortAlphabeticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/sort-ascending.svg" width="24" height="24"> | `SortAscendingIcon`
- <img src="https://unpkg.com/@icons/material/svg/sort-descending.svg" width="24" height="24"> | `SortDescendingIcon`
- <img src="https://unpkg.com/@icons/material/svg/sort.svg" width="24" height="24"> | `SortIcon`
- <img src="https://unpkg.com/@icons/material/svg/sort-numeric.svg" width="24" height="24"> | `SortNumericIcon`
- <img src="https://unpkg.com/@icons/material/svg/sort-variant.svg" width="24" height="24"> | `SortVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/soundcloud.svg" width="24" height="24"> | `SoundcloudIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-branch.svg" width="24" height="24"> | `SourceBranchIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-commit-end.svg" width="24" height="24"> | `SourceCommitEndIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-commit-end-local.svg" width="24" height="24"> | `SourceCommitEndLocalIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-commit.svg" width="24" height="24"> | `SourceCommitIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-commit-local.svg" width="24" height="24"> | `SourceCommitLocalIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-commit-next-local.svg" width="24" height="24"> | `SourceCommitNextLocalIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-commit-start.svg" width="24" height="24"> | `SourceCommitStartIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-commit-start-next-local.svg" width="24" height="24"> | `SourceCommitStartNextLocalIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-fork.svg" width="24" height="24"> | `SourceForkIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-merge.svg" width="24" height="24"> | `SourceMergeIcon`
- <img src="https://unpkg.com/@icons/material/svg/source-pull.svg" width="24" height="24"> | `SourcePullIcon`
- <img src="https://unpkg.com/@icons/material/svg/soy-sauce.svg" width="24" height="24"> | `SoySauceIcon`
- <img src="https://unpkg.com/@icons/material/svg/speaker.svg" width="24" height="24"> | `SpeakerIcon`
- <img src="https://unpkg.com/@icons/material/svg/speaker-off.svg" width="24" height="24"> | `SpeakerOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/speaker-wireless.svg" width="24" height="24"> | `SpeakerWirelessIcon`
- <img src="https://unpkg.com/@icons/material/svg/speedometer.svg" width="24" height="24"> | `SpeedometerIcon`
- <img src="https://unpkg.com/@icons/material/svg/spellcheck.svg" width="24" height="24"> | `SpellcheckIcon`
- <img src="https://unpkg.com/@icons/material/svg/spotify.svg" width="24" height="24"> | `SpotifyIcon`
- <img src="https://unpkg.com/@icons/material/svg/spotlight-beam.svg" width="24" height="24"> | `SpotlightBeamIcon`
- <img src="https://unpkg.com/@icons/material/svg/spotlight.svg" width="24" height="24"> | `SpotlightIcon`
- <img src="https://unpkg.com/@icons/material/svg/spray.svg" width="24" height="24"> | `SprayIcon`
- <img src="https://unpkg.com/@icons/material/svg/square.svg" width="24" height="24"> | `SquareIcon`
- <img src="https://unpkg.com/@icons/material/svg/square-inc-cash.svg" width="24" height="24"> | `SquareIncCashIcon`
- <img src="https://unpkg.com/@icons/material/svg/square-inc.svg" width="24" height="24"> | `SquareIncIcon`
- <img src="https://unpkg.com/@icons/material/svg/square-outline.svg" width="24" height="24"> | `SquareOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/square-root.svg" width="24" height="24"> | `SquareRootIcon`
- <img src="https://unpkg.com/@icons/material/svg/ssh.svg" width="24" height="24"> | `SshIcon`
- <img src="https://unpkg.com/@icons/material/svg/stack-overflow.svg" width="24" height="24"> | `StackOverflowIcon`
- <img src="https://unpkg.com/@icons/material/svg/stackexchange.svg" width="24" height="24"> | `StackexchangeIcon`
- <img src="https://unpkg.com/@icons/material/svg/stadium.svg" width="24" height="24"> | `StadiumIcon`
- <img src="https://unpkg.com/@icons/material/svg/stairs.svg" width="24" height="24"> | `StairsIcon`
- <img src="https://unpkg.com/@icons/material/svg/standard-definition.svg" width="24" height="24"> | `StandardDefinitionIcon`
- <img src="https://unpkg.com/@icons/material/svg/star-circle.svg" width="24" height="24"> | `StarCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/star-half.svg" width="24" height="24"> | `StarHalfIcon`
- <img src="https://unpkg.com/@icons/material/svg/star.svg" width="24" height="24"> | `StarIcon`
- <img src="https://unpkg.com/@icons/material/svg/star-off.svg" width="24" height="24"> | `StarOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/star-outline.svg" width="24" height="24"> | `StarOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/steam.svg" width="24" height="24"> | `SteamIcon`
- <img src="https://unpkg.com/@icons/material/svg/steering.svg" width="24" height="24"> | `SteeringIcon`
- <img src="https://unpkg.com/@icons/material/svg/step-backward.svg" width="24" height="24"> | `StepBackwardIcon`
- <img src="https://unpkg.com/@icons/material/svg/step-backward-2.svg" width="24" height="24"> | `StepBackward_2Icon`
- <img src="https://unpkg.com/@icons/material/svg/step-forward.svg" width="24" height="24"> | `StepForwardIcon`
- <img src="https://unpkg.com/@icons/material/svg/step-forward-2.svg" width="24" height="24"> | `StepForward_2Icon`
- <img src="https://unpkg.com/@icons/material/svg/stethoscope.svg" width="24" height="24"> | `StethoscopeIcon`
- <img src="https://unpkg.com/@icons/material/svg/sticker-emoji.svg" width="24" height="24"> | `StickerEmojiIcon`
- <img src="https://unpkg.com/@icons/material/svg/sticker.svg" width="24" height="24"> | `StickerIcon`
- <img src="https://unpkg.com/@icons/material/svg/stocking.svg" width="24" height="24"> | `StockingIcon`
- <img src="https://unpkg.com/@icons/material/svg/stop-circle.svg" width="24" height="24"> | `StopCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/stop-circle-outline.svg" width="24" height="24"> | `StopCircleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/stop.svg" width="24" height="24"> | `StopIcon`
- <img src="https://unpkg.com/@icons/material/svg/store.svg" width="24" height="24"> | `StoreIcon`
- <img src="https://unpkg.com/@icons/material/svg/store-24-hour.svg" width="24" height="24"> | `Store_24HourIcon`
- <img src="https://unpkg.com/@icons/material/svg/stove.svg" width="24" height="24"> | `StoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/subdirectory-arrow-left.svg" width="24" height="24"> | `SubdirectoryArrowLeftIcon`
- <img src="https://unpkg.com/@icons/material/svg/subdirectory-arrow-right.svg" width="24" height="24"> | `SubdirectoryArrowRightIcon`
- <img src="https://unpkg.com/@icons/material/svg/subway.svg" width="24" height="24"> | `SubwayIcon`
- <img src="https://unpkg.com/@icons/material/svg/subway-variant.svg" width="24" height="24"> | `SubwayVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/summit.svg" width="24" height="24"> | `SummitIcon`
- <img src="https://unpkg.com/@icons/material/svg/sunglasses.svg" width="24" height="24"> | `SunglassesIcon`
- <img src="https://unpkg.com/@icons/material/svg/surround-sound.svg" width="24" height="24"> | `SurroundSoundIcon`
- <img src="https://unpkg.com/@icons/material/svg/surround-sound-2-0.svg" width="24" height="24"> | `SurroundSound_2_0Icon`
- <img src="https://unpkg.com/@icons/material/svg/surround-sound-3-1.svg" width="24" height="24"> | `SurroundSound_3_1Icon`
- <img src="https://unpkg.com/@icons/material/svg/surround-sound-5-1.svg" width="24" height="24"> | `SurroundSound_5_1Icon`
- <img src="https://unpkg.com/@icons/material/svg/surround-sound-7-1.svg" width="24" height="24"> | `SurroundSound_7_1Icon`
- <img src="https://unpkg.com/@icons/material/svg/svg.svg" width="24" height="24"> | `SvgIcon`
- <img src="https://unpkg.com/@icons/material/svg/swap-horizontal.svg" width="24" height="24"> | `SwapHorizontalIcon`
- <img src="https://unpkg.com/@icons/material/svg/swap-horizontal-variant.svg" width="24" height="24"> | `SwapHorizontalVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/swap-vertical.svg" width="24" height="24"> | `SwapVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/swap-vertical-variant.svg" width="24" height="24"> | `SwapVerticalVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/swim.svg" width="24" height="24"> | `SwimIcon`
- <img src="https://unpkg.com/@icons/material/svg/switch.svg" width="24" height="24"> | `SwitchIcon`
- <img src="https://unpkg.com/@icons/material/svg/sword-cross.svg" width="24" height="24"> | `SwordCrossIcon`
- <img src="https://unpkg.com/@icons/material/svg/sword.svg" width="24" height="24"> | `SwordIcon`
- <img src="https://unpkg.com/@icons/material/svg/sync-alert.svg" width="24" height="24"> | `SyncAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/sync.svg" width="24" height="24"> | `SyncIcon`
- <img src="https://unpkg.com/@icons/material/svg/sync-off.svg" width="24" height="24"> | `SyncOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/tab.svg" width="24" height="24"> | `TabIcon`
- <img src="https://unpkg.com/@icons/material/svg/tab-plus.svg" width="24" height="24"> | `TabPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/tab-unselected.svg" width="24" height="24"> | `TabUnselectedIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-column.svg" width="24" height="24"> | `TableColumnIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-column-plus-after.svg" width="24" height="24"> | `TableColumnPlusAfterIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-column-plus-before.svg" width="24" height="24"> | `TableColumnPlusBeforeIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-column-remove.svg" width="24" height="24"> | `TableColumnRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-column-width.svg" width="24" height="24"> | `TableColumnWidthIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-edit.svg" width="24" height="24"> | `TableEditIcon`
- <img src="https://unpkg.com/@icons/material/svg/table.svg" width="24" height="24"> | `TableIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-large.svg" width="24" height="24"> | `TableLargeIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-of-contents.svg" width="24" height="24"> | `TableOfContentsIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-row-height.svg" width="24" height="24"> | `TableRowHeightIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-row.svg" width="24" height="24"> | `TableRowIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-row-plus-after.svg" width="24" height="24"> | `TableRowPlusAfterIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-row-plus-before.svg" width="24" height="24"> | `TableRowPlusBeforeIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-row-remove.svg" width="24" height="24"> | `TableRowRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/table-settings.svg" width="24" height="24"> | `TableSettingsIcon`
- <img src="https://unpkg.com/@icons/material/svg/tablet-android.svg" width="24" height="24"> | `TabletAndroidIcon`
- <img src="https://unpkg.com/@icons/material/svg/tablet.svg" width="24" height="24"> | `TabletIcon`
- <img src="https://unpkg.com/@icons/material/svg/tablet-ipad.svg" width="24" height="24"> | `TabletIpadIcon`
- <img src="https://unpkg.com/@icons/material/svg/taco.svg" width="24" height="24"> | `TacoIcon`
- <img src="https://unpkg.com/@icons/material/svg/tag-faces.svg" width="24" height="24"> | `TagFacesIcon`
- <img src="https://unpkg.com/@icons/material/svg/tag-heart.svg" width="24" height="24"> | `TagHeartIcon`
- <img src="https://unpkg.com/@icons/material/svg/tag.svg" width="24" height="24"> | `TagIcon`
- <img src="https://unpkg.com/@icons/material/svg/tag-multiple.svg" width="24" height="24"> | `TagMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/tag-outline.svg" width="24" height="24"> | `TagOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/tag-plus.svg" width="24" height="24"> | `TagPlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/tag-remove.svg" width="24" height="24"> | `TagRemoveIcon`
- <img src="https://unpkg.com/@icons/material/svg/tag-text-outline.svg" width="24" height="24"> | `TagTextOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/target.svg" width="24" height="24"> | `TargetIcon`
- <img src="https://unpkg.com/@icons/material/svg/taxi.svg" width="24" height="24"> | `TaxiIcon`
- <img src="https://unpkg.com/@icons/material/svg/teach.svg" width="24" height="24"> | `TeachIcon`
- <img src="https://unpkg.com/@icons/material/svg/teamviewer.svg" width="24" height="24"> | `TeamviewerIcon`
- <img src="https://unpkg.com/@icons/material/svg/telegram.svg" width="24" height="24"> | `TelegramIcon`
- <img src="https://unpkg.com/@icons/material/svg/television-box.svg" width="24" height="24"> | `TelevisionBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/television-classic.svg" width="24" height="24"> | `TelevisionClassicIcon`
- <img src="https://unpkg.com/@icons/material/svg/television-classic-off.svg" width="24" height="24"> | `TelevisionClassicOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/television-guide.svg" width="24" height="24"> | `TelevisionGuideIcon`
- <img src="https://unpkg.com/@icons/material/svg/television.svg" width="24" height="24"> | `TelevisionIcon`
- <img src="https://unpkg.com/@icons/material/svg/television-off.svg" width="24" height="24"> | `TelevisionOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/temperature-celsius.svg" width="24" height="24"> | `TemperatureCelsiusIcon`
- <img src="https://unpkg.com/@icons/material/svg/temperature-fahrenheit.svg" width="24" height="24"> | `TemperatureFahrenheitIcon`
- <img src="https://unpkg.com/@icons/material/svg/temperature-kelvin.svg" width="24" height="24"> | `TemperatureKelvinIcon`
- <img src="https://unpkg.com/@icons/material/svg/tennis.svg" width="24" height="24"> | `TennisIcon`
- <img src="https://unpkg.com/@icons/material/svg/tent.svg" width="24" height="24"> | `TentIcon`
- <img src="https://unpkg.com/@icons/material/svg/terrain.svg" width="24" height="24"> | `TerrainIcon`
- <img src="https://unpkg.com/@icons/material/svg/test-tube.svg" width="24" height="24"> | `TestTubeIcon`
- <img src="https://unpkg.com/@icons/material/svg/text-shadow.svg" width="24" height="24"> | `TextShadowIcon`
- <img src="https://unpkg.com/@icons/material/svg/text-to-speech.svg" width="24" height="24"> | `TextToSpeechIcon`
- <img src="https://unpkg.com/@icons/material/svg/text-to-speech-off.svg" width="24" height="24"> | `TextToSpeechOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/textbox.svg" width="24" height="24"> | `TextboxIcon`
- <img src="https://unpkg.com/@icons/material/svg/textbox-password.svg" width="24" height="24"> | `TextboxPasswordIcon`
- <img src="https://unpkg.com/@icons/material/svg/texture.svg" width="24" height="24"> | `TextureIcon`
- <img src="https://unpkg.com/@icons/material/svg/theater.svg" width="24" height="24"> | `TheaterIcon`
- <img src="https://unpkg.com/@icons/material/svg/theme-light-dark.svg" width="24" height="24"> | `ThemeLightDarkIcon`
- <img src="https://unpkg.com/@icons/material/svg/thermometer.svg" width="24" height="24"> | `ThermometerIcon`
- <img src="https://unpkg.com/@icons/material/svg/thermometer-lines.svg" width="24" height="24"> | `ThermometerLinesIcon`
- <img src="https://unpkg.com/@icons/material/svg/thermostat-box.svg" width="24" height="24"> | `ThermostatBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/thought-bubble.svg" width="24" height="24"> | `ThoughtBubbleIcon`
- <img src="https://unpkg.com/@icons/material/svg/thought-bubble-outline.svg" width="24" height="24"> | `ThoughtBubbleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/thumb-down.svg" width="24" height="24"> | `ThumbDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/thumb-down-outline.svg" width="24" height="24"> | `ThumbDownOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/thumb-up.svg" width="24" height="24"> | `ThumbUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/thumb-up-outline.svg" width="24" height="24"> | `ThumbUpOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/thumbs-up-down.svg" width="24" height="24"> | `ThumbsUpDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/ticket-account.svg" width="24" height="24"> | `TicketAccountIcon`
- <img src="https://unpkg.com/@icons/material/svg/ticket-confirmation.svg" width="24" height="24"> | `TicketConfirmationIcon`
- <img src="https://unpkg.com/@icons/material/svg/ticket.svg" width="24" height="24"> | `TicketIcon`
- <img src="https://unpkg.com/@icons/material/svg/ticket-percent.svg" width="24" height="24"> | `TicketPercentIcon`
- <img src="https://unpkg.com/@icons/material/svg/tie.svg" width="24" height="24"> | `TieIcon`
- <img src="https://unpkg.com/@icons/material/svg/tilde.svg" width="24" height="24"> | `TildeIcon`
- <img src="https://unpkg.com/@icons/material/svg/timelapse.svg" width="24" height="24"> | `TimelapseIcon`
- <img src="https://unpkg.com/@icons/material/svg/timer.svg" width="24" height="24"> | `TimerIcon`
- <img src="https://unpkg.com/@icons/material/svg/timer-off.svg" width="24" height="24"> | `TimerOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/timer-sand-empty.svg" width="24" height="24"> | `TimerSandEmptyIcon`
- <img src="https://unpkg.com/@icons/material/svg/timer-sand-full.svg" width="24" height="24"> | `TimerSandFullIcon`
- <img src="https://unpkg.com/@icons/material/svg/timer-sand.svg" width="24" height="24"> | `TimerSandIcon`
- <img src="https://unpkg.com/@icons/material/svg/timer-10.svg" width="24" height="24"> | `Timer_10Icon`
- <img src="https://unpkg.com/@icons/material/svg/timer-3.svg" width="24" height="24"> | `Timer_3Icon`
- <img src="https://unpkg.com/@icons/material/svg/timetable.svg" width="24" height="24"> | `TimetableIcon`
- <img src="https://unpkg.com/@icons/material/svg/toggle-switch.svg" width="24" height="24"> | `ToggleSwitchIcon`
- <img src="https://unpkg.com/@icons/material/svg/toggle-switch-off.svg" width="24" height="24"> | `ToggleSwitchOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/tooltip-edit.svg" width="24" height="24"> | `TooltipEditIcon`
- <img src="https://unpkg.com/@icons/material/svg/tooltip.svg" width="24" height="24"> | `TooltipIcon`
- <img src="https://unpkg.com/@icons/material/svg/tooltip-image.svg" width="24" height="24"> | `TooltipImageIcon`
- <img src="https://unpkg.com/@icons/material/svg/tooltip-outline.svg" width="24" height="24"> | `TooltipOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/tooltip-outline-plus.svg" width="24" height="24"> | `TooltipOutlinePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/tooltip-text.svg" width="24" height="24"> | `TooltipTextIcon`
- <img src="https://unpkg.com/@icons/material/svg/tooth.svg" width="24" height="24"> | `ToothIcon`
- <img src="https://unpkg.com/@icons/material/svg/tooth-outline.svg" width="24" height="24"> | `ToothOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/tor.svg" width="24" height="24"> | `TorIcon`
- <img src="https://unpkg.com/@icons/material/svg/tower-beach.svg" width="24" height="24"> | `TowerBeachIcon`
- <img src="https://unpkg.com/@icons/material/svg/tower-fire.svg" width="24" height="24"> | `TowerFireIcon`
- <img src="https://unpkg.com/@icons/material/svg/towing.svg" width="24" height="24"> | `TowingIcon`
- <img src="https://unpkg.com/@icons/material/svg/trackpad.svg" width="24" height="24"> | `TrackpadIcon`
- <img src="https://unpkg.com/@icons/material/svg/tractor.svg" width="24" height="24"> | `TractorIcon`
- <img src="https://unpkg.com/@icons/material/svg/traffic-light.svg" width="24" height="24"> | `TrafficLightIcon`
- <img src="https://unpkg.com/@icons/material/svg/train.svg" width="24" height="24"> | `TrainIcon`
- <img src="https://unpkg.com/@icons/material/svg/train-variant.svg" width="24" height="24"> | `TrainVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/tram.svg" width="24" height="24"> | `TramIcon`
- <img src="https://unpkg.com/@icons/material/svg/transcribe-close.svg" width="24" height="24"> | `TranscribeCloseIcon`
- <img src="https://unpkg.com/@icons/material/svg/transcribe.svg" width="24" height="24"> | `TranscribeIcon`
- <img src="https://unpkg.com/@icons/material/svg/transfer.svg" width="24" height="24"> | `TransferIcon`
- <img src="https://unpkg.com/@icons/material/svg/transit-transfer.svg" width="24" height="24"> | `TransitTransferIcon`
- <img src="https://unpkg.com/@icons/material/svg/translate.svg" width="24" height="24"> | `TranslateIcon`
- <img src="https://unpkg.com/@icons/material/svg/treasure-chest.svg" width="24" height="24"> | `TreasureChestIcon`
- <img src="https://unpkg.com/@icons/material/svg/tree.svg" width="24" height="24"> | `TreeIcon`
- <img src="https://unpkg.com/@icons/material/svg/trello.svg" width="24" height="24"> | `TrelloIcon`
- <img src="https://unpkg.com/@icons/material/svg/trending-down.svg" width="24" height="24"> | `TrendingDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/trending-neutral.svg" width="24" height="24"> | `TrendingNeutralIcon`
- <img src="https://unpkg.com/@icons/material/svg/trending-up.svg" width="24" height="24"> | `TrendingUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/triangle.svg" width="24" height="24"> | `TriangleIcon`
- <img src="https://unpkg.com/@icons/material/svg/triangle-outline.svg" width="24" height="24"> | `TriangleOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/trophy-award.svg" width="24" height="24"> | `TrophyAwardIcon`
- <img src="https://unpkg.com/@icons/material/svg/trophy.svg" width="24" height="24"> | `TrophyIcon`
- <img src="https://unpkg.com/@icons/material/svg/trophy-outline.svg" width="24" height="24"> | `TrophyOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/trophy-variant.svg" width="24" height="24"> | `TrophyVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/trophy-variant-outline.svg" width="24" height="24"> | `TrophyVariantOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/truck-delivery.svg" width="24" height="24"> | `TruckDeliveryIcon`
- <img src="https://unpkg.com/@icons/material/svg/truck-fast.svg" width="24" height="24"> | `TruckFastIcon`
- <img src="https://unpkg.com/@icons/material/svg/truck.svg" width="24" height="24"> | `TruckIcon`
- <img src="https://unpkg.com/@icons/material/svg/truck-trailer.svg" width="24" height="24"> | `TruckTrailerIcon`
- <img src="https://unpkg.com/@icons/material/svg/tshirt-crew.svg" width="24" height="24"> | `TshirtCrewIcon`
- <img src="https://unpkg.com/@icons/material/svg/tshirt-v.svg" width="24" height="24"> | `TshirtVIcon`
- <img src="https://unpkg.com/@icons/material/svg/tumblr.svg" width="24" height="24"> | `TumblrIcon`
- <img src="https://unpkg.com/@icons/material/svg/tumblr-reblog.svg" width="24" height="24"> | `TumblrReblogIcon`
- <img src="https://unpkg.com/@icons/material/svg/tune.svg" width="24" height="24"> | `TuneIcon`
- <img src="https://unpkg.com/@icons/material/svg/tune-vertical.svg" width="24" height="24"> | `TuneVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/twitch.svg" width="24" height="24"> | `TwitchIcon`
- <img src="https://unpkg.com/@icons/material/svg/twitter-box.svg" width="24" height="24"> | `TwitterBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/twitter-circle.svg" width="24" height="24"> | `TwitterCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/twitter.svg" width="24" height="24"> | `TwitterIcon`
- <img src="https://unpkg.com/@icons/material/svg/twitter-retweet.svg" width="24" height="24"> | `TwitterRetweetIcon`
- <img src="https://unpkg.com/@icons/material/svg/uber.svg" width="24" height="24"> | `UberIcon`
- <img src="https://unpkg.com/@icons/material/svg/ubuntu.svg" width="24" height="24"> | `UbuntuIcon`
- <img src="https://unpkg.com/@icons/material/svg/ultra-high-definition.svg" width="24" height="24"> | `UltraHighDefinitionIcon`
- <img src="https://unpkg.com/@icons/material/svg/umbraco.svg" width="24" height="24"> | `UmbracoIcon`
- <img src="https://unpkg.com/@icons/material/svg/umbrella.svg" width="24" height="24"> | `UmbrellaIcon`
- <img src="https://unpkg.com/@icons/material/svg/umbrella-outline.svg" width="24" height="24"> | `UmbrellaOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/undo.svg" width="24" height="24"> | `UndoIcon`
- <img src="https://unpkg.com/@icons/material/svg/undo-variant.svg" width="24" height="24"> | `UndoVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/unfold-less-horizontal.svg" width="24" height="24"> | `UnfoldLessHorizontalIcon`
- <img src="https://unpkg.com/@icons/material/svg/unfold-less-vertical.svg" width="24" height="24"> | `UnfoldLessVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/unfold-more-horizontal.svg" width="24" height="24"> | `UnfoldMoreHorizontalIcon`
- <img src="https://unpkg.com/@icons/material/svg/unfold-more-vertical.svg" width="24" height="24"> | `UnfoldMoreVerticalIcon`
- <img src="https://unpkg.com/@icons/material/svg/ungroup.svg" width="24" height="24"> | `UngroupIcon`
- <img src="https://unpkg.com/@icons/material/svg/unity.svg" width="24" height="24"> | `UnityIcon`
- <img src="https://unpkg.com/@icons/material/svg/untappd.svg" width="24" height="24"> | `UntappdIcon`
- <img src="https://unpkg.com/@icons/material/svg/update.svg" width="24" height="24"> | `UpdateIcon`
- <img src="https://unpkg.com/@icons/material/svg/upload.svg" width="24" height="24"> | `UploadIcon`
- <img src="https://unpkg.com/@icons/material/svg/upload-multiple.svg" width="24" height="24"> | `UploadMultipleIcon`
- <img src="https://unpkg.com/@icons/material/svg/upload-network.svg" width="24" height="24"> | `UploadNetworkIcon`
- <img src="https://unpkg.com/@icons/material/svg/usb.svg" width="24" height="24"> | `UsbIcon`
- <img src="https://unpkg.com/@icons/material/svg/van-passenger.svg" width="24" height="24"> | `VanPassengerIcon`
- <img src="https://unpkg.com/@icons/material/svg/van-utility.svg" width="24" height="24"> | `VanUtilityIcon`
- <img src="https://unpkg.com/@icons/material/svg/vanish.svg" width="24" height="24"> | `VanishIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-arrange-above.svg" width="24" height="24"> | `VectorArrangeAboveIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-arrange-below.svg" width="24" height="24"> | `VectorArrangeBelowIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-circle.svg" width="24" height="24"> | `VectorCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-circle-variant.svg" width="24" height="24"> | `VectorCircleVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-combine.svg" width="24" height="24"> | `VectorCombineIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-curve.svg" width="24" height="24"> | `VectorCurveIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-difference-ab.svg" width="24" height="24"> | `VectorDifferenceAbIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-difference-ba.svg" width="24" height="24"> | `VectorDifferenceBaIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-difference.svg" width="24" height="24"> | `VectorDifferenceIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-ellipse.svg" width="24" height="24"> | `VectorEllipseIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-intersection.svg" width="24" height="24"> | `VectorIntersectionIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-line.svg" width="24" height="24"> | `VectorLineIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-point.svg" width="24" height="24"> | `VectorPointIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-polygon.svg" width="24" height="24"> | `VectorPolygonIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-polyline.svg" width="24" height="24"> | `VectorPolylineIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-radius.svg" width="24" height="24"> | `VectorRadiusIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-rectangle.svg" width="24" height="24"> | `VectorRectangleIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-selection.svg" width="24" height="24"> | `VectorSelectionIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-square.svg" width="24" height="24"> | `VectorSquareIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-triangle.svg" width="24" height="24"> | `VectorTriangleIcon`
- <img src="https://unpkg.com/@icons/material/svg/vector-union.svg" width="24" height="24"> | `VectorUnionIcon`
- <img src="https://unpkg.com/@icons/material/svg/venmo.svg" width="24" height="24"> | `VenmoIcon`
- <img src="https://unpkg.com/@icons/material/svg/verified.svg" width="24" height="24"> | `VerifiedIcon`
- <img src="https://unpkg.com/@icons/material/svg/vibrate.svg" width="24" height="24"> | `VibrateIcon`
- <img src="https://unpkg.com/@icons/material/svg/video.svg" width="24" height="24"> | `VideoIcon`
- <img src="https://unpkg.com/@icons/material/svg/video-input-antenna.svg" width="24" height="24"> | `VideoInputAntennaIcon`
- <img src="https://unpkg.com/@icons/material/svg/video-input-component.svg" width="24" height="24"> | `VideoInputComponentIcon`
- <img src="https://unpkg.com/@icons/material/svg/video-input-hdmi.svg" width="24" height="24"> | `VideoInputHdmiIcon`
- <img src="https://unpkg.com/@icons/material/svg/video-input-svideo.svg" width="24" height="24"> | `VideoInputSvideoIcon`
- <img src="https://unpkg.com/@icons/material/svg/video-off.svg" width="24" height="24"> | `VideoOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/video-switch.svg" width="24" height="24"> | `VideoSwitchIcon`
- <img src="https://unpkg.com/@icons/material/svg/video-3d.svg" width="24" height="24"> | `Video_3dIcon`
- <img src="https://unpkg.com/@icons/material/svg/video-4k-box.svg" width="24" height="24"> | `Video_4kBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-agenda.svg" width="24" height="24"> | `ViewAgendaIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-array.svg" width="24" height="24"> | `ViewArrayIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-carousel.svg" width="24" height="24"> | `ViewCarouselIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-column.svg" width="24" height="24"> | `ViewColumnIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-dashboard.svg" width="24" height="24"> | `ViewDashboardIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-dashboard-variant.svg" width="24" height="24"> | `ViewDashboardVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-day.svg" width="24" height="24"> | `ViewDayIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-grid.svg" width="24" height="24"> | `ViewGridIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-headline.svg" width="24" height="24"> | `ViewHeadlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-list.svg" width="24" height="24"> | `ViewListIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-module.svg" width="24" height="24"> | `ViewModuleIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-parallel.svg" width="24" height="24"> | `ViewParallelIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-quilt.svg" width="24" height="24"> | `ViewQuiltIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-sequential.svg" width="24" height="24"> | `ViewSequentialIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-stream.svg" width="24" height="24"> | `ViewStreamIcon`
- <img src="https://unpkg.com/@icons/material/svg/view-week.svg" width="24" height="24"> | `ViewWeekIcon`
- <img src="https://unpkg.com/@icons/material/svg/vimeo.svg" width="24" height="24"> | `VimeoIcon`
- <img src="https://unpkg.com/@icons/material/svg/violin.svg" width="24" height="24"> | `ViolinIcon`
- <img src="https://unpkg.com/@icons/material/svg/virtual-reality.svg" width="24" height="24"> | `VirtualRealityIcon`
- <img src="https://unpkg.com/@icons/material/svg/visualstudio.svg" width="24" height="24"> | `VisualstudioIcon`
- <img src="https://unpkg.com/@icons/material/svg/vk-box.svg" width="24" height="24"> | `VkBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/vk-circle.svg" width="24" height="24"> | `VkCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/vk.svg" width="24" height="24"> | `VkIcon`
- <img src="https://unpkg.com/@icons/material/svg/vlc.svg" width="24" height="24"> | `VlcIcon`
- <img src="https://unpkg.com/@icons/material/svg/voice.svg" width="24" height="24"> | `VoiceIcon`
- <img src="https://unpkg.com/@icons/material/svg/voicemail.svg" width="24" height="24"> | `VoicemailIcon`
- <img src="https://unpkg.com/@icons/material/svg/volume-high.svg" width="24" height="24"> | `VolumeHighIcon`
- <img src="https://unpkg.com/@icons/material/svg/volume-low.svg" width="24" height="24"> | `VolumeLowIcon`
- <img src="https://unpkg.com/@icons/material/svg/volume-medium.svg" width="24" height="24"> | `VolumeMediumIcon`
- <img src="https://unpkg.com/@icons/material/svg/volume-minus.svg" width="24" height="24"> | `VolumeMinusIcon`
- <img src="https://unpkg.com/@icons/material/svg/volume-mute.svg" width="24" height="24"> | `VolumeMuteIcon`
- <img src="https://unpkg.com/@icons/material/svg/volume-off.svg" width="24" height="24"> | `VolumeOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/volume-plus.svg" width="24" height="24"> | `VolumePlusIcon`
- <img src="https://unpkg.com/@icons/material/svg/vpn.svg" width="24" height="24"> | `VpnIcon`
- <img src="https://unpkg.com/@icons/material/svg/vuejs.svg" width="24" height="24"> | `VuejsIcon`
- <img src="https://unpkg.com/@icons/material/svg/walk.svg" width="24" height="24"> | `WalkIcon`
- <img src="https://unpkg.com/@icons/material/svg/wall.svg" width="24" height="24"> | `WallIcon`
- <img src="https://unpkg.com/@icons/material/svg/wallet-giftcard.svg" width="24" height="24"> | `WalletGiftcardIcon`
- <img src="https://unpkg.com/@icons/material/svg/wallet.svg" width="24" height="24"> | `WalletIcon`
- <img src="https://unpkg.com/@icons/material/svg/wallet-membership.svg" width="24" height="24"> | `WalletMembershipIcon`
- <img src="https://unpkg.com/@icons/material/svg/wallet-travel.svg" width="24" height="24"> | `WalletTravelIcon`
- <img src="https://unpkg.com/@icons/material/svg/wan.svg" width="24" height="24"> | `WanIcon`
- <img src="https://unpkg.com/@icons/material/svg/washing-machine.svg" width="24" height="24"> | `WashingMachineIcon`
- <img src="https://unpkg.com/@icons/material/svg/watch-export.svg" width="24" height="24"> | `WatchExportIcon`
- <img src="https://unpkg.com/@icons/material/svg/watch-export-variant.svg" width="24" height="24"> | `WatchExportVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/watch.svg" width="24" height="24"> | `WatchIcon`
- <img src="https://unpkg.com/@icons/material/svg/watch-import.svg" width="24" height="24"> | `WatchImportIcon`
- <img src="https://unpkg.com/@icons/material/svg/watch-import-variant.svg" width="24" height="24"> | `WatchImportVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/watch-variant.svg" width="24" height="24"> | `WatchVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/watch-vibrate.svg" width="24" height="24"> | `WatchVibrateIcon`
- <img src="https://unpkg.com/@icons/material/svg/water.svg" width="24" height="24"> | `WaterIcon`
- <img src="https://unpkg.com/@icons/material/svg/water-off.svg" width="24" height="24"> | `WaterOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/water-percent.svg" width="24" height="24"> | `WaterPercentIcon`
- <img src="https://unpkg.com/@icons/material/svg/water-pump.svg" width="24" height="24"> | `WaterPumpIcon`
- <img src="https://unpkg.com/@icons/material/svg/watermark.svg" width="24" height="24"> | `WatermarkIcon`
- <img src="https://unpkg.com/@icons/material/svg/waves.svg" width="24" height="24"> | `WavesIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-cloudy.svg" width="24" height="24"> | `WeatherCloudyIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-fog.svg" width="24" height="24"> | `WeatherFogIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-hail.svg" width="24" height="24"> | `WeatherHailIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-hurricane.svg" width="24" height="24"> | `WeatherHurricaneIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-lightning.svg" width="24" height="24"> | `WeatherLightningIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-lightning-rainy.svg" width="24" height="24"> | `WeatherLightningRainyIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-night.svg" width="24" height="24"> | `WeatherNightIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-partlycloudy.svg" width="24" height="24"> | `WeatherPartlycloudyIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-pouring.svg" width="24" height="24"> | `WeatherPouringIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-rainy.svg" width="24" height="24"> | `WeatherRainyIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-snowy.svg" width="24" height="24"> | `WeatherSnowyIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-snowy-rainy.svg" width="24" height="24"> | `WeatherSnowyRainyIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-sunny.svg" width="24" height="24"> | `WeatherSunnyIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-sunset-down.svg" width="24" height="24"> | `WeatherSunsetDownIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-sunset.svg" width="24" height="24"> | `WeatherSunsetIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-sunset-up.svg" width="24" height="24"> | `WeatherSunsetUpIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-windy.svg" width="24" height="24"> | `WeatherWindyIcon`
- <img src="https://unpkg.com/@icons/material/svg/weather-windy-variant.svg" width="24" height="24"> | `WeatherWindyVariantIcon`
- <img src="https://unpkg.com/@icons/material/svg/web.svg" width="24" height="24"> | `WebIcon`
- <img src="https://unpkg.com/@icons/material/svg/webcam.svg" width="24" height="24"> | `WebcamIcon`
- <img src="https://unpkg.com/@icons/material/svg/webhook.svg" width="24" height="24"> | `WebhookIcon`
- <img src="https://unpkg.com/@icons/material/svg/webpack.svg" width="24" height="24"> | `WebpackIcon`
- <img src="https://unpkg.com/@icons/material/svg/wechat.svg" width="24" height="24"> | `WechatIcon`
- <img src="https://unpkg.com/@icons/material/svg/weight.svg" width="24" height="24"> | `WeightIcon`
- <img src="https://unpkg.com/@icons/material/svg/weight-kilogram.svg" width="24" height="24"> | `WeightKilogramIcon`
- <img src="https://unpkg.com/@icons/material/svg/whatsapp.svg" width="24" height="24"> | `WhatsappIcon`
- <img src="https://unpkg.com/@icons/material/svg/wheelchair-accessibility.svg" width="24" height="24"> | `WheelchairAccessibilityIcon`
- <img src="https://unpkg.com/@icons/material/svg/white-balance-auto.svg" width="24" height="24"> | `WhiteBalanceAutoIcon`
- <img src="https://unpkg.com/@icons/material/svg/white-balance-incandescent.svg" width="24" height="24"> | `WhiteBalanceIncandescentIcon`
- <img src="https://unpkg.com/@icons/material/svg/white-balance-iridescent.svg" width="24" height="24"> | `WhiteBalanceIridescentIcon`
- <img src="https://unpkg.com/@icons/material/svg/white-balance-sunny.svg" width="24" height="24"> | `WhiteBalanceSunnyIcon`
- <img src="https://unpkg.com/@icons/material/svg/widgets.svg" width="24" height="24"> | `WidgetsIcon`
- <img src="https://unpkg.com/@icons/material/svg/wifi.svg" width="24" height="24"> | `WifiIcon`
- <img src="https://unpkg.com/@icons/material/svg/wifi-off.svg" width="24" height="24"> | `WifiOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/wii.svg" width="24" height="24"> | `WiiIcon`
- <img src="https://unpkg.com/@icons/material/svg/wiiu.svg" width="24" height="24"> | `WiiuIcon`
- <img src="https://unpkg.com/@icons/material/svg/wikipedia.svg" width="24" height="24"> | `WikipediaIcon`
- <img src="https://unpkg.com/@icons/material/svg/window-close.svg" width="24" height="24"> | `WindowCloseIcon`
- <img src="https://unpkg.com/@icons/material/svg/window-closed.svg" width="24" height="24"> | `WindowClosedIcon`
- <img src="https://unpkg.com/@icons/material/svg/window-maximize.svg" width="24" height="24"> | `WindowMaximizeIcon`
- <img src="https://unpkg.com/@icons/material/svg/window-minimize.svg" width="24" height="24"> | `WindowMinimizeIcon`
- <img src="https://unpkg.com/@icons/material/svg/window-open.svg" width="24" height="24"> | `WindowOpenIcon`
- <img src="https://unpkg.com/@icons/material/svg/window-restore.svg" width="24" height="24"> | `WindowRestoreIcon`
- <img src="https://unpkg.com/@icons/material/svg/windows.svg" width="24" height="24"> | `WindowsIcon`
- <img src="https://unpkg.com/@icons/material/svg/wordpress.svg" width="24" height="24"> | `WordpressIcon`
- <img src="https://unpkg.com/@icons/material/svg/worker.svg" width="24" height="24"> | `WorkerIcon`
- <img src="https://unpkg.com/@icons/material/svg/wrap.svg" width="24" height="24"> | `WrapIcon`
- <img src="https://unpkg.com/@icons/material/svg/wrench.svg" width="24" height="24"> | `WrenchIcon`
- <img src="https://unpkg.com/@icons/material/svg/wunderlist.svg" width="24" height="24"> | `WunderlistIcon`
- <img src="https://unpkg.com/@icons/material/svg/xamarin.svg" width="24" height="24"> | `XamarinIcon`
- <img src="https://unpkg.com/@icons/material/svg/xamarin-outline.svg" width="24" height="24"> | `XamarinOutlineIcon`
- <img src="https://unpkg.com/@icons/material/svg/xaml.svg" width="24" height="24"> | `XamlIcon`
- <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-alert.svg" width="24" height="24"> | `XboxControllerBatteryAlertIcon`
- <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-empty.svg" width="24" height="24"> | `XboxControllerBatteryEmptyIcon`
- <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-full.svg" width="24" height="24"> | `XboxControllerBatteryFullIcon`
- <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-low.svg" width="24" height="24"> | `XboxControllerBatteryLowIcon`
- <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-medium.svg" width="24" height="24"> | `XboxControllerBatteryMediumIcon`
- <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-unknown.svg" width="24" height="24"> | `XboxControllerBatteryUnknownIcon`
- <img src="https://unpkg.com/@icons/material/svg/xbox-controller.svg" width="24" height="24"> | `XboxControllerIcon`
- <img src="https://unpkg.com/@icons/material/svg/xbox-controller-off.svg" width="24" height="24"> | `XboxControllerOffIcon`
- <img src="https://unpkg.com/@icons/material/svg/xbox.svg" width="24" height="24"> | `XboxIcon`
- <img src="https://unpkg.com/@icons/material/svg/xda.svg" width="24" height="24"> | `XdaIcon`
- <img src="https://unpkg.com/@icons/material/svg/xing-box.svg" width="24" height="24"> | `XingBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/xing-circle.svg" width="24" height="24"> | `XingCircleIcon`
- <img src="https://unpkg.com/@icons/material/svg/xing.svg" width="24" height="24"> | `XingIcon`
- <img src="https://unpkg.com/@icons/material/svg/xml.svg" width="24" height="24"> | `XmlIcon`
- <img src="https://unpkg.com/@icons/material/svg/xmpp.svg" width="24" height="24"> | `XmppIcon`
- <img src="https://unpkg.com/@icons/material/svg/yammer.svg" width="24" height="24"> | `YammerIcon`
- <img src="https://unpkg.com/@icons/material/svg/yeast.svg" width="24" height="24"> | `YeastIcon`
- <img src="https://unpkg.com/@icons/material/svg/yelp.svg" width="24" height="24"> | `YelpIcon`
- <img src="https://unpkg.com/@icons/material/svg/yin-yang.svg" width="24" height="24"> | `YinYangIcon`
- <img src="https://unpkg.com/@icons/material/svg/youtube-creator-studio.svg" width="24" height="24"> | `YoutubeCreatorStudioIcon`
- <img src="https://unpkg.com/@icons/material/svg/youtube-gaming.svg" width="24" height="24"> | `YoutubeGamingIcon`
- <img src="https://unpkg.com/@icons/material/svg/youtube-play.svg" width="24" height="24"> | `YoutubePlayIcon`
- <img src="https://unpkg.com/@icons/material/svg/youtube-tv.svg" width="24" height="24"> | `YoutubeTvIcon`
- <img src="https://unpkg.com/@icons/material/svg/zip-box.svg" width="24" height="24"> | `ZipBoxIcon`
- <img src="https://unpkg.com/@icons/material/svg/index.svg" width="24" height="24"> | `index`
|