You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 243 KiB

3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250
  1. # Material Icons
  2. > materialdesignicons.com
  3. | | Name
  4. :-: | :----------:
  5. <img src="https://unpkg.com/@icons/material/svg/access-point.svg" width="24" height="24"> | `AccessPointIcon`
  6. <img src="https://unpkg.com/@icons/material/svg/access-point-network.svg" width="24" height="24"> | `AccessPointNetworkIcon`
  7. <img src="https://unpkg.com/@icons/material/svg/account-alert.svg" width="24" height="24"> | `AccountAlertIcon`
  8. <img src="https://unpkg.com/@icons/material/svg/account-box.svg" width="24" height="24"> | `AccountBoxIcon`
  9. <img src="https://unpkg.com/@icons/material/svg/account-box-outline.svg" width="24" height="24"> | `AccountBoxOutlineIcon`
  10. <img src="https://unpkg.com/@icons/material/svg/account-card-details.svg" width="24" height="24"> | `AccountCardDetailsIcon`
  11. <img src="https://unpkg.com/@icons/material/svg/account-check.svg" width="24" height="24"> | `AccountCheckIcon`
  12. <img src="https://unpkg.com/@icons/material/svg/account-circle.svg" width="24" height="24"> | `AccountCircleIcon`
  13. <img src="https://unpkg.com/@icons/material/svg/account-convert.svg" width="24" height="24"> | `AccountConvertIcon`
  14. <img src="https://unpkg.com/@icons/material/svg/account-edit.svg" width="24" height="24"> | `AccountEditIcon`
  15. <img src="https://unpkg.com/@icons/material/svg/account-group.svg" width="24" height="24"> | `AccountGroupIcon`
  16. <img src="https://unpkg.com/@icons/material/svg/account-heart.svg" width="24" height="24"> | `AccountHeartIcon`
  17. <img src="https://unpkg.com/@icons/material/svg/account.svg" width="24" height="24"> | `AccountIcon`
  18. <img src="https://unpkg.com/@icons/material/svg/account-key.svg" width="24" height="24"> | `AccountKeyIcon`
  19. <img src="https://unpkg.com/@icons/material/svg/account-location.svg" width="24" height="24"> | `AccountLocationIcon`
  20. <img src="https://unpkg.com/@icons/material/svg/account-minus.svg" width="24" height="24"> | `AccountMinusIcon`
  21. <img src="https://unpkg.com/@icons/material/svg/account-multiple.svg" width="24" height="24"> | `AccountMultipleIcon`
  22. <img src="https://unpkg.com/@icons/material/svg/account-multiple-minus.svg" width="24" height="24"> | `AccountMultipleMinusIcon`
  23. <img src="https://unpkg.com/@icons/material/svg/account-multiple-outline.svg" width="24" height="24"> | `AccountMultipleOutlineIcon`
  24. <img src="https://unpkg.com/@icons/material/svg/account-multiple-plus.svg" width="24" height="24"> | `AccountMultiplePlusIcon`
  25. <img src="https://unpkg.com/@icons/material/svg/account-multiple-plus-outline.svg" width="24" height="24"> | `AccountMultiplePlusOutlineIcon`
  26. <img src="https://unpkg.com/@icons/material/svg/account-network.svg" width="24" height="24"> | `AccountNetworkIcon`
  27. <img src="https://unpkg.com/@icons/material/svg/account-off.svg" width="24" height="24"> | `AccountOffIcon`
  28. <img src="https://unpkg.com/@icons/material/svg/account-outline.svg" width="24" height="24"> | `AccountOutlineIcon`
  29. <img src="https://unpkg.com/@icons/material/svg/account-plus.svg" width="24" height="24"> | `AccountPlusIcon`
  30. <img src="https://unpkg.com/@icons/material/svg/account-plus-outline.svg" width="24" height="24"> | `AccountPlusOutlineIcon`
  31. <img src="https://unpkg.com/@icons/material/svg/account-remove.svg" width="24" height="24"> | `AccountRemoveIcon`
  32. <img src="https://unpkg.com/@icons/material/svg/account-search.svg" width="24" height="24"> | `AccountSearchIcon`
  33. <img src="https://unpkg.com/@icons/material/svg/account-settings.svg" width="24" height="24"> | `AccountSettingsIcon`
  34. <img src="https://unpkg.com/@icons/material/svg/account-settings-variant.svg" width="24" height="24"> | `AccountSettingsVariantIcon`
  35. <img src="https://unpkg.com/@icons/material/svg/account-star.svg" width="24" height="24"> | `AccountStarIcon`
  36. <img src="https://unpkg.com/@icons/material/svg/account-switch.svg" width="24" height="24"> | `AccountSwitchIcon`
  37. <img src="https://unpkg.com/@icons/material/svg/accusoft.svg" width="24" height="24"> | `AccusoftIcon`
  38. <img src="https://unpkg.com/@icons/material/svg/adjust.svg" width="24" height="24"> | `AdjustIcon`
  39. <img src="https://unpkg.com/@icons/material/svg/air-conditioner.svg" width="24" height="24"> | `AirConditionerIcon`
  40. <img src="https://unpkg.com/@icons/material/svg/airballoon.svg" width="24" height="24"> | `AirballoonIcon`
  41. <img src="https://unpkg.com/@icons/material/svg/airplane.svg" width="24" height="24"> | `AirplaneIcon`
  42. <img src="https://unpkg.com/@icons/material/svg/airplane-landing.svg" width="24" height="24"> | `AirplaneLandingIcon`
  43. <img src="https://unpkg.com/@icons/material/svg/airplane-off.svg" width="24" height="24"> | `AirplaneOffIcon`
  44. <img src="https://unpkg.com/@icons/material/svg/airplane-takeoff.svg" width="24" height="24"> | `AirplaneTakeoffIcon`
  45. <img src="https://unpkg.com/@icons/material/svg/airplay.svg" width="24" height="24"> | `AirplayIcon`
  46. <img src="https://unpkg.com/@icons/material/svg/airport.svg" width="24" height="24"> | `AirportIcon`
  47. <img src="https://unpkg.com/@icons/material/svg/alarm-bell.svg" width="24" height="24"> | `AlarmBellIcon`
  48. <img src="https://unpkg.com/@icons/material/svg/alarm-check.svg" width="24" height="24"> | `AlarmCheckIcon`
  49. <img src="https://unpkg.com/@icons/material/svg/alarm.svg" width="24" height="24"> | `AlarmIcon`
  50. <img src="https://unpkg.com/@icons/material/svg/alarm-light.svg" width="24" height="24"> | `AlarmLightIcon`
  51. <img src="https://unpkg.com/@icons/material/svg/alarm-multiple.svg" width="24" height="24"> | `AlarmMultipleIcon`
  52. <img src="https://unpkg.com/@icons/material/svg/alarm-off.svg" width="24" height="24"> | `AlarmOffIcon`
  53. <img src="https://unpkg.com/@icons/material/svg/alarm-plus.svg" width="24" height="24"> | `AlarmPlusIcon`
  54. <img src="https://unpkg.com/@icons/material/svg/alarm-snooze.svg" width="24" height="24"> | `AlarmSnoozeIcon`
  55. <img src="https://unpkg.com/@icons/material/svg/album.svg" width="24" height="24"> | `AlbumIcon`
  56. <img src="https://unpkg.com/@icons/material/svg/alert-box.svg" width="24" height="24"> | `AlertBoxIcon`
  57. <img src="https://unpkg.com/@icons/material/svg/alert-circle.svg" width="24" height="24"> | `AlertCircleIcon`
  58. <img src="https://unpkg.com/@icons/material/svg/alert-circle-outline.svg" width="24" height="24"> | `AlertCircleOutlineIcon`
  59. <img src="https://unpkg.com/@icons/material/svg/alert-decagram.svg" width="24" height="24"> | `AlertDecagramIcon`
  60. <img src="https://unpkg.com/@icons/material/svg/alert.svg" width="24" height="24"> | `AlertIcon`
  61. <img src="https://unpkg.com/@icons/material/svg/alert-octagon.svg" width="24" height="24"> | `AlertOctagonIcon`
  62. <img src="https://unpkg.com/@icons/material/svg/alert-octagram.svg" width="24" height="24"> | `AlertOctagramIcon`
  63. <img src="https://unpkg.com/@icons/material/svg/alert-outline.svg" width="24" height="24"> | `AlertOutlineIcon`
  64. <img src="https://unpkg.com/@icons/material/svg/alien.svg" width="24" height="24"> | `AlienIcon`
  65. <img src="https://unpkg.com/@icons/material/svg/all-inclusive.svg" width="24" height="24"> | `AllInclusiveIcon`
  66. <img src="https://unpkg.com/@icons/material/svg/allo.svg" width="24" height="24"> | `AlloIcon`
  67. <img src="https://unpkg.com/@icons/material/svg/alpha.svg" width="24" height="24"> | `AlphaIcon`
  68. <img src="https://unpkg.com/@icons/material/svg/alphabetical.svg" width="24" height="24"> | `AlphabeticalIcon`
  69. <img src="https://unpkg.com/@icons/material/svg/altimeter.svg" width="24" height="24"> | `AltimeterIcon`
  70. <img src="https://unpkg.com/@icons/material/svg/amazon-clouddrive.svg" width="24" height="24"> | `AmazonClouddriveIcon`
  71. <img src="https://unpkg.com/@icons/material/svg/amazon.svg" width="24" height="24"> | `AmazonIcon`
  72. <img src="https://unpkg.com/@icons/material/svg/ambulance.svg" width="24" height="24"> | `AmbulanceIcon`
  73. <img src="https://unpkg.com/@icons/material/svg/amplifier.svg" width="24" height="24"> | `AmplifierIcon`
  74. <img src="https://unpkg.com/@icons/material/svg/anchor.svg" width="24" height="24"> | `AnchorIcon`
  75. <img src="https://unpkg.com/@icons/material/svg/android-debug-bridge.svg" width="24" height="24"> | `AndroidDebugBridgeIcon`
  76. <img src="https://unpkg.com/@icons/material/svg/android-head.svg" width="24" height="24"> | `AndroidHeadIcon`
  77. <img src="https://unpkg.com/@icons/material/svg/android.svg" width="24" height="24"> | `AndroidIcon`
  78. <img src="https://unpkg.com/@icons/material/svg/android-studio.svg" width="24" height="24"> | `AndroidStudioIcon`
  79. <img src="https://unpkg.com/@icons/material/svg/angular.svg" width="24" height="24"> | `AngularIcon`
  80. <img src="https://unpkg.com/@icons/material/svg/angularjs.svg" width="24" height="24"> | `AngularjsIcon`
  81. <img src="https://unpkg.com/@icons/material/svg/animation.svg" width="24" height="24"> | `AnimationIcon`
  82. <img src="https://unpkg.com/@icons/material/svg/anvil.svg" width="24" height="24"> | `AnvilIcon`
  83. <img src="https://unpkg.com/@icons/material/svg/apple-finder.svg" width="24" height="24"> | `AppleFinderIcon`
  84. <img src="https://unpkg.com/@icons/material/svg/apple.svg" width="24" height="24"> | `AppleIcon`
  85. <img src="https://unpkg.com/@icons/material/svg/apple-ios.svg" width="24" height="24"> | `AppleIosIcon`
  86. <img src="https://unpkg.com/@icons/material/svg/apple-keyboard-caps.svg" width="24" height="24"> | `AppleKeyboardCapsIcon`
  87. <img src="https://unpkg.com/@icons/material/svg/apple-keyboard-command.svg" width="24" height="24"> | `AppleKeyboardCommandIcon`
  88. <img src="https://unpkg.com/@icons/material/svg/apple-keyboard-control.svg" width="24" height="24"> | `AppleKeyboardControlIcon`
  89. <img src="https://unpkg.com/@icons/material/svg/apple-keyboard-option.svg" width="24" height="24"> | `AppleKeyboardOptionIcon`
  90. <img src="https://unpkg.com/@icons/material/svg/apple-keyboard-shift.svg" width="24" height="24"> | `AppleKeyboardShiftIcon`
  91. <img src="https://unpkg.com/@icons/material/svg/apple-mobileme.svg" width="24" height="24"> | `AppleMobilemeIcon`
  92. <img src="https://unpkg.com/@icons/material/svg/apple-safari.svg" width="24" height="24"> | `AppleSafariIcon`
  93. <img src="https://unpkg.com/@icons/material/svg/application.svg" width="24" height="24"> | `ApplicationIcon`
  94. <img src="https://unpkg.com/@icons/material/svg/approval.svg" width="24" height="24"> | `ApprovalIcon`
  95. <img src="https://unpkg.com/@icons/material/svg/apps.svg" width="24" height="24"> | `AppsIcon`
  96. <img src="https://unpkg.com/@icons/material/svg/archive.svg" width="24" height="24"> | `ArchiveIcon`
  97. <img src="https://unpkg.com/@icons/material/svg/arrange-bring-forward.svg" width="24" height="24"> | `ArrangeBringForwardIcon`
  98. <img src="https://unpkg.com/@icons/material/svg/arrange-bring-to-front.svg" width="24" height="24"> | `ArrangeBringToFrontIcon`
  99. <img src="https://unpkg.com/@icons/material/svg/arrange-send-backward.svg" width="24" height="24"> | `ArrangeSendBackwardIcon`
  100. <img src="https://unpkg.com/@icons/material/svg/arrange-send-to-back.svg" width="24" height="24"> | `ArrangeSendToBackIcon`
  101. <img src="https://unpkg.com/@icons/material/svg/arrow-all.svg" width="24" height="24"> | `ArrowAllIcon`
  102. <img src="https://unpkg.com/@icons/material/svg/arrow-bottom-left.svg" width="24" height="24"> | `ArrowBottomLeftIcon`
  103. <img src="https://unpkg.com/@icons/material/svg/arrow-bottom-right.svg" width="24" height="24"> | `ArrowBottomRightIcon`
  104. <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-all.svg" width="24" height="24"> | `ArrowCollapseAllIcon`
  105. <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-down.svg" width="24" height="24"> | `ArrowCollapseDownIcon`
  106. <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-horizontal.svg" width="24" height="24"> | `ArrowCollapseHorizontalIcon`
  107. <img src="https://unpkg.com/@icons/material/svg/arrow-collapse.svg" width="24" height="24"> | `ArrowCollapseIcon`
  108. <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-left.svg" width="24" height="24"> | `ArrowCollapseLeftIcon`
  109. <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-right.svg" width="24" height="24"> | `ArrowCollapseRightIcon`
  110. <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-up.svg" width="24" height="24"> | `ArrowCollapseUpIcon`
  111. <img src="https://unpkg.com/@icons/material/svg/arrow-collapse-vertical.svg" width="24" height="24"> | `ArrowCollapseVerticalIcon`
  112. <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold-box.svg" width="24" height="24"> | `ArrowDownBoldBoxIcon`
  113. <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold-box-outline.svg" width="24" height="24"> | `ArrowDownBoldBoxOutlineIcon`
  114. <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold-circle.svg" width="24" height="24"> | `ArrowDownBoldCircleIcon`
  115. <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold-circle-outline.svg" width="24" height="24"> | `ArrowDownBoldCircleOutlineIcon`
  116. <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold-hexagon-outline.svg" width="24" height="24"> | `ArrowDownBoldHexagonOutlineIcon`
  117. <img src="https://unpkg.com/@icons/material/svg/arrow-down-bold.svg" width="24" height="24"> | `ArrowDownBoldIcon`
  118. <img src="https://unpkg.com/@icons/material/svg/arrow-down-box.svg" width="24" height="24"> | `ArrowDownBoxIcon`
  119. <img src="https://unpkg.com/@icons/material/svg/arrow-down-drop-circle.svg" width="24" height="24"> | `ArrowDownDropCircleIcon`
  120. <img src="https://unpkg.com/@icons/material/svg/arrow-down-drop-circle-outline.svg" width="24" height="24"> | `ArrowDownDropCircleOutlineIcon`
  121. <img src="https://unpkg.com/@icons/material/svg/arrow-down.svg" width="24" height="24"> | `ArrowDownIcon`
  122. <img src="https://unpkg.com/@icons/material/svg/arrow-down-thick.svg" width="24" height="24"> | `ArrowDownThickIcon`
  123. <img src="https://unpkg.com/@icons/material/svg/arrow-expand-all.svg" width="24" height="24"> | `ArrowExpandAllIcon`
  124. <img src="https://unpkg.com/@icons/material/svg/arrow-expand-down.svg" width="24" height="24"> | `ArrowExpandDownIcon`
  125. <img src="https://unpkg.com/@icons/material/svg/arrow-expand-horizontal.svg" width="24" height="24"> | `ArrowExpandHorizontalIcon`
  126. <img src="https://unpkg.com/@icons/material/svg/arrow-expand.svg" width="24" height="24"> | `ArrowExpandIcon`
  127. <img src="https://unpkg.com/@icons/material/svg/arrow-expand-left.svg" width="24" height="24"> | `ArrowExpandLeftIcon`
  128. <img src="https://unpkg.com/@icons/material/svg/arrow-expand-right.svg" width="24" height="24"> | `ArrowExpandRightIcon`
  129. <img src="https://unpkg.com/@icons/material/svg/arrow-expand-up.svg" width="24" height="24"> | `ArrowExpandUpIcon`
  130. <img src="https://unpkg.com/@icons/material/svg/arrow-expand-vertical.svg" width="24" height="24"> | `ArrowExpandVerticalIcon`
  131. <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold-box.svg" width="24" height="24"> | `ArrowLeftBoldBoxIcon`
  132. <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold-box-outline.svg" width="24" height="24"> | `ArrowLeftBoldBoxOutlineIcon`
  133. <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold-circle.svg" width="24" height="24"> | `ArrowLeftBoldCircleIcon`
  134. <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold-circle-outline.svg" width="24" height="24"> | `ArrowLeftBoldCircleOutlineIcon`
  135. <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold-hexagon-outline.svg" width="24" height="24"> | `ArrowLeftBoldHexagonOutlineIcon`
  136. <img src="https://unpkg.com/@icons/material/svg/arrow-left-bold.svg" width="24" height="24"> | `ArrowLeftBoldIcon`
  137. <img src="https://unpkg.com/@icons/material/svg/arrow-left-box.svg" width="24" height="24"> | `ArrowLeftBoxIcon`
  138. <img src="https://unpkg.com/@icons/material/svg/arrow-left-drop-circle.svg" width="24" height="24"> | `ArrowLeftDropCircleIcon`
  139. <img src="https://unpkg.com/@icons/material/svg/arrow-left-drop-circle-outline.svg" width="24" height="24"> | `ArrowLeftDropCircleOutlineIcon`
  140. <img src="https://unpkg.com/@icons/material/svg/arrow-left.svg" width="24" height="24"> | `ArrowLeftIcon`
  141. <img src="https://unpkg.com/@icons/material/svg/arrow-left-thick.svg" width="24" height="24"> | `ArrowLeftThickIcon`
  142. <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold-box.svg" width="24" height="24"> | `ArrowRightBoldBoxIcon`
  143. <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold-box-outline.svg" width="24" height="24"> | `ArrowRightBoldBoxOutlineIcon`
  144. <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold-circle.svg" width="24" height="24"> | `ArrowRightBoldCircleIcon`
  145. <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold-circle-outline.svg" width="24" height="24"> | `ArrowRightBoldCircleOutlineIcon`
  146. <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold-hexagon-outline.svg" width="24" height="24"> | `ArrowRightBoldHexagonOutlineIcon`
  147. <img src="https://unpkg.com/@icons/material/svg/arrow-right-bold.svg" width="24" height="24"> | `ArrowRightBoldIcon`
  148. <img src="https://unpkg.com/@icons/material/svg/arrow-right-box.svg" width="24" height="24"> | `ArrowRightBoxIcon`
  149. <img src="https://unpkg.com/@icons/material/svg/arrow-right-drop-circle.svg" width="24" height="24"> | `ArrowRightDropCircleIcon`
  150. <img src="https://unpkg.com/@icons/material/svg/arrow-right-drop-circle-outline.svg" width="24" height="24"> | `ArrowRightDropCircleOutlineIcon`
  151. <img src="https://unpkg.com/@icons/material/svg/arrow-right.svg" width="24" height="24"> | `ArrowRightIcon`
  152. <img src="https://unpkg.com/@icons/material/svg/arrow-right-thick.svg" width="24" height="24"> | `ArrowRightThickIcon`
  153. <img src="https://unpkg.com/@icons/material/svg/arrow-top-left.svg" width="24" height="24"> | `ArrowTopLeftIcon`
  154. <img src="https://unpkg.com/@icons/material/svg/arrow-top-right.svg" width="24" height="24"> | `ArrowTopRightIcon`
  155. <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold-box.svg" width="24" height="24"> | `ArrowUpBoldBoxIcon`
  156. <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold-box-outline.svg" width="24" height="24"> | `ArrowUpBoldBoxOutlineIcon`
  157. <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold-circle.svg" width="24" height="24"> | `ArrowUpBoldCircleIcon`
  158. <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold-circle-outline.svg" width="24" height="24"> | `ArrowUpBoldCircleOutlineIcon`
  159. <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold-hexagon-outline.svg" width="24" height="24"> | `ArrowUpBoldHexagonOutlineIcon`
  160. <img src="https://unpkg.com/@icons/material/svg/arrow-up-bold.svg" width="24" height="24"> | `ArrowUpBoldIcon`
  161. <img src="https://unpkg.com/@icons/material/svg/arrow-up-box.svg" width="24" height="24"> | `ArrowUpBoxIcon`
  162. <img src="https://unpkg.com/@icons/material/svg/arrow-up-drop-circle.svg" width="24" height="24"> | `ArrowUpDropCircleIcon`
  163. <img src="https://unpkg.com/@icons/material/svg/arrow-up-drop-circle-outline.svg" width="24" height="24"> | `ArrowUpDropCircleOutlineIcon`
  164. <img src="https://unpkg.com/@icons/material/svg/arrow-up.svg" width="24" height="24"> | `ArrowUpIcon`
  165. <img src="https://unpkg.com/@icons/material/svg/arrow-up-thick.svg" width="24" height="24"> | `ArrowUpThickIcon`
  166. <img src="https://unpkg.com/@icons/material/svg/artist.svg" width="24" height="24"> | `ArtistIcon`
  167. <img src="https://unpkg.com/@icons/material/svg/assistant.svg" width="24" height="24"> | `AssistantIcon`
  168. <img src="https://unpkg.com/@icons/material/svg/asterisk.svg" width="24" height="24"> | `AsteriskIcon`
  169. <img src="https://unpkg.com/@icons/material/svg/at.svg" width="24" height="24"> | `AtIcon`
  170. <img src="https://unpkg.com/@icons/material/svg/atlassian.svg" width="24" height="24"> | `AtlassianIcon`
  171. <img src="https://unpkg.com/@icons/material/svg/atom.svg" width="24" height="24"> | `AtomIcon`
  172. <img src="https://unpkg.com/@icons/material/svg/attachment.svg" width="24" height="24"> | `AttachmentIcon`
  173. <img src="https://unpkg.com/@icons/material/svg/audiobook.svg" width="24" height="24"> | `AudiobookIcon`
  174. <img src="https://unpkg.com/@icons/material/svg/augmented-reality.svg" width="24" height="24"> | `AugmentedRealityIcon`
  175. <img src="https://unpkg.com/@icons/material/svg/auto-fix.svg" width="24" height="24"> | `AutoFixIcon`
  176. <img src="https://unpkg.com/@icons/material/svg/auto-upload.svg" width="24" height="24"> | `AutoUploadIcon`
  177. <img src="https://unpkg.com/@icons/material/svg/autorenew.svg" width="24" height="24"> | `AutorenewIcon`
  178. <img src="https://unpkg.com/@icons/material/svg/av-timer.svg" width="24" height="24"> | `AvTimerIcon`
  179. <img src="https://unpkg.com/@icons/material/svg/azure.svg" width="24" height="24"> | `AzureIcon`
  180. <img src="https://unpkg.com/@icons/material/svg/baby-buggy.svg" width="24" height="24"> | `BabyBuggyIcon`
  181. <img src="https://unpkg.com/@icons/material/svg/baby.svg" width="24" height="24"> | `BabyIcon`
  182. <img src="https://unpkg.com/@icons/material/svg/backburger.svg" width="24" height="24"> | `BackburgerIcon`
  183. <img src="https://unpkg.com/@icons/material/svg/backspace.svg" width="24" height="24"> | `BackspaceIcon`
  184. <img src="https://unpkg.com/@icons/material/svg/backup-restore.svg" width="24" height="24"> | `BackupRestoreIcon`
  185. <img src="https://unpkg.com/@icons/material/svg/badminton.svg" width="24" height="24"> | `BadmintonIcon`
  186. <img src="https://unpkg.com/@icons/material/svg/bandcamp.svg" width="24" height="24"> | `BandcampIcon`
  187. <img src="https://unpkg.com/@icons/material/svg/bank.svg" width="24" height="24"> | `BankIcon`
  188. <img src="https://unpkg.com/@icons/material/svg/barcode.svg" width="24" height="24"> | `BarcodeIcon`
  189. <img src="https://unpkg.com/@icons/material/svg/barcode-scan.svg" width="24" height="24"> | `BarcodeScanIcon`
  190. <img src="https://unpkg.com/@icons/material/svg/barley.svg" width="24" height="24"> | `BarleyIcon`
  191. <img src="https://unpkg.com/@icons/material/svg/barrel.svg" width="24" height="24"> | `BarrelIcon`
  192. <img src="https://unpkg.com/@icons/material/svg/baseball-bat.svg" width="24" height="24"> | `BaseballBatIcon`
  193. <img src="https://unpkg.com/@icons/material/svg/baseball.svg" width="24" height="24"> | `BaseballIcon`
  194. <img src="https://unpkg.com/@icons/material/svg/basecamp.svg" width="24" height="24"> | `BasecampIcon`
  195. <img src="https://unpkg.com/@icons/material/svg/basket-fill.svg" width="24" height="24"> | `BasketFillIcon`
  196. <img src="https://unpkg.com/@icons/material/svg/basket.svg" width="24" height="24"> | `BasketIcon`
  197. <img src="https://unpkg.com/@icons/material/svg/basket-unfill.svg" width="24" height="24"> | `BasketUnfillIcon`
  198. <img src="https://unpkg.com/@icons/material/svg/basketball.svg" width="24" height="24"> | `BasketballIcon`
  199. <img src="https://unpkg.com/@icons/material/svg/battery-alert.svg" width="24" height="24"> | `BatteryAlertIcon`
  200. <img src="https://unpkg.com/@icons/material/svg/battery-charging.svg" width="24" height="24"> | `BatteryChargingIcon`
  201. <img src="https://unpkg.com/@icons/material/svg/battery-charging-outline.svg" width="24" height="24"> | `BatteryChargingOutlineIcon`
  202. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-alert.svg" width="24" height="24"> | `BatteryChargingWirelessAlertIcon`
  203. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless.svg" width="24" height="24"> | `BatteryChargingWirelessIcon`
  204. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-outline.svg" width="24" height="24"> | `BatteryChargingWirelessOutlineIcon`
  205. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-10.svg" width="24" height="24"> | `BatteryChargingWireless_10Icon`
  206. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-20.svg" width="24" height="24"> | `BatteryChargingWireless_20Icon`
  207. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-30.svg" width="24" height="24"> | `BatteryChargingWireless_30Icon`
  208. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-40.svg" width="24" height="24"> | `BatteryChargingWireless_40Icon`
  209. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-50.svg" width="24" height="24"> | `BatteryChargingWireless_50Icon`
  210. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-60.svg" width="24" height="24"> | `BatteryChargingWireless_60Icon`
  211. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-70.svg" width="24" height="24"> | `BatteryChargingWireless_70Icon`
  212. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-80.svg" width="24" height="24"> | `BatteryChargingWireless_80Icon`
  213. <img src="https://unpkg.com/@icons/material/svg/battery-charging-wireless-90.svg" width="24" height="24"> | `BatteryChargingWireless_90Icon`
  214. <img src="https://unpkg.com/@icons/material/svg/battery-charging-100.svg" width="24" height="24"> | `BatteryCharging_100Icon`
  215. <img src="https://unpkg.com/@icons/material/svg/battery-charging-10.svg" width="24" height="24"> | `BatteryCharging_10Icon`
  216. <img src="https://unpkg.com/@icons/material/svg/battery-charging-20.svg" width="24" height="24"> | `BatteryCharging_20Icon`
  217. <img src="https://unpkg.com/@icons/material/svg/battery-charging-30.svg" width="24" height="24"> | `BatteryCharging_30Icon`
  218. <img src="https://unpkg.com/@icons/material/svg/battery-charging-40.svg" width="24" height="24"> | `BatteryCharging_40Icon`
  219. <img src="https://unpkg.com/@icons/material/svg/battery-charging-50.svg" width="24" height="24"> | `BatteryCharging_50Icon`
  220. <img src="https://unpkg.com/@icons/material/svg/battery-charging-60.svg" width="24" height="24"> | `BatteryCharging_60Icon`
  221. <img src="https://unpkg.com/@icons/material/svg/battery-charging-70.svg" width="24" height="24"> | `BatteryCharging_70Icon`
  222. <img src="https://unpkg.com/@icons/material/svg/battery-charging-80.svg" width="24" height="24"> | `BatteryCharging_80Icon`
  223. <img src="https://unpkg.com/@icons/material/svg/battery-charging-90.svg" width="24" height="24"> | `BatteryCharging_90Icon`
  224. <img src="https://unpkg.com/@icons/material/svg/battery.svg" width="24" height="24"> | `BatteryIcon`
  225. <img src="https://unpkg.com/@icons/material/svg/battery-minus.svg" width="24" height="24"> | `BatteryMinusIcon`
  226. <img src="https://unpkg.com/@icons/material/svg/battery-negative.svg" width="24" height="24"> | `BatteryNegativeIcon`
  227. <img src="https://unpkg.com/@icons/material/svg/battery-outline.svg" width="24" height="24"> | `BatteryOutlineIcon`
  228. <img src="https://unpkg.com/@icons/material/svg/battery-plus.svg" width="24" height="24"> | `BatteryPlusIcon`
  229. <img src="https://unpkg.com/@icons/material/svg/battery-positive.svg" width="24" height="24"> | `BatteryPositiveIcon`
  230. <img src="https://unpkg.com/@icons/material/svg/battery-unknown.svg" width="24" height="24"> | `BatteryUnknownIcon`
  231. <img src="https://unpkg.com/@icons/material/svg/battery-10.svg" width="24" height="24"> | `Battery_10Icon`
  232. <img src="https://unpkg.com/@icons/material/svg/battery-20.svg" width="24" height="24"> | `Battery_20Icon`
  233. <img src="https://unpkg.com/@icons/material/svg/battery-30.svg" width="24" height="24"> | `Battery_30Icon`
  234. <img src="https://unpkg.com/@icons/material/svg/battery-40.svg" width="24" height="24"> | `Battery_40Icon`
  235. <img src="https://unpkg.com/@icons/material/svg/battery-50.svg" width="24" height="24"> | `Battery_50Icon`
  236. <img src="https://unpkg.com/@icons/material/svg/battery-60.svg" width="24" height="24"> | `Battery_60Icon`
  237. <img src="https://unpkg.com/@icons/material/svg/battery-70.svg" width="24" height="24"> | `Battery_70Icon`
  238. <img src="https://unpkg.com/@icons/material/svg/battery-80.svg" width="24" height="24"> | `Battery_80Icon`
  239. <img src="https://unpkg.com/@icons/material/svg/battery-90.svg" width="24" height="24"> | `Battery_90Icon`
  240. <img src="https://unpkg.com/@icons/material/svg/beach.svg" width="24" height="24"> | `BeachIcon`
  241. <img src="https://unpkg.com/@icons/material/svg/beaker.svg" width="24" height="24"> | `BeakerIcon`
  242. <img src="https://unpkg.com/@icons/material/svg/beats.svg" width="24" height="24"> | `BeatsIcon`
  243. <img src="https://unpkg.com/@icons/material/svg/bed-empty.svg" width="24" height="24"> | `BedEmptyIcon`
  244. <img src="https://unpkg.com/@icons/material/svg/beer.svg" width="24" height="24"> | `BeerIcon`
  245. <img src="https://unpkg.com/@icons/material/svg/behance.svg" width="24" height="24"> | `BehanceIcon`
  246. <img src="https://unpkg.com/@icons/material/svg/bell.svg" width="24" height="24"> | `BellIcon`
  247. <img src="https://unpkg.com/@icons/material/svg/bell-off.svg" width="24" height="24"> | `BellOffIcon`
  248. <img src="https://unpkg.com/@icons/material/svg/bell-outline.svg" width="24" height="24"> | `BellOutlineIcon`
  249. <img src="https://unpkg.com/@icons/material/svg/bell-plus.svg" width="24" height="24"> | `BellPlusIcon`
  250. <img src="https://unpkg.com/@icons/material/svg/bell-ring.svg" width="24" height="24"> | `BellRingIcon`
  251. <img src="https://unpkg.com/@icons/material/svg/bell-ring-outline.svg" width="24" height="24"> | `BellRingOutlineIcon`
  252. <img src="https://unpkg.com/@icons/material/svg/bell-sleep.svg" width="24" height="24"> | `BellSleepIcon`
  253. <img src="https://unpkg.com/@icons/material/svg/beta.svg" width="24" height="24"> | `BetaIcon`
  254. <img src="https://unpkg.com/@icons/material/svg/bible.svg" width="24" height="24"> | `BibleIcon`
  255. <img src="https://unpkg.com/@icons/material/svg/bike.svg" width="24" height="24"> | `BikeIcon`
  256. <img src="https://unpkg.com/@icons/material/svg/bing.svg" width="24" height="24"> | `BingIcon`
  257. <img src="https://unpkg.com/@icons/material/svg/binoculars.svg" width="24" height="24"> | `BinocularsIcon`
  258. <img src="https://unpkg.com/@icons/material/svg/bio.svg" width="24" height="24"> | `BioIcon`
  259. <img src="https://unpkg.com/@icons/material/svg/biohazard.svg" width="24" height="24"> | `BiohazardIcon`
  260. <img src="https://unpkg.com/@icons/material/svg/bitbucket.svg" width="24" height="24"> | `BitbucketIcon`
  261. <img src="https://unpkg.com/@icons/material/svg/bitcoin.svg" width="24" height="24"> | `BitcoinIcon`
  262. <img src="https://unpkg.com/@icons/material/svg/black-mesa.svg" width="24" height="24"> | `BlackMesaIcon`
  263. <img src="https://unpkg.com/@icons/material/svg/blackberry.svg" width="24" height="24"> | `BlackberryIcon`
  264. <img src="https://unpkg.com/@icons/material/svg/blender.svg" width="24" height="24"> | `BlenderIcon`
  265. <img src="https://unpkg.com/@icons/material/svg/blinds.svg" width="24" height="24"> | `BlindsIcon`
  266. <img src="https://unpkg.com/@icons/material/svg/block-helper.svg" width="24" height="24"> | `BlockHelperIcon`
  267. <img src="https://unpkg.com/@icons/material/svg/blogger.svg" width="24" height="24"> | `BloggerIcon`
  268. <img src="https://unpkg.com/@icons/material/svg/bluetooth-audio.svg" width="24" height="24"> | `BluetoothAudioIcon`
  269. <img src="https://unpkg.com/@icons/material/svg/bluetooth-connect.svg" width="24" height="24"> | `BluetoothConnectIcon`
  270. <img src="https://unpkg.com/@icons/material/svg/bluetooth.svg" width="24" height="24"> | `BluetoothIcon`
  271. <img src="https://unpkg.com/@icons/material/svg/bluetooth-off.svg" width="24" height="24"> | `BluetoothOffIcon`
  272. <img src="https://unpkg.com/@icons/material/svg/bluetooth-settings.svg" width="24" height="24"> | `BluetoothSettingsIcon`
  273. <img src="https://unpkg.com/@icons/material/svg/bluetooth-transfer.svg" width="24" height="24"> | `BluetoothTransferIcon`
  274. <img src="https://unpkg.com/@icons/material/svg/blur.svg" width="24" height="24"> | `BlurIcon`
  275. <img src="https://unpkg.com/@icons/material/svg/blur-linear.svg" width="24" height="24"> | `BlurLinearIcon`
  276. <img src="https://unpkg.com/@icons/material/svg/blur-off.svg" width="24" height="24"> | `BlurOffIcon`
  277. <img src="https://unpkg.com/@icons/material/svg/blur-radial.svg" width="24" height="24"> | `BlurRadialIcon`
  278. <img src="https://unpkg.com/@icons/material/svg/bomb.svg" width="24" height="24"> | `BombIcon`
  279. <img src="https://unpkg.com/@icons/material/svg/bomb-off.svg" width="24" height="24"> | `BombOffIcon`
  280. <img src="https://unpkg.com/@icons/material/svg/bone.svg" width="24" height="24"> | `BoneIcon`
  281. <img src="https://unpkg.com/@icons/material/svg/book.svg" width="24" height="24"> | `BookIcon`
  282. <img src="https://unpkg.com/@icons/material/svg/book-minus.svg" width="24" height="24"> | `BookMinusIcon`
  283. <img src="https://unpkg.com/@icons/material/svg/book-multiple.svg" width="24" height="24"> | `BookMultipleIcon`
  284. <img src="https://unpkg.com/@icons/material/svg/book-multiple-variant.svg" width="24" height="24"> | `BookMultipleVariantIcon`
  285. <img src="https://unpkg.com/@icons/material/svg/book-open.svg" width="24" height="24"> | `BookOpenIcon`
  286. <img src="https://unpkg.com/@icons/material/svg/book-open-page-variant.svg" width="24" height="24"> | `BookOpenPageVariantIcon`
  287. <img src="https://unpkg.com/@icons/material/svg/book-open-variant.svg" width="24" height="24"> | `BookOpenVariantIcon`
  288. <img src="https://unpkg.com/@icons/material/svg/book-plus.svg" width="24" height="24"> | `BookPlusIcon`
  289. <img src="https://unpkg.com/@icons/material/svg/book-secure.svg" width="24" height="24"> | `BookSecureIcon`
  290. <img src="https://unpkg.com/@icons/material/svg/book-unsecure.svg" width="24" height="24"> | `BookUnsecureIcon`
  291. <img src="https://unpkg.com/@icons/material/svg/book-variant.svg" width="24" height="24"> | `BookVariantIcon`
  292. <img src="https://unpkg.com/@icons/material/svg/bookmark-check.svg" width="24" height="24"> | `BookmarkCheckIcon`
  293. <img src="https://unpkg.com/@icons/material/svg/bookmark.svg" width="24" height="24"> | `BookmarkIcon`
  294. <img src="https://unpkg.com/@icons/material/svg/bookmark-music.svg" width="24" height="24"> | `BookmarkMusicIcon`
  295. <img src="https://unpkg.com/@icons/material/svg/bookmark-outline.svg" width="24" height="24"> | `BookmarkOutlineIcon`
  296. <img src="https://unpkg.com/@icons/material/svg/bookmark-plus.svg" width="24" height="24"> | `BookmarkPlusIcon`
  297. <img src="https://unpkg.com/@icons/material/svg/bookmark-plus-outline.svg" width="24" height="24"> | `BookmarkPlusOutlineIcon`
  298. <img src="https://unpkg.com/@icons/material/svg/bookmark-remove.svg" width="24" height="24"> | `BookmarkRemoveIcon`
  299. <img src="https://unpkg.com/@icons/material/svg/boombox.svg" width="24" height="24"> | `BoomboxIcon`
  300. <img src="https://unpkg.com/@icons/material/svg/bootstrap.svg" width="24" height="24"> | `BootstrapIcon`
  301. <img src="https://unpkg.com/@icons/material/svg/border-all.svg" width="24" height="24"> | `BorderAllIcon`
  302. <img src="https://unpkg.com/@icons/material/svg/border-all-variant.svg" width="24" height="24"> | `BorderAllVariantIcon`
  303. <img src="https://unpkg.com/@icons/material/svg/border-bottom.svg" width="24" height="24"> | `BorderBottomIcon`
  304. <img src="https://unpkg.com/@icons/material/svg/border-bottom-variant.svg" width="24" height="24"> | `BorderBottomVariantIcon`
  305. <img src="https://unpkg.com/@icons/material/svg/border-color.svg" width="24" height="24"> | `BorderColorIcon`
  306. <img src="https://unpkg.com/@icons/material/svg/border-horizontal.svg" width="24" height="24"> | `BorderHorizontalIcon`
  307. <img src="https://unpkg.com/@icons/material/svg/border-inside.svg" width="24" height="24"> | `BorderInsideIcon`
  308. <img src="https://unpkg.com/@icons/material/svg/border-left.svg" width="24" height="24"> | `BorderLeftIcon`
  309. <img src="https://unpkg.com/@icons/material/svg/border-left-variant.svg" width="24" height="24"> | `BorderLeftVariantIcon`
  310. <img src="https://unpkg.com/@icons/material/svg/border-none.svg" width="24" height="24"> | `BorderNoneIcon`
  311. <img src="https://unpkg.com/@icons/material/svg/border-none-variant.svg" width="24" height="24"> | `BorderNoneVariantIcon`
  312. <img src="https://unpkg.com/@icons/material/svg/border-outside.svg" width="24" height="24"> | `BorderOutsideIcon`
  313. <img src="https://unpkg.com/@icons/material/svg/border-right.svg" width="24" height="24"> | `BorderRightIcon`
  314. <img src="https://unpkg.com/@icons/material/svg/border-right-variant.svg" width="24" height="24"> | `BorderRightVariantIcon`
  315. <img src="https://unpkg.com/@icons/material/svg/border-style.svg" width="24" height="24"> | `BorderStyleIcon`
  316. <img src="https://unpkg.com/@icons/material/svg/border-top.svg" width="24" height="24"> | `BorderTopIcon`
  317. <img src="https://unpkg.com/@icons/material/svg/border-top-variant.svg" width="24" height="24"> | `BorderTopVariantIcon`
  318. <img src="https://unpkg.com/@icons/material/svg/border-vertical.svg" width="24" height="24"> | `BorderVerticalIcon`
  319. <img src="https://unpkg.com/@icons/material/svg/bottle-wine.svg" width="24" height="24"> | `BottleWineIcon`
  320. <img src="https://unpkg.com/@icons/material/svg/bow-tie.svg" width="24" height="24"> | `BowTieIcon`
  321. <img src="https://unpkg.com/@icons/material/svg/bowl.svg" width="24" height="24"> | `BowlIcon`
  322. <img src="https://unpkg.com/@icons/material/svg/bowling.svg" width="24" height="24"> | `BowlingIcon`
  323. <img src="https://unpkg.com/@icons/material/svg/box-cutter.svg" width="24" height="24"> | `BoxCutterIcon`
  324. <img src="https://unpkg.com/@icons/material/svg/box.svg" width="24" height="24"> | `BoxIcon`
  325. <img src="https://unpkg.com/@icons/material/svg/box-shadow.svg" width="24" height="24"> | `BoxShadowIcon`
  326. <img src="https://unpkg.com/@icons/material/svg/bridge.svg" width="24" height="24"> | `BridgeIcon`
  327. <img src="https://unpkg.com/@icons/material/svg/briefcase-check.svg" width="24" height="24"> | `BriefcaseCheckIcon`
  328. <img src="https://unpkg.com/@icons/material/svg/briefcase-download.svg" width="24" height="24"> | `BriefcaseDownloadIcon`
  329. <img src="https://unpkg.com/@icons/material/svg/briefcase.svg" width="24" height="24"> | `BriefcaseIcon`
  330. <img src="https://unpkg.com/@icons/material/svg/briefcase-outline.svg" width="24" height="24"> | `BriefcaseOutlineIcon`
  331. <img src="https://unpkg.com/@icons/material/svg/briefcase-upload.svg" width="24" height="24"> | `BriefcaseUploadIcon`
  332. <img src="https://unpkg.com/@icons/material/svg/brightness-auto.svg" width="24" height="24"> | `BrightnessAutoIcon`
  333. <img src="https://unpkg.com/@icons/material/svg/brightness-1.svg" width="24" height="24"> | `Brightness_1Icon`
  334. <img src="https://unpkg.com/@icons/material/svg/brightness-2.svg" width="24" height="24"> | `Brightness_2Icon`
  335. <img src="https://unpkg.com/@icons/material/svg/brightness-3.svg" width="24" height="24"> | `Brightness_3Icon`
  336. <img src="https://unpkg.com/@icons/material/svg/brightness-4.svg" width="24" height="24"> | `Brightness_4Icon`
  337. <img src="https://unpkg.com/@icons/material/svg/brightness-5.svg" width="24" height="24"> | `Brightness_5Icon`
  338. <img src="https://unpkg.com/@icons/material/svg/brightness-6.svg" width="24" height="24"> | `Brightness_6Icon`
  339. <img src="https://unpkg.com/@icons/material/svg/brightness-7.svg" width="24" height="24"> | `Brightness_7Icon`
  340. <img src="https://unpkg.com/@icons/material/svg/broom.svg" width="24" height="24"> | `BroomIcon`
  341. <img src="https://unpkg.com/@icons/material/svg/brush.svg" width="24" height="24"> | `BrushIcon`
  342. <img src="https://unpkg.com/@icons/material/svg/buffer.svg" width="24" height="24"> | `BufferIcon`
  343. <img src="https://unpkg.com/@icons/material/svg/bug.svg" width="24" height="24"> | `BugIcon`
  344. <img src="https://unpkg.com/@icons/material/svg/bulletin-board.svg" width="24" height="24"> | `BulletinBoardIcon`
  345. <img src="https://unpkg.com/@icons/material/svg/bullhorn.svg" width="24" height="24"> | `BullhornIcon`
  346. <img src="https://unpkg.com/@icons/material/svg/bullseye.svg" width="24" height="24"> | `BullseyeIcon`
  347. <img src="https://unpkg.com/@icons/material/svg/bus-articulated-end.svg" width="24" height="24"> | `BusArticulatedEndIcon`
  348. <img src="https://unpkg.com/@icons/material/svg/bus-articulated-front.svg" width="24" height="24"> | `BusArticulatedFrontIcon`
  349. <img src="https://unpkg.com/@icons/material/svg/bus-double-decker.svg" width="24" height="24"> | `BusDoubleDeckerIcon`
  350. <img src="https://unpkg.com/@icons/material/svg/bus.svg" width="24" height="24"> | `BusIcon`
  351. <img src="https://unpkg.com/@icons/material/svg/bus-school.svg" width="24" height="24"> | `BusSchoolIcon`
  352. <img src="https://unpkg.com/@icons/material/svg/bus-side.svg" width="24" height="24"> | `BusSideIcon`
  353. <img src="https://unpkg.com/@icons/material/svg/cached.svg" width="24" height="24"> | `CachedIcon`
  354. <img src="https://unpkg.com/@icons/material/svg/cake.svg" width="24" height="24"> | `CakeIcon`
  355. <img src="https://unpkg.com/@icons/material/svg/cake-layered.svg" width="24" height="24"> | `CakeLayeredIcon`
  356. <img src="https://unpkg.com/@icons/material/svg/cake-variant.svg" width="24" height="24"> | `CakeVariantIcon`
  357. <img src="https://unpkg.com/@icons/material/svg/calculator.svg" width="24" height="24"> | `CalculatorIcon`
  358. <img src="https://unpkg.com/@icons/material/svg/calendar-blank.svg" width="24" height="24"> | `CalendarBlankIcon`
  359. <img src="https://unpkg.com/@icons/material/svg/calendar-check.svg" width="24" height="24"> | `CalendarCheckIcon`
  360. <img src="https://unpkg.com/@icons/material/svg/calendar-clock.svg" width="24" height="24"> | `CalendarClockIcon`
  361. <img src="https://unpkg.com/@icons/material/svg/calendar-edit.svg" width="24" height="24"> | `CalendarEditIcon`
  362. <img src="https://unpkg.com/@icons/material/svg/calendar.svg" width="24" height="24"> | `CalendarIcon`
  363. <img src="https://unpkg.com/@icons/material/svg/calendar-multiple-check.svg" width="24" height="24"> | `CalendarMultipleCheckIcon`
  364. <img src="https://unpkg.com/@icons/material/svg/calendar-multiple.svg" width="24" height="24"> | `CalendarMultipleIcon`
  365. <img src="https://unpkg.com/@icons/material/svg/calendar-plus.svg" width="24" height="24"> | `CalendarPlusIcon`
  366. <img src="https://unpkg.com/@icons/material/svg/calendar-question.svg" width="24" height="24"> | `CalendarQuestionIcon`
  367. <img src="https://unpkg.com/@icons/material/svg/calendar-range.svg" width="24" height="24"> | `CalendarRangeIcon`
  368. <img src="https://unpkg.com/@icons/material/svg/calendar-remove.svg" width="24" height="24"> | `CalendarRemoveIcon`
  369. <img src="https://unpkg.com/@icons/material/svg/calendar-text.svg" width="24" height="24"> | `CalendarTextIcon`
  370. <img src="https://unpkg.com/@icons/material/svg/calendar-today.svg" width="24" height="24"> | `CalendarTodayIcon`
  371. <img src="https://unpkg.com/@icons/material/svg/call-made.svg" width="24" height="24"> | `CallMadeIcon`
  372. <img src="https://unpkg.com/@icons/material/svg/call-merge.svg" width="24" height="24"> | `CallMergeIcon`
  373. <img src="https://unpkg.com/@icons/material/svg/call-missed.svg" width="24" height="24"> | `CallMissedIcon`
  374. <img src="https://unpkg.com/@icons/material/svg/call-received.svg" width="24" height="24"> | `CallReceivedIcon`
  375. <img src="https://unpkg.com/@icons/material/svg/call-split.svg" width="24" height="24"> | `CallSplitIcon`
  376. <img src="https://unpkg.com/@icons/material/svg/camcorder-box.svg" width="24" height="24"> | `CamcorderBoxIcon`
  377. <img src="https://unpkg.com/@icons/material/svg/camcorder-box-off.svg" width="24" height="24"> | `CamcorderBoxOffIcon`
  378. <img src="https://unpkg.com/@icons/material/svg/camcorder.svg" width="24" height="24"> | `CamcorderIcon`
  379. <img src="https://unpkg.com/@icons/material/svg/camcorder-off.svg" width="24" height="24"> | `CamcorderOffIcon`
  380. <img src="https://unpkg.com/@icons/material/svg/camera-burst.svg" width="24" height="24"> | `CameraBurstIcon`
  381. <img src="https://unpkg.com/@icons/material/svg/camera-enhance.svg" width="24" height="24"> | `CameraEnhanceIcon`
  382. <img src="https://unpkg.com/@icons/material/svg/camera-front.svg" width="24" height="24"> | `CameraFrontIcon`
  383. <img src="https://unpkg.com/@icons/material/svg/camera-front-variant.svg" width="24" height="24"> | `CameraFrontVariantIcon`
  384. <img src="https://unpkg.com/@icons/material/svg/camera-gopro.svg" width="24" height="24"> | `CameraGoproIcon`
  385. <img src="https://unpkg.com/@icons/material/svg/camera.svg" width="24" height="24"> | `CameraIcon`
  386. <img src="https://unpkg.com/@icons/material/svg/camera-iris.svg" width="24" height="24"> | `CameraIrisIcon`
  387. <img src="https://unpkg.com/@icons/material/svg/camera-metering-center.svg" width="24" height="24"> | `CameraMeteringCenterIcon`
  388. <img src="https://unpkg.com/@icons/material/svg/camera-metering-matrix.svg" width="24" height="24"> | `CameraMeteringMatrixIcon`
  389. <img src="https://unpkg.com/@icons/material/svg/camera-metering-partial.svg" width="24" height="24"> | `CameraMeteringPartialIcon`
  390. <img src="https://unpkg.com/@icons/material/svg/camera-metering-spot.svg" width="24" height="24"> | `CameraMeteringSpotIcon`
  391. <img src="https://unpkg.com/@icons/material/svg/camera-off.svg" width="24" height="24"> | `CameraOffIcon`
  392. <img src="https://unpkg.com/@icons/material/svg/camera-party-mode.svg" width="24" height="24"> | `CameraPartyModeIcon`
  393. <img src="https://unpkg.com/@icons/material/svg/camera-rear.svg" width="24" height="24"> | `CameraRearIcon`
  394. <img src="https://unpkg.com/@icons/material/svg/camera-rear-variant.svg" width="24" height="24"> | `CameraRearVariantIcon`
  395. <img src="https://unpkg.com/@icons/material/svg/camera-switch.svg" width="24" height="24"> | `CameraSwitchIcon`
  396. <img src="https://unpkg.com/@icons/material/svg/camera-timer.svg" width="24" height="24"> | `CameraTimerIcon`
  397. <img src="https://unpkg.com/@icons/material/svg/cancel.svg" width="24" height="24"> | `CancelIcon`
  398. <img src="https://unpkg.com/@icons/material/svg/candle.svg" width="24" height="24"> | `CandleIcon`
  399. <img src="https://unpkg.com/@icons/material/svg/candycane.svg" width="24" height="24"> | `CandycaneIcon`
  400. <img src="https://unpkg.com/@icons/material/svg/cannabis.svg" width="24" height="24"> | `CannabisIcon`
  401. <img src="https://unpkg.com/@icons/material/svg/car-battery.svg" width="24" height="24"> | `CarBatteryIcon`
  402. <img src="https://unpkg.com/@icons/material/svg/car-connected.svg" width="24" height="24"> | `CarConnectedIcon`
  403. <img src="https://unpkg.com/@icons/material/svg/car-convertible.svg" width="24" height="24"> | `CarConvertibleIcon`
  404. <img src="https://unpkg.com/@icons/material/svg/car-estate.svg" width="24" height="24"> | `CarEstateIcon`
  405. <img src="https://unpkg.com/@icons/material/svg/car-hatchback.svg" width="24" height="24"> | `CarHatchbackIcon`
  406. <img src="https://unpkg.com/@icons/material/svg/car.svg" width="24" height="24"> | `CarIcon`
  407. <img src="https://unpkg.com/@icons/material/svg/car-pickup.svg" width="24" height="24"> | `CarPickupIcon`
  408. <img src="https://unpkg.com/@icons/material/svg/car-side.svg" width="24" height="24"> | `CarSideIcon`
  409. <img src="https://unpkg.com/@icons/material/svg/car-sports.svg" width="24" height="24"> | `CarSportsIcon`
  410. <img src="https://unpkg.com/@icons/material/svg/car-wash.svg" width="24" height="24"> | `CarWashIcon`
  411. <img src="https://unpkg.com/@icons/material/svg/caravan.svg" width="24" height="24"> | `CaravanIcon`
  412. <img src="https://unpkg.com/@icons/material/svg/cards.svg" width="24" height="24"> | `CardsIcon`
  413. <img src="https://unpkg.com/@icons/material/svg/cards-outline.svg" width="24" height="24"> | `CardsOutlineIcon`
  414. <img src="https://unpkg.com/@icons/material/svg/cards-playing-outline.svg" width="24" height="24"> | `CardsPlayingOutlineIcon`
  415. <img src="https://unpkg.com/@icons/material/svg/cards-variant.svg" width="24" height="24"> | `CardsVariantIcon`
  416. <img src="https://unpkg.com/@icons/material/svg/carrot.svg" width="24" height="24"> | `CarrotIcon`
  417. <img src="https://unpkg.com/@icons/material/svg/cart.svg" width="24" height="24"> | `CartIcon`
  418. <img src="https://unpkg.com/@icons/material/svg/cart-off.svg" width="24" height="24"> | `CartOffIcon`
  419. <img src="https://unpkg.com/@icons/material/svg/cart-outline.svg" width="24" height="24"> | `CartOutlineIcon`
  420. <img src="https://unpkg.com/@icons/material/svg/cart-plus.svg" width="24" height="24"> | `CartPlusIcon`
  421. <img src="https://unpkg.com/@icons/material/svg/case-sensitive-alt.svg" width="24" height="24"> | `CaseSensitiveAltIcon`
  422. <img src="https://unpkg.com/@icons/material/svg/cash.svg" width="24" height="24"> | `CashIcon`
  423. <img src="https://unpkg.com/@icons/material/svg/cash-multiple.svg" width="24" height="24"> | `CashMultipleIcon`
  424. <img src="https://unpkg.com/@icons/material/svg/cash-usd.svg" width="24" height="24"> | `CashUsdIcon`
  425. <img src="https://unpkg.com/@icons/material/svg/cash-100.svg" width="24" height="24"> | `Cash_100Icon`
  426. <img src="https://unpkg.com/@icons/material/svg/cast-connected.svg" width="24" height="24"> | `CastConnectedIcon`
  427. <img src="https://unpkg.com/@icons/material/svg/cast.svg" width="24" height="24"> | `CastIcon`
  428. <img src="https://unpkg.com/@icons/material/svg/cast-off.svg" width="24" height="24"> | `CastOffIcon`
  429. <img src="https://unpkg.com/@icons/material/svg/castle.svg" width="24" height="24"> | `CastleIcon`
  430. <img src="https://unpkg.com/@icons/material/svg/cat.svg" width="24" height="24"> | `CatIcon`
  431. <img src="https://unpkg.com/@icons/material/svg/cctv.svg" width="24" height="24"> | `CctvIcon`
  432. <img src="https://unpkg.com/@icons/material/svg/ceiling-light.svg" width="24" height="24"> | `CeilingLightIcon`
  433. <img src="https://unpkg.com/@icons/material/svg/cellphone-android.svg" width="24" height="24"> | `CellphoneAndroidIcon`
  434. <img src="https://unpkg.com/@icons/material/svg/cellphone-basic.svg" width="24" height="24"> | `CellphoneBasicIcon`
  435. <img src="https://unpkg.com/@icons/material/svg/cellphone-dock.svg" width="24" height="24"> | `CellphoneDockIcon`
  436. <img src="https://unpkg.com/@icons/material/svg/cellphone.svg" width="24" height="24"> | `CellphoneIcon`
  437. <img src="https://unpkg.com/@icons/material/svg/cellphone-iphone.svg" width="24" height="24"> | `CellphoneIphoneIcon`
  438. <img src="https://unpkg.com/@icons/material/svg/cellphone-link.svg" width="24" height="24"> | `CellphoneLinkIcon`
  439. <img src="https://unpkg.com/@icons/material/svg/cellphone-link-off.svg" width="24" height="24"> | `CellphoneLinkOffIcon`
  440. <img src="https://unpkg.com/@icons/material/svg/cellphone-settings.svg" width="24" height="24"> | `CellphoneSettingsIcon`
  441. <img src="https://unpkg.com/@icons/material/svg/cellphone-wireless.svg" width="24" height="24"> | `CellphoneWirelessIcon`
  442. <img src="https://unpkg.com/@icons/material/svg/certificate.svg" width="24" height="24"> | `CertificateIcon`
  443. <img src="https://unpkg.com/@icons/material/svg/chair-school.svg" width="24" height="24"> | `ChairSchoolIcon`
  444. <img src="https://unpkg.com/@icons/material/svg/chart-arc.svg" width="24" height="24"> | `ChartArcIcon`
  445. <img src="https://unpkg.com/@icons/material/svg/chart-areaspline.svg" width="24" height="24"> | `ChartAreasplineIcon`
  446. <img src="https://unpkg.com/@icons/material/svg/chart-bar.svg" width="24" height="24"> | `ChartBarIcon`
  447. <img src="https://unpkg.com/@icons/material/svg/chart-bar-stacked.svg" width="24" height="24"> | `ChartBarStackedIcon`
  448. <img src="https://unpkg.com/@icons/material/svg/chart-bubble.svg" width="24" height="24"> | `ChartBubbleIcon`
  449. <img src="https://unpkg.com/@icons/material/svg/chart-donut.svg" width="24" height="24"> | `ChartDonutIcon`
  450. <img src="https://unpkg.com/@icons/material/svg/chart-donut-variant.svg" width="24" height="24"> | `ChartDonutVariantIcon`
  451. <img src="https://unpkg.com/@icons/material/svg/chart-gantt.svg" width="24" height="24"> | `ChartGanttIcon`
  452. <img src="https://unpkg.com/@icons/material/svg/chart-histogram.svg" width="24" height="24"> | `ChartHistogramIcon`
  453. <img src="https://unpkg.com/@icons/material/svg/chart-line.svg" width="24" height="24"> | `ChartLineIcon`
  454. <img src="https://unpkg.com/@icons/material/svg/chart-line-stacked.svg" width="24" height="24"> | `ChartLineStackedIcon`
  455. <img src="https://unpkg.com/@icons/material/svg/chart-line-variant.svg" width="24" height="24"> | `ChartLineVariantIcon`
  456. <img src="https://unpkg.com/@icons/material/svg/chart-pie.svg" width="24" height="24"> | `ChartPieIcon`
  457. <img src="https://unpkg.com/@icons/material/svg/chart-scatterplot-hexbin.svg" width="24" height="24"> | `ChartScatterplotHexbinIcon`
  458. <img src="https://unpkg.com/@icons/material/svg/chart-timeline.svg" width="24" height="24"> | `ChartTimelineIcon`
  459. <img src="https://unpkg.com/@icons/material/svg/check-all.svg" width="24" height="24"> | `CheckAllIcon`
  460. <img src="https://unpkg.com/@icons/material/svg/check-circle.svg" width="24" height="24"> | `CheckCircleIcon`
  461. <img src="https://unpkg.com/@icons/material/svg/check-circle-outline.svg" width="24" height="24"> | `CheckCircleOutlineIcon`
  462. <img src="https://unpkg.com/@icons/material/svg/check.svg" width="24" height="24"> | `CheckIcon`
  463. <img src="https://unpkg.com/@icons/material/svg/check-outline.svg" width="24" height="24"> | `CheckOutlineIcon`
  464. <img src="https://unpkg.com/@icons/material/svg/checkbox-blank-circle.svg" width="24" height="24"> | `CheckboxBlankCircleIcon`
  465. <img src="https://unpkg.com/@icons/material/svg/checkbox-blank-circle-outline.svg" width="24" height="24"> | `CheckboxBlankCircleOutlineIcon`
  466. <img src="https://unpkg.com/@icons/material/svg/checkbox-blank.svg" width="24" height="24"> | `CheckboxBlankIcon`
  467. <img src="https://unpkg.com/@icons/material/svg/checkbox-blank-outline.svg" width="24" height="24"> | `CheckboxBlankOutlineIcon`
  468. <img src="https://unpkg.com/@icons/material/svg/checkbox-intermediate.svg" width="24" height="24"> | `CheckboxIntermediateIcon`
  469. <img src="https://unpkg.com/@icons/material/svg/checkbox-marked-circle.svg" width="24" height="24"> | `CheckboxMarkedCircleIcon`
  470. <img src="https://unpkg.com/@icons/material/svg/checkbox-marked-circle-outline.svg" width="24" height="24"> | `CheckboxMarkedCircleOutlineIcon`
  471. <img src="https://unpkg.com/@icons/material/svg/checkbox-marked.svg" width="24" height="24"> | `CheckboxMarkedIcon`
  472. <img src="https://unpkg.com/@icons/material/svg/checkbox-marked-outline.svg" width="24" height="24"> | `CheckboxMarkedOutlineIcon`
  473. <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-blank-circle.svg" width="24" height="24"> | `CheckboxMultipleBlankCircleIcon`
  474. <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-blank-circle-outline.svg" width="24" height="24"> | `CheckboxMultipleBlankCircleOutlineIcon`
  475. <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-blank.svg" width="24" height="24"> | `CheckboxMultipleBlankIcon`
  476. <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-blank-outline.svg" width="24" height="24"> | `CheckboxMultipleBlankOutlineIcon`
  477. <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-marked-circle.svg" width="24" height="24"> | `CheckboxMultipleMarkedCircleIcon`
  478. <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-marked-circle-outline.svg" width="24" height="24"> | `CheckboxMultipleMarkedCircleOutlineIcon`
  479. <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-marked.svg" width="24" height="24"> | `CheckboxMultipleMarkedIcon`
  480. <img src="https://unpkg.com/@icons/material/svg/checkbox-multiple-marked-outline.svg" width="24" height="24"> | `CheckboxMultipleMarkedOutlineIcon`
  481. <img src="https://unpkg.com/@icons/material/svg/checkerboard.svg" width="24" height="24"> | `CheckerboardIcon`
  482. <img src="https://unpkg.com/@icons/material/svg/chemical-weapon.svg" width="24" height="24"> | `ChemicalWeaponIcon`
  483. <img src="https://unpkg.com/@icons/material/svg/chess-bishop.svg" width="24" height="24"> | `ChessBishopIcon`
  484. <img src="https://unpkg.com/@icons/material/svg/chess-king.svg" width="24" height="24"> | `ChessKingIcon`
  485. <img src="https://unpkg.com/@icons/material/svg/chess-knight.svg" width="24" height="24"> | `ChessKnightIcon`
  486. <img src="https://unpkg.com/@icons/material/svg/chess-pawn.svg" width="24" height="24"> | `ChessPawnIcon`
  487. <img src="https://unpkg.com/@icons/material/svg/chess-queen.svg" width="24" height="24"> | `ChessQueenIcon`
  488. <img src="https://unpkg.com/@icons/material/svg/chess-rook.svg" width="24" height="24"> | `ChessRookIcon`
  489. <img src="https://unpkg.com/@icons/material/svg/chevron-double-down.svg" width="24" height="24"> | `ChevronDoubleDownIcon`
  490. <img src="https://unpkg.com/@icons/material/svg/chevron-double-left.svg" width="24" height="24"> | `ChevronDoubleLeftIcon`
  491. <img src="https://unpkg.com/@icons/material/svg/chevron-double-right.svg" width="24" height="24"> | `ChevronDoubleRightIcon`
  492. <img src="https://unpkg.com/@icons/material/svg/chevron-double-up.svg" width="24" height="24"> | `ChevronDoubleUpIcon`
  493. <img src="https://unpkg.com/@icons/material/svg/chevron-down.svg" width="24" height="24"> | `ChevronDownIcon`
  494. <img src="https://unpkg.com/@icons/material/svg/chevron-left.svg" width="24" height="24"> | `ChevronLeftIcon`
  495. <img src="https://unpkg.com/@icons/material/svg/chevron-right.svg" width="24" height="24"> | `ChevronRightIcon`
  496. <img src="https://unpkg.com/@icons/material/svg/chevron-up.svg" width="24" height="24"> | `ChevronUpIcon`
  497. <img src="https://unpkg.com/@icons/material/svg/chili-hot.svg" width="24" height="24"> | `ChiliHotIcon`
  498. <img src="https://unpkg.com/@icons/material/svg/chili-medium.svg" width="24" height="24"> | `ChiliMediumIcon`
  499. <img src="https://unpkg.com/@icons/material/svg/chili-mild.svg" width="24" height="24"> | `ChiliMildIcon`
  500. <img src="https://unpkg.com/@icons/material/svg/chip.svg" width="24" height="24"> | `ChipIcon`
  501. <img src="https://unpkg.com/@icons/material/svg/church.svg" width="24" height="24"> | `ChurchIcon`
  502. <img src="https://unpkg.com/@icons/material/svg/circle.svg" width="24" height="24"> | `CircleIcon`
  503. <img src="https://unpkg.com/@icons/material/svg/circle-outline.svg" width="24" height="24"> | `CircleOutlineIcon`
  504. <img src="https://unpkg.com/@icons/material/svg/cisco-webex.svg" width="24" height="24"> | `CiscoWebexIcon`
  505. <img src="https://unpkg.com/@icons/material/svg/city.svg" width="24" height="24"> | `CityIcon`
  506. <img src="https://unpkg.com/@icons/material/svg/clipboard-account.svg" width="24" height="24"> | `ClipboardAccountIcon`
  507. <img src="https://unpkg.com/@icons/material/svg/clipboard-alert.svg" width="24" height="24"> | `ClipboardAlertIcon`
  508. <img src="https://unpkg.com/@icons/material/svg/clipboard-arrow-down.svg" width="24" height="24"> | `ClipboardArrowDownIcon`
  509. <img src="https://unpkg.com/@icons/material/svg/clipboard-arrow-left.svg" width="24" height="24"> | `ClipboardArrowLeftIcon`
  510. <img src="https://unpkg.com/@icons/material/svg/clipboard-check.svg" width="24" height="24"> | `ClipboardCheckIcon`
  511. <img src="https://unpkg.com/@icons/material/svg/clipboard-check-outline.svg" width="24" height="24"> | `ClipboardCheckOutlineIcon`
  512. <img src="https://unpkg.com/@icons/material/svg/clipboard-flow.svg" width="24" height="24"> | `ClipboardFlowIcon`
  513. <img src="https://unpkg.com/@icons/material/svg/clipboard.svg" width="24" height="24"> | `ClipboardIcon`
  514. <img src="https://unpkg.com/@icons/material/svg/clipboard-outline.svg" width="24" height="24"> | `ClipboardOutlineIcon`
  515. <img src="https://unpkg.com/@icons/material/svg/clipboard-plus.svg" width="24" height="24"> | `ClipboardPlusIcon`
  516. <img src="https://unpkg.com/@icons/material/svg/clipboard-pulse.svg" width="24" height="24"> | `ClipboardPulseIcon`
  517. <img src="https://unpkg.com/@icons/material/svg/clipboard-pulse-outline.svg" width="24" height="24"> | `ClipboardPulseOutlineIcon`
  518. <img src="https://unpkg.com/@icons/material/svg/clipboard-text.svg" width="24" height="24"> | `ClipboardTextIcon`
  519. <img src="https://unpkg.com/@icons/material/svg/clippy.svg" width="24" height="24"> | `ClippyIcon`
  520. <img src="https://unpkg.com/@icons/material/svg/clock-alert.svg" width="24" height="24"> | `ClockAlertIcon`
  521. <img src="https://unpkg.com/@icons/material/svg/clock-end.svg" width="24" height="24"> | `ClockEndIcon`
  522. <img src="https://unpkg.com/@icons/material/svg/clock-fast.svg" width="24" height="24"> | `ClockFastIcon`
  523. <img src="https://unpkg.com/@icons/material/svg/clock.svg" width="24" height="24"> | `ClockIcon`
  524. <img src="https://unpkg.com/@icons/material/svg/clock-in.svg" width="24" height="24"> | `ClockInIcon`
  525. <img src="https://unpkg.com/@icons/material/svg/clock-out.svg" width="24" height="24"> | `ClockOutIcon`
  526. <img src="https://unpkg.com/@icons/material/svg/clock-start.svg" width="24" height="24"> | `ClockStartIcon`
  527. <img src="https://unpkg.com/@icons/material/svg/close-box.svg" width="24" height="24"> | `CloseBoxIcon`
  528. <img src="https://unpkg.com/@icons/material/svg/close-box-outline.svg" width="24" height="24"> | `CloseBoxOutlineIcon`
  529. <img src="https://unpkg.com/@icons/material/svg/close-circle.svg" width="24" height="24"> | `CloseCircleIcon`
  530. <img src="https://unpkg.com/@icons/material/svg/close-circle-outline.svg" width="24" height="24"> | `CloseCircleOutlineIcon`
  531. <img src="https://unpkg.com/@icons/material/svg/close.svg" width="24" height="24"> | `CloseIcon`
  532. <img src="https://unpkg.com/@icons/material/svg/close-network.svg" width="24" height="24"> | `CloseNetworkIcon`
  533. <img src="https://unpkg.com/@icons/material/svg/close-octagon.svg" width="24" height="24"> | `CloseOctagonIcon`
  534. <img src="https://unpkg.com/@icons/material/svg/close-octagon-outline.svg" width="24" height="24"> | `CloseOctagonOutlineIcon`
  535. <img src="https://unpkg.com/@icons/material/svg/close-outline.svg" width="24" height="24"> | `CloseOutlineIcon`
  536. <img src="https://unpkg.com/@icons/material/svg/closed-caption.svg" width="24" height="24"> | `ClosedCaptionIcon`
  537. <img src="https://unpkg.com/@icons/material/svg/cloud-braces.svg" width="24" height="24"> | `CloudBracesIcon`
  538. <img src="https://unpkg.com/@icons/material/svg/cloud-check.svg" width="24" height="24"> | `CloudCheckIcon`
  539. <img src="https://unpkg.com/@icons/material/svg/cloud-circle.svg" width="24" height="24"> | `CloudCircleIcon`
  540. <img src="https://unpkg.com/@icons/material/svg/cloud-download.svg" width="24" height="24"> | `CloudDownloadIcon`
  541. <img src="https://unpkg.com/@icons/material/svg/cloud.svg" width="24" height="24"> | `CloudIcon`
  542. <img src="https://unpkg.com/@icons/material/svg/cloud-off-outline.svg" width="24" height="24"> | `CloudOffOutlineIcon`
  543. <img src="https://unpkg.com/@icons/material/svg/cloud-outline.svg" width="24" height="24"> | `CloudOutlineIcon`
  544. <img src="https://unpkg.com/@icons/material/svg/cloud-print.svg" width="24" height="24"> | `CloudPrintIcon`
  545. <img src="https://unpkg.com/@icons/material/svg/cloud-print-outline.svg" width="24" height="24"> | `CloudPrintOutlineIcon`
  546. <img src="https://unpkg.com/@icons/material/svg/cloud-sync.svg" width="24" height="24"> | `CloudSyncIcon`
  547. <img src="https://unpkg.com/@icons/material/svg/cloud-tags.svg" width="24" height="24"> | `CloudTagsIcon`
  548. <img src="https://unpkg.com/@icons/material/svg/cloud-upload.svg" width="24" height="24"> | `CloudUploadIcon`
  549. <img src="https://unpkg.com/@icons/material/svg/clover.svg" width="24" height="24"> | `CloverIcon`
  550. <img src="https://unpkg.com/@icons/material/svg/code-array.svg" width="24" height="24"> | `CodeArrayIcon`
  551. <img src="https://unpkg.com/@icons/material/svg/code-braces.svg" width="24" height="24"> | `CodeBracesIcon`
  552. <img src="https://unpkg.com/@icons/material/svg/code-brackets.svg" width="24" height="24"> | `CodeBracketsIcon`
  553. <img src="https://unpkg.com/@icons/material/svg/code-equal.svg" width="24" height="24"> | `CodeEqualIcon`
  554. <img src="https://unpkg.com/@icons/material/svg/code-greater-than.svg" width="24" height="24"> | `CodeGreaterThanIcon`
  555. <img src="https://unpkg.com/@icons/material/svg/code-greater-than-or-equal.svg" width="24" height="24"> | `CodeGreaterThanOrEqualIcon`
  556. <img src="https://unpkg.com/@icons/material/svg/code-less-than.svg" width="24" height="24"> | `CodeLessThanIcon`
  557. <img src="https://unpkg.com/@icons/material/svg/code-less-than-or-equal.svg" width="24" height="24"> | `CodeLessThanOrEqualIcon`
  558. <img src="https://unpkg.com/@icons/material/svg/code-not-equal.svg" width="24" height="24"> | `CodeNotEqualIcon`
  559. <img src="https://unpkg.com/@icons/material/svg/code-not-equal-variant.svg" width="24" height="24"> | `CodeNotEqualVariantIcon`
  560. <img src="https://unpkg.com/@icons/material/svg/code-parentheses.svg" width="24" height="24"> | `CodeParenthesesIcon`
  561. <img src="https://unpkg.com/@icons/material/svg/code-string.svg" width="24" height="24"> | `CodeStringIcon`
  562. <img src="https://unpkg.com/@icons/material/svg/code-tags-check.svg" width="24" height="24"> | `CodeTagsCheckIcon`
  563. <img src="https://unpkg.com/@icons/material/svg/code-tags.svg" width="24" height="24"> | `CodeTagsIcon`
  564. <img src="https://unpkg.com/@icons/material/svg/codepen.svg" width="24" height="24"> | `CodepenIcon`
  565. <img src="https://unpkg.com/@icons/material/svg/coffee.svg" width="24" height="24"> | `CoffeeIcon`
  566. <img src="https://unpkg.com/@icons/material/svg/coffee-outline.svg" width="24" height="24"> | `CoffeeOutlineIcon`
  567. <img src="https://unpkg.com/@icons/material/svg/coffee-to-go.svg" width="24" height="24"> | `CoffeeToGoIcon`
  568. <img src="https://unpkg.com/@icons/material/svg/coin.svg" width="24" height="24"> | `CoinIcon`
  569. <img src="https://unpkg.com/@icons/material/svg/coins.svg" width="24" height="24"> | `CoinsIcon`
  570. <img src="https://unpkg.com/@icons/material/svg/collage.svg" width="24" height="24"> | `CollageIcon`
  571. <img src="https://unpkg.com/@icons/material/svg/color-helper.svg" width="24" height="24"> | `ColorHelperIcon`
  572. <img src="https://unpkg.com/@icons/material/svg/comment-account.svg" width="24" height="24"> | `CommentAccountIcon`
  573. <img src="https://unpkg.com/@icons/material/svg/comment-account-outline.svg" width="24" height="24"> | `CommentAccountOutlineIcon`
  574. <img src="https://unpkg.com/@icons/material/svg/comment-alert.svg" width="24" height="24"> | `CommentAlertIcon`
  575. <img src="https://unpkg.com/@icons/material/svg/comment-alert-outline.svg" width="24" height="24"> | `CommentAlertOutlineIcon`
  576. <img src="https://unpkg.com/@icons/material/svg/comment-check.svg" width="24" height="24"> | `CommentCheckIcon`
  577. <img src="https://unpkg.com/@icons/material/svg/comment-check-outline.svg" width="24" height="24"> | `CommentCheckOutlineIcon`
  578. <img src="https://unpkg.com/@icons/material/svg/comment.svg" width="24" height="24"> | `CommentIcon`
  579. <img src="https://unpkg.com/@icons/material/svg/comment-multiple.svg" width="24" height="24"> | `CommentMultipleIcon`
  580. <img src="https://unpkg.com/@icons/material/svg/comment-multiple-outline.svg" width="24" height="24"> | `CommentMultipleOutlineIcon`
  581. <img src="https://unpkg.com/@icons/material/svg/comment-outline.svg" width="24" height="24"> | `CommentOutlineIcon`
  582. <img src="https://unpkg.com/@icons/material/svg/comment-plus-outline.svg" width="24" height="24"> | `CommentPlusOutlineIcon`
  583. <img src="https://unpkg.com/@icons/material/svg/comment-processing.svg" width="24" height="24"> | `CommentProcessingIcon`
  584. <img src="https://unpkg.com/@icons/material/svg/comment-processing-outline.svg" width="24" height="24"> | `CommentProcessingOutlineIcon`
  585. <img src="https://unpkg.com/@icons/material/svg/comment-question.svg" width="24" height="24"> | `CommentQuestionIcon`
  586. <img src="https://unpkg.com/@icons/material/svg/comment-question-outline.svg" width="24" height="24"> | `CommentQuestionOutlineIcon`
  587. <img src="https://unpkg.com/@icons/material/svg/comment-remove.svg" width="24" height="24"> | `CommentRemoveIcon`
  588. <img src="https://unpkg.com/@icons/material/svg/comment-remove-outline.svg" width="24" height="24"> | `CommentRemoveOutlineIcon`
  589. <img src="https://unpkg.com/@icons/material/svg/comment-text.svg" width="24" height="24"> | `CommentTextIcon`
  590. <img src="https://unpkg.com/@icons/material/svg/comment-text-multiple.svg" width="24" height="24"> | `CommentTextMultipleIcon`
  591. <img src="https://unpkg.com/@icons/material/svg/comment-text-multiple-outline.svg" width="24" height="24"> | `CommentTextMultipleOutlineIcon`
  592. <img src="https://unpkg.com/@icons/material/svg/comment-text-outline.svg" width="24" height="24"> | `CommentTextOutlineIcon`
  593. <img src="https://unpkg.com/@icons/material/svg/compare.svg" width="24" height="24"> | `CompareIcon`
  594. <img src="https://unpkg.com/@icons/material/svg/compass.svg" width="24" height="24"> | `CompassIcon`
  595. <img src="https://unpkg.com/@icons/material/svg/compass-outline.svg" width="24" height="24"> | `CompassOutlineIcon`
  596. <img src="https://unpkg.com/@icons/material/svg/console.svg" width="24" height="24"> | `ConsoleIcon`
  597. <img src="https://unpkg.com/@icons/material/svg/console-line.svg" width="24" height="24"> | `ConsoleLineIcon`
  598. <img src="https://unpkg.com/@icons/material/svg/console-network.svg" width="24" height="24"> | `ConsoleNetworkIcon`
  599. <img src="https://unpkg.com/@icons/material/svg/contact-mail.svg" width="24" height="24"> | `ContactMailIcon`
  600. <img src="https://unpkg.com/@icons/material/svg/contacts.svg" width="24" height="24"> | `ContactsIcon`
  601. <img src="https://unpkg.com/@icons/material/svg/content-copy.svg" width="24" height="24"> | `ContentCopyIcon`
  602. <img src="https://unpkg.com/@icons/material/svg/content-cut.svg" width="24" height="24"> | `ContentCutIcon`
  603. <img src="https://unpkg.com/@icons/material/svg/content-duplicate.svg" width="24" height="24"> | `ContentDuplicateIcon`
  604. <img src="https://unpkg.com/@icons/material/svg/content-paste.svg" width="24" height="24"> | `ContentPasteIcon`
  605. <img src="https://unpkg.com/@icons/material/svg/content-save-all.svg" width="24" height="24"> | `ContentSaveAllIcon`
  606. <img src="https://unpkg.com/@icons/material/svg/content-save.svg" width="24" height="24"> | `ContentSaveIcon`
  607. <img src="https://unpkg.com/@icons/material/svg/content-save-outline.svg" width="24" height="24"> | `ContentSaveOutlineIcon`
  608. <img src="https://unpkg.com/@icons/material/svg/content-save-settings.svg" width="24" height="24"> | `ContentSaveSettingsIcon`
  609. <img src="https://unpkg.com/@icons/material/svg/contrast-box.svg" width="24" height="24"> | `ContrastBoxIcon`
  610. <img src="https://unpkg.com/@icons/material/svg/contrast-circle.svg" width="24" height="24"> | `ContrastCircleIcon`
  611. <img src="https://unpkg.com/@icons/material/svg/contrast.svg" width="24" height="24"> | `ContrastIcon`
  612. <img src="https://unpkg.com/@icons/material/svg/cookie.svg" width="24" height="24"> | `CookieIcon`
  613. <img src="https://unpkg.com/@icons/material/svg/copyright.svg" width="24" height="24"> | `CopyrightIcon`
  614. <img src="https://unpkg.com/@icons/material/svg/corn.svg" width="24" height="24"> | `CornIcon`
  615. <img src="https://unpkg.com/@icons/material/svg/counter.svg" width="24" height="24"> | `CounterIcon`
  616. <img src="https://unpkg.com/@icons/material/svg/cow.svg" width="24" height="24"> | `CowIcon`
  617. <img src="https://unpkg.com/@icons/material/svg/crane.svg" width="24" height="24"> | `CraneIcon`
  618. <img src="https://unpkg.com/@icons/material/svg/creation.svg" width="24" height="24"> | `CreationIcon`
  619. <img src="https://unpkg.com/@icons/material/svg/credit-card.svg" width="24" height="24"> | `CreditCardIcon`
  620. <img src="https://unpkg.com/@icons/material/svg/credit-card-multiple.svg" width="24" height="24"> | `CreditCardMultipleIcon`
  621. <img src="https://unpkg.com/@icons/material/svg/credit-card-off.svg" width="24" height="24"> | `CreditCardOffIcon`
  622. <img src="https://unpkg.com/@icons/material/svg/credit-card-plus.svg" width="24" height="24"> | `CreditCardPlusIcon`
  623. <img src="https://unpkg.com/@icons/material/svg/credit-card-scan.svg" width="24" height="24"> | `CreditCardScanIcon`
  624. <img src="https://unpkg.com/@icons/material/svg/crop-free.svg" width="24" height="24"> | `CropFreeIcon`
  625. <img src="https://unpkg.com/@icons/material/svg/crop.svg" width="24" height="24"> | `CropIcon`
  626. <img src="https://unpkg.com/@icons/material/svg/crop-landscape.svg" width="24" height="24"> | `CropLandscapeIcon`
  627. <img src="https://unpkg.com/@icons/material/svg/crop-portrait.svg" width="24" height="24"> | `CropPortraitIcon`
  628. <img src="https://unpkg.com/@icons/material/svg/crop-rotate.svg" width="24" height="24"> | `CropRotateIcon`
  629. <img src="https://unpkg.com/@icons/material/svg/crop-square.svg" width="24" height="24"> | `CropSquareIcon`
  630. <img src="https://unpkg.com/@icons/material/svg/crosshairs-gps.svg" width="24" height="24"> | `CrosshairsGpsIcon`
  631. <img src="https://unpkg.com/@icons/material/svg/crosshairs.svg" width="24" height="24"> | `CrosshairsIcon`
  632. <img src="https://unpkg.com/@icons/material/svg/crown.svg" width="24" height="24"> | `CrownIcon`
  633. <img src="https://unpkg.com/@icons/material/svg/cube.svg" width="24" height="24"> | `CubeIcon`
  634. <img src="https://unpkg.com/@icons/material/svg/cube-outline.svg" width="24" height="24"> | `CubeOutlineIcon`
  635. <img src="https://unpkg.com/@icons/material/svg/cube-send.svg" width="24" height="24"> | `CubeSendIcon`
  636. <img src="https://unpkg.com/@icons/material/svg/cube-unfolded.svg" width="24" height="24"> | `CubeUnfoldedIcon`
  637. <img src="https://unpkg.com/@icons/material/svg/cup.svg" width="24" height="24"> | `CupIcon`
  638. <img src="https://unpkg.com/@icons/material/svg/cup-off.svg" width="24" height="24"> | `CupOffIcon`
  639. <img src="https://unpkg.com/@icons/material/svg/cup-water.svg" width="24" height="24"> | `CupWaterIcon`
  640. <img src="https://unpkg.com/@icons/material/svg/curling.svg" width="24" height="24"> | `CurlingIcon`
  641. <img src="https://unpkg.com/@icons/material/svg/currency-bdt.svg" width="24" height="24"> | `CurrencyBdtIcon`
  642. <img src="https://unpkg.com/@icons/material/svg/currency-btc.svg" width="24" height="24"> | `CurrencyBtcIcon`
  643. <img src="https://unpkg.com/@icons/material/svg/currency-chf.svg" width="24" height="24"> | `CurrencyChfIcon`
  644. <img src="https://unpkg.com/@icons/material/svg/currency-cny.svg" width="24" height="24"> | `CurrencyCnyIcon`
  645. <img src="https://unpkg.com/@icons/material/svg/currency-eth.svg" width="24" height="24"> | `CurrencyEthIcon`
  646. <img src="https://unpkg.com/@icons/material/svg/currency-eur.svg" width="24" height="24"> | `CurrencyEurIcon`
  647. <img src="https://unpkg.com/@icons/material/svg/currency-gbp.svg" width="24" height="24"> | `CurrencyGbpIcon`
  648. <img src="https://unpkg.com/@icons/material/svg/currency-inr.svg" width="24" height="24"> | `CurrencyInrIcon`
  649. <img src="https://unpkg.com/@icons/material/svg/currency-jpy.svg" width="24" height="24"> | `CurrencyJpyIcon`
  650. <img src="https://unpkg.com/@icons/material/svg/currency-krw.svg" width="24" height="24"> | `CurrencyKrwIcon`
  651. <img src="https://unpkg.com/@icons/material/svg/currency-kzt.svg" width="24" height="24"> | `CurrencyKztIcon`
  652. <img src="https://unpkg.com/@icons/material/svg/currency-ngn.svg" width="24" height="24"> | `CurrencyNgnIcon`
  653. <img src="https://unpkg.com/@icons/material/svg/currency-rub.svg" width="24" height="24"> | `CurrencyRubIcon`
  654. <img src="https://unpkg.com/@icons/material/svg/currency-sign.svg" width="24" height="24"> | `CurrencySignIcon`
  655. <img src="https://unpkg.com/@icons/material/svg/currency-try.svg" width="24" height="24"> | `CurrencyTryIcon`
  656. <img src="https://unpkg.com/@icons/material/svg/currency-twd.svg" width="24" height="24"> | `CurrencyTwdIcon`
  657. <img src="https://unpkg.com/@icons/material/svg/currency-usd.svg" width="24" height="24"> | `CurrencyUsdIcon`
  658. <img src="https://unpkg.com/@icons/material/svg/currency-usd-off.svg" width="24" height="24"> | `CurrencyUsdOffIcon`
  659. <img src="https://unpkg.com/@icons/material/svg/cursor-default.svg" width="24" height="24"> | `CursorDefaultIcon`
  660. <img src="https://unpkg.com/@icons/material/svg/cursor-default-outline.svg" width="24" height="24"> | `CursorDefaultOutlineIcon`
  661. <img src="https://unpkg.com/@icons/material/svg/cursor-move.svg" width="24" height="24"> | `CursorMoveIcon`
  662. <img src="https://unpkg.com/@icons/material/svg/cursor-pointer.svg" width="24" height="24"> | `CursorPointerIcon`
  663. <img src="https://unpkg.com/@icons/material/svg/cursor-text.svg" width="24" height="24"> | `CursorTextIcon`
  664. <img src="https://unpkg.com/@icons/material/svg/database.svg" width="24" height="24"> | `DatabaseIcon`
  665. <img src="https://unpkg.com/@icons/material/svg/database-minus.svg" width="24" height="24"> | `DatabaseMinusIcon`
  666. <img src="https://unpkg.com/@icons/material/svg/database-plus.svg" width="24" height="24"> | `DatabasePlusIcon`
  667. <img src="https://unpkg.com/@icons/material/svg/database-search.svg" width="24" height="24"> | `DatabaseSearchIcon`
  668. <img src="https://unpkg.com/@icons/material/svg/debug-step-into.svg" width="24" height="24"> | `DebugStepIntoIcon`
  669. <img src="https://unpkg.com/@icons/material/svg/debug-step-out.svg" width="24" height="24"> | `DebugStepOutIcon`
  670. <img src="https://unpkg.com/@icons/material/svg/debug-step-over.svg" width="24" height="24"> | `DebugStepOverIcon`
  671. <img src="https://unpkg.com/@icons/material/svg/decagram.svg" width="24" height="24"> | `DecagramIcon`
  672. <img src="https://unpkg.com/@icons/material/svg/decagram-outline.svg" width="24" height="24"> | `DecagramOutlineIcon`
  673. <img src="https://unpkg.com/@icons/material/svg/decimal-decrease.svg" width="24" height="24"> | `DecimalDecreaseIcon`
  674. <img src="https://unpkg.com/@icons/material/svg/decimal-increase.svg" width="24" height="24"> | `DecimalIncreaseIcon`
  675. <img src="https://unpkg.com/@icons/material/svg/delete-circle.svg" width="24" height="24"> | `DeleteCircleIcon`
  676. <img src="https://unpkg.com/@icons/material/svg/delete-empty.svg" width="24" height="24"> | `DeleteEmptyIcon`
  677. <img src="https://unpkg.com/@icons/material/svg/delete-forever.svg" width="24" height="24"> | `DeleteForeverIcon`
  678. <img src="https://unpkg.com/@icons/material/svg/delete.svg" width="24" height="24"> | `DeleteIcon`
  679. <img src="https://unpkg.com/@icons/material/svg/delete-restore.svg" width="24" height="24"> | `DeleteRestoreIcon`
  680. <img src="https://unpkg.com/@icons/material/svg/delete-sweep.svg" width="24" height="24"> | `DeleteSweepIcon`
  681. <img src="https://unpkg.com/@icons/material/svg/delete-variant.svg" width="24" height="24"> | `DeleteVariantIcon`
  682. <img src="https://unpkg.com/@icons/material/svg/delta.svg" width="24" height="24"> | `DeltaIcon`
  683. <img src="https://unpkg.com/@icons/material/svg/deskphone.svg" width="24" height="24"> | `DeskphoneIcon`
  684. <img src="https://unpkg.com/@icons/material/svg/desktop-classic.svg" width="24" height="24"> | `DesktopClassicIcon`
  685. <img src="https://unpkg.com/@icons/material/svg/desktop-mac.svg" width="24" height="24"> | `DesktopMacIcon`
  686. <img src="https://unpkg.com/@icons/material/svg/desktop-tower.svg" width="24" height="24"> | `DesktopTowerIcon`
  687. <img src="https://unpkg.com/@icons/material/svg/details.svg" width="24" height="24"> | `DetailsIcon`
  688. <img src="https://unpkg.com/@icons/material/svg/developer-board.svg" width="24" height="24"> | `DeveloperBoardIcon`
  689. <img src="https://unpkg.com/@icons/material/svg/deviantart.svg" width="24" height="24"> | `DeviantartIcon`
  690. <img src="https://unpkg.com/@icons/material/svg/dialpad.svg" width="24" height="24"> | `DialpadIcon`
  691. <img src="https://unpkg.com/@icons/material/svg/diamond.svg" width="24" height="24"> | `DiamondIcon`
  692. <img src="https://unpkg.com/@icons/material/svg/dice-d10.svg" width="24" height="24"> | `DiceD10Icon`
  693. <img src="https://unpkg.com/@icons/material/svg/dice-d12.svg" width="24" height="24"> | `DiceD12Icon`
  694. <img src="https://unpkg.com/@icons/material/svg/dice-d20.svg" width="24" height="24"> | `DiceD20Icon`
  695. <img src="https://unpkg.com/@icons/material/svg/dice-d4.svg" width="24" height="24"> | `DiceD4Icon`
  696. <img src="https://unpkg.com/@icons/material/svg/dice-d6.svg" width="24" height="24"> | `DiceD6Icon`
  697. <img src="https://unpkg.com/@icons/material/svg/dice-d8.svg" width="24" height="24"> | `DiceD8Icon`
  698. <img src="https://unpkg.com/@icons/material/svg/dice-multiple.svg" width="24" height="24"> | `DiceMultipleIcon`
  699. <img src="https://unpkg.com/@icons/material/svg/dice-1.svg" width="24" height="24"> | `Dice_1Icon`
  700. <img src="https://unpkg.com/@icons/material/svg/dice-2.svg" width="24" height="24"> | `Dice_2Icon`
  701. <img src="https://unpkg.com/@icons/material/svg/dice-3.svg" width="24" height="24"> | `Dice_3Icon`
  702. <img src="https://unpkg.com/@icons/material/svg/dice-4.svg" width="24" height="24"> | `Dice_4Icon`
  703. <img src="https://unpkg.com/@icons/material/svg/dice-5.svg" width="24" height="24"> | `Dice_5Icon`
  704. <img src="https://unpkg.com/@icons/material/svg/dice-6.svg" width="24" height="24"> | `Dice_6Icon`
  705. <img src="https://unpkg.com/@icons/material/svg/dictionary.svg" width="24" height="24"> | `DictionaryIcon`
  706. <img src="https://unpkg.com/@icons/material/svg/dip-switch.svg" width="24" height="24"> | `DipSwitchIcon`
  707. <img src="https://unpkg.com/@icons/material/svg/directions-fork.svg" width="24" height="24"> | `DirectionsForkIcon`
  708. <img src="https://unpkg.com/@icons/material/svg/directions.svg" width="24" height="24"> | `DirectionsIcon`
  709. <img src="https://unpkg.com/@icons/material/svg/discord.svg" width="24" height="24"> | `DiscordIcon`
  710. <img src="https://unpkg.com/@icons/material/svg/disk-alert.svg" width="24" height="24"> | `DiskAlertIcon`
  711. <img src="https://unpkg.com/@icons/material/svg/disk.svg" width="24" height="24"> | `DiskIcon`
  712. <img src="https://unpkg.com/@icons/material/svg/disqus.svg" width="24" height="24"> | `DisqusIcon`
  713. <img src="https://unpkg.com/@icons/material/svg/disqus-outline.svg" width="24" height="24"> | `DisqusOutlineIcon`
  714. <img src="https://unpkg.com/@icons/material/svg/division-box.svg" width="24" height="24"> | `DivisionBoxIcon`
  715. <img src="https://unpkg.com/@icons/material/svg/division.svg" width="24" height="24"> | `DivisionIcon`
  716. <img src="https://unpkg.com/@icons/material/svg/dna.svg" width="24" height="24"> | `DnaIcon`
  717. <img src="https://unpkg.com/@icons/material/svg/dns.svg" width="24" height="24"> | `DnsIcon`
  718. <img src="https://unpkg.com/@icons/material/svg/do-not-disturb.svg" width="24" height="24"> | `DoNotDisturbIcon`
  719. <img src="https://unpkg.com/@icons/material/svg/do-not-disturb-off.svg" width="24" height="24"> | `DoNotDisturbOffIcon`
  720. <img src="https://unpkg.com/@icons/material/svg/docker.svg" width="24" height="24"> | `DockerIcon`
  721. <img src="https://unpkg.com/@icons/material/svg/dolby.svg" width="24" height="24"> | `DolbyIcon`
  722. <img src="https://unpkg.com/@icons/material/svg/domain.svg" width="24" height="24"> | `DomainIcon`
  723. <img src="https://unpkg.com/@icons/material/svg/donkey.svg" width="24" height="24"> | `DonkeyIcon`
  724. <img src="https://unpkg.com/@icons/material/svg/door-closed.svg" width="24" height="24"> | `DoorClosedIcon`
  725. <img src="https://unpkg.com/@icons/material/svg/door.svg" width="24" height="24"> | `DoorIcon`
  726. <img src="https://unpkg.com/@icons/material/svg/door-open.svg" width="24" height="24"> | `DoorOpenIcon`
  727. <img src="https://unpkg.com/@icons/material/svg/doorbell-video.svg" width="24" height="24"> | `DoorbellVideoIcon`
  728. <img src="https://unpkg.com/@icons/material/svg/dots-horizontal-circle.svg" width="24" height="24"> | `DotsHorizontalCircleIcon`
  729. <img src="https://unpkg.com/@icons/material/svg/dots-horizontal.svg" width="24" height="24"> | `DotsHorizontalIcon`
  730. <img src="https://unpkg.com/@icons/material/svg/dots-vertical-circle.svg" width="24" height="24"> | `DotsVerticalCircleIcon`
  731. <img src="https://unpkg.com/@icons/material/svg/dots-vertical.svg" width="24" height="24"> | `DotsVerticalIcon`
  732. <img src="https://unpkg.com/@icons/material/svg/douban.svg" width="24" height="24"> | `DoubanIcon`
  733. <img src="https://unpkg.com/@icons/material/svg/download.svg" width="24" height="24"> | `DownloadIcon`
  734. <img src="https://unpkg.com/@icons/material/svg/download-network.svg" width="24" height="24"> | `DownloadNetworkIcon`
  735. <img src="https://unpkg.com/@icons/material/svg/drag-horizontal.svg" width="24" height="24"> | `DragHorizontalIcon`
  736. <img src="https://unpkg.com/@icons/material/svg/drag.svg" width="24" height="24"> | `DragIcon`
  737. <img src="https://unpkg.com/@icons/material/svg/drag-vertical.svg" width="24" height="24"> | `DragVerticalIcon`
  738. <img src="https://unpkg.com/@icons/material/svg/drawing-box.svg" width="24" height="24"> | `DrawingBoxIcon`
  739. <img src="https://unpkg.com/@icons/material/svg/drawing.svg" width="24" height="24"> | `DrawingIcon`
  740. <img src="https://unpkg.com/@icons/material/svg/dribbble-box.svg" width="24" height="24"> | `DribbbleBoxIcon`
  741. <img src="https://unpkg.com/@icons/material/svg/dribbble.svg" width="24" height="24"> | `DribbbleIcon`
  742. <img src="https://unpkg.com/@icons/material/svg/drone.svg" width="24" height="24"> | `DroneIcon`
  743. <img src="https://unpkg.com/@icons/material/svg/dropbox.svg" width="24" height="24"> | `DropboxIcon`
  744. <img src="https://unpkg.com/@icons/material/svg/drupal.svg" width="24" height="24"> | `DrupalIcon`
  745. <img src="https://unpkg.com/@icons/material/svg/duck.svg" width="24" height="24"> | `DuckIcon`
  746. <img src="https://unpkg.com/@icons/material/svg/dumbbell.svg" width="24" height="24"> | `DumbbellIcon`
  747. <img src="https://unpkg.com/@icons/material/svg/ear-hearing.svg" width="24" height="24"> | `EarHearingIcon`
  748. <img src="https://unpkg.com/@icons/material/svg/earth-box.svg" width="24" height="24"> | `EarthBoxIcon`
  749. <img src="https://unpkg.com/@icons/material/svg/earth-box-off.svg" width="24" height="24"> | `EarthBoxOffIcon`
  750. <img src="https://unpkg.com/@icons/material/svg/earth.svg" width="24" height="24"> | `EarthIcon`
  751. <img src="https://unpkg.com/@icons/material/svg/earth-off.svg" width="24" height="24"> | `EarthOffIcon`
  752. <img src="https://unpkg.com/@icons/material/svg/edge.svg" width="24" height="24"> | `EdgeIcon`
  753. <img src="https://unpkg.com/@icons/material/svg/eject.svg" width="24" height="24"> | `EjectIcon`
  754. <img src="https://unpkg.com/@icons/material/svg/elephant.svg" width="24" height="24"> | `ElephantIcon`
  755. <img src="https://unpkg.com/@icons/material/svg/elevation-decline.svg" width="24" height="24"> | `ElevationDeclineIcon`
  756. <img src="https://unpkg.com/@icons/material/svg/elevation-rise.svg" width="24" height="24"> | `ElevationRiseIcon`
  757. <img src="https://unpkg.com/@icons/material/svg/elevator.svg" width="24" height="24"> | `ElevatorIcon`
  758. <img src="https://unpkg.com/@icons/material/svg/email-alert.svg" width="24" height="24"> | `EmailAlertIcon`
  759. <img src="https://unpkg.com/@icons/material/svg/email.svg" width="24" height="24"> | `EmailIcon`
  760. <img src="https://unpkg.com/@icons/material/svg/email-open.svg" width="24" height="24"> | `EmailOpenIcon`
  761. <img src="https://unpkg.com/@icons/material/svg/email-open-outline.svg" width="24" height="24"> | `EmailOpenOutlineIcon`
  762. <img src="https://unpkg.com/@icons/material/svg/email-outline.svg" width="24" height="24"> | `EmailOutlineIcon`
  763. <img src="https://unpkg.com/@icons/material/svg/email-secure.svg" width="24" height="24"> | `EmailSecureIcon`
  764. <img src="https://unpkg.com/@icons/material/svg/email-variant.svg" width="24" height="24"> | `EmailVariantIcon`
  765. <img src="https://unpkg.com/@icons/material/svg/emby.svg" width="24" height="24"> | `EmbyIcon`
  766. <img src="https://unpkg.com/@icons/material/svg/emoticon-cool.svg" width="24" height="24"> | `EmoticonCoolIcon`
  767. <img src="https://unpkg.com/@icons/material/svg/emoticon-dead.svg" width="24" height="24"> | `EmoticonDeadIcon`
  768. <img src="https://unpkg.com/@icons/material/svg/emoticon-devil.svg" width="24" height="24"> | `EmoticonDevilIcon`
  769. <img src="https://unpkg.com/@icons/material/svg/emoticon-excited.svg" width="24" height="24"> | `EmoticonExcitedIcon`
  770. <img src="https://unpkg.com/@icons/material/svg/emoticon-happy.svg" width="24" height="24"> | `EmoticonHappyIcon`
  771. <img src="https://unpkg.com/@icons/material/svg/emoticon.svg" width="24" height="24"> | `EmoticonIcon`
  772. <img src="https://unpkg.com/@icons/material/svg/emoticon-neutral.svg" width="24" height="24"> | `EmoticonNeutralIcon`
  773. <img src="https://unpkg.com/@icons/material/svg/emoticon-poop.svg" width="24" height="24"> | `EmoticonPoopIcon`
  774. <img src="https://unpkg.com/@icons/material/svg/emoticon-sad.svg" width="24" height="24"> | `EmoticonSadIcon`
  775. <img src="https://unpkg.com/@icons/material/svg/emoticon-tongue.svg" width="24" height="24"> | `EmoticonTongueIcon`
  776. <img src="https://unpkg.com/@icons/material/svg/engine.svg" width="24" height="24"> | `EngineIcon`
  777. <img src="https://unpkg.com/@icons/material/svg/engine-outline.svg" width="24" height="24"> | `EngineOutlineIcon`
  778. <img src="https://unpkg.com/@icons/material/svg/equal-box.svg" width="24" height="24"> | `EqualBoxIcon`
  779. <img src="https://unpkg.com/@icons/material/svg/equal.svg" width="24" height="24"> | `EqualIcon`
  780. <img src="https://unpkg.com/@icons/material/svg/eraser.svg" width="24" height="24"> | `EraserIcon`
  781. <img src="https://unpkg.com/@icons/material/svg/eraser-variant.svg" width="24" height="24"> | `EraserVariantIcon`
  782. <img src="https://unpkg.com/@icons/material/svg/escalator.svg" width="24" height="24"> | `EscalatorIcon`
  783. <img src="https://unpkg.com/@icons/material/svg/ethereum.svg" width="24" height="24"> | `EthereumIcon`
  784. <img src="https://unpkg.com/@icons/material/svg/ethernet-cable.svg" width="24" height="24"> | `EthernetCableIcon`
  785. <img src="https://unpkg.com/@icons/material/svg/ethernet-cable-off.svg" width="24" height="24"> | `EthernetCableOffIcon`
  786. <img src="https://unpkg.com/@icons/material/svg/ethernet.svg" width="24" height="24"> | `EthernetIcon`
  787. <img src="https://unpkg.com/@icons/material/svg/etsy.svg" width="24" height="24"> | `EtsyIcon`
  788. <img src="https://unpkg.com/@icons/material/svg/ev-station.svg" width="24" height="24"> | `EvStationIcon`
  789. <img src="https://unpkg.com/@icons/material/svg/eventbrite.svg" width="24" height="24"> | `EventbriteIcon`
  790. <img src="https://unpkg.com/@icons/material/svg/evernote.svg" width="24" height="24"> | `EvernoteIcon`
  791. <img src="https://unpkg.com/@icons/material/svg/exclamation.svg" width="24" height="24"> | `ExclamationIcon`
  792. <img src="https://unpkg.com/@icons/material/svg/exit-to-app.svg" width="24" height="24"> | `ExitToAppIcon`
  793. <img src="https://unpkg.com/@icons/material/svg/export.svg" width="24" height="24"> | `ExportIcon`
  794. <img src="https://unpkg.com/@icons/material/svg/eye.svg" width="24" height="24"> | `EyeIcon`
  795. <img src="https://unpkg.com/@icons/material/svg/eye-off.svg" width="24" height="24"> | `EyeOffIcon`
  796. <img src="https://unpkg.com/@icons/material/svg/eye-off-outline.svg" width="24" height="24"> | `EyeOffOutlineIcon`
  797. <img src="https://unpkg.com/@icons/material/svg/eye-outline.svg" width="24" height="24"> | `EyeOutlineIcon`
  798. <img src="https://unpkg.com/@icons/material/svg/eye-plus.svg" width="24" height="24"> | `EyePlusIcon`
  799. <img src="https://unpkg.com/@icons/material/svg/eye-plus-outline.svg" width="24" height="24"> | `EyePlusOutlineIcon`
  800. <img src="https://unpkg.com/@icons/material/svg/eye-settings.svg" width="24" height="24"> | `EyeSettingsIcon`
  801. <img src="https://unpkg.com/@icons/material/svg/eye-settings-outline.svg" width="24" height="24"> | `EyeSettingsOutlineIcon`
  802. <img src="https://unpkg.com/@icons/material/svg/eyedropper.svg" width="24" height="24"> | `EyedropperIcon`
  803. <img src="https://unpkg.com/@icons/material/svg/eyedropper-variant.svg" width="24" height="24"> | `EyedropperVariantIcon`
  804. <img src="https://unpkg.com/@icons/material/svg/face.svg" width="24" height="24"> | `FaceIcon`
  805. <img src="https://unpkg.com/@icons/material/svg/face-profile.svg" width="24" height="24"> | `FaceProfileIcon`
  806. <img src="https://unpkg.com/@icons/material/svg/facebook-box.svg" width="24" height="24"> | `FacebookBoxIcon`
  807. <img src="https://unpkg.com/@icons/material/svg/facebook.svg" width="24" height="24"> | `FacebookIcon`
  808. <img src="https://unpkg.com/@icons/material/svg/facebook-messenger.svg" width="24" height="24"> | `FacebookMessengerIcon`
  809. <img src="https://unpkg.com/@icons/material/svg/factory.svg" width="24" height="24"> | `FactoryIcon`
  810. <img src="https://unpkg.com/@icons/material/svg/fan.svg" width="24" height="24"> | `FanIcon`
  811. <img src="https://unpkg.com/@icons/material/svg/fan-off.svg" width="24" height="24"> | `FanOffIcon`
  812. <img src="https://unpkg.com/@icons/material/svg/fast-forward.svg" width="24" height="24"> | `FastForwardIcon`
  813. <img src="https://unpkg.com/@icons/material/svg/fast-forward-outline.svg" width="24" height="24"> | `FastForwardOutlineIcon`
  814. <img src="https://unpkg.com/@icons/material/svg/fax.svg" width="24" height="24"> | `FaxIcon`
  815. <img src="https://unpkg.com/@icons/material/svg/feather.svg" width="24" height="24"> | `FeatherIcon`
  816. <img src="https://unpkg.com/@icons/material/svg/ferry.svg" width="24" height="24"> | `FerryIcon`
  817. <img src="https://unpkg.com/@icons/material/svg/file-account.svg" width="24" height="24"> | `FileAccountIcon`
  818. <img src="https://unpkg.com/@icons/material/svg/file-chart.svg" width="24" height="24"> | `FileChartIcon`
  819. <img src="https://unpkg.com/@icons/material/svg/file-check.svg" width="24" height="24"> | `FileCheckIcon`
  820. <img src="https://unpkg.com/@icons/material/svg/file-cloud.svg" width="24" height="24"> | `FileCloudIcon`
  821. <img src="https://unpkg.com/@icons/material/svg/file-compare.svg" width="24" height="24"> | `FileCompareIcon`
  822. <img src="https://unpkg.com/@icons/material/svg/file-delimited.svg" width="24" height="24"> | `FileDelimitedIcon`
  823. <img src="https://unpkg.com/@icons/material/svg/file-document-box.svg" width="24" height="24"> | `FileDocumentBoxIcon`
  824. <img src="https://unpkg.com/@icons/material/svg/file-document.svg" width="24" height="24"> | `FileDocumentIcon`
  825. <img src="https://unpkg.com/@icons/material/svg/file-excel-box.svg" width="24" height="24"> | `FileExcelBoxIcon`
  826. <img src="https://unpkg.com/@icons/material/svg/file-excel.svg" width="24" height="24"> | `FileExcelIcon`
  827. <img src="https://unpkg.com/@icons/material/svg/file-export.svg" width="24" height="24"> | `FileExportIcon`
  828. <img src="https://unpkg.com/@icons/material/svg/file-find.svg" width="24" height="24"> | `FileFindIcon`
  829. <img src="https://unpkg.com/@icons/material/svg/file-hidden.svg" width="24" height="24"> | `FileHiddenIcon`
  830. <img src="https://unpkg.com/@icons/material/svg/file.svg" width="24" height="24"> | `FileIcon`
  831. <img src="https://unpkg.com/@icons/material/svg/file-image.svg" width="24" height="24"> | `FileImageIcon`
  832. <img src="https://unpkg.com/@icons/material/svg/file-import.svg" width="24" height="24"> | `FileImportIcon`
  833. <img src="https://unpkg.com/@icons/material/svg/file-lock.svg" width="24" height="24"> | `FileLockIcon`
  834. <img src="https://unpkg.com/@icons/material/svg/file-multiple.svg" width="24" height="24"> | `FileMultipleIcon`
  835. <img src="https://unpkg.com/@icons/material/svg/file-music.svg" width="24" height="24"> | `FileMusicIcon`
  836. <img src="https://unpkg.com/@icons/material/svg/file-outline.svg" width="24" height="24"> | `FileOutlineIcon`
  837. <img src="https://unpkg.com/@icons/material/svg/file-pdf-box.svg" width="24" height="24"> | `FilePdfBoxIcon`
  838. <img src="https://unpkg.com/@icons/material/svg/file-pdf.svg" width="24" height="24"> | `FilePdfIcon`
  839. <img src="https://unpkg.com/@icons/material/svg/file-percent.svg" width="24" height="24"> | `FilePercentIcon`
  840. <img src="https://unpkg.com/@icons/material/svg/file-plus.svg" width="24" height="24"> | `FilePlusIcon`
  841. <img src="https://unpkg.com/@icons/material/svg/file-powerpoint-box.svg" width="24" height="24"> | `FilePowerpointBoxIcon`
  842. <img src="https://unpkg.com/@icons/material/svg/file-powerpoint.svg" width="24" height="24"> | `FilePowerpointIcon`
  843. <img src="https://unpkg.com/@icons/material/svg/file-presentation-box.svg" width="24" height="24"> | `FilePresentationBoxIcon`
  844. <img src="https://unpkg.com/@icons/material/svg/file-question.svg" width="24" height="24"> | `FileQuestionIcon`
  845. <img src="https://unpkg.com/@icons/material/svg/file-restore.svg" width="24" height="24"> | `FileRestoreIcon`
  846. <img src="https://unpkg.com/@icons/material/svg/file-send.svg" width="24" height="24"> | `FileSendIcon`
  847. <img src="https://unpkg.com/@icons/material/svg/file-tree.svg" width="24" height="24"> | `FileTreeIcon`
  848. <img src="https://unpkg.com/@icons/material/svg/file-video.svg" width="24" height="24"> | `FileVideoIcon`
  849. <img src="https://unpkg.com/@icons/material/svg/file-word-box.svg" width="24" height="24"> | `FileWordBoxIcon`
  850. <img src="https://unpkg.com/@icons/material/svg/file-word.svg" width="24" height="24"> | `FileWordIcon`
  851. <img src="https://unpkg.com/@icons/material/svg/file-xml.svg" width="24" height="24"> | `FileXmlIcon`
  852. <img src="https://unpkg.com/@icons/material/svg/film.svg" width="24" height="24"> | `FilmIcon`
  853. <img src="https://unpkg.com/@icons/material/svg/filmstrip.svg" width="24" height="24"> | `FilmstripIcon`
  854. <img src="https://unpkg.com/@icons/material/svg/filmstrip-off.svg" width="24" height="24"> | `FilmstripOffIcon`
  855. <img src="https://unpkg.com/@icons/material/svg/filter.svg" width="24" height="24"> | `FilterIcon`
  856. <img src="https://unpkg.com/@icons/material/svg/filter-outline.svg" width="24" height="24"> | `FilterOutlineIcon`
  857. <img src="https://unpkg.com/@icons/material/svg/filter-remove.svg" width="24" height="24"> | `FilterRemoveIcon`
  858. <img src="https://unpkg.com/@icons/material/svg/filter-remove-outline.svg" width="24" height="24"> | `FilterRemoveOutlineIcon`
  859. <img src="https://unpkg.com/@icons/material/svg/filter-variant.svg" width="24" height="24"> | `FilterVariantIcon`
  860. <img src="https://unpkg.com/@icons/material/svg/finance.svg" width="24" height="24"> | `FinanceIcon`
  861. <img src="https://unpkg.com/@icons/material/svg/find-replace.svg" width="24" height="24"> | `FindReplaceIcon`
  862. <img src="https://unpkg.com/@icons/material/svg/fingerprint.svg" width="24" height="24"> | `FingerprintIcon`
  863. <img src="https://unpkg.com/@icons/material/svg/fire.svg" width="24" height="24"> | `FireIcon`
  864. <img src="https://unpkg.com/@icons/material/svg/fire-truck.svg" width="24" height="24"> | `FireTruckIcon`
  865. <img src="https://unpkg.com/@icons/material/svg/firefox.svg" width="24" height="24"> | `FirefoxIcon`
  866. <img src="https://unpkg.com/@icons/material/svg/fish.svg" width="24" height="24"> | `FishIcon`
  867. <img src="https://unpkg.com/@icons/material/svg/flag-checkered.svg" width="24" height="24"> | `FlagCheckeredIcon`
  868. <img src="https://unpkg.com/@icons/material/svg/flag.svg" width="24" height="24"> | `FlagIcon`
  869. <img src="https://unpkg.com/@icons/material/svg/flag-outline.svg" width="24" height="24"> | `FlagOutlineIcon`
  870. <img src="https://unpkg.com/@icons/material/svg/flag-triangle.svg" width="24" height="24"> | `FlagTriangleIcon`
  871. <img src="https://unpkg.com/@icons/material/svg/flag-variant.svg" width="24" height="24"> | `FlagVariantIcon`
  872. <img src="https://unpkg.com/@icons/material/svg/flag-variant-outline.svg" width="24" height="24"> | `FlagVariantOutlineIcon`
  873. <img src="https://unpkg.com/@icons/material/svg/flash-auto.svg" width="24" height="24"> | `FlashAutoIcon`
  874. <img src="https://unpkg.com/@icons/material/svg/flash-circle.svg" width="24" height="24"> | `FlashCircleIcon`
  875. <img src="https://unpkg.com/@icons/material/svg/flash.svg" width="24" height="24"> | `FlashIcon`
  876. <img src="https://unpkg.com/@icons/material/svg/flash-off.svg" width="24" height="24"> | `FlashOffIcon`
  877. <img src="https://unpkg.com/@icons/material/svg/flash-outline.svg" width="24" height="24"> | `FlashOutlineIcon`
  878. <img src="https://unpkg.com/@icons/material/svg/flash-red-eye.svg" width="24" height="24"> | `FlashRedEyeIcon`
  879. <img src="https://unpkg.com/@icons/material/svg/flashlight.svg" width="24" height="24"> | `FlashlightIcon`
  880. <img src="https://unpkg.com/@icons/material/svg/flashlight-off.svg" width="24" height="24"> | `FlashlightOffIcon`
  881. <img src="https://unpkg.com/@icons/material/svg/flask-empty.svg" width="24" height="24"> | `FlaskEmptyIcon`
  882. <img src="https://unpkg.com/@icons/material/svg/flask-empty-outline.svg" width="24" height="24"> | `FlaskEmptyOutlineIcon`
  883. <img src="https://unpkg.com/@icons/material/svg/flask.svg" width="24" height="24"> | `FlaskIcon`
  884. <img src="https://unpkg.com/@icons/material/svg/flask-outline.svg" width="24" height="24"> | `FlaskOutlineIcon`
  885. <img src="https://unpkg.com/@icons/material/svg/flattr.svg" width="24" height="24"> | `FlattrIcon`
  886. <img src="https://unpkg.com/@icons/material/svg/flip-to-back.svg" width="24" height="24"> | `FlipToBackIcon`
  887. <img src="https://unpkg.com/@icons/material/svg/flip-to-front.svg" width="24" height="24"> | `FlipToFrontIcon`
  888. <img src="https://unpkg.com/@icons/material/svg/floor-plan.svg" width="24" height="24"> | `FloorPlanIcon`
  889. <img src="https://unpkg.com/@icons/material/svg/floppy.svg" width="24" height="24"> | `FloppyIcon`
  890. <img src="https://unpkg.com/@icons/material/svg/flower.svg" width="24" height="24"> | `FlowerIcon`
  891. <img src="https://unpkg.com/@icons/material/svg/folder-account.svg" width="24" height="24"> | `FolderAccountIcon`
  892. <img src="https://unpkg.com/@icons/material/svg/folder-download.svg" width="24" height="24"> | `FolderDownloadIcon`
  893. <img src="https://unpkg.com/@icons/material/svg/folder-google-drive.svg" width="24" height="24"> | `FolderGoogleDriveIcon`
  894. <img src="https://unpkg.com/@icons/material/svg/folder.svg" width="24" height="24"> | `FolderIcon`
  895. <img src="https://unpkg.com/@icons/material/svg/folder-image.svg" width="24" height="24"> | `FolderImageIcon`
  896. <img src="https://unpkg.com/@icons/material/svg/folder-key.svg" width="24" height="24"> | `FolderKeyIcon`
  897. <img src="https://unpkg.com/@icons/material/svg/folder-key-network.svg" width="24" height="24"> | `FolderKeyNetworkIcon`
  898. <img src="https://unpkg.com/@icons/material/svg/folder-lock.svg" width="24" height="24"> | `FolderLockIcon`
  899. <img src="https://unpkg.com/@icons/material/svg/folder-lock-open.svg" width="24" height="24"> | `FolderLockOpenIcon`
  900. <img src="https://unpkg.com/@icons/material/svg/folder-move.svg" width="24" height="24"> | `FolderMoveIcon`
  901. <img src="https://unpkg.com/@icons/material/svg/folder-multiple.svg" width="24" height="24"> | `FolderMultipleIcon`
  902. <img src="https://unpkg.com/@icons/material/svg/folder-multiple-image.svg" width="24" height="24"> | `FolderMultipleImageIcon`
  903. <img src="https://unpkg.com/@icons/material/svg/folder-multiple-outline.svg" width="24" height="24"> | `FolderMultipleOutlineIcon`
  904. <img src="https://unpkg.com/@icons/material/svg/folder-network.svg" width="24" height="24"> | `FolderNetworkIcon`
  905. <img src="https://unpkg.com/@icons/material/svg/folder-open.svg" width="24" height="24"> | `FolderOpenIcon`
  906. <img src="https://unpkg.com/@icons/material/svg/folder-outline.svg" width="24" height="24"> | `FolderOutlineIcon`
  907. <img src="https://unpkg.com/@icons/material/svg/folder-plus.svg" width="24" height="24"> | `FolderPlusIcon`
  908. <img src="https://unpkg.com/@icons/material/svg/folder-remove.svg" width="24" height="24"> | `FolderRemoveIcon`
  909. <img src="https://unpkg.com/@icons/material/svg/folder-star.svg" width="24" height="24"> | `FolderStarIcon`
  910. <img src="https://unpkg.com/@icons/material/svg/folder-upload.svg" width="24" height="24"> | `FolderUploadIcon`
  911. <img src="https://unpkg.com/@icons/material/svg/font-awesome.svg" width="24" height="24"> | `FontAwesomeIcon`
  912. <img src="https://unpkg.com/@icons/material/svg/food-apple.svg" width="24" height="24"> | `FoodAppleIcon`
  913. <img src="https://unpkg.com/@icons/material/svg/food-croissant.svg" width="24" height="24"> | `FoodCroissantIcon`
  914. <img src="https://unpkg.com/@icons/material/svg/food-fork-drink.svg" width="24" height="24"> | `FoodForkDrinkIcon`
  915. <img src="https://unpkg.com/@icons/material/svg/food.svg" width="24" height="24"> | `FoodIcon`
  916. <img src="https://unpkg.com/@icons/material/svg/food-off.svg" width="24" height="24"> | `FoodOffIcon`
  917. <img src="https://unpkg.com/@icons/material/svg/food-variant.svg" width="24" height="24"> | `FoodVariantIcon`
  918. <img src="https://unpkg.com/@icons/material/svg/football-australian.svg" width="24" height="24"> | `FootballAustralianIcon`
  919. <img src="https://unpkg.com/@icons/material/svg/football-helmet.svg" width="24" height="24"> | `FootballHelmetIcon`
  920. <img src="https://unpkg.com/@icons/material/svg/football.svg" width="24" height="24"> | `FootballIcon`
  921. <img src="https://unpkg.com/@icons/material/svg/forklift.svg" width="24" height="24"> | `ForkliftIcon`
  922. <img src="https://unpkg.com/@icons/material/svg/format-align-bottom.svg" width="24" height="24"> | `FormatAlignBottomIcon`
  923. <img src="https://unpkg.com/@icons/material/svg/format-align-center.svg" width="24" height="24"> | `FormatAlignCenterIcon`
  924. <img src="https://unpkg.com/@icons/material/svg/format-align-justify.svg" width="24" height="24"> | `FormatAlignJustifyIcon`
  925. <img src="https://unpkg.com/@icons/material/svg/format-align-left.svg" width="24" height="24"> | `FormatAlignLeftIcon`
  926. <img src="https://unpkg.com/@icons/material/svg/format-align-middle.svg" width="24" height="24"> | `FormatAlignMiddleIcon`
  927. <img src="https://unpkg.com/@icons/material/svg/format-align-right.svg" width="24" height="24"> | `FormatAlignRightIcon`
  928. <img src="https://unpkg.com/@icons/material/svg/format-align-top.svg" width="24" height="24"> | `FormatAlignTopIcon`
  929. <img src="https://unpkg.com/@icons/material/svg/format-annotation-plus.svg" width="24" height="24"> | `FormatAnnotationPlusIcon`
  930. <img src="https://unpkg.com/@icons/material/svg/format-bold.svg" width="24" height="24"> | `FormatBoldIcon`
  931. <img src="https://unpkg.com/@icons/material/svg/format-clear.svg" width="24" height="24"> | `FormatClearIcon`
  932. <img src="https://unpkg.com/@icons/material/svg/format-color-fill.svg" width="24" height="24"> | `FormatColorFillIcon`
  933. <img src="https://unpkg.com/@icons/material/svg/format-color-text.svg" width="24" height="24"> | `FormatColorTextIcon`
  934. <img src="https://unpkg.com/@icons/material/svg/format-float-center.svg" width="24" height="24"> | `FormatFloatCenterIcon`
  935. <img src="https://unpkg.com/@icons/material/svg/format-float-left.svg" width="24" height="24"> | `FormatFloatLeftIcon`
  936. <img src="https://unpkg.com/@icons/material/svg/format-float-none.svg" width="24" height="24"> | `FormatFloatNoneIcon`
  937. <img src="https://unpkg.com/@icons/material/svg/format-float-right.svg" width="24" height="24"> | `FormatFloatRightIcon`
  938. <img src="https://unpkg.com/@icons/material/svg/format-font.svg" width="24" height="24"> | `FormatFontIcon`
  939. <img src="https://unpkg.com/@icons/material/svg/format-header-decrease.svg" width="24" height="24"> | `FormatHeaderDecreaseIcon`
  940. <img src="https://unpkg.com/@icons/material/svg/format-header-equal.svg" width="24" height="24"> | `FormatHeaderEqualIcon`
  941. <img src="https://unpkg.com/@icons/material/svg/format-header-increase.svg" width="24" height="24"> | `FormatHeaderIncreaseIcon`
  942. <img src="https://unpkg.com/@icons/material/svg/format-header-pound.svg" width="24" height="24"> | `FormatHeaderPoundIcon`
  943. <img src="https://unpkg.com/@icons/material/svg/format-header-1.svg" width="24" height="24"> | `FormatHeader_1Icon`
  944. <img src="https://unpkg.com/@icons/material/svg/format-header-2.svg" width="24" height="24"> | `FormatHeader_2Icon`
  945. <img src="https://unpkg.com/@icons/material/svg/format-header-3.svg" width="24" height="24"> | `FormatHeader_3Icon`
  946. <img src="https://unpkg.com/@icons/material/svg/format-header-4.svg" width="24" height="24"> | `FormatHeader_4Icon`
  947. <img src="https://unpkg.com/@icons/material/svg/format-header-5.svg" width="24" height="24"> | `FormatHeader_5Icon`
  948. <img src="https://unpkg.com/@icons/material/svg/format-header-6.svg" width="24" height="24"> | `FormatHeader_6Icon`
  949. <img src="https://unpkg.com/@icons/material/svg/format-horizontal-align-center.svg" width="24" height="24"> | `FormatHorizontalAlignCenterIcon`
  950. <img src="https://unpkg.com/@icons/material/svg/format-horizontal-align-left.svg" width="24" height="24"> | `FormatHorizontalAlignLeftIcon`
  951. <img src="https://unpkg.com/@icons/material/svg/format-horizontal-align-right.svg" width="24" height="24"> | `FormatHorizontalAlignRightIcon`
  952. <img src="https://unpkg.com/@icons/material/svg/format-indent-decrease.svg" width="24" height="24"> | `FormatIndentDecreaseIcon`
  953. <img src="https://unpkg.com/@icons/material/svg/format-indent-increase.svg" width="24" height="24"> | `FormatIndentIncreaseIcon`
  954. <img src="https://unpkg.com/@icons/material/svg/format-italic.svg" width="24" height="24"> | `FormatItalicIcon`
  955. <img src="https://unpkg.com/@icons/material/svg/format-line-spacing.svg" width="24" height="24"> | `FormatLineSpacingIcon`
  956. <img src="https://unpkg.com/@icons/material/svg/format-line-style.svg" width="24" height="24"> | `FormatLineStyleIcon`
  957. <img src="https://unpkg.com/@icons/material/svg/format-line-weight.svg" width="24" height="24"> | `FormatLineWeightIcon`
  958. <img src="https://unpkg.com/@icons/material/svg/format-list-bulleted.svg" width="24" height="24"> | `FormatListBulletedIcon`
  959. <img src="https://unpkg.com/@icons/material/svg/format-list-bulleted-type.svg" width="24" height="24"> | `FormatListBulletedTypeIcon`
  960. <img src="https://unpkg.com/@icons/material/svg/format-list-checks.svg" width="24" height="24"> | `FormatListChecksIcon`
  961. <img src="https://unpkg.com/@icons/material/svg/format-list-numbers.svg" width="24" height="24"> | `FormatListNumbersIcon`
  962. <img src="https://unpkg.com/@icons/material/svg/format-page-break.svg" width="24" height="24"> | `FormatPageBreakIcon`
  963. <img src="https://unpkg.com/@icons/material/svg/format-paint.svg" width="24" height="24"> | `FormatPaintIcon`
  964. <img src="https://unpkg.com/@icons/material/svg/format-paragraph.svg" width="24" height="24"> | `FormatParagraphIcon`
  965. <img src="https://unpkg.com/@icons/material/svg/format-pilcrow.svg" width="24" height="24"> | `FormatPilcrowIcon`
  966. <img src="https://unpkg.com/@icons/material/svg/format-quote-close.svg" width="24" height="24"> | `FormatQuoteCloseIcon`
  967. <img src="https://unpkg.com/@icons/material/svg/format-quote-open.svg" width="24" height="24"> | `FormatQuoteOpenIcon`
  968. <img src="https://unpkg.com/@icons/material/svg/format-rotate-90.svg" width="24" height="24"> | `FormatRotate_90Icon`
  969. <img src="https://unpkg.com/@icons/material/svg/format-section.svg" width="24" height="24"> | `FormatSectionIcon`
  970. <img src="https://unpkg.com/@icons/material/svg/format-size.svg" width="24" height="24"> | `FormatSizeIcon`
  971. <img src="https://unpkg.com/@icons/material/svg/format-strikethrough.svg" width="24" height="24"> | `FormatStrikethroughIcon`
  972. <img src="https://unpkg.com/@icons/material/svg/format-strikethrough-variant.svg" width="24" height="24"> | `FormatStrikethroughVariantIcon`
  973. <img src="https://unpkg.com/@icons/material/svg/format-subscript.svg" width="24" height="24"> | `FormatSubscriptIcon`
  974. <img src="https://unpkg.com/@icons/material/svg/format-superscript.svg" width="24" height="24"> | `FormatSuperscriptIcon`
  975. <img src="https://unpkg.com/@icons/material/svg/format-text.svg" width="24" height="24"> | `FormatTextIcon`
  976. <img src="https://unpkg.com/@icons/material/svg/format-textdirection-l-to-r.svg" width="24" height="24"> | `FormatTextdirectionLToRIcon`
  977. <img src="https://unpkg.com/@icons/material/svg/format-textdirection-r-to-l.svg" width="24" height="24"> | `FormatTextdirectionRToLIcon`
  978. <img src="https://unpkg.com/@icons/material/svg/format-title.svg" width="24" height="24"> | `FormatTitleIcon`
  979. <img src="https://unpkg.com/@icons/material/svg/format-underline.svg" width="24" height="24"> | `FormatUnderlineIcon`
  980. <img src="https://unpkg.com/@icons/material/svg/format-vertical-align-bottom.svg" width="24" height="24"> | `FormatVerticalAlignBottomIcon`
  981. <img src="https://unpkg.com/@icons/material/svg/format-vertical-align-center.svg" width="24" height="24"> | `FormatVerticalAlignCenterIcon`
  982. <img src="https://unpkg.com/@icons/material/svg/format-vertical-align-top.svg" width="24" height="24"> | `FormatVerticalAlignTopIcon`
  983. <img src="https://unpkg.com/@icons/material/svg/format-wrap-inline.svg" width="24" height="24"> | `FormatWrapInlineIcon`
  984. <img src="https://unpkg.com/@icons/material/svg/format-wrap-square.svg" width="24" height="24"> | `FormatWrapSquareIcon`
  985. <img src="https://unpkg.com/@icons/material/svg/format-wrap-tight.svg" width="24" height="24"> | `FormatWrapTightIcon`
  986. <img src="https://unpkg.com/@icons/material/svg/format-wrap-top-bottom.svg" width="24" height="24"> | `FormatWrapTopBottomIcon`
  987. <img src="https://unpkg.com/@icons/material/svg/forum.svg" width="24" height="24"> | `ForumIcon`
  988. <img src="https://unpkg.com/@icons/material/svg/forum-outline.svg" width="24" height="24"> | `ForumOutlineIcon`
  989. <img src="https://unpkg.com/@icons/material/svg/forward.svg" width="24" height="24"> | `ForwardIcon`
  990. <img src="https://unpkg.com/@icons/material/svg/foursquare.svg" width="24" height="24"> | `FoursquareIcon`
  991. <img src="https://unpkg.com/@icons/material/svg/fridge-filled-bottom.svg" width="24" height="24"> | `FridgeFilledBottomIcon`
  992. <img src="https://unpkg.com/@icons/material/svg/fridge-filled.svg" width="24" height="24"> | `FridgeFilledIcon`
  993. <img src="https://unpkg.com/@icons/material/svg/fridge-filled-top.svg" width="24" height="24"> | `FridgeFilledTopIcon`
  994. <img src="https://unpkg.com/@icons/material/svg/fridge.svg" width="24" height="24"> | `FridgeIcon`
  995. <img src="https://unpkg.com/@icons/material/svg/fuel.svg" width="24" height="24"> | `FuelIcon`
  996. <img src="https://unpkg.com/@icons/material/svg/fullscreen-exit.svg" width="24" height="24"> | `FullscreenExitIcon`
  997. <img src="https://unpkg.com/@icons/material/svg/fullscreen.svg" width="24" height="24"> | `FullscreenIcon`
  998. <img src="https://unpkg.com/@icons/material/svg/function.svg" width="24" height="24"> | `FunctionIcon`
  999. <img src="https://unpkg.com/@icons/material/svg/function-variant.svg" width="24" height="24"> | `FunctionVariantIcon`
  1000. <img src="https://unpkg.com/@icons/material/svg/gamepad.svg" width="24" height="24"> | `GamepadIcon`
  1001. <img src="https://unpkg.com/@icons/material/svg/gamepad-variant.svg" width="24" height="24"> | `GamepadVariantIcon`
  1002. <img src="https://unpkg.com/@icons/material/svg/garage-alert.svg" width="24" height="24"> | `GarageAlertIcon`
  1003. <img src="https://unpkg.com/@icons/material/svg/garage.svg" width="24" height="24"> | `GarageIcon`
  1004. <img src="https://unpkg.com/@icons/material/svg/garage-open.svg" width="24" height="24"> | `GarageOpenIcon`
  1005. <img src="https://unpkg.com/@icons/material/svg/gas-cylinder.svg" width="24" height="24"> | `GasCylinderIcon`
  1006. <img src="https://unpkg.com/@icons/material/svg/gas-station.svg" width="24" height="24"> | `GasStationIcon`
  1007. <img src="https://unpkg.com/@icons/material/svg/gate.svg" width="24" height="24"> | `GateIcon`
  1008. <img src="https://unpkg.com/@icons/material/svg/gauge-empty.svg" width="24" height="24"> | `GaugeEmptyIcon`
  1009. <img src="https://unpkg.com/@icons/material/svg/gauge-full.svg" width="24" height="24"> | `GaugeFullIcon`
  1010. <img src="https://unpkg.com/@icons/material/svg/gauge.svg" width="24" height="24"> | `GaugeIcon`
  1011. <img src="https://unpkg.com/@icons/material/svg/gauge-low.svg" width="24" height="24"> | `GaugeLowIcon`
  1012. <img src="https://unpkg.com/@icons/material/svg/gavel.svg" width="24" height="24"> | `GavelIcon`
  1013. <img src="https://unpkg.com/@icons/material/svg/gender-female.svg" width="24" height="24"> | `GenderFemaleIcon`
  1014. <img src="https://unpkg.com/@icons/material/svg/gender-male-female.svg" width="24" height="24"> | `GenderMaleFemaleIcon`
  1015. <img src="https://unpkg.com/@icons/material/svg/gender-male.svg" width="24" height="24"> | `GenderMaleIcon`
  1016. <img src="https://unpkg.com/@icons/material/svg/gender-transgender.svg" width="24" height="24"> | `GenderTransgenderIcon`
  1017. <img src="https://unpkg.com/@icons/material/svg/gesture-double-tap.svg" width="24" height="24"> | `GestureDoubleTapIcon`
  1018. <img src="https://unpkg.com/@icons/material/svg/gesture.svg" width="24" height="24"> | `GestureIcon`
  1019. <img src="https://unpkg.com/@icons/material/svg/gesture-swipe-down.svg" width="24" height="24"> | `GestureSwipeDownIcon`
  1020. <img src="https://unpkg.com/@icons/material/svg/gesture-swipe-left.svg" width="24" height="24"> | `GestureSwipeLeftIcon`
  1021. <img src="https://unpkg.com/@icons/material/svg/gesture-swipe-right.svg" width="24" height="24"> | `GestureSwipeRightIcon`
  1022. <img src="https://unpkg.com/@icons/material/svg/gesture-swipe-up.svg" width="24" height="24"> | `GestureSwipeUpIcon`
  1023. <img src="https://unpkg.com/@icons/material/svg/gesture-tap.svg" width="24" height="24"> | `GestureTapIcon`
  1024. <img src="https://unpkg.com/@icons/material/svg/gesture-two-double-tap.svg" width="24" height="24"> | `GestureTwoDoubleTapIcon`
  1025. <img src="https://unpkg.com/@icons/material/svg/gesture-two-tap.svg" width="24" height="24"> | `GestureTwoTapIcon`
  1026. <img src="https://unpkg.com/@icons/material/svg/ghost.svg" width="24" height="24"> | `GhostIcon`
  1027. <img src="https://unpkg.com/@icons/material/svg/gift.svg" width="24" height="24"> | `GiftIcon`
  1028. <img src="https://unpkg.com/@icons/material/svg/git.svg" width="24" height="24"> | `GitIcon`
  1029. <img src="https://unpkg.com/@icons/material/svg/github-box.svg" width="24" height="24"> | `GithubBoxIcon`
  1030. <img src="https://unpkg.com/@icons/material/svg/github-circle.svg" width="24" height="24"> | `GithubCircleIcon`
  1031. <img src="https://unpkg.com/@icons/material/svg/github-face.svg" width="24" height="24"> | `GithubFaceIcon`
  1032. <img src="https://unpkg.com/@icons/material/svg/glass-cocktail.svg" width="24" height="24"> | `GlassCocktailIcon`
  1033. <img src="https://unpkg.com/@icons/material/svg/glass-flute.svg" width="24" height="24"> | `GlassFluteIcon`
  1034. <img src="https://unpkg.com/@icons/material/svg/glass-mug.svg" width="24" height="24"> | `GlassMugIcon`
  1035. <img src="https://unpkg.com/@icons/material/svg/glass-stange.svg" width="24" height="24"> | `GlassStangeIcon`
  1036. <img src="https://unpkg.com/@icons/material/svg/glass-tulip.svg" width="24" height="24"> | `GlassTulipIcon`
  1037. <img src="https://unpkg.com/@icons/material/svg/glass-wine.svg" width="24" height="24"> | `GlassWineIcon`
  1038. <img src="https://unpkg.com/@icons/material/svg/glassdoor.svg" width="24" height="24"> | `GlassdoorIcon`
  1039. <img src="https://unpkg.com/@icons/material/svg/glasses.svg" width="24" height="24"> | `GlassesIcon`
  1040. <img src="https://unpkg.com/@icons/material/svg/gmail.svg" width="24" height="24"> | `GmailIcon`
  1041. <img src="https://unpkg.com/@icons/material/svg/gnome.svg" width="24" height="24"> | `GnomeIcon`
  1042. <img src="https://unpkg.com/@icons/material/svg/golf.svg" width="24" height="24"> | `GolfIcon`
  1043. <img src="https://unpkg.com/@icons/material/svg/gondola.svg" width="24" height="24"> | `GondolaIcon`
  1044. <img src="https://unpkg.com/@icons/material/svg/google-analytics.svg" width="24" height="24"> | `GoogleAnalyticsIcon`
  1045. <img src="https://unpkg.com/@icons/material/svg/google-assistant.svg" width="24" height="24"> | `GoogleAssistantIcon`
  1046. <img src="https://unpkg.com/@icons/material/svg/google-cardboard.svg" width="24" height="24"> | `GoogleCardboardIcon`
  1047. <img src="https://unpkg.com/@icons/material/svg/google-chrome.svg" width="24" height="24"> | `GoogleChromeIcon`
  1048. <img src="https://unpkg.com/@icons/material/svg/google-circles-communities.svg" width="24" height="24"> | `GoogleCirclesCommunitiesIcon`
  1049. <img src="https://unpkg.com/@icons/material/svg/google-circles-extended.svg" width="24" height="24"> | `GoogleCirclesExtendedIcon`
  1050. <img src="https://unpkg.com/@icons/material/svg/google-circles-group.svg" width="24" height="24"> | `GoogleCirclesGroupIcon`
  1051. <img src="https://unpkg.com/@icons/material/svg/google-circles.svg" width="24" height="24"> | `GoogleCirclesIcon`
  1052. <img src="https://unpkg.com/@icons/material/svg/google-controller.svg" width="24" height="24"> | `GoogleControllerIcon`
  1053. <img src="https://unpkg.com/@icons/material/svg/google-controller-off.svg" width="24" height="24"> | `GoogleControllerOffIcon`
  1054. <img src="https://unpkg.com/@icons/material/svg/google-drive.svg" width="24" height="24"> | `GoogleDriveIcon`
  1055. <img src="https://unpkg.com/@icons/material/svg/google-earth.svg" width="24" height="24"> | `GoogleEarthIcon`
  1056. <img src="https://unpkg.com/@icons/material/svg/google-glass.svg" width="24" height="24"> | `GoogleGlassIcon`
  1057. <img src="https://unpkg.com/@icons/material/svg/google-home.svg" width="24" height="24"> | `GoogleHomeIcon`
  1058. <img src="https://unpkg.com/@icons/material/svg/google.svg" width="24" height="24"> | `GoogleIcon`
  1059. <img src="https://unpkg.com/@icons/material/svg/google-keep.svg" width="24" height="24"> | `GoogleKeepIcon`
  1060. <img src="https://unpkg.com/@icons/material/svg/google-maps.svg" width="24" height="24"> | `GoogleMapsIcon`
  1061. <img src="https://unpkg.com/@icons/material/svg/google-nearby.svg" width="24" height="24"> | `GoogleNearbyIcon`
  1062. <img src="https://unpkg.com/@icons/material/svg/google-pages.svg" width="24" height="24"> | `GooglePagesIcon`
  1063. <img src="https://unpkg.com/@icons/material/svg/google-photos.svg" width="24" height="24"> | `GooglePhotosIcon`
  1064. <img src="https://unpkg.com/@icons/material/svg/google-physical-web.svg" width="24" height="24"> | `GooglePhysicalWebIcon`
  1065. <img src="https://unpkg.com/@icons/material/svg/google-play.svg" width="24" height="24"> | `GooglePlayIcon`
  1066. <img src="https://unpkg.com/@icons/material/svg/google-plus-box.svg" width="24" height="24"> | `GooglePlusBoxIcon`
  1067. <img src="https://unpkg.com/@icons/material/svg/google-plus.svg" width="24" height="24"> | `GooglePlusIcon`
  1068. <img src="https://unpkg.com/@icons/material/svg/google-translate.svg" width="24" height="24"> | `GoogleTranslateIcon`
  1069. <img src="https://unpkg.com/@icons/material/svg/google-wallet.svg" width="24" height="24"> | `GoogleWalletIcon`
  1070. <img src="https://unpkg.com/@icons/material/svg/gpu.svg" width="24" height="24"> | `GpuIcon`
  1071. <img src="https://unpkg.com/@icons/material/svg/gradient.svg" width="24" height="24"> | `GradientIcon`
  1072. <img src="https://unpkg.com/@icons/material/svg/graphql.svg" width="24" height="24"> | `GraphqlIcon`
  1073. <img src="https://unpkg.com/@icons/material/svg/grease-pencil.svg" width="24" height="24"> | `GreasePencilIcon`
  1074. <img src="https://unpkg.com/@icons/material/svg/grid.svg" width="24" height="24"> | `GridIcon`
  1075. <img src="https://unpkg.com/@icons/material/svg/grid-large.svg" width="24" height="24"> | `GridLargeIcon`
  1076. <img src="https://unpkg.com/@icons/material/svg/grid-off.svg" width="24" height="24"> | `GridOffIcon`
  1077. <img src="https://unpkg.com/@icons/material/svg/group.svg" width="24" height="24"> | `GroupIcon`
  1078. <img src="https://unpkg.com/@icons/material/svg/guitar-acoustic.svg" width="24" height="24"> | `GuitarAcousticIcon`
  1079. <img src="https://unpkg.com/@icons/material/svg/guitar-electric.svg" width="24" height="24"> | `GuitarElectricIcon`
  1080. <img src="https://unpkg.com/@icons/material/svg/guitar-pick.svg" width="24" height="24"> | `GuitarPickIcon`
  1081. <img src="https://unpkg.com/@icons/material/svg/guitar-pick-outline.svg" width="24" height="24"> | `GuitarPickOutlineIcon`
  1082. <img src="https://unpkg.com/@icons/material/svg/guy-fawkes-mask.svg" width="24" height="24"> | `GuyFawkesMaskIcon`
  1083. <img src="https://unpkg.com/@icons/material/svg/hackernews.svg" width="24" height="24"> | `HackernewsIcon`
  1084. <img src="https://unpkg.com/@icons/material/svg/hamburger.svg" width="24" height="24"> | `HamburgerIcon`
  1085. <img src="https://unpkg.com/@icons/material/svg/hand-pointing-right.svg" width="24" height="24"> | `HandPointingRightIcon`
  1086. <img src="https://unpkg.com/@icons/material/svg/hanger.svg" width="24" height="24"> | `HangerIcon`
  1087. <img src="https://unpkg.com/@icons/material/svg/hangouts.svg" width="24" height="24"> | `HangoutsIcon`
  1088. <img src="https://unpkg.com/@icons/material/svg/harddisk.svg" width="24" height="24"> | `HarddiskIcon`
  1089. <img src="https://unpkg.com/@icons/material/svg/headphones-box.svg" width="24" height="24"> | `HeadphonesBoxIcon`
  1090. <img src="https://unpkg.com/@icons/material/svg/headphones.svg" width="24" height="24"> | `HeadphonesIcon`
  1091. <img src="https://unpkg.com/@icons/material/svg/headphones-off.svg" width="24" height="24"> | `HeadphonesOffIcon`
  1092. <img src="https://unpkg.com/@icons/material/svg/headphones-settings.svg" width="24" height="24"> | `HeadphonesSettingsIcon`
  1093. <img src="https://unpkg.com/@icons/material/svg/headset-dock.svg" width="24" height="24"> | `HeadsetDockIcon`
  1094. <img src="https://unpkg.com/@icons/material/svg/headset.svg" width="24" height="24"> | `HeadsetIcon`
  1095. <img src="https://unpkg.com/@icons/material/svg/headset-off.svg" width="24" height="24"> | `HeadsetOffIcon`
  1096. <img src="https://unpkg.com/@icons/material/svg/heart-box.svg" width="24" height="24"> | `HeartBoxIcon`
  1097. <img src="https://unpkg.com/@icons/material/svg/heart-box-outline.svg" width="24" height="24"> | `HeartBoxOutlineIcon`
  1098. <img src="https://unpkg.com/@icons/material/svg/heart-broken.svg" width="24" height="24"> | `HeartBrokenIcon`
  1099. <img src="https://unpkg.com/@icons/material/svg/heart-half-full.svg" width="24" height="24"> | `HeartHalfFullIcon`
  1100. <img src="https://unpkg.com/@icons/material/svg/heart-half.svg" width="24" height="24"> | `HeartHalfIcon`
  1101. <img src="https://unpkg.com/@icons/material/svg/heart-half-outline.svg" width="24" height="24"> | `HeartHalfOutlineIcon`
  1102. <img src="https://unpkg.com/@icons/material/svg/heart.svg" width="24" height="24"> | `HeartIcon`
  1103. <img src="https://unpkg.com/@icons/material/svg/heart-off.svg" width="24" height="24"> | `HeartOffIcon`
  1104. <img src="https://unpkg.com/@icons/material/svg/heart-outline.svg" width="24" height="24"> | `HeartOutlineIcon`
  1105. <img src="https://unpkg.com/@icons/material/svg/heart-pulse.svg" width="24" height="24"> | `HeartPulseIcon`
  1106. <img src="https://unpkg.com/@icons/material/svg/help-box.svg" width="24" height="24"> | `HelpBoxIcon`
  1107. <img src="https://unpkg.com/@icons/material/svg/help-circle.svg" width="24" height="24"> | `HelpCircleIcon`
  1108. <img src="https://unpkg.com/@icons/material/svg/help-circle-outline.svg" width="24" height="24"> | `HelpCircleOutlineIcon`
  1109. <img src="https://unpkg.com/@icons/material/svg/help.svg" width="24" height="24"> | `HelpIcon`
  1110. <img src="https://unpkg.com/@icons/material/svg/help-network.svg" width="24" height="24"> | `HelpNetworkIcon`
  1111. <img src="https://unpkg.com/@icons/material/svg/hexagon.svg" width="24" height="24"> | `HexagonIcon`
  1112. <img src="https://unpkg.com/@icons/material/svg/hexagon-multiple.svg" width="24" height="24"> | `HexagonMultipleIcon`
  1113. <img src="https://unpkg.com/@icons/material/svg/hexagon-outline.svg" width="24" height="24"> | `HexagonOutlineIcon`
  1114. <img src="https://unpkg.com/@icons/material/svg/high-definition-box.svg" width="24" height="24"> | `HighDefinitionBoxIcon`
  1115. <img src="https://unpkg.com/@icons/material/svg/high-definition.svg" width="24" height="24"> | `HighDefinitionIcon`
  1116. <img src="https://unpkg.com/@icons/material/svg/highway.svg" width="24" height="24"> | `HighwayIcon`
  1117. <img src="https://unpkg.com/@icons/material/svg/history.svg" width="24" height="24"> | `HistoryIcon`
  1118. <img src="https://unpkg.com/@icons/material/svg/hockey-puck.svg" width="24" height="24"> | `HockeyPuckIcon`
  1119. <img src="https://unpkg.com/@icons/material/svg/hockey-sticks.svg" width="24" height="24"> | `HockeySticksIcon`
  1120. <img src="https://unpkg.com/@icons/material/svg/hololens.svg" width="24" height="24"> | `HololensIcon`
  1121. <img src="https://unpkg.com/@icons/material/svg/home-account.svg" width="24" height="24"> | `HomeAccountIcon`
  1122. <img src="https://unpkg.com/@icons/material/svg/home-alert.svg" width="24" height="24"> | `HomeAlertIcon`
  1123. <img src="https://unpkg.com/@icons/material/svg/home-assistant.svg" width="24" height="24"> | `HomeAssistantIcon`
  1124. <img src="https://unpkg.com/@icons/material/svg/home-automation.svg" width="24" height="24"> | `HomeAutomationIcon`
  1125. <img src="https://unpkg.com/@icons/material/svg/home-circle.svg" width="24" height="24"> | `HomeCircleIcon`
  1126. <img src="https://unpkg.com/@icons/material/svg/home-currency-usd.svg" width="24" height="24"> | `HomeCurrencyUsdIcon`
  1127. <img src="https://unpkg.com/@icons/material/svg/home-heart.svg" width="24" height="24"> | `HomeHeartIcon`
  1128. <img src="https://unpkg.com/@icons/material/svg/home.svg" width="24" height="24"> | `HomeIcon`
  1129. <img src="https://unpkg.com/@icons/material/svg/home-map-marker.svg" width="24" height="24"> | `HomeMapMarkerIcon`
  1130. <img src="https://unpkg.com/@icons/material/svg/home-modern.svg" width="24" height="24"> | `HomeModernIcon`
  1131. <img src="https://unpkg.com/@icons/material/svg/home-outline.svg" width="24" height="24"> | `HomeOutlineIcon`
  1132. <img src="https://unpkg.com/@icons/material/svg/home-variant.svg" width="24" height="24"> | `HomeVariantIcon`
  1133. <img src="https://unpkg.com/@icons/material/svg/hook.svg" width="24" height="24"> | `HookIcon`
  1134. <img src="https://unpkg.com/@icons/material/svg/hook-off.svg" width="24" height="24"> | `HookOffIcon`
  1135. <img src="https://unpkg.com/@icons/material/svg/hops.svg" width="24" height="24"> | `HopsIcon`
  1136. <img src="https://unpkg.com/@icons/material/svg/hospital-building.svg" width="24" height="24"> | `HospitalBuildingIcon`
  1137. <img src="https://unpkg.com/@icons/material/svg/hospital.svg" width="24" height="24"> | `HospitalIcon`
  1138. <img src="https://unpkg.com/@icons/material/svg/hospital-marker.svg" width="24" height="24"> | `HospitalMarkerIcon`
  1139. <img src="https://unpkg.com/@icons/material/svg/hot-tub.svg" width="24" height="24"> | `HotTubIcon`
  1140. <img src="https://unpkg.com/@icons/material/svg/hotel.svg" width="24" height="24"> | `HotelIcon`
  1141. <img src="https://unpkg.com/@icons/material/svg/houzz-box.svg" width="24" height="24"> | `HouzzBoxIcon`
  1142. <img src="https://unpkg.com/@icons/material/svg/houzz.svg" width="24" height="24"> | `HouzzIcon`
  1143. <img src="https://unpkg.com/@icons/material/svg/hulu.svg" width="24" height="24"> | `HuluIcon`
  1144. <img src="https://unpkg.com/@icons/material/svg/human-child.svg" width="24" height="24"> | `HumanChildIcon`
  1145. <img src="https://unpkg.com/@icons/material/svg/human-female.svg" width="24" height="24"> | `HumanFemaleIcon`
  1146. <img src="https://unpkg.com/@icons/material/svg/human-greeting.svg" width="24" height="24"> | `HumanGreetingIcon`
  1147. <img src="https://unpkg.com/@icons/material/svg/human-handsdown.svg" width="24" height="24"> | `HumanHandsdownIcon`
  1148. <img src="https://unpkg.com/@icons/material/svg/human-handsup.svg" width="24" height="24"> | `HumanHandsupIcon`
  1149. <img src="https://unpkg.com/@icons/material/svg/human.svg" width="24" height="24"> | `HumanIcon`
  1150. <img src="https://unpkg.com/@icons/material/svg/human-male-female.svg" width="24" height="24"> | `HumanMaleFemaleIcon`
  1151. <img src="https://unpkg.com/@icons/material/svg/human-male.svg" width="24" height="24"> | `HumanMaleIcon`
  1152. <img src="https://unpkg.com/@icons/material/svg/human-pregnant.svg" width="24" height="24"> | `HumanPregnantIcon`
  1153. <img src="https://unpkg.com/@icons/material/svg/humble-bundle.svg" width="24" height="24"> | `HumbleBundleIcon`
  1154. <img src="https://unpkg.com/@icons/material/svg/ice-cream.svg" width="24" height="24"> | `IceCreamIcon`
  1155. <img src="https://unpkg.com/@icons/material/svg/image-album.svg" width="24" height="24"> | `ImageAlbumIcon`
  1156. <img src="https://unpkg.com/@icons/material/svg/image-area-close.svg" width="24" height="24"> | `ImageAreaCloseIcon`
  1157. <img src="https://unpkg.com/@icons/material/svg/image-area.svg" width="24" height="24"> | `ImageAreaIcon`
  1158. <img src="https://unpkg.com/@icons/material/svg/image-broken.svg" width="24" height="24"> | `ImageBrokenIcon`
  1159. <img src="https://unpkg.com/@icons/material/svg/image-broken-variant.svg" width="24" height="24"> | `ImageBrokenVariantIcon`
  1160. <img src="https://unpkg.com/@icons/material/svg/image-filter-black-white.svg" width="24" height="24"> | `ImageFilterBlackWhiteIcon`
  1161. <img src="https://unpkg.com/@icons/material/svg/image-filter-center-focus.svg" width="24" height="24"> | `ImageFilterCenterFocusIcon`
  1162. <img src="https://unpkg.com/@icons/material/svg/image-filter-center-focus-weak.svg" width="24" height="24"> | `ImageFilterCenterFocusWeakIcon`
  1163. <img src="https://unpkg.com/@icons/material/svg/image-filter-drama.svg" width="24" height="24"> | `ImageFilterDramaIcon`
  1164. <img src="https://unpkg.com/@icons/material/svg/image-filter-frames.svg" width="24" height="24"> | `ImageFilterFramesIcon`
  1165. <img src="https://unpkg.com/@icons/material/svg/image-filter-hdr.svg" width="24" height="24"> | `ImageFilterHdrIcon`
  1166. <img src="https://unpkg.com/@icons/material/svg/image-filter.svg" width="24" height="24"> | `ImageFilterIcon`
  1167. <img src="https://unpkg.com/@icons/material/svg/image-filter-none.svg" width="24" height="24"> | `ImageFilterNoneIcon`
  1168. <img src="https://unpkg.com/@icons/material/svg/image-filter-tilt-shift.svg" width="24" height="24"> | `ImageFilterTiltShiftIcon`
  1169. <img src="https://unpkg.com/@icons/material/svg/image-filter-vintage.svg" width="24" height="24"> | `ImageFilterVintageIcon`
  1170. <img src="https://unpkg.com/@icons/material/svg/image.svg" width="24" height="24"> | `ImageIcon`
  1171. <img src="https://unpkg.com/@icons/material/svg/image-multiple.svg" width="24" height="24"> | `ImageMultipleIcon`
  1172. <img src="https://unpkg.com/@icons/material/svg/image-off.svg" width="24" height="24"> | `ImageOffIcon`
  1173. <img src="https://unpkg.com/@icons/material/svg/image-plus.svg" width="24" height="24"> | `ImagePlusIcon`
  1174. <img src="https://unpkg.com/@icons/material/svg/import.svg" width="24" height="24"> | `ImportIcon`
  1175. <img src="https://unpkg.com/@icons/material/svg/inbox-arrow-down.svg" width="24" height="24"> | `InboxArrowDownIcon`
  1176. <img src="https://unpkg.com/@icons/material/svg/inbox-arrow-up.svg" width="24" height="24"> | `InboxArrowUpIcon`
  1177. <img src="https://unpkg.com/@icons/material/svg/inbox.svg" width="24" height="24"> | `InboxIcon`
  1178. <img src="https://unpkg.com/@icons/material/svg/inbox-multiple.svg" width="24" height="24"> | `InboxMultipleIcon`
  1179. <img src="https://unpkg.com/@icons/material/svg/incognito.svg" width="24" height="24"> | `IncognitoIcon`
  1180. <img src="https://unpkg.com/@icons/material/svg/infinity.svg" width="24" height="24"> | `InfinityIcon`
  1181. <img src="https://unpkg.com/@icons/material/svg/information.svg" width="24" height="24"> | `InformationIcon`
  1182. <img src="https://unpkg.com/@icons/material/svg/information-outline.svg" width="24" height="24"> | `InformationOutlineIcon`
  1183. <img src="https://unpkg.com/@icons/material/svg/information-variant.svg" width="24" height="24"> | `InformationVariantIcon`
  1184. <img src="https://unpkg.com/@icons/material/svg/instagram.svg" width="24" height="24"> | `InstagramIcon`
  1185. <img src="https://unpkg.com/@icons/material/svg/instapaper.svg" width="24" height="24"> | `InstapaperIcon`
  1186. <img src="https://unpkg.com/@icons/material/svg/internet-explorer.svg" width="24" height="24"> | `InternetExplorerIcon`
  1187. <img src="https://unpkg.com/@icons/material/svg/invert-colors.svg" width="24" height="24"> | `InvertColorsIcon`
  1188. <img src="https://unpkg.com/@icons/material/svg/itunes.svg" width="24" height="24"> | `ItunesIcon`
  1189. <img src="https://unpkg.com/@icons/material/svg/jeepney.svg" width="24" height="24"> | `JeepneyIcon`
  1190. <img src="https://unpkg.com/@icons/material/svg/jira.svg" width="24" height="24"> | `JiraIcon`
  1191. <img src="https://unpkg.com/@icons/material/svg/jquery.svg" width="24" height="24"> | `JqueryIcon`
  1192. <img src="https://unpkg.com/@icons/material/svg/jsfiddle.svg" width="24" height="24"> | `JsfiddleIcon`
  1193. <img src="https://unpkg.com/@icons/material/svg/json.svg" width="24" height="24"> | `JsonIcon`
  1194. <img src="https://unpkg.com/@icons/material/svg/karate.svg" width="24" height="24"> | `KarateIcon`
  1195. <img src="https://unpkg.com/@icons/material/svg/keg.svg" width="24" height="24"> | `KegIcon`
  1196. <img src="https://unpkg.com/@icons/material/svg/kettle.svg" width="24" height="24"> | `KettleIcon`
  1197. <img src="https://unpkg.com/@icons/material/svg/key-change.svg" width="24" height="24"> | `KeyChangeIcon`
  1198. <img src="https://unpkg.com/@icons/material/svg/key.svg" width="24" height="24"> | `KeyIcon`
  1199. <img src="https://unpkg.com/@icons/material/svg/key-minus.svg" width="24" height="24"> | `KeyMinusIcon`
  1200. <img src="https://unpkg.com/@icons/material/svg/key-plus.svg" width="24" height="24"> | `KeyPlusIcon`
  1201. <img src="https://unpkg.com/@icons/material/svg/key-remove.svg" width="24" height="24"> | `KeyRemoveIcon`
  1202. <img src="https://unpkg.com/@icons/material/svg/key-variant.svg" width="24" height="24"> | `KeyVariantIcon`
  1203. <img src="https://unpkg.com/@icons/material/svg/keyboard-backspace.svg" width="24" height="24"> | `KeyboardBackspaceIcon`
  1204. <img src="https://unpkg.com/@icons/material/svg/keyboard-caps.svg" width="24" height="24"> | `KeyboardCapsIcon`
  1205. <img src="https://unpkg.com/@icons/material/svg/keyboard-close.svg" width="24" height="24"> | `KeyboardCloseIcon`
  1206. <img src="https://unpkg.com/@icons/material/svg/keyboard.svg" width="24" height="24"> | `KeyboardIcon`
  1207. <img src="https://unpkg.com/@icons/material/svg/keyboard-off.svg" width="24" height="24"> | `KeyboardOffIcon`
  1208. <img src="https://unpkg.com/@icons/material/svg/keyboard-return.svg" width="24" height="24"> | `KeyboardReturnIcon`
  1209. <img src="https://unpkg.com/@icons/material/svg/keyboard-tab.svg" width="24" height="24"> | `KeyboardTabIcon`
  1210. <img src="https://unpkg.com/@icons/material/svg/keyboard-variant.svg" width="24" height="24"> | `KeyboardVariantIcon`
  1211. <img src="https://unpkg.com/@icons/material/svg/kickstarter.svg" width="24" height="24"> | `KickstarterIcon`
  1212. <img src="https://unpkg.com/@icons/material/svg/kodi.svg" width="24" height="24"> | `KodiIcon`
  1213. <img src="https://unpkg.com/@icons/material/svg/label.svg" width="24" height="24"> | `LabelIcon`
  1214. <img src="https://unpkg.com/@icons/material/svg/label-outline.svg" width="24" height="24"> | `LabelOutlineIcon`
  1215. <img src="https://unpkg.com/@icons/material/svg/ladybug.svg" width="24" height="24"> | `LadybugIcon`
  1216. <img src="https://unpkg.com/@icons/material/svg/lambda.svg" width="24" height="24"> | `LambdaIcon`
  1217. <img src="https://unpkg.com/@icons/material/svg/lamp.svg" width="24" height="24"> | `LampIcon`
  1218. <img src="https://unpkg.com/@icons/material/svg/lan-connect.svg" width="24" height="24"> | `LanConnectIcon`
  1219. <img src="https://unpkg.com/@icons/material/svg/lan-disconnect.svg" width="24" height="24"> | `LanDisconnectIcon`
  1220. <img src="https://unpkg.com/@icons/material/svg/lan.svg" width="24" height="24"> | `LanIcon`
  1221. <img src="https://unpkg.com/@icons/material/svg/lan-pending.svg" width="24" height="24"> | `LanPendingIcon`
  1222. <img src="https://unpkg.com/@icons/material/svg/language-c.svg" width="24" height="24"> | `LanguageCIcon`
  1223. <img src="https://unpkg.com/@icons/material/svg/language-cpp.svg" width="24" height="24"> | `LanguageCppIcon`
  1224. <img src="https://unpkg.com/@icons/material/svg/language-csharp.svg" width="24" height="24"> | `LanguageCsharpIcon`
  1225. <img src="https://unpkg.com/@icons/material/svg/language-css3.svg" width="24" height="24"> | `LanguageCss3Icon`
  1226. <img src="https://unpkg.com/@icons/material/svg/language-go.svg" width="24" height="24"> | `LanguageGoIcon`
  1227. <img src="https://unpkg.com/@icons/material/svg/language-html5.svg" width="24" height="24"> | `LanguageHtml5Icon`
  1228. <img src="https://unpkg.com/@icons/material/svg/language-javascript.svg" width="24" height="24"> | `LanguageJavascriptIcon`
  1229. <img src="https://unpkg.com/@icons/material/svg/language-lua.svg" width="24" height="24"> | `LanguageLuaIcon`
  1230. <img src="https://unpkg.com/@icons/material/svg/language-php.svg" width="24" height="24"> | `LanguagePhpIcon`
  1231. <img src="https://unpkg.com/@icons/material/svg/language-python.svg" width="24" height="24"> | `LanguagePythonIcon`
  1232. <img src="https://unpkg.com/@icons/material/svg/language-python-text.svg" width="24" height="24"> | `LanguagePythonTextIcon`
  1233. <img src="https://unpkg.com/@icons/material/svg/language-r.svg" width="24" height="24"> | `LanguageRIcon`
  1234. <img src="https://unpkg.com/@icons/material/svg/language-swift.svg" width="24" height="24"> | `LanguageSwiftIcon`
  1235. <img src="https://unpkg.com/@icons/material/svg/language-typescript.svg" width="24" height="24"> | `LanguageTypescriptIcon`
  1236. <img src="https://unpkg.com/@icons/material/svg/laptop-chromebook.svg" width="24" height="24"> | `LaptopChromebookIcon`
  1237. <img src="https://unpkg.com/@icons/material/svg/laptop.svg" width="24" height="24"> | `LaptopIcon`
  1238. <img src="https://unpkg.com/@icons/material/svg/laptop-mac.svg" width="24" height="24"> | `LaptopMacIcon`
  1239. <img src="https://unpkg.com/@icons/material/svg/laptop-off.svg" width="24" height="24"> | `LaptopOffIcon`
  1240. <img src="https://unpkg.com/@icons/material/svg/laptop-windows.svg" width="24" height="24"> | `LaptopWindowsIcon`
  1241. <img src="https://unpkg.com/@icons/material/svg/lastfm.svg" width="24" height="24"> | `LastfmIcon`
  1242. <img src="https://unpkg.com/@icons/material/svg/lastpass.svg" width="24" height="24"> | `LastpassIcon`
  1243. <img src="https://unpkg.com/@icons/material/svg/launch.svg" width="24" height="24"> | `LaunchIcon`
  1244. <img src="https://unpkg.com/@icons/material/svg/lava-lamp.svg" width="24" height="24"> | `LavaLampIcon`
  1245. <img src="https://unpkg.com/@icons/material/svg/layers.svg" width="24" height="24"> | `LayersIcon`
  1246. <img src="https://unpkg.com/@icons/material/svg/layers-off.svg" width="24" height="24"> | `LayersOffIcon`
  1247. <img src="https://unpkg.com/@icons/material/svg/lead-pencil.svg" width="24" height="24"> | `LeadPencilIcon`
  1248. <img src="https://unpkg.com/@icons/material/svg/leaf.svg" width="24" height="24"> | `LeafIcon`
  1249. <img src="https://unpkg.com/@icons/material/svg/led-off.svg" width="24" height="24"> | `LedOffIcon`
  1250. <img src="https://unpkg.com/@icons/material/svg/led-on.svg" width="24" height="24"> | `LedOnIcon`
  1251. <img src="https://unpkg.com/@icons/material/svg/led-outline.svg" width="24" height="24"> | `LedOutlineIcon`
  1252. <img src="https://unpkg.com/@icons/material/svg/led-strip.svg" width="24" height="24"> | `LedStripIcon`
  1253. <img src="https://unpkg.com/@icons/material/svg/led-variant-off.svg" width="24" height="24"> | `LedVariantOffIcon`
  1254. <img src="https://unpkg.com/@icons/material/svg/led-variant-on.svg" width="24" height="24"> | `LedVariantOnIcon`
  1255. <img src="https://unpkg.com/@icons/material/svg/led-variant-outline.svg" width="24" height="24"> | `LedVariantOutlineIcon`
  1256. <img src="https://unpkg.com/@icons/material/svg/library-books.svg" width="24" height="24"> | `LibraryBooksIcon`
  1257. <img src="https://unpkg.com/@icons/material/svg/library.svg" width="24" height="24"> | `LibraryIcon`
  1258. <img src="https://unpkg.com/@icons/material/svg/library-music.svg" width="24" height="24"> | `LibraryMusicIcon`
  1259. <img src="https://unpkg.com/@icons/material/svg/library-plus.svg" width="24" height="24"> | `LibraryPlusIcon`
  1260. <img src="https://unpkg.com/@icons/material/svg/lifebuoy.svg" width="24" height="24"> | `LifebuoyIcon`
  1261. <img src="https://unpkg.com/@icons/material/svg/lightbulb.svg" width="24" height="24"> | `LightbulbIcon`
  1262. <img src="https://unpkg.com/@icons/material/svg/lightbulb-on.svg" width="24" height="24"> | `LightbulbOnIcon`
  1263. <img src="https://unpkg.com/@icons/material/svg/lightbulb-on-outline.svg" width="24" height="24"> | `LightbulbOnOutlineIcon`
  1264. <img src="https://unpkg.com/@icons/material/svg/lightbulb-outline.svg" width="24" height="24"> | `LightbulbOutlineIcon`
  1265. <img src="https://unpkg.com/@icons/material/svg/link.svg" width="24" height="24"> | `LinkIcon`
  1266. <img src="https://unpkg.com/@icons/material/svg/link-off.svg" width="24" height="24"> | `LinkOffIcon`
  1267. <img src="https://unpkg.com/@icons/material/svg/link-variant.svg" width="24" height="24"> | `LinkVariantIcon`
  1268. <img src="https://unpkg.com/@icons/material/svg/link-variant-off.svg" width="24" height="24"> | `LinkVariantOffIcon`
  1269. <img src="https://unpkg.com/@icons/material/svg/linkedin-box.svg" width="24" height="24"> | `LinkedinBoxIcon`
  1270. <img src="https://unpkg.com/@icons/material/svg/linkedin.svg" width="24" height="24"> | `LinkedinIcon`
  1271. <img src="https://unpkg.com/@icons/material/svg/linux.svg" width="24" height="24"> | `LinuxIcon`
  1272. <img src="https://unpkg.com/@icons/material/svg/loading.svg" width="24" height="24"> | `LoadingIcon`
  1273. <img src="https://unpkg.com/@icons/material/svg/lock.svg" width="24" height="24"> | `LockIcon`
  1274. <img src="https://unpkg.com/@icons/material/svg/lock-open.svg" width="24" height="24"> | `LockOpenIcon`
  1275. <img src="https://unpkg.com/@icons/material/svg/lock-open-outline.svg" width="24" height="24"> | `LockOpenOutlineIcon`
  1276. <img src="https://unpkg.com/@icons/material/svg/lock-outline.svg" width="24" height="24"> | `LockOutlineIcon`
  1277. <img src="https://unpkg.com/@icons/material/svg/lock-pattern.svg" width="24" height="24"> | `LockPatternIcon`
  1278. <img src="https://unpkg.com/@icons/material/svg/lock-plus.svg" width="24" height="24"> | `LockPlusIcon`
  1279. <img src="https://unpkg.com/@icons/material/svg/lock-reset.svg" width="24" height="24"> | `LockResetIcon`
  1280. <img src="https://unpkg.com/@icons/material/svg/lock-smart.svg" width="24" height="24"> | `LockSmartIcon`
  1281. <img src="https://unpkg.com/@icons/material/svg/locker.svg" width="24" height="24"> | `LockerIcon`
  1282. <img src="https://unpkg.com/@icons/material/svg/locker-multiple.svg" width="24" height="24"> | `LockerMultipleIcon`
  1283. <img src="https://unpkg.com/@icons/material/svg/login.svg" width="24" height="24"> | `LoginIcon`
  1284. <img src="https://unpkg.com/@icons/material/svg/login-variant.svg" width="24" height="24"> | `LoginVariantIcon`
  1285. <img src="https://unpkg.com/@icons/material/svg/logout.svg" width="24" height="24"> | `LogoutIcon`
  1286. <img src="https://unpkg.com/@icons/material/svg/logout-variant.svg" width="24" height="24"> | `LogoutVariantIcon`
  1287. <img src="https://unpkg.com/@icons/material/svg/looks.svg" width="24" height="24"> | `LooksIcon`
  1288. <img src="https://unpkg.com/@icons/material/svg/loop.svg" width="24" height="24"> | `LoopIcon`
  1289. <img src="https://unpkg.com/@icons/material/svg/loupe.svg" width="24" height="24"> | `LoupeIcon`
  1290. <img src="https://unpkg.com/@icons/material/svg/lumx.svg" width="24" height="24"> | `LumxIcon`
  1291. <img src="https://unpkg.com/@icons/material/svg/magnet.svg" width="24" height="24"> | `MagnetIcon`
  1292. <img src="https://unpkg.com/@icons/material/svg/magnet-on.svg" width="24" height="24"> | `MagnetOnIcon`
  1293. <img src="https://unpkg.com/@icons/material/svg/magnify.svg" width="24" height="24"> | `MagnifyIcon`
  1294. <img src="https://unpkg.com/@icons/material/svg/magnify-minus.svg" width="24" height="24"> | `MagnifyMinusIcon`
  1295. <img src="https://unpkg.com/@icons/material/svg/magnify-minus-outline.svg" width="24" height="24"> | `MagnifyMinusOutlineIcon`
  1296. <img src="https://unpkg.com/@icons/material/svg/magnify-plus.svg" width="24" height="24"> | `MagnifyPlusIcon`
  1297. <img src="https://unpkg.com/@icons/material/svg/magnify-plus-outline.svg" width="24" height="24"> | `MagnifyPlusOutlineIcon`
  1298. <img src="https://unpkg.com/@icons/material/svg/mail-ru.svg" width="24" height="24"> | `MailRuIcon`
  1299. <img src="https://unpkg.com/@icons/material/svg/mailbox.svg" width="24" height="24"> | `MailboxIcon`
  1300. <img src="https://unpkg.com/@icons/material/svg/map.svg" width="24" height="24"> | `MapIcon`
  1301. <img src="https://unpkg.com/@icons/material/svg/map-marker-circle.svg" width="24" height="24"> | `MapMarkerCircleIcon`
  1302. <img src="https://unpkg.com/@icons/material/svg/map-marker.svg" width="24" height="24"> | `MapMarkerIcon`
  1303. <img src="https://unpkg.com/@icons/material/svg/map-marker-minus.svg" width="24" height="24"> | `MapMarkerMinusIcon`
  1304. <img src="https://unpkg.com/@icons/material/svg/map-marker-multiple.svg" width="24" height="24"> | `MapMarkerMultipleIcon`
  1305. <img src="https://unpkg.com/@icons/material/svg/map-marker-off.svg" width="24" height="24"> | `MapMarkerOffIcon`
  1306. <img src="https://unpkg.com/@icons/material/svg/map-marker-outline.svg" width="24" height="24"> | `MapMarkerOutlineIcon`
  1307. <img src="https://unpkg.com/@icons/material/svg/map-marker-plus.svg" width="24" height="24"> | `MapMarkerPlusIcon`
  1308. <img src="https://unpkg.com/@icons/material/svg/map-marker-radius.svg" width="24" height="24"> | `MapMarkerRadiusIcon`
  1309. <img src="https://unpkg.com/@icons/material/svg/margin.svg" width="24" height="24"> | `MarginIcon`
  1310. <img src="https://unpkg.com/@icons/material/svg/markdown.svg" width="24" height="24"> | `MarkdownIcon`
  1311. <img src="https://unpkg.com/@icons/material/svg/marker-check.svg" width="24" height="24"> | `MarkerCheckIcon`
  1312. <img src="https://unpkg.com/@icons/material/svg/marker.svg" width="24" height="24"> | `MarkerIcon`
  1313. <img src="https://unpkg.com/@icons/material/svg/material-ui.svg" width="24" height="24"> | `MaterialUiIcon`
  1314. <img src="https://unpkg.com/@icons/material/svg/math-compass.svg" width="24" height="24"> | `MathCompassIcon`
  1315. <img src="https://unpkg.com/@icons/material/svg/matrix.svg" width="24" height="24"> | `MatrixIcon`
  1316. <img src="https://unpkg.com/@icons/material/svg/maxcdn.svg" width="24" height="24"> | `MaxcdnIcon`
  1317. <img src="https://unpkg.com/@icons/material/svg/medical-bag.svg" width="24" height="24"> | `MedicalBagIcon`
  1318. <img src="https://unpkg.com/@icons/material/svg/medium.svg" width="24" height="24"> | `MediumIcon`
  1319. <img src="https://unpkg.com/@icons/material/svg/memory.svg" width="24" height="24"> | `MemoryIcon`
  1320. <img src="https://unpkg.com/@icons/material/svg/menu-down.svg" width="24" height="24"> | `MenuDownIcon`
  1321. <img src="https://unpkg.com/@icons/material/svg/menu-down-outline.svg" width="24" height="24"> | `MenuDownOutlineIcon`
  1322. <img src="https://unpkg.com/@icons/material/svg/menu.svg" width="24" height="24"> | `MenuIcon`
  1323. <img src="https://unpkg.com/@icons/material/svg/menu-left.svg" width="24" height="24"> | `MenuLeftIcon`
  1324. <img src="https://unpkg.com/@icons/material/svg/menu-right.svg" width="24" height="24"> | `MenuRightIcon`
  1325. <img src="https://unpkg.com/@icons/material/svg/menu-up.svg" width="24" height="24"> | `MenuUpIcon`
  1326. <img src="https://unpkg.com/@icons/material/svg/menu-up-outline.svg" width="24" height="24"> | `MenuUpOutlineIcon`
  1327. <img src="https://unpkg.com/@icons/material/svg/message-alert.svg" width="24" height="24"> | `MessageAlertIcon`
  1328. <img src="https://unpkg.com/@icons/material/svg/message-bulleted.svg" width="24" height="24"> | `MessageBulletedIcon`
  1329. <img src="https://unpkg.com/@icons/material/svg/message-bulleted-off.svg" width="24" height="24"> | `MessageBulletedOffIcon`
  1330. <img src="https://unpkg.com/@icons/material/svg/message-draw.svg" width="24" height="24"> | `MessageDrawIcon`
  1331. <img src="https://unpkg.com/@icons/material/svg/message.svg" width="24" height="24"> | `MessageIcon`
  1332. <img src="https://unpkg.com/@icons/material/svg/message-image.svg" width="24" height="24"> | `MessageImageIcon`
  1333. <img src="https://unpkg.com/@icons/material/svg/message-outline.svg" width="24" height="24"> | `MessageOutlineIcon`
  1334. <img src="https://unpkg.com/@icons/material/svg/message-plus.svg" width="24" height="24"> | `MessagePlusIcon`
  1335. <img src="https://unpkg.com/@icons/material/svg/message-processing.svg" width="24" height="24"> | `MessageProcessingIcon`
  1336. <img src="https://unpkg.com/@icons/material/svg/message-reply.svg" width="24" height="24"> | `MessageReplyIcon`
  1337. <img src="https://unpkg.com/@icons/material/svg/message-reply-text.svg" width="24" height="24"> | `MessageReplyTextIcon`
  1338. <img src="https://unpkg.com/@icons/material/svg/message-settings.svg" width="24" height="24"> | `MessageSettingsIcon`
  1339. <img src="https://unpkg.com/@icons/material/svg/message-settings-variant.svg" width="24" height="24"> | `MessageSettingsVariantIcon`
  1340. <img src="https://unpkg.com/@icons/material/svg/message-text.svg" width="24" height="24"> | `MessageTextIcon`
  1341. <img src="https://unpkg.com/@icons/material/svg/message-text-outline.svg" width="24" height="24"> | `MessageTextOutlineIcon`
  1342. <img src="https://unpkg.com/@icons/material/svg/message-video.svg" width="24" height="24"> | `MessageVideoIcon`
  1343. <img src="https://unpkg.com/@icons/material/svg/meteor.svg" width="24" height="24"> | `MeteorIcon`
  1344. <img src="https://unpkg.com/@icons/material/svg/metronome.svg" width="24" height="24"> | `MetronomeIcon`
  1345. <img src="https://unpkg.com/@icons/material/svg/metronome-tick.svg" width="24" height="24"> | `MetronomeTickIcon`
  1346. <img src="https://unpkg.com/@icons/material/svg/micro-sd.svg" width="24" height="24"> | `MicroSdIcon`
  1347. <img src="https://unpkg.com/@icons/material/svg/microphone.svg" width="24" height="24"> | `MicrophoneIcon`
  1348. <img src="https://unpkg.com/@icons/material/svg/microphone-minus.svg" width="24" height="24"> | `MicrophoneMinusIcon`
  1349. <img src="https://unpkg.com/@icons/material/svg/microphone-off.svg" width="24" height="24"> | `MicrophoneOffIcon`
  1350. <img src="https://unpkg.com/@icons/material/svg/microphone-outline.svg" width="24" height="24"> | `MicrophoneOutlineIcon`
  1351. <img src="https://unpkg.com/@icons/material/svg/microphone-plus.svg" width="24" height="24"> | `MicrophonePlusIcon`
  1352. <img src="https://unpkg.com/@icons/material/svg/microphone-settings.svg" width="24" height="24"> | `MicrophoneSettingsIcon`
  1353. <img src="https://unpkg.com/@icons/material/svg/microphone-variant.svg" width="24" height="24"> | `MicrophoneVariantIcon`
  1354. <img src="https://unpkg.com/@icons/material/svg/microphone-variant-off.svg" width="24" height="24"> | `MicrophoneVariantOffIcon`
  1355. <img src="https://unpkg.com/@icons/material/svg/microscope.svg" width="24" height="24"> | `MicroscopeIcon`
  1356. <img src="https://unpkg.com/@icons/material/svg/microsoft.svg" width="24" height="24"> | `MicrosoftIcon`
  1357. <img src="https://unpkg.com/@icons/material/svg/minecraft.svg" width="24" height="24"> | `MinecraftIcon`
  1358. <img src="https://unpkg.com/@icons/material/svg/minus-box.svg" width="24" height="24"> | `MinusBoxIcon`
  1359. <img src="https://unpkg.com/@icons/material/svg/minus-box-outline.svg" width="24" height="24"> | `MinusBoxOutlineIcon`
  1360. <img src="https://unpkg.com/@icons/material/svg/minus-circle.svg" width="24" height="24"> | `MinusCircleIcon`
  1361. <img src="https://unpkg.com/@icons/material/svg/minus-circle-outline.svg" width="24" height="24"> | `MinusCircleOutlineIcon`
  1362. <img src="https://unpkg.com/@icons/material/svg/minus.svg" width="24" height="24"> | `MinusIcon`
  1363. <img src="https://unpkg.com/@icons/material/svg/minus-network.svg" width="24" height="24"> | `MinusNetworkIcon`
  1364. <img src="https://unpkg.com/@icons/material/svg/mixcloud.svg" width="24" height="24"> | `MixcloudIcon`
  1365. <img src="https://unpkg.com/@icons/material/svg/mixed-reality.svg" width="24" height="24"> | `MixedRealityIcon`
  1366. <img src="https://unpkg.com/@icons/material/svg/mixer.svg" width="24" height="24"> | `MixerIcon`
  1367. <img src="https://unpkg.com/@icons/material/svg/monitor.svg" width="24" height="24"> | `MonitorIcon`
  1368. <img src="https://unpkg.com/@icons/material/svg/monitor-multiple.svg" width="24" height="24"> | `MonitorMultipleIcon`
  1369. <img src="https://unpkg.com/@icons/material/svg/more.svg" width="24" height="24"> | `MoreIcon`
  1370. <img src="https://unpkg.com/@icons/material/svg/motorbike.svg" width="24" height="24"> | `MotorbikeIcon`
  1371. <img src="https://unpkg.com/@icons/material/svg/mouse.svg" width="24" height="24"> | `MouseIcon`
  1372. <img src="https://unpkg.com/@icons/material/svg/mouse-off.svg" width="24" height="24"> | `MouseOffIcon`
  1373. <img src="https://unpkg.com/@icons/material/svg/mouse-variant.svg" width="24" height="24"> | `MouseVariantIcon`
  1374. <img src="https://unpkg.com/@icons/material/svg/mouse-variant-off.svg" width="24" height="24"> | `MouseVariantOffIcon`
  1375. <img src="https://unpkg.com/@icons/material/svg/move-resize.svg" width="24" height="24"> | `MoveResizeIcon`
  1376. <img src="https://unpkg.com/@icons/material/svg/move-resize-variant.svg" width="24" height="24"> | `MoveResizeVariantIcon`
  1377. <img src="https://unpkg.com/@icons/material/svg/movie.svg" width="24" height="24"> | `MovieIcon`
  1378. <img src="https://unpkg.com/@icons/material/svg/movie-roll.svg" width="24" height="24"> | `MovieRollIcon`
  1379. <img src="https://unpkg.com/@icons/material/svg/multiplication-box.svg" width="24" height="24"> | `MultiplicationBoxIcon`
  1380. <img src="https://unpkg.com/@icons/material/svg/multiplication.svg" width="24" height="24"> | `MultiplicationIcon`
  1381. <img src="https://unpkg.com/@icons/material/svg/mushroom.svg" width="24" height="24"> | `MushroomIcon`
  1382. <img src="https://unpkg.com/@icons/material/svg/mushroom-outline.svg" width="24" height="24"> | `MushroomOutlineIcon`
  1383. <img src="https://unpkg.com/@icons/material/svg/music-box.svg" width="24" height="24"> | `MusicBoxIcon`
  1384. <img src="https://unpkg.com/@icons/material/svg/music-box-outline.svg" width="24" height="24"> | `MusicBoxOutlineIcon`
  1385. <img src="https://unpkg.com/@icons/material/svg/music-circle.svg" width="24" height="24"> | `MusicCircleIcon`
  1386. <img src="https://unpkg.com/@icons/material/svg/music.svg" width="24" height="24"> | `MusicIcon`
  1387. <img src="https://unpkg.com/@icons/material/svg/music-note-bluetooth.svg" width="24" height="24"> | `MusicNoteBluetoothIcon`
  1388. <img src="https://unpkg.com/@icons/material/svg/music-note-bluetooth-off.svg" width="24" height="24"> | `MusicNoteBluetoothOffIcon`
  1389. <img src="https://unpkg.com/@icons/material/svg/music-note-eighth.svg" width="24" height="24"> | `MusicNoteEighthIcon`
  1390. <img src="https://unpkg.com/@icons/material/svg/music-note-half.svg" width="24" height="24"> | `MusicNoteHalfIcon`
  1391. <img src="https://unpkg.com/@icons/material/svg/music-note.svg" width="24" height="24"> | `MusicNoteIcon`
  1392. <img src="https://unpkg.com/@icons/material/svg/music-note-off.svg" width="24" height="24"> | `MusicNoteOffIcon`
  1393. <img src="https://unpkg.com/@icons/material/svg/music-note-quarter.svg" width="24" height="24"> | `MusicNoteQuarterIcon`
  1394. <img src="https://unpkg.com/@icons/material/svg/music-note-sixteenth.svg" width="24" height="24"> | `MusicNoteSixteenthIcon`
  1395. <img src="https://unpkg.com/@icons/material/svg/music-note-whole.svg" width="24" height="24"> | `MusicNoteWholeIcon`
  1396. <img src="https://unpkg.com/@icons/material/svg/music-off.svg" width="24" height="24"> | `MusicOffIcon`
  1397. <img src="https://unpkg.com/@icons/material/svg/nativescript.svg" width="24" height="24"> | `NativescriptIcon`
  1398. <img src="https://unpkg.com/@icons/material/svg/nature.svg" width="24" height="24"> | `NatureIcon`
  1399. <img src="https://unpkg.com/@icons/material/svg/nature-people.svg" width="24" height="24"> | `NaturePeopleIcon`
  1400. <img src="https://unpkg.com/@icons/material/svg/navigation.svg" width="24" height="24"> | `NavigationIcon`
  1401. <img src="https://unpkg.com/@icons/material/svg/near-me.svg" width="24" height="24"> | `NearMeIcon`
  1402. <img src="https://unpkg.com/@icons/material/svg/needle.svg" width="24" height="24"> | `NeedleIcon`
  1403. <img src="https://unpkg.com/@icons/material/svg/nest-protect.svg" width="24" height="24"> | `NestProtectIcon`
  1404. <img src="https://unpkg.com/@icons/material/svg/nest-thermostat.svg" width="24" height="24"> | `NestThermostatIcon`
  1405. <img src="https://unpkg.com/@icons/material/svg/netflix.svg" width="24" height="24"> | `NetflixIcon`
  1406. <img src="https://unpkg.com/@icons/material/svg/network.svg" width="24" height="24"> | `NetworkIcon`
  1407. <img src="https://unpkg.com/@icons/material/svg/new-box.svg" width="24" height="24"> | `NewBoxIcon`
  1408. <img src="https://unpkg.com/@icons/material/svg/newspaper.svg" width="24" height="24"> | `NewspaperIcon`
  1409. <img src="https://unpkg.com/@icons/material/svg/nfc.svg" width="24" height="24"> | `NfcIcon`
  1410. <img src="https://unpkg.com/@icons/material/svg/nfc-tap.svg" width="24" height="24"> | `NfcTapIcon`
  1411. <img src="https://unpkg.com/@icons/material/svg/nfc-variant.svg" width="24" height="24"> | `NfcVariantIcon`
  1412. <img src="https://unpkg.com/@icons/material/svg/ninja.svg" width="24" height="24"> | `NinjaIcon`
  1413. <img src="https://unpkg.com/@icons/material/svg/nintendo-switch.svg" width="24" height="24"> | `NintendoSwitchIcon`
  1414. <img src="https://unpkg.com/@icons/material/svg/nodejs.svg" width="24" height="24"> | `NodejsIcon`
  1415. <img src="https://unpkg.com/@icons/material/svg/note.svg" width="24" height="24"> | `NoteIcon`
  1416. <img src="https://unpkg.com/@icons/material/svg/note-multiple.svg" width="24" height="24"> | `NoteMultipleIcon`
  1417. <img src="https://unpkg.com/@icons/material/svg/note-multiple-outline.svg" width="24" height="24"> | `NoteMultipleOutlineIcon`
  1418. <img src="https://unpkg.com/@icons/material/svg/note-outline.svg" width="24" height="24"> | `NoteOutlineIcon`
  1419. <img src="https://unpkg.com/@icons/material/svg/note-plus.svg" width="24" height="24"> | `NotePlusIcon`
  1420. <img src="https://unpkg.com/@icons/material/svg/note-plus-outline.svg" width="24" height="24"> | `NotePlusOutlineIcon`
  1421. <img src="https://unpkg.com/@icons/material/svg/note-text.svg" width="24" height="24"> | `NoteTextIcon`
  1422. <img src="https://unpkg.com/@icons/material/svg/notebook.svg" width="24" height="24"> | `NotebookIcon`
  1423. <img src="https://unpkg.com/@icons/material/svg/notification-clear-all.svg" width="24" height="24"> | `NotificationClearAllIcon`
  1424. <img src="https://unpkg.com/@icons/material/svg/npm.svg" width="24" height="24"> | `NpmIcon`
  1425. <img src="https://unpkg.com/@icons/material/svg/nuke.svg" width="24" height="24"> | `NukeIcon`
  1426. <img src="https://unpkg.com/@icons/material/svg/null.svg" width="24" height="24"> | `NullIcon`
  1427. <img src="https://unpkg.com/@icons/material/svg/numeric.svg" width="24" height="24"> | `NumericIcon`
  1428. <img src="https://unpkg.com/@icons/material/svg/numeric-0-box.svg" width="24" height="24"> | `Numeric_0BoxIcon`
  1429. <img src="https://unpkg.com/@icons/material/svg/numeric-0-box-multiple-outline.svg" width="24" height="24"> | `Numeric_0BoxMultipleOutlineIcon`
  1430. <img src="https://unpkg.com/@icons/material/svg/numeric-0-box-outline.svg" width="24" height="24"> | `Numeric_0BoxOutlineIcon`
  1431. <img src="https://unpkg.com/@icons/material/svg/numeric-1-box.svg" width="24" height="24"> | `Numeric_1BoxIcon`
  1432. <img src="https://unpkg.com/@icons/material/svg/numeric-1-box-multiple-outline.svg" width="24" height="24"> | `Numeric_1BoxMultipleOutlineIcon`
  1433. <img src="https://unpkg.com/@icons/material/svg/numeric-1-box-outline.svg" width="24" height="24"> | `Numeric_1BoxOutlineIcon`
  1434. <img src="https://unpkg.com/@icons/material/svg/numeric-2-box.svg" width="24" height="24"> | `Numeric_2BoxIcon`
  1435. <img src="https://unpkg.com/@icons/material/svg/numeric-2-box-multiple-outline.svg" width="24" height="24"> | `Numeric_2BoxMultipleOutlineIcon`
  1436. <img src="https://unpkg.com/@icons/material/svg/numeric-2-box-outline.svg" width="24" height="24"> | `Numeric_2BoxOutlineIcon`
  1437. <img src="https://unpkg.com/@icons/material/svg/numeric-3-box.svg" width="24" height="24"> | `Numeric_3BoxIcon`
  1438. <img src="https://unpkg.com/@icons/material/svg/numeric-3-box-multiple-outline.svg" width="24" height="24"> | `Numeric_3BoxMultipleOutlineIcon`
  1439. <img src="https://unpkg.com/@icons/material/svg/numeric-3-box-outline.svg" width="24" height="24"> | `Numeric_3BoxOutlineIcon`
  1440. <img src="https://unpkg.com/@icons/material/svg/numeric-4-box.svg" width="24" height="24"> | `Numeric_4BoxIcon`
  1441. <img src="https://unpkg.com/@icons/material/svg/numeric-4-box-multiple-outline.svg" width="24" height="24"> | `Numeric_4BoxMultipleOutlineIcon`
  1442. <img src="https://unpkg.com/@icons/material/svg/numeric-4-box-outline.svg" width="24" height="24"> | `Numeric_4BoxOutlineIcon`
  1443. <img src="https://unpkg.com/@icons/material/svg/numeric-5-box.svg" width="24" height="24"> | `Numeric_5BoxIcon`
  1444. <img src="https://unpkg.com/@icons/material/svg/numeric-5-box-multiple-outline.svg" width="24" height="24"> | `Numeric_5BoxMultipleOutlineIcon`
  1445. <img src="https://unpkg.com/@icons/material/svg/numeric-5-box-outline.svg" width="24" height="24"> | `Numeric_5BoxOutlineIcon`
  1446. <img src="https://unpkg.com/@icons/material/svg/numeric-6-box.svg" width="24" height="24"> | `Numeric_6BoxIcon`
  1447. <img src="https://unpkg.com/@icons/material/svg/numeric-6-box-multiple-outline.svg" width="24" height="24"> | `Numeric_6BoxMultipleOutlineIcon`
  1448. <img src="https://unpkg.com/@icons/material/svg/numeric-6-box-outline.svg" width="24" height="24"> | `Numeric_6BoxOutlineIcon`
  1449. <img src="https://unpkg.com/@icons/material/svg/numeric-7-box.svg" width="24" height="24"> | `Numeric_7BoxIcon`
  1450. <img src="https://unpkg.com/@icons/material/svg/numeric-7-box-multiple-outline.svg" width="24" height="24"> | `Numeric_7BoxMultipleOutlineIcon`
  1451. <img src="https://unpkg.com/@icons/material/svg/numeric-7-box-outline.svg" width="24" height="24"> | `Numeric_7BoxOutlineIcon`
  1452. <img src="https://unpkg.com/@icons/material/svg/numeric-8-box.svg" width="24" height="24"> | `Numeric_8BoxIcon`
  1453. <img src="https://unpkg.com/@icons/material/svg/numeric-8-box-multiple-outline.svg" width="24" height="24"> | `Numeric_8BoxMultipleOutlineIcon`
  1454. <img src="https://unpkg.com/@icons/material/svg/numeric-8-box-outline.svg" width="24" height="24"> | `Numeric_8BoxOutlineIcon`
  1455. <img src="https://unpkg.com/@icons/material/svg/numeric-9-box.svg" width="24" height="24"> | `Numeric_9BoxIcon`
  1456. <img src="https://unpkg.com/@icons/material/svg/numeric-9-box-multiple-outline.svg" width="24" height="24"> | `Numeric_9BoxMultipleOutlineIcon`
  1457. <img src="https://unpkg.com/@icons/material/svg/numeric-9-box-outline.svg" width="24" height="24"> | `Numeric_9BoxOutlineIcon`
  1458. <img src="https://unpkg.com/@icons/material/svg/numeric-9-plus-box.svg" width="24" height="24"> | `Numeric_9PlusBoxIcon`
  1459. <img src="https://unpkg.com/@icons/material/svg/numeric-9-plus-box-multiple-outline.svg" width="24" height="24"> | `Numeric_9PlusBoxMultipleOutlineIcon`
  1460. <img src="https://unpkg.com/@icons/material/svg/numeric-9-plus-box-outline.svg" width="24" height="24"> | `Numeric_9PlusBoxOutlineIcon`
  1461. <img src="https://unpkg.com/@icons/material/svg/nut.svg" width="24" height="24"> | `NutIcon`
  1462. <img src="https://unpkg.com/@icons/material/svg/nutrition.svg" width="24" height="24"> | `NutritionIcon`
  1463. <img src="https://unpkg.com/@icons/material/svg/oar.svg" width="24" height="24"> | `OarIcon`
  1464. <img src="https://unpkg.com/@icons/material/svg/octagon.svg" width="24" height="24"> | `OctagonIcon`
  1465. <img src="https://unpkg.com/@icons/material/svg/octagon-outline.svg" width="24" height="24"> | `OctagonOutlineIcon`
  1466. <img src="https://unpkg.com/@icons/material/svg/octagram.svg" width="24" height="24"> | `OctagramIcon`
  1467. <img src="https://unpkg.com/@icons/material/svg/octagram-outline.svg" width="24" height="24"> | `OctagramOutlineIcon`
  1468. <img src="https://unpkg.com/@icons/material/svg/odnoklassniki.svg" width="24" height="24"> | `OdnoklassnikiIcon`
  1469. <img src="https://unpkg.com/@icons/material/svg/office.svg" width="24" height="24"> | `OfficeIcon`
  1470. <img src="https://unpkg.com/@icons/material/svg/oil.svg" width="24" height="24"> | `OilIcon`
  1471. <img src="https://unpkg.com/@icons/material/svg/oil-temperature.svg" width="24" height="24"> | `OilTemperatureIcon`
  1472. <img src="https://unpkg.com/@icons/material/svg/omega.svg" width="24" height="24"> | `OmegaIcon`
  1473. <img src="https://unpkg.com/@icons/material/svg/onedrive.svg" width="24" height="24"> | `OnedriveIcon`
  1474. <img src="https://unpkg.com/@icons/material/svg/onenote.svg" width="24" height="24"> | `OnenoteIcon`
  1475. <img src="https://unpkg.com/@icons/material/svg/onepassword.svg" width="24" height="24"> | `OnepasswordIcon`
  1476. <img src="https://unpkg.com/@icons/material/svg/opacity.svg" width="24" height="24"> | `OpacityIcon`
  1477. <img src="https://unpkg.com/@icons/material/svg/open-in-app.svg" width="24" height="24"> | `OpenInAppIcon`
  1478. <img src="https://unpkg.com/@icons/material/svg/open-in-new.svg" width="24" height="24"> | `OpenInNewIcon`
  1479. <img src="https://unpkg.com/@icons/material/svg/openid.svg" width="24" height="24"> | `OpenidIcon`
  1480. <img src="https://unpkg.com/@icons/material/svg/opera.svg" width="24" height="24"> | `OperaIcon`
  1481. <img src="https://unpkg.com/@icons/material/svg/orbit.svg" width="24" height="24"> | `OrbitIcon`
  1482. <img src="https://unpkg.com/@icons/material/svg/ornament.svg" width="24" height="24"> | `OrnamentIcon`
  1483. <img src="https://unpkg.com/@icons/material/svg/ornament-variant.svg" width="24" height="24"> | `OrnamentVariantIcon`
  1484. <img src="https://unpkg.com/@icons/material/svg/owl.svg" width="24" height="24"> | `OwlIcon`
  1485. <img src="https://unpkg.com/@icons/material/svg/package-down.svg" width="24" height="24"> | `PackageDownIcon`
  1486. <img src="https://unpkg.com/@icons/material/svg/package.svg" width="24" height="24"> | `PackageIcon`
  1487. <img src="https://unpkg.com/@icons/material/svg/package-up.svg" width="24" height="24"> | `PackageUpIcon`
  1488. <img src="https://unpkg.com/@icons/material/svg/package-variant-closed.svg" width="24" height="24"> | `PackageVariantClosedIcon`
  1489. <img src="https://unpkg.com/@icons/material/svg/package-variant.svg" width="24" height="24"> | `PackageVariantIcon`
  1490. <img src="https://unpkg.com/@icons/material/svg/page-first.svg" width="24" height="24"> | `PageFirstIcon`
  1491. <img src="https://unpkg.com/@icons/material/svg/page-last.svg" width="24" height="24"> | `PageLastIcon`
  1492. <img src="https://unpkg.com/@icons/material/svg/page-layout-body.svg" width="24" height="24"> | `PageLayoutBodyIcon`
  1493. <img src="https://unpkg.com/@icons/material/svg/page-layout-footer.svg" width="24" height="24"> | `PageLayoutFooterIcon`
  1494. <img src="https://unpkg.com/@icons/material/svg/page-layout-header.svg" width="24" height="24"> | `PageLayoutHeaderIcon`
  1495. <img src="https://unpkg.com/@icons/material/svg/page-layout-sidebar-left.svg" width="24" height="24"> | `PageLayoutSidebarLeftIcon`
  1496. <img src="https://unpkg.com/@icons/material/svg/page-layout-sidebar-right.svg" width="24" height="24"> | `PageLayoutSidebarRightIcon`
  1497. <img src="https://unpkg.com/@icons/material/svg/palette-advanced.svg" width="24" height="24"> | `PaletteAdvancedIcon`
  1498. <img src="https://unpkg.com/@icons/material/svg/palette.svg" width="24" height="24"> | `PaletteIcon`
  1499. <img src="https://unpkg.com/@icons/material/svg/palette-swatch.svg" width="24" height="24"> | `PaletteSwatchIcon`
  1500. <img src="https://unpkg.com/@icons/material/svg/panda.svg" width="24" height="24"> | `PandaIcon`
  1501. <img src="https://unpkg.com/@icons/material/svg/pandora.svg" width="24" height="24"> | `PandoraIcon`
  1502. <img src="https://unpkg.com/@icons/material/svg/panorama-fisheye.svg" width="24" height="24"> | `PanoramaFisheyeIcon`
  1503. <img src="https://unpkg.com/@icons/material/svg/panorama-horizontal.svg" width="24" height="24"> | `PanoramaHorizontalIcon`
  1504. <img src="https://unpkg.com/@icons/material/svg/panorama.svg" width="24" height="24"> | `PanoramaIcon`
  1505. <img src="https://unpkg.com/@icons/material/svg/panorama-vertical.svg" width="24" height="24"> | `PanoramaVerticalIcon`
  1506. <img src="https://unpkg.com/@icons/material/svg/panorama-wide-angle.svg" width="24" height="24"> | `PanoramaWideAngleIcon`
  1507. <img src="https://unpkg.com/@icons/material/svg/paper-cut-vertical.svg" width="24" height="24"> | `PaperCutVerticalIcon`
  1508. <img src="https://unpkg.com/@icons/material/svg/paperclip.svg" width="24" height="24"> | `PaperclipIcon`
  1509. <img src="https://unpkg.com/@icons/material/svg/parking.svg" width="24" height="24"> | `ParkingIcon`
  1510. <img src="https://unpkg.com/@icons/material/svg/passport.svg" width="24" height="24"> | `PassportIcon`
  1511. <img src="https://unpkg.com/@icons/material/svg/patreon.svg" width="24" height="24"> | `PatreonIcon`
  1512. <img src="https://unpkg.com/@icons/material/svg/pause-circle.svg" width="24" height="24"> | `PauseCircleIcon`
  1513. <img src="https://unpkg.com/@icons/material/svg/pause-circle-outline.svg" width="24" height="24"> | `PauseCircleOutlineIcon`
  1514. <img src="https://unpkg.com/@icons/material/svg/pause.svg" width="24" height="24"> | `PauseIcon`
  1515. <img src="https://unpkg.com/@icons/material/svg/pause-octagon.svg" width="24" height="24"> | `PauseOctagonIcon`
  1516. <img src="https://unpkg.com/@icons/material/svg/pause-octagon-outline.svg" width="24" height="24"> | `PauseOctagonOutlineIcon`
  1517. <img src="https://unpkg.com/@icons/material/svg/paw.svg" width="24" height="24"> | `PawIcon`
  1518. <img src="https://unpkg.com/@icons/material/svg/paw-off.svg" width="24" height="24"> | `PawOffIcon`
  1519. <img src="https://unpkg.com/@icons/material/svg/paypal.svg" width="24" height="24"> | `PaypalIcon`
  1520. <img src="https://unpkg.com/@icons/material/svg/peace.svg" width="24" height="24"> | `PeaceIcon`
  1521. <img src="https://unpkg.com/@icons/material/svg/pen.svg" width="24" height="24"> | `PenIcon`
  1522. <img src="https://unpkg.com/@icons/material/svg/pencil-box.svg" width="24" height="24"> | `PencilBoxIcon`
  1523. <img src="https://unpkg.com/@icons/material/svg/pencil-box-outline.svg" width="24" height="24"> | `PencilBoxOutlineIcon`
  1524. <img src="https://unpkg.com/@icons/material/svg/pencil-circle.svg" width="24" height="24"> | `PencilCircleIcon`
  1525. <img src="https://unpkg.com/@icons/material/svg/pencil-circle-outline.svg" width="24" height="24"> | `PencilCircleOutlineIcon`
  1526. <img src="https://unpkg.com/@icons/material/svg/pencil.svg" width="24" height="24"> | `PencilIcon`
  1527. <img src="https://unpkg.com/@icons/material/svg/pencil-lock.svg" width="24" height="24"> | `PencilLockIcon`
  1528. <img src="https://unpkg.com/@icons/material/svg/pencil-off.svg" width="24" height="24"> | `PencilOffIcon`
  1529. <img src="https://unpkg.com/@icons/material/svg/pentagon.svg" width="24" height="24"> | `PentagonIcon`
  1530. <img src="https://unpkg.com/@icons/material/svg/pentagon-outline.svg" width="24" height="24"> | `PentagonOutlineIcon`
  1531. <img src="https://unpkg.com/@icons/material/svg/percent.svg" width="24" height="24"> | `PercentIcon`
  1532. <img src="https://unpkg.com/@icons/material/svg/periodic-table-co2.svg" width="24" height="24"> | `PeriodicTableCo2Icon`
  1533. <img src="https://unpkg.com/@icons/material/svg/periodic-table.svg" width="24" height="24"> | `PeriodicTableIcon`
  1534. <img src="https://unpkg.com/@icons/material/svg/periscope.svg" width="24" height="24"> | `PeriscopeIcon`
  1535. <img src="https://unpkg.com/@icons/material/svg/pharmacy.svg" width="24" height="24"> | `PharmacyIcon`
  1536. <img src="https://unpkg.com/@icons/material/svg/phone-bluetooth.svg" width="24" height="24"> | `PhoneBluetoothIcon`
  1537. <img src="https://unpkg.com/@icons/material/svg/phone-classic.svg" width="24" height="24"> | `PhoneClassicIcon`
  1538. <img src="https://unpkg.com/@icons/material/svg/phone-forward.svg" width="24" height="24"> | `PhoneForwardIcon`
  1539. <img src="https://unpkg.com/@icons/material/svg/phone-hangup.svg" width="24" height="24"> | `PhoneHangupIcon`
  1540. <img src="https://unpkg.com/@icons/material/svg/phone.svg" width="24" height="24"> | `PhoneIcon`
  1541. <img src="https://unpkg.com/@icons/material/svg/phone-in-talk.svg" width="24" height="24"> | `PhoneInTalkIcon`
  1542. <img src="https://unpkg.com/@icons/material/svg/phone-incoming.svg" width="24" height="24"> | `PhoneIncomingIcon`
  1543. <img src="https://unpkg.com/@icons/material/svg/phone-locked.svg" width="24" height="24"> | `PhoneLockedIcon`
  1544. <img src="https://unpkg.com/@icons/material/svg/phone-log.svg" width="24" height="24"> | `PhoneLogIcon`
  1545. <img src="https://unpkg.com/@icons/material/svg/phone-minus.svg" width="24" height="24"> | `PhoneMinusIcon`
  1546. <img src="https://unpkg.com/@icons/material/svg/phone-missed.svg" width="24" height="24"> | `PhoneMissedIcon`
  1547. <img src="https://unpkg.com/@icons/material/svg/phone-outgoing.svg" width="24" height="24"> | `PhoneOutgoingIcon`
  1548. <img src="https://unpkg.com/@icons/material/svg/phone-paused.svg" width="24" height="24"> | `PhonePausedIcon`
  1549. <img src="https://unpkg.com/@icons/material/svg/phone-plus.svg" width="24" height="24"> | `PhonePlusIcon`
  1550. <img src="https://unpkg.com/@icons/material/svg/phone-return.svg" width="24" height="24"> | `PhoneReturnIcon`
  1551. <img src="https://unpkg.com/@icons/material/svg/phone-rotate-landscape.svg" width="24" height="24"> | `PhoneRotateLandscapeIcon`
  1552. <img src="https://unpkg.com/@icons/material/svg/phone-rotate-portrait.svg" width="24" height="24"> | `PhoneRotatePortraitIcon`
  1553. <img src="https://unpkg.com/@icons/material/svg/phone-settings.svg" width="24" height="24"> | `PhoneSettingsIcon`
  1554. <img src="https://unpkg.com/@icons/material/svg/phone-voip.svg" width="24" height="24"> | `PhoneVoipIcon`
  1555. <img src="https://unpkg.com/@icons/material/svg/pi-box.svg" width="24" height="24"> | `PiBoxIcon`
  1556. <img src="https://unpkg.com/@icons/material/svg/pi.svg" width="24" height="24"> | `PiIcon`
  1557. <img src="https://unpkg.com/@icons/material/svg/piano.svg" width="24" height="24"> | `PianoIcon`
  1558. <img src="https://unpkg.com/@icons/material/svg/pickaxe.svg" width="24" height="24"> | `PickaxeIcon`
  1559. <img src="https://unpkg.com/@icons/material/svg/pier-crane.svg" width="24" height="24"> | `PierCraneIcon`
  1560. <img src="https://unpkg.com/@icons/material/svg/pier.svg" width="24" height="24"> | `PierIcon`
  1561. <img src="https://unpkg.com/@icons/material/svg/pig.svg" width="24" height="24"> | `PigIcon`
  1562. <img src="https://unpkg.com/@icons/material/svg/pill.svg" width="24" height="24"> | `PillIcon`
  1563. <img src="https://unpkg.com/@icons/material/svg/pillar.svg" width="24" height="24"> | `PillarIcon`
  1564. <img src="https://unpkg.com/@icons/material/svg/pin.svg" width="24" height="24"> | `PinIcon`
  1565. <img src="https://unpkg.com/@icons/material/svg/pin-off.svg" width="24" height="24"> | `PinOffIcon`
  1566. <img src="https://unpkg.com/@icons/material/svg/pine-tree-box.svg" width="24" height="24"> | `PineTreeBoxIcon`
  1567. <img src="https://unpkg.com/@icons/material/svg/pine-tree.svg" width="24" height="24"> | `PineTreeIcon`
  1568. <img src="https://unpkg.com/@icons/material/svg/pinterest-box.svg" width="24" height="24"> | `PinterestBoxIcon`
  1569. <img src="https://unpkg.com/@icons/material/svg/pinterest.svg" width="24" height="24"> | `PinterestIcon`
  1570. <img src="https://unpkg.com/@icons/material/svg/pipe-disconnected.svg" width="24" height="24"> | `PipeDisconnectedIcon`
  1571. <img src="https://unpkg.com/@icons/material/svg/pipe.svg" width="24" height="24"> | `PipeIcon`
  1572. <img src="https://unpkg.com/@icons/material/svg/pipe-leak.svg" width="24" height="24"> | `PipeLeakIcon`
  1573. <img src="https://unpkg.com/@icons/material/svg/pistol.svg" width="24" height="24"> | `PistolIcon`
  1574. <img src="https://unpkg.com/@icons/material/svg/piston.svg" width="24" height="24"> | `PistonIcon`
  1575. <img src="https://unpkg.com/@icons/material/svg/pizza.svg" width="24" height="24"> | `PizzaIcon`
  1576. <img src="https://unpkg.com/@icons/material/svg/plane-shield.svg" width="24" height="24"> | `PlaneShieldIcon`
  1577. <img src="https://unpkg.com/@icons/material/svg/play-box-outline.svg" width="24" height="24"> | `PlayBoxOutlineIcon`
  1578. <img src="https://unpkg.com/@icons/material/svg/play-circle.svg" width="24" height="24"> | `PlayCircleIcon`
  1579. <img src="https://unpkg.com/@icons/material/svg/play-circle-outline.svg" width="24" height="24"> | `PlayCircleOutlineIcon`
  1580. <img src="https://unpkg.com/@icons/material/svg/play.svg" width="24" height="24"> | `PlayIcon`
  1581. <img src="https://unpkg.com/@icons/material/svg/play-network.svg" width="24" height="24"> | `PlayNetworkIcon`
  1582. <img src="https://unpkg.com/@icons/material/svg/play-pause.svg" width="24" height="24"> | `PlayPauseIcon`
  1583. <img src="https://unpkg.com/@icons/material/svg/play-protected-content.svg" width="24" height="24"> | `PlayProtectedContentIcon`
  1584. <img src="https://unpkg.com/@icons/material/svg/playlist-check.svg" width="24" height="24"> | `PlaylistCheckIcon`
  1585. <img src="https://unpkg.com/@icons/material/svg/playlist-minus.svg" width="24" height="24"> | `PlaylistMinusIcon`
  1586. <img src="https://unpkg.com/@icons/material/svg/playlist-play.svg" width="24" height="24"> | `PlaylistPlayIcon`
  1587. <img src="https://unpkg.com/@icons/material/svg/playlist-plus.svg" width="24" height="24"> | `PlaylistPlusIcon`
  1588. <img src="https://unpkg.com/@icons/material/svg/playlist-remove.svg" width="24" height="24"> | `PlaylistRemoveIcon`
  1589. <img src="https://unpkg.com/@icons/material/svg/playstation.svg" width="24" height="24"> | `PlaystationIcon`
  1590. <img src="https://unpkg.com/@icons/material/svg/plex.svg" width="24" height="24"> | `PlexIcon`
  1591. <img src="https://unpkg.com/@icons/material/svg/plus-box.svg" width="24" height="24"> | `PlusBoxIcon`
  1592. <img src="https://unpkg.com/@icons/material/svg/plus-box-outline.svg" width="24" height="24"> | `PlusBoxOutlineIcon`
  1593. <img src="https://unpkg.com/@icons/material/svg/plus-circle.svg" width="24" height="24"> | `PlusCircleIcon`
  1594. <img src="https://unpkg.com/@icons/material/svg/plus-circle-multiple-outline.svg" width="24" height="24"> | `PlusCircleMultipleOutlineIcon`
  1595. <img src="https://unpkg.com/@icons/material/svg/plus-circle-outline.svg" width="24" height="24"> | `PlusCircleOutlineIcon`
  1596. <img src="https://unpkg.com/@icons/material/svg/plus.svg" width="24" height="24"> | `PlusIcon`
  1597. <img src="https://unpkg.com/@icons/material/svg/plus-network.svg" width="24" height="24"> | `PlusNetworkIcon`
  1598. <img src="https://unpkg.com/@icons/material/svg/plus-one.svg" width="24" height="24"> | `PlusOneIcon`
  1599. <img src="https://unpkg.com/@icons/material/svg/plus-outline.svg" width="24" height="24"> | `PlusOutlineIcon`
  1600. <img src="https://unpkg.com/@icons/material/svg/pocket.svg" width="24" height="24"> | `PocketIcon`
  1601. <img src="https://unpkg.com/@icons/material/svg/pokeball.svg" width="24" height="24"> | `PokeballIcon`
  1602. <img src="https://unpkg.com/@icons/material/svg/poker-chip.svg" width="24" height="24"> | `PokerChipIcon`
  1603. <img src="https://unpkg.com/@icons/material/svg/polaroid.svg" width="24" height="24"> | `PolaroidIcon`
  1604. <img src="https://unpkg.com/@icons/material/svg/poll-box.svg" width="24" height="24"> | `PollBoxIcon`
  1605. <img src="https://unpkg.com/@icons/material/svg/poll.svg" width="24" height="24"> | `PollIcon`
  1606. <img src="https://unpkg.com/@icons/material/svg/polymer.svg" width="24" height="24"> | `PolymerIcon`
  1607. <img src="https://unpkg.com/@icons/material/svg/pool.svg" width="24" height="24"> | `PoolIcon`
  1608. <img src="https://unpkg.com/@icons/material/svg/popcorn.svg" width="24" height="24"> | `PopcornIcon`
  1609. <img src="https://unpkg.com/@icons/material/svg/pot.svg" width="24" height="24"> | `PotIcon`
  1610. <img src="https://unpkg.com/@icons/material/svg/pot-mix.svg" width="24" height="24"> | `PotMixIcon`
  1611. <img src="https://unpkg.com/@icons/material/svg/pound-box.svg" width="24" height="24"> | `PoundBoxIcon`
  1612. <img src="https://unpkg.com/@icons/material/svg/pound.svg" width="24" height="24"> | `PoundIcon`
  1613. <img src="https://unpkg.com/@icons/material/svg/power.svg" width="24" height="24"> | `PowerIcon`
  1614. <img src="https://unpkg.com/@icons/material/svg/power-plug.svg" width="24" height="24"> | `PowerPlugIcon`
  1615. <img src="https://unpkg.com/@icons/material/svg/power-plug-off.svg" width="24" height="24"> | `PowerPlugOffIcon`
  1616. <img src="https://unpkg.com/@icons/material/svg/power-settings.svg" width="24" height="24"> | `PowerSettingsIcon`
  1617. <img src="https://unpkg.com/@icons/material/svg/power-socket-eu.svg" width="24" height="24"> | `PowerSocketEuIcon`
  1618. <img src="https://unpkg.com/@icons/material/svg/power-socket.svg" width="24" height="24"> | `PowerSocketIcon`
  1619. <img src="https://unpkg.com/@icons/material/svg/power-socket-uk.svg" width="24" height="24"> | `PowerSocketUkIcon`
  1620. <img src="https://unpkg.com/@icons/material/svg/power-socket-us.svg" width="24" height="24"> | `PowerSocketUsIcon`
  1621. <img src="https://unpkg.com/@icons/material/svg/prescription.svg" width="24" height="24"> | `PrescriptionIcon`
  1622. <img src="https://unpkg.com/@icons/material/svg/presentation.svg" width="24" height="24"> | `PresentationIcon`
  1623. <img src="https://unpkg.com/@icons/material/svg/presentation-play.svg" width="24" height="24"> | `PresentationPlayIcon`
  1624. <img src="https://unpkg.com/@icons/material/svg/printer-alert.svg" width="24" height="24"> | `PrinterAlertIcon`
  1625. <img src="https://unpkg.com/@icons/material/svg/printer.svg" width="24" height="24"> | `PrinterIcon`
  1626. <img src="https://unpkg.com/@icons/material/svg/printer-settings.svg" width="24" height="24"> | `PrinterSettingsIcon`
  1627. <img src="https://unpkg.com/@icons/material/svg/printer-3d.svg" width="24" height="24"> | `Printer_3dIcon`
  1628. <img src="https://unpkg.com/@icons/material/svg/priority-high.svg" width="24" height="24"> | `PriorityHighIcon`
  1629. <img src="https://unpkg.com/@icons/material/svg/priority-low.svg" width="24" height="24"> | `PriorityLowIcon`
  1630. <img src="https://unpkg.com/@icons/material/svg/professional-hexagon.svg" width="24" height="24"> | `ProfessionalHexagonIcon`
  1631. <img src="https://unpkg.com/@icons/material/svg/projector.svg" width="24" height="24"> | `ProjectorIcon`
  1632. <img src="https://unpkg.com/@icons/material/svg/projector-screen.svg" width="24" height="24"> | `ProjectorScreenIcon`
  1633. <img src="https://unpkg.com/@icons/material/svg/publish.svg" width="24" height="24"> | `PublishIcon`
  1634. <img src="https://unpkg.com/@icons/material/svg/pulse.svg" width="24" height="24"> | `PulseIcon`
  1635. <img src="https://unpkg.com/@icons/material/svg/puzzle.svg" width="24" height="24"> | `PuzzleIcon`
  1636. <img src="https://unpkg.com/@icons/material/svg/qqchat.svg" width="24" height="24"> | `QqchatIcon`
  1637. <img src="https://unpkg.com/@icons/material/svg/qrcode-edit.svg" width="24" height="24"> | `QrcodeEditIcon`
  1638. <img src="https://unpkg.com/@icons/material/svg/qrcode.svg" width="24" height="24"> | `QrcodeIcon`
  1639. <img src="https://unpkg.com/@icons/material/svg/qrcode-scan.svg" width="24" height="24"> | `QrcodeScanIcon`
  1640. <img src="https://unpkg.com/@icons/material/svg/quadcopter.svg" width="24" height="24"> | `QuadcopterIcon`
  1641. <img src="https://unpkg.com/@icons/material/svg/quality-high.svg" width="24" height="24"> | `QualityHighIcon`
  1642. <img src="https://unpkg.com/@icons/material/svg/quicktime.svg" width="24" height="24"> | `QuicktimeIcon`
  1643. <img src="https://unpkg.com/@icons/material/svg/radar.svg" width="24" height="24"> | `RadarIcon`
  1644. <img src="https://unpkg.com/@icons/material/svg/radiator.svg" width="24" height="24"> | `RadiatorIcon`
  1645. <img src="https://unpkg.com/@icons/material/svg/radio-handheld.svg" width="24" height="24"> | `RadioHandheldIcon`
  1646. <img src="https://unpkg.com/@icons/material/svg/radio.svg" width="24" height="24"> | `RadioIcon`
  1647. <img src="https://unpkg.com/@icons/material/svg/radio-tower.svg" width="24" height="24"> | `RadioTowerIcon`
  1648. <img src="https://unpkg.com/@icons/material/svg/radioactive.svg" width="24" height="24"> | `RadioactiveIcon`
  1649. <img src="https://unpkg.com/@icons/material/svg/radiobox-blank.svg" width="24" height="24"> | `RadioboxBlankIcon`
  1650. <img src="https://unpkg.com/@icons/material/svg/radiobox-marked.svg" width="24" height="24"> | `RadioboxMarkedIcon`
  1651. <img src="https://unpkg.com/@icons/material/svg/raspberrypi.svg" width="24" height="24"> | `RaspberrypiIcon`
  1652. <img src="https://unpkg.com/@icons/material/svg/ray-end-arrow.svg" width="24" height="24"> | `RayEndArrowIcon`
  1653. <img src="https://unpkg.com/@icons/material/svg/ray-end.svg" width="24" height="24"> | `RayEndIcon`
  1654. <img src="https://unpkg.com/@icons/material/svg/ray-start-arrow.svg" width="24" height="24"> | `RayStartArrowIcon`
  1655. <img src="https://unpkg.com/@icons/material/svg/ray-start-end.svg" width="24" height="24"> | `RayStartEndIcon`
  1656. <img src="https://unpkg.com/@icons/material/svg/ray-start.svg" width="24" height="24"> | `RayStartIcon`
  1657. <img src="https://unpkg.com/@icons/material/svg/ray-vertex.svg" width="24" height="24"> | `RayVertexIcon`
  1658. <img src="https://unpkg.com/@icons/material/svg/react.svg" width="24" height="24"> | `ReactIcon`
  1659. <img src="https://unpkg.com/@icons/material/svg/read.svg" width="24" height="24"> | `ReadIcon`
  1660. <img src="https://unpkg.com/@icons/material/svg/receipt.svg" width="24" height="24"> | `ReceiptIcon`
  1661. <img src="https://unpkg.com/@icons/material/svg/record.svg" width="24" height="24"> | `RecordIcon`
  1662. <img src="https://unpkg.com/@icons/material/svg/record-rec.svg" width="24" height="24"> | `RecordRecIcon`
  1663. <img src="https://unpkg.com/@icons/material/svg/recycle.svg" width="24" height="24"> | `RecycleIcon`
  1664. <img src="https://unpkg.com/@icons/material/svg/reddit.svg" width="24" height="24"> | `RedditIcon`
  1665. <img src="https://unpkg.com/@icons/material/svg/redo.svg" width="24" height="24"> | `RedoIcon`
  1666. <img src="https://unpkg.com/@icons/material/svg/redo-variant.svg" width="24" height="24"> | `RedoVariantIcon`
  1667. <img src="https://unpkg.com/@icons/material/svg/refresh.svg" width="24" height="24"> | `RefreshIcon`
  1668. <img src="https://unpkg.com/@icons/material/svg/regex.svg" width="24" height="24"> | `RegexIcon`
  1669. <img src="https://unpkg.com/@icons/material/svg/relative-scale.svg" width="24" height="24"> | `RelativeScaleIcon`
  1670. <img src="https://unpkg.com/@icons/material/svg/reload.svg" width="24" height="24"> | `ReloadIcon`
  1671. <img src="https://unpkg.com/@icons/material/svg/reminder.svg" width="24" height="24"> | `ReminderIcon`
  1672. <img src="https://unpkg.com/@icons/material/svg/remote-desktop.svg" width="24" height="24"> | `RemoteDesktopIcon`
  1673. <img src="https://unpkg.com/@icons/material/svg/remote.svg" width="24" height="24"> | `RemoteIcon`
  1674. <img src="https://unpkg.com/@icons/material/svg/rename-box.svg" width="24" height="24"> | `RenameBoxIcon`
  1675. <img src="https://unpkg.com/@icons/material/svg/reorder-horizontal.svg" width="24" height="24"> | `ReorderHorizontalIcon`
  1676. <img src="https://unpkg.com/@icons/material/svg/reorder-vertical.svg" width="24" height="24"> | `ReorderVerticalIcon`
  1677. <img src="https://unpkg.com/@icons/material/svg/repeat.svg" width="24" height="24"> | `RepeatIcon`
  1678. <img src="https://unpkg.com/@icons/material/svg/repeat-off.svg" width="24" height="24"> | `RepeatOffIcon`
  1679. <img src="https://unpkg.com/@icons/material/svg/repeat-once.svg" width="24" height="24"> | `RepeatOnceIcon`
  1680. <img src="https://unpkg.com/@icons/material/svg/replay.svg" width="24" height="24"> | `ReplayIcon`
  1681. <img src="https://unpkg.com/@icons/material/svg/reply-all.svg" width="24" height="24"> | `ReplyAllIcon`
  1682. <img src="https://unpkg.com/@icons/material/svg/reply.svg" width="24" height="24"> | `ReplyIcon`
  1683. <img src="https://unpkg.com/@icons/material/svg/reproduction.svg" width="24" height="24"> | `ReproductionIcon`
  1684. <img src="https://unpkg.com/@icons/material/svg/resize-bottom-right.svg" width="24" height="24"> | `ResizeBottomRightIcon`
  1685. <img src="https://unpkg.com/@icons/material/svg/responsive.svg" width="24" height="24"> | `ResponsiveIcon`
  1686. <img src="https://unpkg.com/@icons/material/svg/restart.svg" width="24" height="24"> | `RestartIcon`
  1687. <img src="https://unpkg.com/@icons/material/svg/restore.svg" width="24" height="24"> | `RestoreIcon`
  1688. <img src="https://unpkg.com/@icons/material/svg/rewind.svg" width="24" height="24"> | `RewindIcon`
  1689. <img src="https://unpkg.com/@icons/material/svg/rewind-outline.svg" width="24" height="24"> | `RewindOutlineIcon`
  1690. <img src="https://unpkg.com/@icons/material/svg/rhombus.svg" width="24" height="24"> | `RhombusIcon`
  1691. <img src="https://unpkg.com/@icons/material/svg/rhombus-outline.svg" width="24" height="24"> | `RhombusOutlineIcon`
  1692. <img src="https://unpkg.com/@icons/material/svg/ribbon.svg" width="24" height="24"> | `RibbonIcon`
  1693. <img src="https://unpkg.com/@icons/material/svg/rice.svg" width="24" height="24"> | `RiceIcon`
  1694. <img src="https://unpkg.com/@icons/material/svg/ring.svg" width="24" height="24"> | `RingIcon`
  1695. <img src="https://unpkg.com/@icons/material/svg/road.svg" width="24" height="24"> | `RoadIcon`
  1696. <img src="https://unpkg.com/@icons/material/svg/road-variant.svg" width="24" height="24"> | `RoadVariantIcon`
  1697. <img src="https://unpkg.com/@icons/material/svg/robot.svg" width="24" height="24"> | `RobotIcon`
  1698. <img src="https://unpkg.com/@icons/material/svg/rocket.svg" width="24" height="24"> | `RocketIcon`
  1699. <img src="https://unpkg.com/@icons/material/svg/room-service.svg" width="24" height="24"> | `RoomServiceIcon`
  1700. <img src="https://unpkg.com/@icons/material/svg/roomba.svg" width="24" height="24"> | `RoombaIcon`
  1701. <img src="https://unpkg.com/@icons/material/svg/rotate-left.svg" width="24" height="24"> | `RotateLeftIcon`
  1702. <img src="https://unpkg.com/@icons/material/svg/rotate-left-variant.svg" width="24" height="24"> | `RotateLeftVariantIcon`
  1703. <img src="https://unpkg.com/@icons/material/svg/rotate-right.svg" width="24" height="24"> | `RotateRightIcon`
  1704. <img src="https://unpkg.com/@icons/material/svg/rotate-right-variant.svg" width="24" height="24"> | `RotateRightVariantIcon`
  1705. <img src="https://unpkg.com/@icons/material/svg/rotate-3d.svg" width="24" height="24"> | `Rotate_3dIcon`
  1706. <img src="https://unpkg.com/@icons/material/svg/rounded-corner.svg" width="24" height="24"> | `RoundedCornerIcon`
  1707. <img src="https://unpkg.com/@icons/material/svg/router-wireless.svg" width="24" height="24"> | `RouterWirelessIcon`
  1708. <img src="https://unpkg.com/@icons/material/svg/routes.svg" width="24" height="24"> | `RoutesIcon`
  1709. <img src="https://unpkg.com/@icons/material/svg/rowing.svg" width="24" height="24"> | `RowingIcon`
  1710. <img src="https://unpkg.com/@icons/material/svg/rss-box.svg" width="24" height="24"> | `RssBoxIcon`
  1711. <img src="https://unpkg.com/@icons/material/svg/rss.svg" width="24" height="24"> | `RssIcon`
  1712. <img src="https://unpkg.com/@icons/material/svg/ruler.svg" width="24" height="24"> | `RulerIcon`
  1713. <img src="https://unpkg.com/@icons/material/svg/run-fast.svg" width="24" height="24"> | `RunFastIcon`
  1714. <img src="https://unpkg.com/@icons/material/svg/run.svg" width="24" height="24"> | `RunIcon`
  1715. <img src="https://unpkg.com/@icons/material/svg/sale.svg" width="24" height="24"> | `SaleIcon`
  1716. <img src="https://unpkg.com/@icons/material/svg/salesforce.svg" width="24" height="24"> | `SalesforceIcon`
  1717. <img src="https://unpkg.com/@icons/material/svg/sass.svg" width="24" height="24"> | `SassIcon`
  1718. <img src="https://unpkg.com/@icons/material/svg/satellite.svg" width="24" height="24"> | `SatelliteIcon`
  1719. <img src="https://unpkg.com/@icons/material/svg/satellite-variant.svg" width="24" height="24"> | `SatelliteVariantIcon`
  1720. <img src="https://unpkg.com/@icons/material/svg/sausage.svg" width="24" height="24"> | `SausageIcon`
  1721. <img src="https://unpkg.com/@icons/material/svg/saxophone.svg" width="24" height="24"> | `SaxophoneIcon`
  1722. <img src="https://unpkg.com/@icons/material/svg/scale-balance.svg" width="24" height="24"> | `ScaleBalanceIcon`
  1723. <img src="https://unpkg.com/@icons/material/svg/scale-bathroom.svg" width="24" height="24"> | `ScaleBathroomIcon`
  1724. <img src="https://unpkg.com/@icons/material/svg/scale.svg" width="24" height="24"> | `ScaleIcon`
  1725. <img src="https://unpkg.com/@icons/material/svg/scanner.svg" width="24" height="24"> | `ScannerIcon`
  1726. <img src="https://unpkg.com/@icons/material/svg/school.svg" width="24" height="24"> | `SchoolIcon`
  1727. <img src="https://unpkg.com/@icons/material/svg/screen-rotation.svg" width="24" height="24"> | `ScreenRotationIcon`
  1728. <img src="https://unpkg.com/@icons/material/svg/screen-rotation-lock.svg" width="24" height="24"> | `ScreenRotationLockIcon`
  1729. <img src="https://unpkg.com/@icons/material/svg/screwdriver.svg" width="24" height="24"> | `ScrewdriverIcon`
  1730. <img src="https://unpkg.com/@icons/material/svg/script.svg" width="24" height="24"> | `ScriptIcon`
  1731. <img src="https://unpkg.com/@icons/material/svg/sd.svg" width="24" height="24"> | `SdIcon`
  1732. <img src="https://unpkg.com/@icons/material/svg/seal.svg" width="24" height="24"> | `SealIcon`
  1733. <img src="https://unpkg.com/@icons/material/svg/search-web.svg" width="24" height="24"> | `SearchWebIcon`
  1734. <img src="https://unpkg.com/@icons/material/svg/seat-flat-angled.svg" width="24" height="24"> | `SeatFlatAngledIcon`
  1735. <img src="https://unpkg.com/@icons/material/svg/seat-flat.svg" width="24" height="24"> | `SeatFlatIcon`
  1736. <img src="https://unpkg.com/@icons/material/svg/seat-individual-suite.svg" width="24" height="24"> | `SeatIndividualSuiteIcon`
  1737. <img src="https://unpkg.com/@icons/material/svg/seat-legroom-extra.svg" width="24" height="24"> | `SeatLegroomExtraIcon`
  1738. <img src="https://unpkg.com/@icons/material/svg/seat-legroom-normal.svg" width="24" height="24"> | `SeatLegroomNormalIcon`
  1739. <img src="https://unpkg.com/@icons/material/svg/seat-legroom-reduced.svg" width="24" height="24"> | `SeatLegroomReducedIcon`
  1740. <img src="https://unpkg.com/@icons/material/svg/seat-recline-extra.svg" width="24" height="24"> | `SeatReclineExtraIcon`
  1741. <img src="https://unpkg.com/@icons/material/svg/seat-recline-normal.svg" width="24" height="24"> | `SeatReclineNormalIcon`
  1742. <img src="https://unpkg.com/@icons/material/svg/security-account.svg" width="24" height="24"> | `SecurityAccountIcon`
  1743. <img src="https://unpkg.com/@icons/material/svg/security-home.svg" width="24" height="24"> | `SecurityHomeIcon`
  1744. <img src="https://unpkg.com/@icons/material/svg/security.svg" width="24" height="24"> | `SecurityIcon`
  1745. <img src="https://unpkg.com/@icons/material/svg/security-network.svg" width="24" height="24"> | `SecurityNetworkIcon`
  1746. <img src="https://unpkg.com/@icons/material/svg/select-all.svg" width="24" height="24"> | `SelectAllIcon`
  1747. <img src="https://unpkg.com/@icons/material/svg/select.svg" width="24" height="24"> | `SelectIcon`
  1748. <img src="https://unpkg.com/@icons/material/svg/select-inverse.svg" width="24" height="24"> | `SelectInverseIcon`
  1749. <img src="https://unpkg.com/@icons/material/svg/select-off.svg" width="24" height="24"> | `SelectOffIcon`
  1750. <img src="https://unpkg.com/@icons/material/svg/selection.svg" width="24" height="24"> | `SelectionIcon`
  1751. <img src="https://unpkg.com/@icons/material/svg/selection-off.svg" width="24" height="24"> | `SelectionOffIcon`
  1752. <img src="https://unpkg.com/@icons/material/svg/send.svg" width="24" height="24"> | `SendIcon`
  1753. <img src="https://unpkg.com/@icons/material/svg/send-secure.svg" width="24" height="24"> | `SendSecureIcon`
  1754. <img src="https://unpkg.com/@icons/material/svg/serial-port.svg" width="24" height="24"> | `SerialPortIcon`
  1755. <img src="https://unpkg.com/@icons/material/svg/server.svg" width="24" height="24"> | `ServerIcon`
  1756. <img src="https://unpkg.com/@icons/material/svg/server-minus.svg" width="24" height="24"> | `ServerMinusIcon`
  1757. <img src="https://unpkg.com/@icons/material/svg/server-network.svg" width="24" height="24"> | `ServerNetworkIcon`
  1758. <img src="https://unpkg.com/@icons/material/svg/server-network-off.svg" width="24" height="24"> | `ServerNetworkOffIcon`
  1759. <img src="https://unpkg.com/@icons/material/svg/server-off.svg" width="24" height="24"> | `ServerOffIcon`
  1760. <img src="https://unpkg.com/@icons/material/svg/server-plus.svg" width="24" height="24"> | `ServerPlusIcon`
  1761. <img src="https://unpkg.com/@icons/material/svg/server-remove.svg" width="24" height="24"> | `ServerRemoveIcon`
  1762. <img src="https://unpkg.com/@icons/material/svg/server-security.svg" width="24" height="24"> | `ServerSecurityIcon`
  1763. <img src="https://unpkg.com/@icons/material/svg/set-all.svg" width="24" height="24"> | `SetAllIcon`
  1764. <img src="https://unpkg.com/@icons/material/svg/set-center.svg" width="24" height="24"> | `SetCenterIcon`
  1765. <img src="https://unpkg.com/@icons/material/svg/set-center-right.svg" width="24" height="24"> | `SetCenterRightIcon`
  1766. <img src="https://unpkg.com/@icons/material/svg/set-left-center.svg" width="24" height="24"> | `SetLeftCenterIcon`
  1767. <img src="https://unpkg.com/@icons/material/svg/set-left.svg" width="24" height="24"> | `SetLeftIcon`
  1768. <img src="https://unpkg.com/@icons/material/svg/set-left-right.svg" width="24" height="24"> | `SetLeftRightIcon`
  1769. <img src="https://unpkg.com/@icons/material/svg/set-none.svg" width="24" height="24"> | `SetNoneIcon`
  1770. <img src="https://unpkg.com/@icons/material/svg/set-right.svg" width="24" height="24"> | `SetRightIcon`
  1771. <img src="https://unpkg.com/@icons/material/svg/settings-box.svg" width="24" height="24"> | `SettingsBoxIcon`
  1772. <img src="https://unpkg.com/@icons/material/svg/settings.svg" width="24" height="24"> | `SettingsIcon`
  1773. <img src="https://unpkg.com/@icons/material/svg/settings-outline.svg" width="24" height="24"> | `SettingsOutlineIcon`
  1774. <img src="https://unpkg.com/@icons/material/svg/shape-circle-plus.svg" width="24" height="24"> | `ShapeCirclePlusIcon`
  1775. <img src="https://unpkg.com/@icons/material/svg/shape.svg" width="24" height="24"> | `ShapeIcon`
  1776. <img src="https://unpkg.com/@icons/material/svg/shape-outline.svg" width="24" height="24"> | `ShapeOutlineIcon`
  1777. <img src="https://unpkg.com/@icons/material/svg/shape-plus.svg" width="24" height="24"> | `ShapePlusIcon`
  1778. <img src="https://unpkg.com/@icons/material/svg/shape-polygon-plus.svg" width="24" height="24"> | `ShapePolygonPlusIcon`
  1779. <img src="https://unpkg.com/@icons/material/svg/shape-rectangle-plus.svg" width="24" height="24"> | `ShapeRectanglePlusIcon`
  1780. <img src="https://unpkg.com/@icons/material/svg/shape-square-plus.svg" width="24" height="24"> | `ShapeSquarePlusIcon`
  1781. <img src="https://unpkg.com/@icons/material/svg/share.svg" width="24" height="24"> | `ShareIcon`
  1782. <img src="https://unpkg.com/@icons/material/svg/share-variant.svg" width="24" height="24"> | `ShareVariantIcon`
  1783. <img src="https://unpkg.com/@icons/material/svg/shield-half-full.svg" width="24" height="24"> | `ShieldHalfFullIcon`
  1784. <img src="https://unpkg.com/@icons/material/svg/shield.svg" width="24" height="24"> | `ShieldIcon`
  1785. <img src="https://unpkg.com/@icons/material/svg/shield-outline.svg" width="24" height="24"> | `ShieldOutlineIcon`
  1786. <img src="https://unpkg.com/@icons/material/svg/ship-wheel.svg" width="24" height="24"> | `ShipWheelIcon`
  1787. <img src="https://unpkg.com/@icons/material/svg/shopping.svg" width="24" height="24"> | `ShoppingIcon`
  1788. <img src="https://unpkg.com/@icons/material/svg/shopping-music.svg" width="24" height="24"> | `ShoppingMusicIcon`
  1789. <img src="https://unpkg.com/@icons/material/svg/shovel.svg" width="24" height="24"> | `ShovelIcon`
  1790. <img src="https://unpkg.com/@icons/material/svg/shovel-off.svg" width="24" height="24"> | `ShovelOffIcon`
  1791. <img src="https://unpkg.com/@icons/material/svg/shredder.svg" width="24" height="24"> | `ShredderIcon`
  1792. <img src="https://unpkg.com/@icons/material/svg/shuffle-disabled.svg" width="24" height="24"> | `ShuffleDisabledIcon`
  1793. <img src="https://unpkg.com/@icons/material/svg/shuffle.svg" width="24" height="24"> | `ShuffleIcon`
  1794. <img src="https://unpkg.com/@icons/material/svg/shuffle-variant.svg" width="24" height="24"> | `ShuffleVariantIcon`
  1795. <img src="https://unpkg.com/@icons/material/svg/sigma.svg" width="24" height="24"> | `SigmaIcon`
  1796. <img src="https://unpkg.com/@icons/material/svg/sigma-lower.svg" width="24" height="24"> | `SigmaLowerIcon`
  1797. <img src="https://unpkg.com/@icons/material/svg/sign-caution.svg" width="24" height="24"> | `SignCautionIcon`
  1798. <img src="https://unpkg.com/@icons/material/svg/sign-direction.svg" width="24" height="24"> | `SignDirectionIcon`
  1799. <img src="https://unpkg.com/@icons/material/svg/sign-text.svg" width="24" height="24"> | `SignTextIcon`
  1800. <img src="https://unpkg.com/@icons/material/svg/signal-cellular-outline.svg" width="24" height="24"> | `SignalCellularOutlineIcon`
  1801. <img src="https://unpkg.com/@icons/material/svg/signal-cellular-1.svg" width="24" height="24"> | `SignalCellular_1Icon`
  1802. <img src="https://unpkg.com/@icons/material/svg/signal-cellular-2.svg" width="24" height="24"> | `SignalCellular_2Icon`
  1803. <img src="https://unpkg.com/@icons/material/svg/signal-cellular-3.svg" width="24" height="24"> | `SignalCellular_3Icon`
  1804. <img src="https://unpkg.com/@icons/material/svg/signal-hspa.svg" width="24" height="24"> | `SignalHspaIcon`
  1805. <img src="https://unpkg.com/@icons/material/svg/signal-hspa-plus.svg" width="24" height="24"> | `SignalHspaPlusIcon`
  1806. <img src="https://unpkg.com/@icons/material/svg/signal.svg" width="24" height="24"> | `SignalIcon`
  1807. <img src="https://unpkg.com/@icons/material/svg/signal-off.svg" width="24" height="24"> | `SignalOffIcon`
  1808. <img src="https://unpkg.com/@icons/material/svg/signal-variant.svg" width="24" height="24"> | `SignalVariantIcon`
  1809. <img src="https://unpkg.com/@icons/material/svg/signal-2g.svg" width="24" height="24"> | `Signal_2gIcon`
  1810. <img src="https://unpkg.com/@icons/material/svg/signal-3g.svg" width="24" height="24"> | `Signal_3gIcon`
  1811. <img src="https://unpkg.com/@icons/material/svg/signal-4g.svg" width="24" height="24"> | `Signal_4gIcon`
  1812. <img src="https://unpkg.com/@icons/material/svg/silverware-fork.svg" width="24" height="24"> | `SilverwareForkIcon`
  1813. <img src="https://unpkg.com/@icons/material/svg/silverware.svg" width="24" height="24"> | `SilverwareIcon`
  1814. <img src="https://unpkg.com/@icons/material/svg/silverware-spoon.svg" width="24" height="24"> | `SilverwareSpoonIcon`
  1815. <img src="https://unpkg.com/@icons/material/svg/silverware-variant.svg" width="24" height="24"> | `SilverwareVariantIcon`
  1816. <img src="https://unpkg.com/@icons/material/svg/sim-alert.svg" width="24" height="24"> | `SimAlertIcon`
  1817. <img src="https://unpkg.com/@icons/material/svg/sim.svg" width="24" height="24"> | `SimIcon`
  1818. <img src="https://unpkg.com/@icons/material/svg/sim-off.svg" width="24" height="24"> | `SimOffIcon`
  1819. <img src="https://unpkg.com/@icons/material/svg/sitemap.svg" width="24" height="24"> | `SitemapIcon`
  1820. <img src="https://unpkg.com/@icons/material/svg/skip-backward.svg" width="24" height="24"> | `SkipBackwardIcon`
  1821. <img src="https://unpkg.com/@icons/material/svg/skip-forward.svg" width="24" height="24"> | `SkipForwardIcon`
  1822. <img src="https://unpkg.com/@icons/material/svg/skip-next-circle.svg" width="24" height="24"> | `SkipNextCircleIcon`
  1823. <img src="https://unpkg.com/@icons/material/svg/skip-next-circle-outline.svg" width="24" height="24"> | `SkipNextCircleOutlineIcon`
  1824. <img src="https://unpkg.com/@icons/material/svg/skip-next.svg" width="24" height="24"> | `SkipNextIcon`
  1825. <img src="https://unpkg.com/@icons/material/svg/skip-previous-circle.svg" width="24" height="24"> | `SkipPreviousCircleIcon`
  1826. <img src="https://unpkg.com/@icons/material/svg/skip-previous-circle-outline.svg" width="24" height="24"> | `SkipPreviousCircleOutlineIcon`
  1827. <img src="https://unpkg.com/@icons/material/svg/skip-previous.svg" width="24" height="24"> | `SkipPreviousIcon`
  1828. <img src="https://unpkg.com/@icons/material/svg/skull.svg" width="24" height="24"> | `SkullIcon`
  1829. <img src="https://unpkg.com/@icons/material/svg/skype-business.svg" width="24" height="24"> | `SkypeBusinessIcon`
  1830. <img src="https://unpkg.com/@icons/material/svg/skype.svg" width="24" height="24"> | `SkypeIcon`
  1831. <img src="https://unpkg.com/@icons/material/svg/slack.svg" width="24" height="24"> | `SlackIcon`
  1832. <img src="https://unpkg.com/@icons/material/svg/sleep.svg" width="24" height="24"> | `SleepIcon`
  1833. <img src="https://unpkg.com/@icons/material/svg/sleep-off.svg" width="24" height="24"> | `SleepOffIcon`
  1834. <img src="https://unpkg.com/@icons/material/svg/smoking.svg" width="24" height="24"> | `SmokingIcon`
  1835. <img src="https://unpkg.com/@icons/material/svg/smoking-off.svg" width="24" height="24"> | `SmokingOffIcon`
  1836. <img src="https://unpkg.com/@icons/material/svg/snapchat.svg" width="24" height="24"> | `SnapchatIcon`
  1837. <img src="https://unpkg.com/@icons/material/svg/snowflake.svg" width="24" height="24"> | `SnowflakeIcon`
  1838. <img src="https://unpkg.com/@icons/material/svg/snowman.svg" width="24" height="24"> | `SnowmanIcon`
  1839. <img src="https://unpkg.com/@icons/material/svg/soccer-field.svg" width="24" height="24"> | `SoccerFieldIcon`
  1840. <img src="https://unpkg.com/@icons/material/svg/soccer.svg" width="24" height="24"> | `SoccerIcon`
  1841. <img src="https://unpkg.com/@icons/material/svg/sofa.svg" width="24" height="24"> | `SofaIcon`
  1842. <img src="https://unpkg.com/@icons/material/svg/solid.svg" width="24" height="24"> | `SolidIcon`
  1843. <img src="https://unpkg.com/@icons/material/svg/sort-alphabetical.svg" width="24" height="24"> | `SortAlphabeticalIcon`
  1844. <img src="https://unpkg.com/@icons/material/svg/sort-ascending.svg" width="24" height="24"> | `SortAscendingIcon`
  1845. <img src="https://unpkg.com/@icons/material/svg/sort-descending.svg" width="24" height="24"> | `SortDescendingIcon`
  1846. <img src="https://unpkg.com/@icons/material/svg/sort.svg" width="24" height="24"> | `SortIcon`
  1847. <img src="https://unpkg.com/@icons/material/svg/sort-numeric.svg" width="24" height="24"> | `SortNumericIcon`
  1848. <img src="https://unpkg.com/@icons/material/svg/sort-variant.svg" width="24" height="24"> | `SortVariantIcon`
  1849. <img src="https://unpkg.com/@icons/material/svg/soundcloud.svg" width="24" height="24"> | `SoundcloudIcon`
  1850. <img src="https://unpkg.com/@icons/material/svg/source-branch.svg" width="24" height="24"> | `SourceBranchIcon`
  1851. <img src="https://unpkg.com/@icons/material/svg/source-commit-end.svg" width="24" height="24"> | `SourceCommitEndIcon`
  1852. <img src="https://unpkg.com/@icons/material/svg/source-commit-end-local.svg" width="24" height="24"> | `SourceCommitEndLocalIcon`
  1853. <img src="https://unpkg.com/@icons/material/svg/source-commit.svg" width="24" height="24"> | `SourceCommitIcon`
  1854. <img src="https://unpkg.com/@icons/material/svg/source-commit-local.svg" width="24" height="24"> | `SourceCommitLocalIcon`
  1855. <img src="https://unpkg.com/@icons/material/svg/source-commit-next-local.svg" width="24" height="24"> | `SourceCommitNextLocalIcon`
  1856. <img src="https://unpkg.com/@icons/material/svg/source-commit-start.svg" width="24" height="24"> | `SourceCommitStartIcon`
  1857. <img src="https://unpkg.com/@icons/material/svg/source-commit-start-next-local.svg" width="24" height="24"> | `SourceCommitStartNextLocalIcon`
  1858. <img src="https://unpkg.com/@icons/material/svg/source-fork.svg" width="24" height="24"> | `SourceForkIcon`
  1859. <img src="https://unpkg.com/@icons/material/svg/source-merge.svg" width="24" height="24"> | `SourceMergeIcon`
  1860. <img src="https://unpkg.com/@icons/material/svg/source-pull.svg" width="24" height="24"> | `SourcePullIcon`
  1861. <img src="https://unpkg.com/@icons/material/svg/soy-sauce.svg" width="24" height="24"> | `SoySauceIcon`
  1862. <img src="https://unpkg.com/@icons/material/svg/speaker.svg" width="24" height="24"> | `SpeakerIcon`
  1863. <img src="https://unpkg.com/@icons/material/svg/speaker-off.svg" width="24" height="24"> | `SpeakerOffIcon`
  1864. <img src="https://unpkg.com/@icons/material/svg/speaker-wireless.svg" width="24" height="24"> | `SpeakerWirelessIcon`
  1865. <img src="https://unpkg.com/@icons/material/svg/speedometer.svg" width="24" height="24"> | `SpeedometerIcon`
  1866. <img src="https://unpkg.com/@icons/material/svg/spellcheck.svg" width="24" height="24"> | `SpellcheckIcon`
  1867. <img src="https://unpkg.com/@icons/material/svg/spotify.svg" width="24" height="24"> | `SpotifyIcon`
  1868. <img src="https://unpkg.com/@icons/material/svg/spotlight-beam.svg" width="24" height="24"> | `SpotlightBeamIcon`
  1869. <img src="https://unpkg.com/@icons/material/svg/spotlight.svg" width="24" height="24"> | `SpotlightIcon`
  1870. <img src="https://unpkg.com/@icons/material/svg/spray.svg" width="24" height="24"> | `SprayIcon`
  1871. <img src="https://unpkg.com/@icons/material/svg/square.svg" width="24" height="24"> | `SquareIcon`
  1872. <img src="https://unpkg.com/@icons/material/svg/square-inc-cash.svg" width="24" height="24"> | `SquareIncCashIcon`
  1873. <img src="https://unpkg.com/@icons/material/svg/square-inc.svg" width="24" height="24"> | `SquareIncIcon`
  1874. <img src="https://unpkg.com/@icons/material/svg/square-outline.svg" width="24" height="24"> | `SquareOutlineIcon`
  1875. <img src="https://unpkg.com/@icons/material/svg/square-root.svg" width="24" height="24"> | `SquareRootIcon`
  1876. <img src="https://unpkg.com/@icons/material/svg/ssh.svg" width="24" height="24"> | `SshIcon`
  1877. <img src="https://unpkg.com/@icons/material/svg/stack-overflow.svg" width="24" height="24"> | `StackOverflowIcon`
  1878. <img src="https://unpkg.com/@icons/material/svg/stackexchange.svg" width="24" height="24"> | `StackexchangeIcon`
  1879. <img src="https://unpkg.com/@icons/material/svg/stadium.svg" width="24" height="24"> | `StadiumIcon`
  1880. <img src="https://unpkg.com/@icons/material/svg/stairs.svg" width="24" height="24"> | `StairsIcon`
  1881. <img src="https://unpkg.com/@icons/material/svg/standard-definition.svg" width="24" height="24"> | `StandardDefinitionIcon`
  1882. <img src="https://unpkg.com/@icons/material/svg/star-circle.svg" width="24" height="24"> | `StarCircleIcon`
  1883. <img src="https://unpkg.com/@icons/material/svg/star-half.svg" width="24" height="24"> | `StarHalfIcon`
  1884. <img src="https://unpkg.com/@icons/material/svg/star.svg" width="24" height="24"> | `StarIcon`
  1885. <img src="https://unpkg.com/@icons/material/svg/star-off.svg" width="24" height="24"> | `StarOffIcon`
  1886. <img src="https://unpkg.com/@icons/material/svg/star-outline.svg" width="24" height="24"> | `StarOutlineIcon`
  1887. <img src="https://unpkg.com/@icons/material/svg/steam.svg" width="24" height="24"> | `SteamIcon`
  1888. <img src="https://unpkg.com/@icons/material/svg/steering.svg" width="24" height="24"> | `SteeringIcon`
  1889. <img src="https://unpkg.com/@icons/material/svg/step-backward.svg" width="24" height="24"> | `StepBackwardIcon`
  1890. <img src="https://unpkg.com/@icons/material/svg/step-backward-2.svg" width="24" height="24"> | `StepBackward_2Icon`
  1891. <img src="https://unpkg.com/@icons/material/svg/step-forward.svg" width="24" height="24"> | `StepForwardIcon`
  1892. <img src="https://unpkg.com/@icons/material/svg/step-forward-2.svg" width="24" height="24"> | `StepForward_2Icon`
  1893. <img src="https://unpkg.com/@icons/material/svg/stethoscope.svg" width="24" height="24"> | `StethoscopeIcon`
  1894. <img src="https://unpkg.com/@icons/material/svg/sticker-emoji.svg" width="24" height="24"> | `StickerEmojiIcon`
  1895. <img src="https://unpkg.com/@icons/material/svg/sticker.svg" width="24" height="24"> | `StickerIcon`
  1896. <img src="https://unpkg.com/@icons/material/svg/stocking.svg" width="24" height="24"> | `StockingIcon`
  1897. <img src="https://unpkg.com/@icons/material/svg/stop-circle.svg" width="24" height="24"> | `StopCircleIcon`
  1898. <img src="https://unpkg.com/@icons/material/svg/stop-circle-outline.svg" width="24" height="24"> | `StopCircleOutlineIcon`
  1899. <img src="https://unpkg.com/@icons/material/svg/stop.svg" width="24" height="24"> | `StopIcon`
  1900. <img src="https://unpkg.com/@icons/material/svg/store.svg" width="24" height="24"> | `StoreIcon`
  1901. <img src="https://unpkg.com/@icons/material/svg/store-24-hour.svg" width="24" height="24"> | `Store_24HourIcon`
  1902. <img src="https://unpkg.com/@icons/material/svg/stove.svg" width="24" height="24"> | `StoveIcon`
  1903. <img src="https://unpkg.com/@icons/material/svg/subdirectory-arrow-left.svg" width="24" height="24"> | `SubdirectoryArrowLeftIcon`
  1904. <img src="https://unpkg.com/@icons/material/svg/subdirectory-arrow-right.svg" width="24" height="24"> | `SubdirectoryArrowRightIcon`
  1905. <img src="https://unpkg.com/@icons/material/svg/subway.svg" width="24" height="24"> | `SubwayIcon`
  1906. <img src="https://unpkg.com/@icons/material/svg/subway-variant.svg" width="24" height="24"> | `SubwayVariantIcon`
  1907. <img src="https://unpkg.com/@icons/material/svg/summit.svg" width="24" height="24"> | `SummitIcon`
  1908. <img src="https://unpkg.com/@icons/material/svg/sunglasses.svg" width="24" height="24"> | `SunglassesIcon`
  1909. <img src="https://unpkg.com/@icons/material/svg/surround-sound.svg" width="24" height="24"> | `SurroundSoundIcon`
  1910. <img src="https://unpkg.com/@icons/material/svg/surround-sound-2-0.svg" width="24" height="24"> | `SurroundSound_2_0Icon`
  1911. <img src="https://unpkg.com/@icons/material/svg/surround-sound-3-1.svg" width="24" height="24"> | `SurroundSound_3_1Icon`
  1912. <img src="https://unpkg.com/@icons/material/svg/surround-sound-5-1.svg" width="24" height="24"> | `SurroundSound_5_1Icon`
  1913. <img src="https://unpkg.com/@icons/material/svg/surround-sound-7-1.svg" width="24" height="24"> | `SurroundSound_7_1Icon`
  1914. <img src="https://unpkg.com/@icons/material/svg/svg.svg" width="24" height="24"> | `SvgIcon`
  1915. <img src="https://unpkg.com/@icons/material/svg/swap-horizontal.svg" width="24" height="24"> | `SwapHorizontalIcon`
  1916. <img src="https://unpkg.com/@icons/material/svg/swap-horizontal-variant.svg" width="24" height="24"> | `SwapHorizontalVariantIcon`
  1917. <img src="https://unpkg.com/@icons/material/svg/swap-vertical.svg" width="24" height="24"> | `SwapVerticalIcon`
  1918. <img src="https://unpkg.com/@icons/material/svg/swap-vertical-variant.svg" width="24" height="24"> | `SwapVerticalVariantIcon`
  1919. <img src="https://unpkg.com/@icons/material/svg/swim.svg" width="24" height="24"> | `SwimIcon`
  1920. <img src="https://unpkg.com/@icons/material/svg/switch.svg" width="24" height="24"> | `SwitchIcon`
  1921. <img src="https://unpkg.com/@icons/material/svg/sword-cross.svg" width="24" height="24"> | `SwordCrossIcon`
  1922. <img src="https://unpkg.com/@icons/material/svg/sword.svg" width="24" height="24"> | `SwordIcon`
  1923. <img src="https://unpkg.com/@icons/material/svg/sync-alert.svg" width="24" height="24"> | `SyncAlertIcon`
  1924. <img src="https://unpkg.com/@icons/material/svg/sync.svg" width="24" height="24"> | `SyncIcon`
  1925. <img src="https://unpkg.com/@icons/material/svg/sync-off.svg" width="24" height="24"> | `SyncOffIcon`
  1926. <img src="https://unpkg.com/@icons/material/svg/tab.svg" width="24" height="24"> | `TabIcon`
  1927. <img src="https://unpkg.com/@icons/material/svg/tab-plus.svg" width="24" height="24"> | `TabPlusIcon`
  1928. <img src="https://unpkg.com/@icons/material/svg/tab-unselected.svg" width="24" height="24"> | `TabUnselectedIcon`
  1929. <img src="https://unpkg.com/@icons/material/svg/table-column.svg" width="24" height="24"> | `TableColumnIcon`
  1930. <img src="https://unpkg.com/@icons/material/svg/table-column-plus-after.svg" width="24" height="24"> | `TableColumnPlusAfterIcon`
  1931. <img src="https://unpkg.com/@icons/material/svg/table-column-plus-before.svg" width="24" height="24"> | `TableColumnPlusBeforeIcon`
  1932. <img src="https://unpkg.com/@icons/material/svg/table-column-remove.svg" width="24" height="24"> | `TableColumnRemoveIcon`
  1933. <img src="https://unpkg.com/@icons/material/svg/table-column-width.svg" width="24" height="24"> | `TableColumnWidthIcon`
  1934. <img src="https://unpkg.com/@icons/material/svg/table-edit.svg" width="24" height="24"> | `TableEditIcon`
  1935. <img src="https://unpkg.com/@icons/material/svg/table.svg" width="24" height="24"> | `TableIcon`
  1936. <img src="https://unpkg.com/@icons/material/svg/table-large.svg" width="24" height="24"> | `TableLargeIcon`
  1937. <img src="https://unpkg.com/@icons/material/svg/table-of-contents.svg" width="24" height="24"> | `TableOfContentsIcon`
  1938. <img src="https://unpkg.com/@icons/material/svg/table-row-height.svg" width="24" height="24"> | `TableRowHeightIcon`
  1939. <img src="https://unpkg.com/@icons/material/svg/table-row.svg" width="24" height="24"> | `TableRowIcon`
  1940. <img src="https://unpkg.com/@icons/material/svg/table-row-plus-after.svg" width="24" height="24"> | `TableRowPlusAfterIcon`
  1941. <img src="https://unpkg.com/@icons/material/svg/table-row-plus-before.svg" width="24" height="24"> | `TableRowPlusBeforeIcon`
  1942. <img src="https://unpkg.com/@icons/material/svg/table-row-remove.svg" width="24" height="24"> | `TableRowRemoveIcon`
  1943. <img src="https://unpkg.com/@icons/material/svg/table-settings.svg" width="24" height="24"> | `TableSettingsIcon`
  1944. <img src="https://unpkg.com/@icons/material/svg/tablet-android.svg" width="24" height="24"> | `TabletAndroidIcon`
  1945. <img src="https://unpkg.com/@icons/material/svg/tablet.svg" width="24" height="24"> | `TabletIcon`
  1946. <img src="https://unpkg.com/@icons/material/svg/tablet-ipad.svg" width="24" height="24"> | `TabletIpadIcon`
  1947. <img src="https://unpkg.com/@icons/material/svg/taco.svg" width="24" height="24"> | `TacoIcon`
  1948. <img src="https://unpkg.com/@icons/material/svg/tag-faces.svg" width="24" height="24"> | `TagFacesIcon`
  1949. <img src="https://unpkg.com/@icons/material/svg/tag-heart.svg" width="24" height="24"> | `TagHeartIcon`
  1950. <img src="https://unpkg.com/@icons/material/svg/tag.svg" width="24" height="24"> | `TagIcon`
  1951. <img src="https://unpkg.com/@icons/material/svg/tag-multiple.svg" width="24" height="24"> | `TagMultipleIcon`
  1952. <img src="https://unpkg.com/@icons/material/svg/tag-outline.svg" width="24" height="24"> | `TagOutlineIcon`
  1953. <img src="https://unpkg.com/@icons/material/svg/tag-plus.svg" width="24" height="24"> | `TagPlusIcon`
  1954. <img src="https://unpkg.com/@icons/material/svg/tag-remove.svg" width="24" height="24"> | `TagRemoveIcon`
  1955. <img src="https://unpkg.com/@icons/material/svg/tag-text-outline.svg" width="24" height="24"> | `TagTextOutlineIcon`
  1956. <img src="https://unpkg.com/@icons/material/svg/target.svg" width="24" height="24"> | `TargetIcon`
  1957. <img src="https://unpkg.com/@icons/material/svg/taxi.svg" width="24" height="24"> | `TaxiIcon`
  1958. <img src="https://unpkg.com/@icons/material/svg/teach.svg" width="24" height="24"> | `TeachIcon`
  1959. <img src="https://unpkg.com/@icons/material/svg/teamviewer.svg" width="24" height="24"> | `TeamviewerIcon`
  1960. <img src="https://unpkg.com/@icons/material/svg/telegram.svg" width="24" height="24"> | `TelegramIcon`
  1961. <img src="https://unpkg.com/@icons/material/svg/television-box.svg" width="24" height="24"> | `TelevisionBoxIcon`
  1962. <img src="https://unpkg.com/@icons/material/svg/television-classic.svg" width="24" height="24"> | `TelevisionClassicIcon`
  1963. <img src="https://unpkg.com/@icons/material/svg/television-classic-off.svg" width="24" height="24"> | `TelevisionClassicOffIcon`
  1964. <img src="https://unpkg.com/@icons/material/svg/television-guide.svg" width="24" height="24"> | `TelevisionGuideIcon`
  1965. <img src="https://unpkg.com/@icons/material/svg/television.svg" width="24" height="24"> | `TelevisionIcon`
  1966. <img src="https://unpkg.com/@icons/material/svg/television-off.svg" width="24" height="24"> | `TelevisionOffIcon`
  1967. <img src="https://unpkg.com/@icons/material/svg/temperature-celsius.svg" width="24" height="24"> | `TemperatureCelsiusIcon`
  1968. <img src="https://unpkg.com/@icons/material/svg/temperature-fahrenheit.svg" width="24" height="24"> | `TemperatureFahrenheitIcon`
  1969. <img src="https://unpkg.com/@icons/material/svg/temperature-kelvin.svg" width="24" height="24"> | `TemperatureKelvinIcon`
  1970. <img src="https://unpkg.com/@icons/material/svg/tennis.svg" width="24" height="24"> | `TennisIcon`
  1971. <img src="https://unpkg.com/@icons/material/svg/tent.svg" width="24" height="24"> | `TentIcon`
  1972. <img src="https://unpkg.com/@icons/material/svg/terrain.svg" width="24" height="24"> | `TerrainIcon`
  1973. <img src="https://unpkg.com/@icons/material/svg/test-tube.svg" width="24" height="24"> | `TestTubeIcon`
  1974. <img src="https://unpkg.com/@icons/material/svg/text-shadow.svg" width="24" height="24"> | `TextShadowIcon`
  1975. <img src="https://unpkg.com/@icons/material/svg/text-to-speech.svg" width="24" height="24"> | `TextToSpeechIcon`
  1976. <img src="https://unpkg.com/@icons/material/svg/text-to-speech-off.svg" width="24" height="24"> | `TextToSpeechOffIcon`
  1977. <img src="https://unpkg.com/@icons/material/svg/textbox.svg" width="24" height="24"> | `TextboxIcon`
  1978. <img src="https://unpkg.com/@icons/material/svg/textbox-password.svg" width="24" height="24"> | `TextboxPasswordIcon`
  1979. <img src="https://unpkg.com/@icons/material/svg/texture.svg" width="24" height="24"> | `TextureIcon`
  1980. <img src="https://unpkg.com/@icons/material/svg/theater.svg" width="24" height="24"> | `TheaterIcon`
  1981. <img src="https://unpkg.com/@icons/material/svg/theme-light-dark.svg" width="24" height="24"> | `ThemeLightDarkIcon`
  1982. <img src="https://unpkg.com/@icons/material/svg/thermometer.svg" width="24" height="24"> | `ThermometerIcon`
  1983. <img src="https://unpkg.com/@icons/material/svg/thermometer-lines.svg" width="24" height="24"> | `ThermometerLinesIcon`
  1984. <img src="https://unpkg.com/@icons/material/svg/thermostat-box.svg" width="24" height="24"> | `ThermostatBoxIcon`
  1985. <img src="https://unpkg.com/@icons/material/svg/thought-bubble.svg" width="24" height="24"> | `ThoughtBubbleIcon`
  1986. <img src="https://unpkg.com/@icons/material/svg/thought-bubble-outline.svg" width="24" height="24"> | `ThoughtBubbleOutlineIcon`
  1987. <img src="https://unpkg.com/@icons/material/svg/thumb-down.svg" width="24" height="24"> | `ThumbDownIcon`
  1988. <img src="https://unpkg.com/@icons/material/svg/thumb-down-outline.svg" width="24" height="24"> | `ThumbDownOutlineIcon`
  1989. <img src="https://unpkg.com/@icons/material/svg/thumb-up.svg" width="24" height="24"> | `ThumbUpIcon`
  1990. <img src="https://unpkg.com/@icons/material/svg/thumb-up-outline.svg" width="24" height="24"> | `ThumbUpOutlineIcon`
  1991. <img src="https://unpkg.com/@icons/material/svg/thumbs-up-down.svg" width="24" height="24"> | `ThumbsUpDownIcon`
  1992. <img src="https://unpkg.com/@icons/material/svg/ticket-account.svg" width="24" height="24"> | `TicketAccountIcon`
  1993. <img src="https://unpkg.com/@icons/material/svg/ticket-confirmation.svg" width="24" height="24"> | `TicketConfirmationIcon`
  1994. <img src="https://unpkg.com/@icons/material/svg/ticket.svg" width="24" height="24"> | `TicketIcon`
  1995. <img src="https://unpkg.com/@icons/material/svg/ticket-percent.svg" width="24" height="24"> | `TicketPercentIcon`
  1996. <img src="https://unpkg.com/@icons/material/svg/tie.svg" width="24" height="24"> | `TieIcon`
  1997. <img src="https://unpkg.com/@icons/material/svg/tilde.svg" width="24" height="24"> | `TildeIcon`
  1998. <img src="https://unpkg.com/@icons/material/svg/timelapse.svg" width="24" height="24"> | `TimelapseIcon`
  1999. <img src="https://unpkg.com/@icons/material/svg/timer.svg" width="24" height="24"> | `TimerIcon`
  2000. <img src="https://unpkg.com/@icons/material/svg/timer-off.svg" width="24" height="24"> | `TimerOffIcon`
  2001. <img src="https://unpkg.com/@icons/material/svg/timer-sand-empty.svg" width="24" height="24"> | `TimerSandEmptyIcon`
  2002. <img src="https://unpkg.com/@icons/material/svg/timer-sand-full.svg" width="24" height="24"> | `TimerSandFullIcon`
  2003. <img src="https://unpkg.com/@icons/material/svg/timer-sand.svg" width="24" height="24"> | `TimerSandIcon`
  2004. <img src="https://unpkg.com/@icons/material/svg/timer-10.svg" width="24" height="24"> | `Timer_10Icon`
  2005. <img src="https://unpkg.com/@icons/material/svg/timer-3.svg" width="24" height="24"> | `Timer_3Icon`
  2006. <img src="https://unpkg.com/@icons/material/svg/timetable.svg" width="24" height="24"> | `TimetableIcon`
  2007. <img src="https://unpkg.com/@icons/material/svg/toggle-switch.svg" width="24" height="24"> | `ToggleSwitchIcon`
  2008. <img src="https://unpkg.com/@icons/material/svg/toggle-switch-off.svg" width="24" height="24"> | `ToggleSwitchOffIcon`
  2009. <img src="https://unpkg.com/@icons/material/svg/tooltip-edit.svg" width="24" height="24"> | `TooltipEditIcon`
  2010. <img src="https://unpkg.com/@icons/material/svg/tooltip.svg" width="24" height="24"> | `TooltipIcon`
  2011. <img src="https://unpkg.com/@icons/material/svg/tooltip-image.svg" width="24" height="24"> | `TooltipImageIcon`
  2012. <img src="https://unpkg.com/@icons/material/svg/tooltip-outline.svg" width="24" height="24"> | `TooltipOutlineIcon`
  2013. <img src="https://unpkg.com/@icons/material/svg/tooltip-outline-plus.svg" width="24" height="24"> | `TooltipOutlinePlusIcon`
  2014. <img src="https://unpkg.com/@icons/material/svg/tooltip-text.svg" width="24" height="24"> | `TooltipTextIcon`
  2015. <img src="https://unpkg.com/@icons/material/svg/tooth.svg" width="24" height="24"> | `ToothIcon`
  2016. <img src="https://unpkg.com/@icons/material/svg/tooth-outline.svg" width="24" height="24"> | `ToothOutlineIcon`
  2017. <img src="https://unpkg.com/@icons/material/svg/tor.svg" width="24" height="24"> | `TorIcon`
  2018. <img src="https://unpkg.com/@icons/material/svg/tower-beach.svg" width="24" height="24"> | `TowerBeachIcon`
  2019. <img src="https://unpkg.com/@icons/material/svg/tower-fire.svg" width="24" height="24"> | `TowerFireIcon`
  2020. <img src="https://unpkg.com/@icons/material/svg/towing.svg" width="24" height="24"> | `TowingIcon`
  2021. <img src="https://unpkg.com/@icons/material/svg/trackpad.svg" width="24" height="24"> | `TrackpadIcon`
  2022. <img src="https://unpkg.com/@icons/material/svg/tractor.svg" width="24" height="24"> | `TractorIcon`
  2023. <img src="https://unpkg.com/@icons/material/svg/traffic-light.svg" width="24" height="24"> | `TrafficLightIcon`
  2024. <img src="https://unpkg.com/@icons/material/svg/train.svg" width="24" height="24"> | `TrainIcon`
  2025. <img src="https://unpkg.com/@icons/material/svg/train-variant.svg" width="24" height="24"> | `TrainVariantIcon`
  2026. <img src="https://unpkg.com/@icons/material/svg/tram.svg" width="24" height="24"> | `TramIcon`
  2027. <img src="https://unpkg.com/@icons/material/svg/transcribe-close.svg" width="24" height="24"> | `TranscribeCloseIcon`
  2028. <img src="https://unpkg.com/@icons/material/svg/transcribe.svg" width="24" height="24"> | `TranscribeIcon`
  2029. <img src="https://unpkg.com/@icons/material/svg/transfer.svg" width="24" height="24"> | `TransferIcon`
  2030. <img src="https://unpkg.com/@icons/material/svg/transit-transfer.svg" width="24" height="24"> | `TransitTransferIcon`
  2031. <img src="https://unpkg.com/@icons/material/svg/translate.svg" width="24" height="24"> | `TranslateIcon`
  2032. <img src="https://unpkg.com/@icons/material/svg/treasure-chest.svg" width="24" height="24"> | `TreasureChestIcon`
  2033. <img src="https://unpkg.com/@icons/material/svg/tree.svg" width="24" height="24"> | `TreeIcon`
  2034. <img src="https://unpkg.com/@icons/material/svg/trello.svg" width="24" height="24"> | `TrelloIcon`
  2035. <img src="https://unpkg.com/@icons/material/svg/trending-down.svg" width="24" height="24"> | `TrendingDownIcon`
  2036. <img src="https://unpkg.com/@icons/material/svg/trending-neutral.svg" width="24" height="24"> | `TrendingNeutralIcon`
  2037. <img src="https://unpkg.com/@icons/material/svg/trending-up.svg" width="24" height="24"> | `TrendingUpIcon`
  2038. <img src="https://unpkg.com/@icons/material/svg/triangle.svg" width="24" height="24"> | `TriangleIcon`
  2039. <img src="https://unpkg.com/@icons/material/svg/triangle-outline.svg" width="24" height="24"> | `TriangleOutlineIcon`
  2040. <img src="https://unpkg.com/@icons/material/svg/trophy-award.svg" width="24" height="24"> | `TrophyAwardIcon`
  2041. <img src="https://unpkg.com/@icons/material/svg/trophy.svg" width="24" height="24"> | `TrophyIcon`
  2042. <img src="https://unpkg.com/@icons/material/svg/trophy-outline.svg" width="24" height="24"> | `TrophyOutlineIcon`
  2043. <img src="https://unpkg.com/@icons/material/svg/trophy-variant.svg" width="24" height="24"> | `TrophyVariantIcon`
  2044. <img src="https://unpkg.com/@icons/material/svg/trophy-variant-outline.svg" width="24" height="24"> | `TrophyVariantOutlineIcon`
  2045. <img src="https://unpkg.com/@icons/material/svg/truck-delivery.svg" width="24" height="24"> | `TruckDeliveryIcon`
  2046. <img src="https://unpkg.com/@icons/material/svg/truck-fast.svg" width="24" height="24"> | `TruckFastIcon`
  2047. <img src="https://unpkg.com/@icons/material/svg/truck.svg" width="24" height="24"> | `TruckIcon`
  2048. <img src="https://unpkg.com/@icons/material/svg/truck-trailer.svg" width="24" height="24"> | `TruckTrailerIcon`
  2049. <img src="https://unpkg.com/@icons/material/svg/tshirt-crew.svg" width="24" height="24"> | `TshirtCrewIcon`
  2050. <img src="https://unpkg.com/@icons/material/svg/tshirt-v.svg" width="24" height="24"> | `TshirtVIcon`
  2051. <img src="https://unpkg.com/@icons/material/svg/tumblr.svg" width="24" height="24"> | `TumblrIcon`
  2052. <img src="https://unpkg.com/@icons/material/svg/tumblr-reblog.svg" width="24" height="24"> | `TumblrReblogIcon`
  2053. <img src="https://unpkg.com/@icons/material/svg/tune.svg" width="24" height="24"> | `TuneIcon`
  2054. <img src="https://unpkg.com/@icons/material/svg/tune-vertical.svg" width="24" height="24"> | `TuneVerticalIcon`
  2055. <img src="https://unpkg.com/@icons/material/svg/twitch.svg" width="24" height="24"> | `TwitchIcon`
  2056. <img src="https://unpkg.com/@icons/material/svg/twitter-box.svg" width="24" height="24"> | `TwitterBoxIcon`
  2057. <img src="https://unpkg.com/@icons/material/svg/twitter-circle.svg" width="24" height="24"> | `TwitterCircleIcon`
  2058. <img src="https://unpkg.com/@icons/material/svg/twitter.svg" width="24" height="24"> | `TwitterIcon`
  2059. <img src="https://unpkg.com/@icons/material/svg/twitter-retweet.svg" width="24" height="24"> | `TwitterRetweetIcon`
  2060. <img src="https://unpkg.com/@icons/material/svg/uber.svg" width="24" height="24"> | `UberIcon`
  2061. <img src="https://unpkg.com/@icons/material/svg/ubuntu.svg" width="24" height="24"> | `UbuntuIcon`
  2062. <img src="https://unpkg.com/@icons/material/svg/ultra-high-definition.svg" width="24" height="24"> | `UltraHighDefinitionIcon`
  2063. <img src="https://unpkg.com/@icons/material/svg/umbraco.svg" width="24" height="24"> | `UmbracoIcon`
  2064. <img src="https://unpkg.com/@icons/material/svg/umbrella.svg" width="24" height="24"> | `UmbrellaIcon`
  2065. <img src="https://unpkg.com/@icons/material/svg/umbrella-outline.svg" width="24" height="24"> | `UmbrellaOutlineIcon`
  2066. <img src="https://unpkg.com/@icons/material/svg/undo.svg" width="24" height="24"> | `UndoIcon`
  2067. <img src="https://unpkg.com/@icons/material/svg/undo-variant.svg" width="24" height="24"> | `UndoVariantIcon`
  2068. <img src="https://unpkg.com/@icons/material/svg/unfold-less-horizontal.svg" width="24" height="24"> | `UnfoldLessHorizontalIcon`
  2069. <img src="https://unpkg.com/@icons/material/svg/unfold-less-vertical.svg" width="24" height="24"> | `UnfoldLessVerticalIcon`
  2070. <img src="https://unpkg.com/@icons/material/svg/unfold-more-horizontal.svg" width="24" height="24"> | `UnfoldMoreHorizontalIcon`
  2071. <img src="https://unpkg.com/@icons/material/svg/unfold-more-vertical.svg" width="24" height="24"> | `UnfoldMoreVerticalIcon`
  2072. <img src="https://unpkg.com/@icons/material/svg/ungroup.svg" width="24" height="24"> | `UngroupIcon`
  2073. <img src="https://unpkg.com/@icons/material/svg/unity.svg" width="24" height="24"> | `UnityIcon`
  2074. <img src="https://unpkg.com/@icons/material/svg/untappd.svg" width="24" height="24"> | `UntappdIcon`
  2075. <img src="https://unpkg.com/@icons/material/svg/update.svg" width="24" height="24"> | `UpdateIcon`
  2076. <img src="https://unpkg.com/@icons/material/svg/upload.svg" width="24" height="24"> | `UploadIcon`
  2077. <img src="https://unpkg.com/@icons/material/svg/upload-multiple.svg" width="24" height="24"> | `UploadMultipleIcon`
  2078. <img src="https://unpkg.com/@icons/material/svg/upload-network.svg" width="24" height="24"> | `UploadNetworkIcon`
  2079. <img src="https://unpkg.com/@icons/material/svg/usb.svg" width="24" height="24"> | `UsbIcon`
  2080. <img src="https://unpkg.com/@icons/material/svg/van-passenger.svg" width="24" height="24"> | `VanPassengerIcon`
  2081. <img src="https://unpkg.com/@icons/material/svg/van-utility.svg" width="24" height="24"> | `VanUtilityIcon`
  2082. <img src="https://unpkg.com/@icons/material/svg/vanish.svg" width="24" height="24"> | `VanishIcon`
  2083. <img src="https://unpkg.com/@icons/material/svg/vector-arrange-above.svg" width="24" height="24"> | `VectorArrangeAboveIcon`
  2084. <img src="https://unpkg.com/@icons/material/svg/vector-arrange-below.svg" width="24" height="24"> | `VectorArrangeBelowIcon`
  2085. <img src="https://unpkg.com/@icons/material/svg/vector-circle.svg" width="24" height="24"> | `VectorCircleIcon`
  2086. <img src="https://unpkg.com/@icons/material/svg/vector-circle-variant.svg" width="24" height="24"> | `VectorCircleVariantIcon`
  2087. <img src="https://unpkg.com/@icons/material/svg/vector-combine.svg" width="24" height="24"> | `VectorCombineIcon`
  2088. <img src="https://unpkg.com/@icons/material/svg/vector-curve.svg" width="24" height="24"> | `VectorCurveIcon`
  2089. <img src="https://unpkg.com/@icons/material/svg/vector-difference-ab.svg" width="24" height="24"> | `VectorDifferenceAbIcon`
  2090. <img src="https://unpkg.com/@icons/material/svg/vector-difference-ba.svg" width="24" height="24"> | `VectorDifferenceBaIcon`
  2091. <img src="https://unpkg.com/@icons/material/svg/vector-difference.svg" width="24" height="24"> | `VectorDifferenceIcon`
  2092. <img src="https://unpkg.com/@icons/material/svg/vector-ellipse.svg" width="24" height="24"> | `VectorEllipseIcon`
  2093. <img src="https://unpkg.com/@icons/material/svg/vector-intersection.svg" width="24" height="24"> | `VectorIntersectionIcon`
  2094. <img src="https://unpkg.com/@icons/material/svg/vector-line.svg" width="24" height="24"> | `VectorLineIcon`
  2095. <img src="https://unpkg.com/@icons/material/svg/vector-point.svg" width="24" height="24"> | `VectorPointIcon`
  2096. <img src="https://unpkg.com/@icons/material/svg/vector-polygon.svg" width="24" height="24"> | `VectorPolygonIcon`
  2097. <img src="https://unpkg.com/@icons/material/svg/vector-polyline.svg" width="24" height="24"> | `VectorPolylineIcon`
  2098. <img src="https://unpkg.com/@icons/material/svg/vector-radius.svg" width="24" height="24"> | `VectorRadiusIcon`
  2099. <img src="https://unpkg.com/@icons/material/svg/vector-rectangle.svg" width="24" height="24"> | `VectorRectangleIcon`
  2100. <img src="https://unpkg.com/@icons/material/svg/vector-selection.svg" width="24" height="24"> | `VectorSelectionIcon`
  2101. <img src="https://unpkg.com/@icons/material/svg/vector-square.svg" width="24" height="24"> | `VectorSquareIcon`
  2102. <img src="https://unpkg.com/@icons/material/svg/vector-triangle.svg" width="24" height="24"> | `VectorTriangleIcon`
  2103. <img src="https://unpkg.com/@icons/material/svg/vector-union.svg" width="24" height="24"> | `VectorUnionIcon`
  2104. <img src="https://unpkg.com/@icons/material/svg/venmo.svg" width="24" height="24"> | `VenmoIcon`
  2105. <img src="https://unpkg.com/@icons/material/svg/verified.svg" width="24" height="24"> | `VerifiedIcon`
  2106. <img src="https://unpkg.com/@icons/material/svg/vibrate.svg" width="24" height="24"> | `VibrateIcon`
  2107. <img src="https://unpkg.com/@icons/material/svg/video.svg" width="24" height="24"> | `VideoIcon`
  2108. <img src="https://unpkg.com/@icons/material/svg/video-input-antenna.svg" width="24" height="24"> | `VideoInputAntennaIcon`
  2109. <img src="https://unpkg.com/@icons/material/svg/video-input-component.svg" width="24" height="24"> | `VideoInputComponentIcon`
  2110. <img src="https://unpkg.com/@icons/material/svg/video-input-hdmi.svg" width="24" height="24"> | `VideoInputHdmiIcon`
  2111. <img src="https://unpkg.com/@icons/material/svg/video-input-svideo.svg" width="24" height="24"> | `VideoInputSvideoIcon`
  2112. <img src="https://unpkg.com/@icons/material/svg/video-off.svg" width="24" height="24"> | `VideoOffIcon`
  2113. <img src="https://unpkg.com/@icons/material/svg/video-switch.svg" width="24" height="24"> | `VideoSwitchIcon`
  2114. <img src="https://unpkg.com/@icons/material/svg/video-3d.svg" width="24" height="24"> | `Video_3dIcon`
  2115. <img src="https://unpkg.com/@icons/material/svg/video-4k-box.svg" width="24" height="24"> | `Video_4kBoxIcon`
  2116. <img src="https://unpkg.com/@icons/material/svg/view-agenda.svg" width="24" height="24"> | `ViewAgendaIcon`
  2117. <img src="https://unpkg.com/@icons/material/svg/view-array.svg" width="24" height="24"> | `ViewArrayIcon`
  2118. <img src="https://unpkg.com/@icons/material/svg/view-carousel.svg" width="24" height="24"> | `ViewCarouselIcon`
  2119. <img src="https://unpkg.com/@icons/material/svg/view-column.svg" width="24" height="24"> | `ViewColumnIcon`
  2120. <img src="https://unpkg.com/@icons/material/svg/view-dashboard.svg" width="24" height="24"> | `ViewDashboardIcon`
  2121. <img src="https://unpkg.com/@icons/material/svg/view-dashboard-variant.svg" width="24" height="24"> | `ViewDashboardVariantIcon`
  2122. <img src="https://unpkg.com/@icons/material/svg/view-day.svg" width="24" height="24"> | `ViewDayIcon`
  2123. <img src="https://unpkg.com/@icons/material/svg/view-grid.svg" width="24" height="24"> | `ViewGridIcon`
  2124. <img src="https://unpkg.com/@icons/material/svg/view-headline.svg" width="24" height="24"> | `ViewHeadlineIcon`
  2125. <img src="https://unpkg.com/@icons/material/svg/view-list.svg" width="24" height="24"> | `ViewListIcon`
  2126. <img src="https://unpkg.com/@icons/material/svg/view-module.svg" width="24" height="24"> | `ViewModuleIcon`
  2127. <img src="https://unpkg.com/@icons/material/svg/view-parallel.svg" width="24" height="24"> | `ViewParallelIcon`
  2128. <img src="https://unpkg.com/@icons/material/svg/view-quilt.svg" width="24" height="24"> | `ViewQuiltIcon`
  2129. <img src="https://unpkg.com/@icons/material/svg/view-sequential.svg" width="24" height="24"> | `ViewSequentialIcon`
  2130. <img src="https://unpkg.com/@icons/material/svg/view-stream.svg" width="24" height="24"> | `ViewStreamIcon`
  2131. <img src="https://unpkg.com/@icons/material/svg/view-week.svg" width="24" height="24"> | `ViewWeekIcon`
  2132. <img src="https://unpkg.com/@icons/material/svg/vimeo.svg" width="24" height="24"> | `VimeoIcon`
  2133. <img src="https://unpkg.com/@icons/material/svg/violin.svg" width="24" height="24"> | `ViolinIcon`
  2134. <img src="https://unpkg.com/@icons/material/svg/virtual-reality.svg" width="24" height="24"> | `VirtualRealityIcon`
  2135. <img src="https://unpkg.com/@icons/material/svg/visualstudio.svg" width="24" height="24"> | `VisualstudioIcon`
  2136. <img src="https://unpkg.com/@icons/material/svg/vk-box.svg" width="24" height="24"> | `VkBoxIcon`
  2137. <img src="https://unpkg.com/@icons/material/svg/vk-circle.svg" width="24" height="24"> | `VkCircleIcon`
  2138. <img src="https://unpkg.com/@icons/material/svg/vk.svg" width="24" height="24"> | `VkIcon`
  2139. <img src="https://unpkg.com/@icons/material/svg/vlc.svg" width="24" height="24"> | `VlcIcon`
  2140. <img src="https://unpkg.com/@icons/material/svg/voice.svg" width="24" height="24"> | `VoiceIcon`
  2141. <img src="https://unpkg.com/@icons/material/svg/voicemail.svg" width="24" height="24"> | `VoicemailIcon`
  2142. <img src="https://unpkg.com/@icons/material/svg/volume-high.svg" width="24" height="24"> | `VolumeHighIcon`
  2143. <img src="https://unpkg.com/@icons/material/svg/volume-low.svg" width="24" height="24"> | `VolumeLowIcon`
  2144. <img src="https://unpkg.com/@icons/material/svg/volume-medium.svg" width="24" height="24"> | `VolumeMediumIcon`
  2145. <img src="https://unpkg.com/@icons/material/svg/volume-minus.svg" width="24" height="24"> | `VolumeMinusIcon`
  2146. <img src="https://unpkg.com/@icons/material/svg/volume-mute.svg" width="24" height="24"> | `VolumeMuteIcon`
  2147. <img src="https://unpkg.com/@icons/material/svg/volume-off.svg" width="24" height="24"> | `VolumeOffIcon`
  2148. <img src="https://unpkg.com/@icons/material/svg/volume-plus.svg" width="24" height="24"> | `VolumePlusIcon`
  2149. <img src="https://unpkg.com/@icons/material/svg/vpn.svg" width="24" height="24"> | `VpnIcon`
  2150. <img src="https://unpkg.com/@icons/material/svg/vuejs.svg" width="24" height="24"> | `VuejsIcon`
  2151. <img src="https://unpkg.com/@icons/material/svg/walk.svg" width="24" height="24"> | `WalkIcon`
  2152. <img src="https://unpkg.com/@icons/material/svg/wall.svg" width="24" height="24"> | `WallIcon`
  2153. <img src="https://unpkg.com/@icons/material/svg/wallet-giftcard.svg" width="24" height="24"> | `WalletGiftcardIcon`
  2154. <img src="https://unpkg.com/@icons/material/svg/wallet.svg" width="24" height="24"> | `WalletIcon`
  2155. <img src="https://unpkg.com/@icons/material/svg/wallet-membership.svg" width="24" height="24"> | `WalletMembershipIcon`
  2156. <img src="https://unpkg.com/@icons/material/svg/wallet-travel.svg" width="24" height="24"> | `WalletTravelIcon`
  2157. <img src="https://unpkg.com/@icons/material/svg/wan.svg" width="24" height="24"> | `WanIcon`
  2158. <img src="https://unpkg.com/@icons/material/svg/washing-machine.svg" width="24" height="24"> | `WashingMachineIcon`
  2159. <img src="https://unpkg.com/@icons/material/svg/watch-export.svg" width="24" height="24"> | `WatchExportIcon`
  2160. <img src="https://unpkg.com/@icons/material/svg/watch-export-variant.svg" width="24" height="24"> | `WatchExportVariantIcon`
  2161. <img src="https://unpkg.com/@icons/material/svg/watch.svg" width="24" height="24"> | `WatchIcon`
  2162. <img src="https://unpkg.com/@icons/material/svg/watch-import.svg" width="24" height="24"> | `WatchImportIcon`
  2163. <img src="https://unpkg.com/@icons/material/svg/watch-import-variant.svg" width="24" height="24"> | `WatchImportVariantIcon`
  2164. <img src="https://unpkg.com/@icons/material/svg/watch-variant.svg" width="24" height="24"> | `WatchVariantIcon`
  2165. <img src="https://unpkg.com/@icons/material/svg/watch-vibrate.svg" width="24" height="24"> | `WatchVibrateIcon`
  2166. <img src="https://unpkg.com/@icons/material/svg/water.svg" width="24" height="24"> | `WaterIcon`
  2167. <img src="https://unpkg.com/@icons/material/svg/water-off.svg" width="24" height="24"> | `WaterOffIcon`
  2168. <img src="https://unpkg.com/@icons/material/svg/water-percent.svg" width="24" height="24"> | `WaterPercentIcon`
  2169. <img src="https://unpkg.com/@icons/material/svg/water-pump.svg" width="24" height="24"> | `WaterPumpIcon`
  2170. <img src="https://unpkg.com/@icons/material/svg/watermark.svg" width="24" height="24"> | `WatermarkIcon`
  2171. <img src="https://unpkg.com/@icons/material/svg/waves.svg" width="24" height="24"> | `WavesIcon`
  2172. <img src="https://unpkg.com/@icons/material/svg/weather-cloudy.svg" width="24" height="24"> | `WeatherCloudyIcon`
  2173. <img src="https://unpkg.com/@icons/material/svg/weather-fog.svg" width="24" height="24"> | `WeatherFogIcon`
  2174. <img src="https://unpkg.com/@icons/material/svg/weather-hail.svg" width="24" height="24"> | `WeatherHailIcon`
  2175. <img src="https://unpkg.com/@icons/material/svg/weather-hurricane.svg" width="24" height="24"> | `WeatherHurricaneIcon`
  2176. <img src="https://unpkg.com/@icons/material/svg/weather-lightning.svg" width="24" height="24"> | `WeatherLightningIcon`
  2177. <img src="https://unpkg.com/@icons/material/svg/weather-lightning-rainy.svg" width="24" height="24"> | `WeatherLightningRainyIcon`
  2178. <img src="https://unpkg.com/@icons/material/svg/weather-night.svg" width="24" height="24"> | `WeatherNightIcon`
  2179. <img src="https://unpkg.com/@icons/material/svg/weather-partlycloudy.svg" width="24" height="24"> | `WeatherPartlycloudyIcon`
  2180. <img src="https://unpkg.com/@icons/material/svg/weather-pouring.svg" width="24" height="24"> | `WeatherPouringIcon`
  2181. <img src="https://unpkg.com/@icons/material/svg/weather-rainy.svg" width="24" height="24"> | `WeatherRainyIcon`
  2182. <img src="https://unpkg.com/@icons/material/svg/weather-snowy.svg" width="24" height="24"> | `WeatherSnowyIcon`
  2183. <img src="https://unpkg.com/@icons/material/svg/weather-snowy-rainy.svg" width="24" height="24"> | `WeatherSnowyRainyIcon`
  2184. <img src="https://unpkg.com/@icons/material/svg/weather-sunny.svg" width="24" height="24"> | `WeatherSunnyIcon`
  2185. <img src="https://unpkg.com/@icons/material/svg/weather-sunset-down.svg" width="24" height="24"> | `WeatherSunsetDownIcon`
  2186. <img src="https://unpkg.com/@icons/material/svg/weather-sunset.svg" width="24" height="24"> | `WeatherSunsetIcon`
  2187. <img src="https://unpkg.com/@icons/material/svg/weather-sunset-up.svg" width="24" height="24"> | `WeatherSunsetUpIcon`
  2188. <img src="https://unpkg.com/@icons/material/svg/weather-windy.svg" width="24" height="24"> | `WeatherWindyIcon`
  2189. <img src="https://unpkg.com/@icons/material/svg/weather-windy-variant.svg" width="24" height="24"> | `WeatherWindyVariantIcon`
  2190. <img src="https://unpkg.com/@icons/material/svg/web.svg" width="24" height="24"> | `WebIcon`
  2191. <img src="https://unpkg.com/@icons/material/svg/webcam.svg" width="24" height="24"> | `WebcamIcon`
  2192. <img src="https://unpkg.com/@icons/material/svg/webhook.svg" width="24" height="24"> | `WebhookIcon`
  2193. <img src="https://unpkg.com/@icons/material/svg/webpack.svg" width="24" height="24"> | `WebpackIcon`
  2194. <img src="https://unpkg.com/@icons/material/svg/wechat.svg" width="24" height="24"> | `WechatIcon`
  2195. <img src="https://unpkg.com/@icons/material/svg/weight.svg" width="24" height="24"> | `WeightIcon`
  2196. <img src="https://unpkg.com/@icons/material/svg/weight-kilogram.svg" width="24" height="24"> | `WeightKilogramIcon`
  2197. <img src="https://unpkg.com/@icons/material/svg/whatsapp.svg" width="24" height="24"> | `WhatsappIcon`
  2198. <img src="https://unpkg.com/@icons/material/svg/wheelchair-accessibility.svg" width="24" height="24"> | `WheelchairAccessibilityIcon`
  2199. <img src="https://unpkg.com/@icons/material/svg/white-balance-auto.svg" width="24" height="24"> | `WhiteBalanceAutoIcon`
  2200. <img src="https://unpkg.com/@icons/material/svg/white-balance-incandescent.svg" width="24" height="24"> | `WhiteBalanceIncandescentIcon`
  2201. <img src="https://unpkg.com/@icons/material/svg/white-balance-iridescent.svg" width="24" height="24"> | `WhiteBalanceIridescentIcon`
  2202. <img src="https://unpkg.com/@icons/material/svg/white-balance-sunny.svg" width="24" height="24"> | `WhiteBalanceSunnyIcon`
  2203. <img src="https://unpkg.com/@icons/material/svg/widgets.svg" width="24" height="24"> | `WidgetsIcon`
  2204. <img src="https://unpkg.com/@icons/material/svg/wifi.svg" width="24" height="24"> | `WifiIcon`
  2205. <img src="https://unpkg.com/@icons/material/svg/wifi-off.svg" width="24" height="24"> | `WifiOffIcon`
  2206. <img src="https://unpkg.com/@icons/material/svg/wii.svg" width="24" height="24"> | `WiiIcon`
  2207. <img src="https://unpkg.com/@icons/material/svg/wiiu.svg" width="24" height="24"> | `WiiuIcon`
  2208. <img src="https://unpkg.com/@icons/material/svg/wikipedia.svg" width="24" height="24"> | `WikipediaIcon`
  2209. <img src="https://unpkg.com/@icons/material/svg/window-close.svg" width="24" height="24"> | `WindowCloseIcon`
  2210. <img src="https://unpkg.com/@icons/material/svg/window-closed.svg" width="24" height="24"> | `WindowClosedIcon`
  2211. <img src="https://unpkg.com/@icons/material/svg/window-maximize.svg" width="24" height="24"> | `WindowMaximizeIcon`
  2212. <img src="https://unpkg.com/@icons/material/svg/window-minimize.svg" width="24" height="24"> | `WindowMinimizeIcon`
  2213. <img src="https://unpkg.com/@icons/material/svg/window-open.svg" width="24" height="24"> | `WindowOpenIcon`
  2214. <img src="https://unpkg.com/@icons/material/svg/window-restore.svg" width="24" height="24"> | `WindowRestoreIcon`
  2215. <img src="https://unpkg.com/@icons/material/svg/windows.svg" width="24" height="24"> | `WindowsIcon`
  2216. <img src="https://unpkg.com/@icons/material/svg/wordpress.svg" width="24" height="24"> | `WordpressIcon`
  2217. <img src="https://unpkg.com/@icons/material/svg/worker.svg" width="24" height="24"> | `WorkerIcon`
  2218. <img src="https://unpkg.com/@icons/material/svg/wrap.svg" width="24" height="24"> | `WrapIcon`
  2219. <img src="https://unpkg.com/@icons/material/svg/wrench.svg" width="24" height="24"> | `WrenchIcon`
  2220. <img src="https://unpkg.com/@icons/material/svg/wunderlist.svg" width="24" height="24"> | `WunderlistIcon`
  2221. <img src="https://unpkg.com/@icons/material/svg/xamarin.svg" width="24" height="24"> | `XamarinIcon`
  2222. <img src="https://unpkg.com/@icons/material/svg/xamarin-outline.svg" width="24" height="24"> | `XamarinOutlineIcon`
  2223. <img src="https://unpkg.com/@icons/material/svg/xaml.svg" width="24" height="24"> | `XamlIcon`
  2224. <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-alert.svg" width="24" height="24"> | `XboxControllerBatteryAlertIcon`
  2225. <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-empty.svg" width="24" height="24"> | `XboxControllerBatteryEmptyIcon`
  2226. <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-full.svg" width="24" height="24"> | `XboxControllerBatteryFullIcon`
  2227. <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-low.svg" width="24" height="24"> | `XboxControllerBatteryLowIcon`
  2228. <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-medium.svg" width="24" height="24"> | `XboxControllerBatteryMediumIcon`
  2229. <img src="https://unpkg.com/@icons/material/svg/xbox-controller-battery-unknown.svg" width="24" height="24"> | `XboxControllerBatteryUnknownIcon`
  2230. <img src="https://unpkg.com/@icons/material/svg/xbox-controller.svg" width="24" height="24"> | `XboxControllerIcon`
  2231. <img src="https://unpkg.com/@icons/material/svg/xbox-controller-off.svg" width="24" height="24"> | `XboxControllerOffIcon`
  2232. <img src="https://unpkg.com/@icons/material/svg/xbox.svg" width="24" height="24"> | `XboxIcon`
  2233. <img src="https://unpkg.com/@icons/material/svg/xda.svg" width="24" height="24"> | `XdaIcon`
  2234. <img src="https://unpkg.com/@icons/material/svg/xing-box.svg" width="24" height="24"> | `XingBoxIcon`
  2235. <img src="https://unpkg.com/@icons/material/svg/xing-circle.svg" width="24" height="24"> | `XingCircleIcon`
  2236. <img src="https://unpkg.com/@icons/material/svg/xing.svg" width="24" height="24"> | `XingIcon`
  2237. <img src="https://unpkg.com/@icons/material/svg/xml.svg" width="24" height="24"> | `XmlIcon`
  2238. <img src="https://unpkg.com/@icons/material/svg/xmpp.svg" width="24" height="24"> | `XmppIcon`
  2239. <img src="https://unpkg.com/@icons/material/svg/yammer.svg" width="24" height="24"> | `YammerIcon`
  2240. <img src="https://unpkg.com/@icons/material/svg/yeast.svg" width="24" height="24"> | `YeastIcon`
  2241. <img src="https://unpkg.com/@icons/material/svg/yelp.svg" width="24" height="24"> | `YelpIcon`
  2242. <img src="https://unpkg.com/@icons/material/svg/yin-yang.svg" width="24" height="24"> | `YinYangIcon`
  2243. <img src="https://unpkg.com/@icons/material/svg/youtube-creator-studio.svg" width="24" height="24"> | `YoutubeCreatorStudioIcon`
  2244. <img src="https://unpkg.com/@icons/material/svg/youtube-gaming.svg" width="24" height="24"> | `YoutubeGamingIcon`
  2245. <img src="https://unpkg.com/@icons/material/svg/youtube-play.svg" width="24" height="24"> | `YoutubePlayIcon`
  2246. <img src="https://unpkg.com/@icons/material/svg/youtube-tv.svg" width="24" height="24"> | `YoutubeTvIcon`
  2247. <img src="https://unpkg.com/@icons/material/svg/zip-box.svg" width="24" height="24"> | `ZipBoxIcon`
  2248. <img src="https://unpkg.com/@icons/material/svg/index.svg" width="24" height="24"> | `index`