@sapphire-ion/framework 1.2.62 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (498) hide show
  1. package/build.ps1 +39 -0
  2. package/ng-package.json +10 -0
  3. package/package.json +43 -47
  4. package/src/lib/classes/comparison/comparison-operator.ts +17 -0
  5. package/src/lib/classes/comparison/comparison-value-type.ts +34 -0
  6. package/src/lib/classes/comparison/comparison.ts +45 -0
  7. package/src/lib/classes/comparison/properties/bool-property.ts +16 -0
  8. package/src/lib/classes/comparison/properties/date-property.ts +28 -0
  9. package/src/lib/classes/comparison/properties/datetime-property.ts +28 -0
  10. package/src/lib/classes/comparison/properties/decimal-property.ts +28 -0
  11. package/src/lib/classes/comparison/properties/enum-property.ts +28 -0
  12. package/src/lib/classes/comparison/properties/implicit-property.ts +13 -0
  13. package/src/lib/classes/comparison/properties/int-property.ts +28 -0
  14. package/src/lib/classes/comparison/properties/long-property.ts +28 -0
  15. package/src/lib/classes/comparison/properties/string-property.ts +16 -0
  16. package/src/lib/classes/comparison/properties/time-property.ts +28 -0
  17. package/{lib/classes/credentials.d.ts → src/lib/classes/credentials.ts} +5 -5
  18. package/src/lib/classes/environment.ts +37 -0
  19. package/src/lib/classes/filters/view-filtros.ts +18 -0
  20. package/src/lib/classes/infinite-scroll.ts +112 -0
  21. package/src/lib/classes/inputs/table-field-form-builder.ts +12 -0
  22. package/src/lib/classes/inputs/table-field.ts +62 -0
  23. package/src/lib/classes/page-option.ts +8 -0
  24. package/src/lib/classes/routes/default-routing-factory.ts +24 -0
  25. package/src/lib/classes/routes/id-preloader-configuration.ts +21 -0
  26. package/src/lib/classes/routes/route-data.ts +9 -0
  27. package/src/lib/components/carousel/carousel-image/carousel-image.component.html +4 -0
  28. package/src/lib/components/carousel/carousel-image/carousel-image.component.ts +15 -0
  29. package/src/lib/components/carousel/carousel-item/carousel-item.component.html +3 -0
  30. package/src/lib/components/carousel/carousel-item/carousel-item.component.ts +14 -0
  31. package/src/lib/components/carousel/carousel.component.html +22 -0
  32. package/src/lib/components/carousel/carousel.component.ts +83 -0
  33. package/src/lib/components/carousel/carousel.module.ts +20 -0
  34. package/src/lib/components/carousel/i-carousel-item.component.ts +8 -0
  35. package/src/lib/components/content-block/content-block.component.html +6 -0
  36. package/src/lib/components/content-block/content-block.component.ts +25 -0
  37. package/src/lib/components/default/default-list/abstract-list.ts +56 -0
  38. package/src/lib/components/default/default-list/default-list.component.html +60 -0
  39. package/src/lib/components/default/default-list/default-list.component.ts +72 -0
  40. package/src/lib/components/default/default-list/header-list/header-list.component.html +32 -0
  41. package/src/lib/components/default/default-list/header-list/header-list.component.ts +85 -0
  42. package/src/lib/components/default/default-list/list.ts +127 -0
  43. package/src/lib/components/default/default-pagination/default-pagination.component.html +52 -0
  44. package/src/lib/components/default/default-pagination/default-pagination.component.ts +118 -0
  45. package/src/lib/components/default/default-table/default-table.component.html +104 -0
  46. package/src/lib/components/default/default-table/default-table.component.ts +255 -0
  47. package/src/lib/components/default/default-table/th-filter/th-filter.component.html +69 -0
  48. package/src/lib/components/default/default-table/th-filter/th-filter.component.ts +205 -0
  49. package/src/lib/components/default/default-view/abstract-view.ts +25 -0
  50. package/src/lib/components/default/default-view/default-view.component.html +111 -0
  51. package/src/lib/components/default/default-view/default-view.component.ts +56 -0
  52. package/src/lib/components/default/default-view/header-view/header-view.component.html +64 -0
  53. package/src/lib/components/default/default-view/header-view/header-view.component.ts +62 -0
  54. package/src/lib/components/default/default-view/view.ts +195 -0
  55. package/src/lib/components/default/default.module.ts +61 -0
  56. package/src/lib/components/default-page/default.page.html +63 -0
  57. package/src/lib/components/default-page/default.page.ts +84 -0
  58. package/src/lib/components/drag-drop-file/drag-drop-file.directive.ts +44 -0
  59. package/src/lib/components/drag-drop-file/drag-drop-file.module.ts +21 -0
  60. package/src/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.html +5 -0
  61. package/src/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.ts +17 -0
  62. package/src/lib/components/drawer/default-drawer-end/default-drawer-end.component.html +12 -0
  63. package/src/lib/components/drawer/default-drawer-end/default-drawer-end.component.ts +35 -0
  64. package/src/lib/components/drawer/drawer-group/drawer-group.component.html +79 -0
  65. package/src/lib/components/drawer/drawer-group/drawer-group.component.ts +49 -0
  66. package/src/lib/components/drawer/drawer.component.html +120 -0
  67. package/src/lib/components/drawer/drawer.component.ts +157 -0
  68. package/src/lib/components/drawer/menu.ts +20 -0
  69. package/src/lib/components/filter/filter.component.html +43 -0
  70. package/src/lib/components/filter/filter.component.ts +141 -0
  71. package/src/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.html +35 -0
  72. package/src/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.ts +19 -0
  73. package/src/lib/components/image/image.component.html +17 -0
  74. package/src/lib/components/image/image.component.ts +95 -0
  75. package/src/lib/components/info-popover/info-popover.component.html +23 -0
  76. package/src/lib/components/info-popover/info-popover.component.ts +75 -0
  77. package/src/lib/components/inputs/custom-input.ts +94 -0
  78. package/src/lib/components/inputs/input-bool/input-bool.component.html +26 -0
  79. package/src/lib/components/inputs/input-bool/input-bool.component.ts +39 -0
  80. package/src/lib/components/inputs/input-bool/input-bool.configuration.ts +14 -0
  81. package/src/lib/components/inputs/input-cep/input-cep.component.html +27 -0
  82. package/src/lib/components/inputs/input-cep/input-cep.component.ts +41 -0
  83. package/src/lib/components/inputs/input-cep/input-cep.configuration.ts +4 -0
  84. package/src/lib/components/inputs/input-color/input-color.component.html +79 -0
  85. package/src/lib/components/inputs/input-color/input-color.component.ts +544 -0
  86. package/{lib/components/inputs/input-configuration.d.ts → src/lib/components/inputs/input-configuration.ts} +23 -10
  87. package/src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.html +28 -0
  88. package/src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.ts +99 -0
  89. package/src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.ts +4 -0
  90. package/src/lib/components/inputs/input-date/input-date.component.html +89 -0
  91. package/src/lib/components/inputs/input-date/input-date.component.ts +269 -0
  92. package/src/lib/components/inputs/input-date/input-date.configuration.ts +8 -0
  93. package/src/lib/components/inputs/input-decimal/input-decimal.component.html +32 -0
  94. package/src/lib/components/inputs/input-decimal/input-decimal.component.ts +283 -0
  95. package/src/lib/components/inputs/input-decimal/input-decimal.configuration.ts +47 -0
  96. package/src/lib/components/inputs/input-default-configurations.ts +15 -0
  97. package/src/lib/components/inputs/input-file/download-button/download-button.component.html +56 -0
  98. package/src/lib/components/inputs/input-file/download-button/download-button.component.ts +91 -0
  99. package/src/lib/components/inputs/input-file/input-file.component.html +56 -0
  100. package/src/lib/components/inputs/input-file/input-file.component.ts +97 -0
  101. package/src/lib/components/inputs/input-file/input-file.configuration.ts +25 -0
  102. package/src/lib/components/inputs/input-icon/fluenticons.ts +3733 -0
  103. package/src/lib/components/inputs/input-icon/input-icon.component.html +8 -0
  104. package/src/lib/components/inputs/input-icon/input-icon.component.ts +52 -0
  105. package/src/lib/components/inputs/input-icon/ionicons.ts +1359 -0
  106. package/src/lib/components/inputs/input-provider-factory.ts +12 -0
  107. package/src/lib/components/inputs/input-select/directives/sion-label-template.directive.ts +19 -0
  108. package/src/lib/components/inputs/input-select/directives/sion-option-template.directive.ts +16 -0
  109. package/src/lib/components/inputs/input-select/directives/sion-placeholder-template.directive.ts +19 -0
  110. package/src/lib/components/inputs/input-select/input-select.component.html +176 -0
  111. package/src/lib/components/inputs/input-select/input-select.component.ts +366 -0
  112. package/src/lib/components/inputs/input-select/input.select.configuration.ts +300 -0
  113. package/src/lib/components/inputs/input-string/input-string.component.html +27 -0
  114. package/src/lib/components/inputs/input-string/input-string.component.ts +31 -0
  115. package/src/lib/components/inputs/input-string/input-string.configuration.ts +20 -0
  116. package/src/lib/components/inputs/input-telefone/input-telefone.component.html +29 -0
  117. package/src/lib/components/inputs/input-telefone/input-telefone.component.ts +63 -0
  118. package/src/lib/components/inputs/input-telefone/input-telefone.configuration.ts +8 -0
  119. package/src/lib/components/inputs/input-textarea/input-textarea.component.html +27 -0
  120. package/src/lib/components/inputs/input-textarea/input-textarea.component.ts +75 -0
  121. package/src/lib/components/inputs/input-textarea/input-textarea.configuration.ts +7 -0
  122. package/src/lib/components/inputs/input-type.ts +22 -0
  123. package/src/lib/components/inputs/input-validators.ts +111 -0
  124. package/src/lib/components/inputs/inputs.module.ts +74 -0
  125. package/src/lib/components/loading/loading.component.html +28 -0
  126. package/src/lib/components/loading/loading.component.ts +29 -0
  127. package/src/lib/components/login/login-admin/login-admin.component.html +28 -0
  128. package/src/lib/components/login/login-admin/login-admin.component.ts +51 -0
  129. package/src/lib/components/login/login.component.html +104 -0
  130. package/src/lib/components/login/login.component.ts +96 -0
  131. package/src/lib/components/main-content/main-content.component.html +145 -0
  132. package/src/lib/components/main-content/main-content.component.ts +93 -0
  133. package/src/lib/components/popover/sion-popover/sion-popover.component.html +21 -0
  134. package/src/lib/components/popover/sion-popover/sion-popover.component.ts +182 -0
  135. package/src/lib/components/popover/sion-popover.module.ts +12 -0
  136. package/src/lib/components/sion-card/sion-card.component.html +12 -0
  137. package/src/lib/components/sion-card/sion-card.component.ts +23 -0
  138. package/src/lib/components/stepper/step/step.component.html +11 -0
  139. package/src/lib/components/stepper/step/step.component.ts +44 -0
  140. package/src/lib/components/stepper/stepper.component.html +3 -0
  141. package/src/lib/components/stepper/stepper.component.ts +37 -0
  142. package/src/lib/components/stepper/stepper.module.ts +15 -0
  143. package/src/lib/components/tabs/tab/tab.component.html +8 -0
  144. package/src/lib/components/tabs/tab/tab.component.ts +28 -0
  145. package/src/lib/components/tabs/tabs/tabs.component.html +14 -0
  146. package/src/lib/components/tabs/tabs/tabs.component.ts +42 -0
  147. package/src/lib/components/tabs/tabs.module.ts +15 -0
  148. package/src/lib/components/text-tooltip/text-tooltip.component.html +8 -0
  149. package/src/lib/components/text-tooltip/text-tooltip.component.scss +0 -0
  150. package/src/lib/components/text-tooltip/text-tooltip.component.ts +45 -0
  151. package/src/lib/components/tooltip/tooltip.component.html +53 -0
  152. package/src/lib/components/tooltip/tooltip.component.ts +16 -0
  153. package/src/lib/core.module.ts +29 -0
  154. package/src/lib/directives/ng-var.directive.ts +26 -0
  155. package/src/lib/guards/auth.guard.ts +19 -0
  156. package/src/lib/guards/error.interceptor.ts +108 -0
  157. package/src/lib/guards/token.interceptor.ts +28 -0
  158. package/src/lib/index.ts +191 -0
  159. package/src/lib/pipes/secure.pipe.ts +39 -0
  160. package/src/lib/services/auth.service.ts +150 -0
  161. package/src/lib/services/crypto.service.ts +164 -0
  162. package/src/lib/services/environment.service.ts +17 -0
  163. package/src/lib/services/generic.service.ts +85 -0
  164. package/src/lib/services/modal-focus-trap.service.ts +65 -0
  165. package/src/lib/services/navigation-context.service.ts +121 -0
  166. package/src/lib/services/popover-focus-trap.service.ts +65 -0
  167. package/src/lib/services/route/route.cache.service.ts +17 -0
  168. package/src/lib/services/route/route.provider.service.ts +49 -0
  169. package/src/lib/services/usuario.service.ts +44 -0
  170. package/src/lib/services/utils.service.ts +216 -0
  171. package/src/lib/services/web/api-url-provider.service.ts +48 -0
  172. package/src/lib/services/web/http.ativo.service.ts +37 -0
  173. package/src/lib/services/web/http.service.ts +206 -0
  174. package/src/lib/services/web/storage.service.ts +210 -0
  175. package/src/public-api.ts +5 -0
  176. package/tailwind.config.js +27 -0
  177. package/tsconfig.lib.json +29 -0
  178. package/tsconfig.lib.prod.json +23 -0
  179. package/tsconfig.spec.json +27 -0
  180. package/esm2022/lib/classes/comparison/comparison-operator.mjs +0 -18
  181. package/esm2022/lib/classes/comparison/comparison-value-type.mjs +0 -25
  182. package/esm2022/lib/classes/comparison/comparison.mjs +0 -41
  183. package/esm2022/lib/classes/comparison/properties/bool-property.mjs +0 -15
  184. package/esm2022/lib/classes/comparison/properties/date-property.mjs +0 -27
  185. package/esm2022/lib/classes/comparison/properties/datetime-property.mjs +0 -27
  186. package/esm2022/lib/classes/comparison/properties/decimal-property.mjs +0 -27
  187. package/esm2022/lib/classes/comparison/properties/enum-property.mjs +0 -27
  188. package/esm2022/lib/classes/comparison/properties/implicit-property.mjs +0 -12
  189. package/esm2022/lib/classes/comparison/properties/int-property.mjs +0 -27
  190. package/esm2022/lib/classes/comparison/properties/long-property.mjs +0 -27
  191. package/esm2022/lib/classes/comparison/properties/string-property.mjs +0 -15
  192. package/esm2022/lib/classes/comparison/properties/time-property.mjs +0 -27
  193. package/esm2022/lib/classes/credentials.mjs +0 -2
  194. package/esm2022/lib/classes/environment.mjs +0 -34
  195. package/esm2022/lib/classes/filters/view-filtros.mjs +0 -18
  196. package/esm2022/lib/classes/infinite-scroll.mjs +0 -90
  197. package/esm2022/lib/classes/inputs/table-field-form-builder.mjs +0 -10
  198. package/esm2022/lib/classes/inputs/table-field.mjs +0 -79
  199. package/esm2022/lib/classes/page-option.mjs +0 -2
  200. package/esm2022/lib/classes/routes/default-routing-factory.mjs +0 -23
  201. package/esm2022/lib/classes/routes/id-preloader-configuration.mjs +0 -22
  202. package/esm2022/lib/classes/routes/route-data.mjs +0 -9
  203. package/esm2022/lib/components/carousel/carousel-image/carousel-image.component.mjs +0 -18
  204. package/esm2022/lib/components/carousel/carousel-item/carousel-item.component.mjs +0 -15
  205. package/esm2022/lib/components/carousel/carousel.component.mjs +0 -79
  206. package/esm2022/lib/components/carousel/carousel.module.mjs +0 -31
  207. package/esm2022/lib/components/carousel/i-carousel-item.component.mjs +0 -16
  208. package/esm2022/lib/components/content-block/content-block.component.mjs +0 -27
  209. package/esm2022/lib/components/default/default-list/abstract-list.mjs +0 -49
  210. package/esm2022/lib/components/default/default-list/default-list.component.mjs +0 -95
  211. package/esm2022/lib/components/default/default-list/header-list/header-list.component.mjs +0 -98
  212. package/esm2022/lib/components/default/default-list/list.mjs +0 -120
  213. package/esm2022/lib/components/default/default-pagination/default-pagination.component.mjs +0 -123
  214. package/esm2022/lib/components/default/default-table/default-table.component.mjs +0 -216
  215. package/esm2022/lib/components/default/default-table/th-filter/th-filter.component.mjs +0 -212
  216. package/esm2022/lib/components/default/default-view/abstract-view.mjs +0 -22
  217. package/esm2022/lib/components/default/default-view/default-view.component.mjs +0 -76
  218. package/esm2022/lib/components/default/default-view/header-view/header-view.component.mjs +0 -78
  219. package/esm2022/lib/components/default/default-view/view.mjs +0 -198
  220. package/esm2022/lib/components/default/default.module.mjs +0 -98
  221. package/esm2022/lib/components/default-page/default.page.mjs +0 -75
  222. package/esm2022/lib/components/drag-drop-file/drag-drop-file.directive.mjs +0 -60
  223. package/esm2022/lib/components/drag-drop-file/drag-drop-file.module.mjs +0 -31
  224. package/esm2022/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.mjs +0 -15
  225. package/esm2022/lib/components/drawer/default-drawer-end/default-drawer-end.component.mjs +0 -34
  226. package/esm2022/lib/components/drawer/drawer-group/drawer-group.component.mjs +0 -52
  227. package/esm2022/lib/components/drawer/drawer.component.mjs +0 -156
  228. package/esm2022/lib/components/drawer/menu.mjs +0 -15
  229. package/esm2022/lib/components/filter/filter.component.mjs +0 -145
  230. package/esm2022/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.mjs +0 -17
  231. package/esm2022/lib/components/image/image.component.mjs +0 -91
  232. package/esm2022/lib/components/info-popover/info-popover.component.mjs +0 -91
  233. package/esm2022/lib/components/inputs/custom-input.mjs +0 -85
  234. package/esm2022/lib/components/inputs/input-bool/input-bool.component.mjs +0 -46
  235. package/esm2022/lib/components/inputs/input-bool/input-bool.configuration.mjs +0 -16
  236. package/esm2022/lib/components/inputs/input-cep/input-cep.component.mjs +0 -50
  237. package/esm2022/lib/components/inputs/input-cep/input-cep.configuration.mjs +0 -4
  238. package/esm2022/lib/components/inputs/input-color/input-color.component.mjs +0 -481
  239. package/esm2022/lib/components/inputs/input-configuration.mjs +0 -2
  240. package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.mjs +0 -116
  241. package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.mjs +0 -6
  242. package/esm2022/lib/components/inputs/input-date/input-date.component.mjs +0 -263
  243. package/esm2022/lib/components/inputs/input-date/input-date.configuration.mjs +0 -11
  244. package/esm2022/lib/components/inputs/input-decimal/input-decimal.component.mjs +0 -276
  245. package/esm2022/lib/components/inputs/input-decimal/input-decimal.configuration.mjs +0 -50
  246. package/esm2022/lib/components/inputs/input-default-configurations.mjs +0 -14
  247. package/esm2022/lib/components/inputs/input-file/download-button/download-button.component.mjs +0 -102
  248. package/esm2022/lib/components/inputs/input-file/input-file.component.mjs +0 -100
  249. package/esm2022/lib/components/inputs/input-file/input-file.configuration.mjs +0 -24
  250. package/esm2022/lib/components/inputs/input-icon/fluenticons.mjs +0 -3734
  251. package/esm2022/lib/components/inputs/input-icon/input-icon.component.mjs +0 -60
  252. package/esm2022/lib/components/inputs/input-icon/ionicons.mjs +0 -1360
  253. package/esm2022/lib/components/inputs/input-provider-factory.mjs +0 -12
  254. package/esm2022/lib/components/inputs/input-select/directives/sion-label-template.directive.mjs +0 -16
  255. package/esm2022/lib/components/inputs/input-select/directives/sion-option-template.directive.mjs +0 -16
  256. package/esm2022/lib/components/inputs/input-select/directives/sion-placeholder-template.directive.mjs +0 -16
  257. package/esm2022/lib/components/inputs/input-select/input-select.component.mjs +0 -376
  258. package/esm2022/lib/components/inputs/input-select/input.select.configuration.mjs +0 -233
  259. package/esm2022/lib/components/inputs/input-string/input-string.component.mjs +0 -41
  260. package/esm2022/lib/components/inputs/input-string/input-string.configuration.mjs +0 -20
  261. package/esm2022/lib/components/inputs/input-telefone/input-telefone.component.mjs +0 -74
  262. package/esm2022/lib/components/inputs/input-telefone/input-telefone.configuration.mjs +0 -12
  263. package/esm2022/lib/components/inputs/input-textarea/input-textarea.component.mjs +0 -82
  264. package/esm2022/lib/components/inputs/input-textarea/input-textarea.configuration.mjs +0 -7
  265. package/esm2022/lib/components/inputs/input-type.mjs +0 -24
  266. package/esm2022/lib/components/inputs/input-validators.mjs +0 -121
  267. package/esm2022/lib/components/inputs/inputs.module.mjs +0 -133
  268. package/esm2022/lib/components/loading/loading.component.mjs +0 -34
  269. package/esm2022/lib/components/login/login-admin/login-admin.component.mjs +0 -52
  270. package/esm2022/lib/components/login/login.component.mjs +0 -99
  271. package/esm2022/lib/components/main-content/main-content.component.mjs +0 -100
  272. package/esm2022/lib/components/popover/sion-popover/sion-popover.component.mjs +0 -182
  273. package/esm2022/lib/components/popover/sion-popover.module.mjs +0 -21
  274. package/esm2022/lib/components/sion-card/sion-card.component.mjs +0 -26
  275. package/esm2022/lib/components/stepper/step/step.component.mjs +0 -43
  276. package/esm2022/lib/components/stepper/stepper.component.mjs +0 -36
  277. package/esm2022/lib/components/stepper/stepper.module.mjs +0 -25
  278. package/esm2022/lib/components/tabs/tab/tab.component.mjs +0 -41
  279. package/esm2022/lib/components/tabs/tabs/tabs.component.mjs +0 -56
  280. package/esm2022/lib/components/tabs/tabs.module.mjs +0 -22
  281. package/esm2022/lib/components/text-tooltip/text-tooltip.component.mjs +0 -51
  282. package/esm2022/lib/components/tooltip/tooltip.component.mjs +0 -21
  283. package/esm2022/lib/core.module.mjs +0 -38
  284. package/esm2022/lib/directives/ng-var.directive.mjs +0 -29
  285. package/esm2022/lib/guards/auth.guard.mjs +0 -26
  286. package/esm2022/lib/guards/error.interceptor.mjs +0 -107
  287. package/esm2022/lib/guards/token.interceptor.mjs +0 -25
  288. package/esm2022/lib/index.mjs +0 -188
  289. package/esm2022/lib/pipes/secure.pipe.mjs +0 -42
  290. package/esm2022/lib/services/auth.service.mjs +0 -146
  291. package/esm2022/lib/services/environment.service.mjs +0 -26
  292. package/esm2022/lib/services/generic.service.mjs +0 -84
  293. package/esm2022/lib/services/modal-focus-trap.service.mjs +0 -62
  294. package/esm2022/lib/services/navigation-context.service.mjs +0 -112
  295. package/esm2022/lib/services/popover-focus-trap.service.mjs +0 -62
  296. package/esm2022/lib/services/route/route.cache.service.mjs +0 -15
  297. package/esm2022/lib/services/route/route.provider.service.mjs +0 -42
  298. package/esm2022/lib/services/usuario.service.mjs +0 -49
  299. package/esm2022/lib/services/utils.service.mjs +0 -190
  300. package/esm2022/lib/services/web/api-url-provider.service.mjs +0 -29
  301. package/esm2022/lib/services/web/http.ativo.service.mjs +0 -37
  302. package/esm2022/lib/services/web/http.service.mjs +0 -183
  303. package/esm2022/lib/services/web/storage.service.mjs +0 -186
  304. package/esm2022/public-api.mjs +0 -5
  305. package/esm2022/sapphire-ion-framework.mjs +0 -5
  306. package/fesm2022/sapphire-ion-framework.mjs +0 -12488
  307. package/fesm2022/sapphire-ion-framework.mjs.map +0 -1
  308. package/index.d.ts +0 -5
  309. package/lib/classes/comparison/comparison-operator.d.ts +0 -9
  310. package/lib/classes/comparison/comparison-value-type.d.ts +0 -23
  311. package/lib/classes/comparison/comparison.d.ts +0 -25
  312. package/lib/classes/comparison/properties/bool-property.d.ts +0 -7
  313. package/lib/classes/comparison/properties/date-property.d.ts +0 -11
  314. package/lib/classes/comparison/properties/datetime-property.d.ts +0 -11
  315. package/lib/classes/comparison/properties/decimal-property.d.ts +0 -11
  316. package/lib/classes/comparison/properties/enum-property.d.ts +0 -11
  317. package/lib/classes/comparison/properties/implicit-property.d.ts +0 -6
  318. package/lib/classes/comparison/properties/int-property.d.ts +0 -11
  319. package/lib/classes/comparison/properties/long-property.d.ts +0 -11
  320. package/lib/classes/comparison/properties/string-property.d.ts +0 -7
  321. package/lib/classes/comparison/properties/time-property.d.ts +0 -11
  322. package/lib/classes/environment.d.ts +0 -14
  323. package/lib/classes/filters/view-filtros.d.ts +0 -10
  324. package/lib/classes/infinite-scroll.d.ts +0 -26
  325. package/lib/classes/inputs/table-field-form-builder.d.ts +0 -5
  326. package/lib/classes/inputs/table-field.d.ts +0 -20
  327. package/lib/classes/page-option.d.ts +0 -7
  328. package/lib/classes/routes/default-routing-factory.d.ts +0 -8
  329. package/lib/classes/routes/id-preloader-configuration.d.ts +0 -28
  330. package/lib/classes/routes/route-data.d.ts +0 -5
  331. package/lib/components/carousel/carousel-image/carousel-image.component.d.ts +0 -10
  332. package/lib/components/carousel/carousel-item/carousel-item.component.d.ts +0 -9
  333. package/lib/components/carousel/carousel.component.d.ts +0 -32
  334. package/lib/components/carousel/carousel.module.d.ts +0 -12
  335. package/lib/components/carousel/i-carousel-item.component.d.ts +0 -9
  336. package/lib/components/content-block/content-block.component.d.ts +0 -15
  337. package/lib/components/default/default-list/abstract-list.d.ts +0 -21
  338. package/lib/components/default/default-list/default-list.component.d.ts +0 -47
  339. package/lib/components/default/default-list/header-list/header-list.component.d.ts +0 -45
  340. package/lib/components/default/default-list/list.d.ts +0 -40
  341. package/lib/components/default/default-pagination/default-pagination.component.d.ts +0 -36
  342. package/lib/components/default/default-table/default-table.component.d.ts +0 -90
  343. package/lib/components/default/default-table/th-filter/th-filter.component.d.ts +0 -23
  344. package/lib/components/default/default-view/abstract-view.d.ts +0 -18
  345. package/lib/components/default/default-view/default-view.component.d.ts +0 -40
  346. package/lib/components/default/default-view/header-view/header-view.component.d.ts +0 -36
  347. package/lib/components/default/default-view/view.d.ts +0 -67
  348. package/lib/components/default/default.module.d.ts +0 -31
  349. package/lib/components/default-page/default.page.d.ts +0 -35
  350. package/lib/components/drag-drop-file/drag-drop-file.directive.d.ts +0 -14
  351. package/lib/components/drag-drop-file/drag-drop-file.module.d.ts +0 -10
  352. package/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.d.ts +0 -9
  353. package/lib/components/drawer/default-drawer-end/default-drawer-end.component.d.ts +0 -13
  354. package/lib/components/drawer/drawer-group/drawer-group.component.d.ts +0 -22
  355. package/lib/components/drawer/drawer.component.d.ts +0 -31
  356. package/lib/components/drawer/menu.d.ts +0 -9
  357. package/lib/components/filter/filter.component.d.ts +0 -29
  358. package/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.d.ts +0 -8
  359. package/lib/components/image/image.component.d.ts +0 -23
  360. package/lib/components/info-popover/info-popover.component.d.ts +0 -15
  361. package/lib/components/inputs/custom-input.d.ts +0 -40
  362. package/lib/components/inputs/input-bool/input-bool.component.d.ts +0 -16
  363. package/lib/components/inputs/input-bool/input-bool.configuration.d.ts +0 -17
  364. package/lib/components/inputs/input-cep/input-cep.component.d.ts +0 -18
  365. package/lib/components/inputs/input-cep/input-cep.configuration.d.ts +0 -3
  366. package/lib/components/inputs/input-color/input-color.component.d.ts +0 -77
  367. package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.d.ts +0 -19
  368. package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.d.ts +0 -5
  369. package/lib/components/inputs/input-date/input-date.component.d.ts +0 -61
  370. package/lib/components/inputs/input-date/input-date.configuration.d.ts +0 -11
  371. package/lib/components/inputs/input-decimal/input-decimal.component.d.ts +0 -27
  372. package/lib/components/inputs/input-decimal/input-decimal.configuration.d.ts +0 -28
  373. package/lib/components/inputs/input-default-configurations.d.ts +0 -13
  374. package/lib/components/inputs/input-file/download-button/download-button.component.d.ts +0 -40
  375. package/lib/components/inputs/input-file/input-file.component.d.ts +0 -28
  376. package/lib/components/inputs/input-file/input-file.configuration.d.ts +0 -8
  377. package/lib/components/inputs/input-icon/fluenticons.d.ts +0 -1
  378. package/lib/components/inputs/input-icon/input-icon.component.d.ts +0 -20
  379. package/lib/components/inputs/input-icon/ionicons.d.ts +0 -1
  380. package/lib/components/inputs/input-provider-factory.d.ts +0 -4
  381. package/lib/components/inputs/input-select/directives/sion-label-template.directive.d.ts +0 -18
  382. package/lib/components/inputs/input-select/directives/sion-option-template.directive.d.ts +0 -14
  383. package/lib/components/inputs/input-select/directives/sion-placeholder-template.directive.d.ts +0 -18
  384. package/lib/components/inputs/input-select/input-select.component.d.ts +0 -83
  385. package/lib/components/inputs/input-select/input.select.configuration.d.ts +0 -127
  386. package/lib/components/inputs/input-string/input-string.component.d.ts +0 -14
  387. package/lib/components/inputs/input-string/input-string.configuration.d.ts +0 -15
  388. package/lib/components/inputs/input-telefone/input-telefone.component.d.ts +0 -19
  389. package/lib/components/inputs/input-telefone/input-telefone.configuration.d.ts +0 -9
  390. package/lib/components/inputs/input-textarea/input-textarea.component.d.ts +0 -17
  391. package/lib/components/inputs/input-textarea/input-textarea.configuration.d.ts +0 -4
  392. package/lib/components/inputs/input-type.d.ts +0 -22
  393. package/lib/components/inputs/input-validators.d.ts +0 -25
  394. package/lib/components/inputs/inputs.module.d.ts +0 -33
  395. package/lib/components/loading/loading.component.d.ts +0 -18
  396. package/lib/components/login/login-admin/login-admin.component.d.ts +0 -20
  397. package/lib/components/login/login.component.d.ts +0 -29
  398. package/lib/components/main-content/main-content.component.d.ts +0 -27
  399. package/lib/components/popover/sion-popover/sion-popover.component.d.ts +0 -43
  400. package/lib/components/popover/sion-popover.module.d.ts +0 -9
  401. package/lib/components/sion-card/sion-card.component.d.ts +0 -11
  402. package/lib/components/stepper/step/step.component.d.ts +0 -15
  403. package/lib/components/stepper/stepper.component.d.ts +0 -14
  404. package/lib/components/stepper/stepper.module.d.ts +0 -10
  405. package/lib/components/tabs/tab/tab.component.d.ts +0 -19
  406. package/lib/components/tabs/tabs/tabs.component.d.ts +0 -18
  407. package/lib/components/tabs/tabs.module.d.ts +0 -12
  408. package/lib/components/text-tooltip/text-tooltip.component.d.ts +0 -16
  409. package/lib/components/tooltip/tooltip.component.d.ts +0 -7
  410. package/lib/core.module.d.ts +0 -16
  411. package/lib/directives/ng-var.directive.d.ts +0 -12
  412. package/lib/guards/auth.guard.d.ts +0 -11
  413. package/lib/guards/error.interceptor.d.ts +0 -32
  414. package/lib/guards/token.interceptor.d.ts +0 -11
  415. package/lib/index.d.ts +0 -118
  416. package/lib/pipes/secure.pipe.d.ts +0 -15
  417. package/lib/services/auth.service.d.ts +0 -47
  418. package/lib/services/environment.service.d.ts +0 -10
  419. package/lib/services/generic.service.d.ts +0 -22
  420. package/lib/services/modal-focus-trap.service.d.ts +0 -13
  421. package/lib/services/navigation-context.service.d.ts +0 -14
  422. package/lib/services/popover-focus-trap.service.d.ts +0 -13
  423. package/lib/services/route/route.cache.service.d.ts +0 -7
  424. package/lib/services/route/route.provider.service.d.ts +0 -13
  425. package/lib/services/usuario.service.d.ts +0 -21
  426. package/lib/services/utils.service.d.ts +0 -53
  427. package/lib/services/web/api-url-provider.service.d.ts +0 -13
  428. package/lib/services/web/http.ativo.service.d.ts +0 -20
  429. package/lib/services/web/http.service.d.ts +0 -59
  430. package/lib/services/web/storage.service.d.ts +0 -46
  431. package/public-api.d.ts +0 -1
  432. /package/{themes → src/lib}/compiled-styles.scss +0 -0
  433. /package/{themes → src/lib}/components/carousel/carousel-image/carousel-image.component.scss +0 -0
  434. /package/{themes → src/lib}/components/carousel/carousel-item/carousel-item.component.scss +0 -0
  435. /package/{themes → src/lib}/components/carousel/carousel.component.scss +0 -0
  436. /package/{themes → src/lib}/components/content-block/content-block.component.scss +0 -0
  437. /package/{themes → src/lib}/components/default/default-list/default-list.component.scss +0 -0
  438. /package/{themes → src/lib}/components/default/default-list/header-list/header-list.component.scss +0 -0
  439. /package/{themes → src/lib}/components/default/default-pagination/default-pagination.component.scss +0 -0
  440. /package/{themes → src/lib}/components/default/default-table/default-table.component.scss +0 -0
  441. /package/{themes → src/lib}/components/default/default-table/th-filter/th-filter.component.scss +0 -0
  442. /package/{themes → src/lib}/components/default/default-view/default-view.component.scss +0 -0
  443. /package/{themes → src/lib}/components/default/default-view/header-view/header-view.component.scss +0 -0
  444. /package/{themes → src/lib}/components/default-page/default.page.scss +0 -0
  445. /package/{themes → src/lib}/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.scss +0 -0
  446. /package/{themes → src/lib}/components/drawer/default-drawer-end/default-drawer-end.component.scss +0 -0
  447. /package/{themes → src/lib}/components/drawer/drawer-group/drawer-group.component.scss +0 -0
  448. /package/{themes → src/lib}/components/drawer/drawer.component.scss +0 -0
  449. /package/{themes → src/lib}/components/filter/filter.component.scss +0 -0
  450. /package/{themes → src/lib}/components/http-responses-pages/forbidden-403/forbidden-403.component.scss +0 -0
  451. /package/{themes → src/lib}/components/image/image.component.scss +0 -0
  452. /package/{themes → src/lib}/components/info-popover/info-popover.component.scss +0 -0
  453. /package/{themes → src/lib}/components/inputs/input-bool/input-bool.component.scss +0 -0
  454. /package/{themes → src/lib}/components/inputs/input-cep/input-cep.component.scss +0 -0
  455. /package/{themes → src/lib}/components/inputs/input-color/input-color.component.scss +0 -0
  456. /package/{themes/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.scss → src/lib/components/inputs/input-color/input-color.configuration.ts} +0 -0
  457. /package/{themes/components/inputs/input-icon/input-icon.component.scss → src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.scss} +0 -0
  458. /package/{themes → src/lib}/components/inputs/input-date/input-date.component.scss +0 -0
  459. /package/{themes → src/lib}/components/inputs/input-decimal/input-decimal.component.scss +0 -0
  460. /package/{themes → src/lib}/components/inputs/input-file/download-button/download-button.component.scss +0 -0
  461. /package/{themes → src/lib}/components/inputs/input-file/input-file.component.scss +0 -0
  462. /package/{themes/components/inputs/input-string/input-string.component.scss → src/lib/components/inputs/input-icon/input-icon.component.scss} +0 -0
  463. /package/{themes → src/lib}/components/inputs/input-select/input-select.component.scss +0 -0
  464. /package/{themes/components/inputs/input-telefone/input-telefone.component.scss → src/lib/components/inputs/input-string/input-string.component.scss} +0 -0
  465. /package/{themes/components/loading/loading.component.scss → src/lib/components/inputs/input-telefone/input-telefone.component.scss} +0 -0
  466. /package/{themes → src/lib}/components/inputs/input-textarea/input-textarea.component.scss +0 -0
  467. /package/{themes → src/lib}/components/inputs/inputs.scss +0 -0
  468. /package/{themes/components/sion-card/sion-card.component.scss → src/lib/components/loading/loading.component.scss} +0 -0
  469. /package/{themes → src/lib}/components/login/login-admin/login-admin.component.scss +0 -0
  470. /package/{themes → src/lib}/components/login/login.component.scss +0 -0
  471. /package/{themes → src/lib}/components/main-content/main-content.component.scss +0 -0
  472. /package/{themes → src/lib}/components/popover/sion-popover/sion-popover.component.scss +0 -0
  473. /package/{themes/components/stepper/stepper.component.scss → src/lib/components/sion-card/sion-card.component.scss} +0 -0
  474. /package/{themes → src/lib}/components/stepper/step/step.component.scss +0 -0
  475. /package/{themes/components/tabs/tab/tab.component.scss → src/lib/components/stepper/stepper.component.scss} +0 -0
  476. /package/{themes/components/text-tooltip/text-tooltip.component.scss → src/lib/components/tabs/tab/tab.component.scss} +0 -0
  477. /package/{themes → src/lib}/components/tabs/tabs/tabs.component.scss +0 -0
  478. /package/{themes → src/lib}/components/tooltip/tooltip.component.scss +0 -0
  479. /package/{themes → src/lib}/styles/components.scss +0 -0
  480. /package/{themes → src/lib}/styles/core.styles.scss +0 -0
  481. /package/{themes → src/lib}/styles/ionic/ion-action-sheet.scss +0 -0
  482. /package/{themes → src/lib}/styles/ionic/ion-alert.scss +0 -0
  483. /package/{themes → src/lib}/styles/ionic/ion-button.scss +0 -0
  484. /package/{themes → src/lib}/styles/ionic/ion-card.scss +0 -0
  485. /package/{themes → src/lib}/styles/ionic/ion-content.scss +0 -0
  486. /package/{themes → src/lib}/styles/ionic/ion-datetime.scss +0 -0
  487. /package/{themes → src/lib}/styles/ionic/ion-item.scss +0 -0
  488. /package/{themes → src/lib}/styles/ionic/ion-list.scss +0 -0
  489. /package/{themes → src/lib}/styles/ionic/ion-modal.scss +0 -0
  490. /package/{themes → src/lib}/styles/ionic/ion-popover.scss +0 -0
  491. /package/{themes → src/lib}/styles/ionic/ion-progress-bar.scss +0 -0
  492. /package/{themes → src/lib}/styles/ionic/ion-searchbar.scss +0 -0
  493. /package/{themes → src/lib}/styles/ionic/ion-toast.scss +0 -0
  494. /package/{themes → src/lib}/styles/ionic.scss +0 -0
  495. /package/{themes → src/lib}/styles/login-default.scss +0 -0
  496. /package/{themes → src/lib}/styles/mixins.scss +0 -0
  497. /package/{themes → src/lib}/styles/styles.scss +0 -0
  498. /package/{themes → src/lib}/styles/translucid.scss +0 -0
@@ -0,0 +1,3733 @@
1
+ export const lstFluenticons = [
2
+ "fluent-access-time-outline.svg",
3
+ "fluent-access-time.svg",
4
+ "fluent-accessibility-checkmark.svg",
5
+ "fluent-accessibility-error.svg",
6
+ "fluent-accessibility-more.svg",
7
+ "fluent-accessibility-outline.svg",
8
+ "fluent-accessibility.svg",
9
+ "fluent-add-circle-outline.svg",
10
+ "fluent-add-circle.svg",
11
+ "fluent-add-outline.svg",
12
+ "fluent-add-square-multiple.svg",
13
+ "fluent-add-square-outline.svg",
14
+ "fluent-add-square.svg",
15
+ "fluent-add-subtract-circle.svg",
16
+ "fluent-add.svg",
17
+ "fluent-airplane-landing-outline.svg",
18
+ "fluent-airplane-landing.svg",
19
+ "fluent-airplane-outline.svg",
20
+ "fluent-airplane-take-off-outline.svg",
21
+ "fluent-airplane-take-off.svg",
22
+ "fluent-airplane.svg",
23
+ "fluent-album-add-outline.svg",
24
+ "fluent-album-add.svg",
25
+ "fluent-album-outline.svg",
26
+ "fluent-album.svg",
27
+ "fluent-alert-badge-outline.svg",
28
+ "fluent-alert-badge.svg",
29
+ "fluent-alert-off-outline.svg",
30
+ "fluent-alert-off.svg",
31
+ "fluent-alert-on-outline.svg",
32
+ "fluent-alert-on.svg",
33
+ "fluent-alert-outline.svg",
34
+ "fluent-alert-snooze-outline.svg",
35
+ "fluent-alert-snooze.svg",
36
+ "fluent-alert-urgent-outline.svg",
37
+ "fluent-alert-urgent.svg",
38
+ "fluent-alert.svg",
39
+ "fluent-align-bottom-outline.svg",
40
+ "fluent-align-bottom.svg",
41
+ "fluent-align-center-horizontal.svg",
42
+ "fluent-align-center-vertical.svg",
43
+ "fluent-align-left-outline.svg",
44
+ "fluent-align-left.svg",
45
+ "fluent-align-right-outline.svg",
46
+ "fluent-align-right.svg",
47
+ "fluent-align-straighten-outline.svg",
48
+ "fluent-align-straighten.svg",
49
+ "fluent-align-top-outline.svg",
50
+ "fluent-align-top.svg",
51
+ "fluent-animal-cat-outline.svg",
52
+ "fluent-animal-cat.svg",
53
+ "fluent-animal-dog-outline.svg",
54
+ "fluent-animal-dog.svg",
55
+ "fluent-animal-rabbit-outline.svg",
56
+ "fluent-animal-rabbit.svg",
57
+ "fluent-animal-turtle-outline.svg",
58
+ "fluent-animal-turtle.svg",
59
+ "fluent-app-folder-outline.svg",
60
+ "fluent-app-folder.svg",
61
+ "fluent-app-generic-outline.svg",
62
+ "fluent-app-generic.svg",
63
+ "fluent-app-recent-outline.svg",
64
+ "fluent-app-recent.svg",
65
+ "fluent-app-store-outline.svg",
66
+ "fluent-app-store.svg",
67
+ "fluent-app-title-outline.svg",
68
+ "fluent-app-title.svg",
69
+ "fluent-approvals-app-outline.svg",
70
+ "fluent-approvals-app.svg",
71
+ "fluent-apps-add-in-outline.svg",
72
+ "fluent-apps-add-in.svg",
73
+ "fluent-apps-list-detail-outline.svg",
74
+ "fluent-apps-list-detail.svg",
75
+ "fluent-apps-list-outline.svg",
76
+ "fluent-apps-list.svg",
77
+ "fluent-apps-outline.svg",
78
+ "fluent-apps.svg",
79
+ "fluent-archive-arrow-back.svg",
80
+ "fluent-archive-multiple-outline.svg",
81
+ "fluent-archive-multiple.svg",
82
+ "fluent-archive-outline.svg",
83
+ "fluent-archive-settings-outline.svg",
84
+ "fluent-archive-settings.svg",
85
+ "fluent-archive.svg",
86
+ "fluent-arrow-autofit-content.svg",
87
+ "fluent-arrow-autofit-down.svg",
88
+ "fluent-arrow-autofit-height-in.svg",
89
+ "fluent-arrow-autofit-height.svg",
90
+ "fluent-arrow-autofit-up-outline.svg",
91
+ "fluent-arrow-autofit-up.svg",
92
+ "fluent-arrow-autofit-width.svg",
93
+ "fluent-arrow-between-down.svg",
94
+ "fluent-arrow-bounce-outline.svg",
95
+ "fluent-arrow-bounce.svg",
96
+ "fluent-arrow-circle-down-double.svg",
97
+ "fluent-arrow-circle-down-outline.svg",
98
+ "fluent-arrow-circle-down-right.svg",
99
+ "fluent-arrow-circle-down-split.svg",
100
+ "fluent-arrow-circle-down.svg",
101
+ "fluent-arrow-circle-left-outline.svg",
102
+ "fluent-arrow-circle-left.svg",
103
+ "fluent-arrow-circle-right.svg",
104
+ "fluent-arrow-circle-up-left.svg",
105
+ "fluent-arrow-circle-up-outline.svg",
106
+ "fluent-arrow-circle-up-right.svg",
107
+ "fluent-arrow-circle-up.svg",
108
+ "fluent-arrow-clockwise-dashes.svg",
109
+ "fluent-arrow-clockwise-outline.svg",
110
+ "fluent-arrow-clockwise.svg",
111
+ "fluent-arrow-collapse-all.svg",
112
+ "fluent-arrow-counterclockwise.svg",
113
+ "fluent-arrow-curve-down-left.svg",
114
+ "fluent-arrow-down-exclamation.svg",
115
+ "fluent-arrow-down-left-outline.svg",
116
+ "fluent-arrow-down-left.svg",
117
+ "fluent-arrow-down-outline.svg",
118
+ "fluent-arrow-down.svg",
119
+ "fluent-arrow-download-off.svg",
120
+ "fluent-arrow-download-outline.svg",
121
+ "fluent-arrow-download.svg",
122
+ "fluent-arrow-enter-left-outline.svg",
123
+ "fluent-arrow-enter-left.svg",
124
+ "fluent-arrow-enter-up-outline.svg",
125
+ "fluent-arrow-enter-up.svg",
126
+ "fluent-arrow-expand-all-outline.svg",
127
+ "fluent-arrow-expand-all.svg",
128
+ "fluent-arrow-expand-outline.svg",
129
+ "fluent-arrow-expand.svg",
130
+ "fluent-arrow-export-ltr-outline.svg",
131
+ "fluent-arrow-export-ltr.svg",
132
+ "fluent-arrow-export-outline.svg",
133
+ "fluent-arrow-export-rtl-outline.svg",
134
+ "fluent-arrow-export-rtl.svg",
135
+ "fluent-arrow-export-up-outline.svg",
136
+ "fluent-arrow-export-up.svg",
137
+ "fluent-arrow-export.svg",
138
+ "fluent-arrow-fit-in-outline.svg",
139
+ "fluent-arrow-fit-in.svg",
140
+ "fluent-arrow-fit-outline.svg",
141
+ "fluent-arrow-fit.svg",
142
+ "fluent-arrow-flow-up-right.svg",
143
+ "fluent-arrow-forward-down-person.svg",
144
+ "fluent-arrow-forward-outline.svg",
145
+ "fluent-arrow-forward.svg",
146
+ "fluent-arrow-hook-down-left.svg",
147
+ "fluent-arrow-hook-down-right.svg",
148
+ "fluent-arrow-hook-up-left.svg",
149
+ "fluent-arrow-hook-up-right.svg",
150
+ "fluent-arrow-import-outline.svg",
151
+ "fluent-arrow-import.svg",
152
+ "fluent-arrow-left-outline.svg",
153
+ "fluent-arrow-left.svg",
154
+ "fluent-arrow-maximize-outline.svg",
155
+ "fluent-arrow-maximize-vertical.svg",
156
+ "fluent-arrow-maximize.svg",
157
+ "fluent-arrow-minimize-outline.svg",
158
+ "fluent-arrow-minimize-vertical.svg",
159
+ "fluent-arrow-minimize.svg",
160
+ "fluent-arrow-move-outline.svg",
161
+ "fluent-arrow-move.svg",
162
+ "fluent-arrow-next-outline.svg",
163
+ "fluent-arrow-next.svg",
164
+ "fluent-arrow-outline-down-left.svg",
165
+ "fluent-arrow-outline-up-right.svg",
166
+ "fluent-arrow-paragraph-outline.svg",
167
+ "fluent-arrow-paragraph.svg",
168
+ "fluent-arrow-previous-outline.svg",
169
+ "fluent-arrow-previous.svg",
170
+ "fluent-arrow-redo-outline.svg",
171
+ "fluent-arrow-redo.svg",
172
+ "fluent-arrow-repeat-1-outline.svg",
173
+ "fluent-arrow-repeat-1.svg",
174
+ "fluent-arrow-repeat-all-off.svg",
175
+ "fluent-arrow-repeat-all-outline.svg",
176
+ "fluent-arrow-repeat-all.svg",
177
+ "fluent-arrow-reply-all-outline.svg",
178
+ "fluent-arrow-reply-all.svg",
179
+ "fluent-arrow-reply-down-outline.svg",
180
+ "fluent-arrow-reply-down.svg",
181
+ "fluent-arrow-reply-outline.svg",
182
+ "fluent-arrow-reply.svg",
183
+ "fluent-arrow-reset-outline.svg",
184
+ "fluent-arrow-reset.svg",
185
+ "fluent-arrow-right-outline.svg",
186
+ "fluent-arrow-right.svg",
187
+ "fluent-arrow-rotate-clockwise.svg",
188
+ "fluent-arrow-routing-outline.svg",
189
+ "fluent-arrow-routing.svg",
190
+ "fluent-arrow-shuffle-off-outline.svg",
191
+ "fluent-arrow-shuffle-off.svg",
192
+ "fluent-arrow-shuffle-outline.svg",
193
+ "fluent-arrow-shuffle.svg",
194
+ "fluent-arrow-sort-down-lines.svg",
195
+ "fluent-arrow-sort-down-outline.svg",
196
+ "fluent-arrow-sort-down.svg",
197
+ "fluent-arrow-sort-outline.svg",
198
+ "fluent-arrow-sort-up-lines.svg",
199
+ "fluent-arrow-sort-up-outline.svg",
200
+ "fluent-arrow-sort-up.svg",
201
+ "fluent-arrow-sort.svg",
202
+ "fluent-arrow-split-outline.svg",
203
+ "fluent-arrow-split.svg",
204
+ "fluent-arrow-square-down-outline.svg",
205
+ "fluent-arrow-square-down.svg",
206
+ "fluent-arrow-square-up-right.svg",
207
+ "fluent-arrow-step-in-left.svg",
208
+ "fluent-arrow-step-in-outline.svg",
209
+ "fluent-arrow-step-in-right.svg",
210
+ "fluent-arrow-step-in.svg",
211
+ "fluent-arrow-step-out-outline.svg",
212
+ "fluent-arrow-step-out.svg",
213
+ "fluent-arrow-swap-outline.svg",
214
+ "fluent-arrow-swap.svg",
215
+ "fluent-arrow-sync-checkmark.svg",
216
+ "fluent-arrow-sync-circle-outline.svg",
217
+ "fluent-arrow-sync-circle.svg",
218
+ "fluent-arrow-sync-dismiss.svg",
219
+ "fluent-arrow-sync-outline.svg",
220
+ "fluent-arrow-sync.svg",
221
+ "fluent-arrow-trending-checkmark.svg",
222
+ "fluent-arrow-trending-down.svg",
223
+ "fluent-arrow-trending-lines.svg",
224
+ "fluent-arrow-trending-outline.svg",
225
+ "fluent-arrow-trending-settings.svg",
226
+ "fluent-arrow-trending-sparkle.svg",
227
+ "fluent-arrow-trending-text.svg",
228
+ "fluent-arrow-trending-wrench.svg",
229
+ "fluent-arrow-trending.svg",
230
+ "fluent-arrow-turn-right-outline.svg",
231
+ "fluent-arrow-turn-right.svg",
232
+ "fluent-arrow-undo-outline.svg",
233
+ "fluent-arrow-undo.svg",
234
+ "fluent-arrow-up-exclamation.svg",
235
+ "fluent-arrow-up-left-outline.svg",
236
+ "fluent-arrow-up-left.svg",
237
+ "fluent-arrow-up-outline.svg",
238
+ "fluent-arrow-up-right-outline.svg",
239
+ "fluent-arrow-up-right.svg",
240
+ "fluent-arrow-up-square-settings.svg",
241
+ "fluent-arrow-up.svg",
242
+ "fluent-arrow-upload-outline.svg",
243
+ "fluent-arrow-upload.svg",
244
+ "fluent-arrows-bidirectional.svg",
245
+ "fluent-attach-arrow-right.svg",
246
+ "fluent-attach-outline.svg",
247
+ "fluent-attach-text-outline.svg",
248
+ "fluent-attach-text.svg",
249
+ "fluent-attach.svg",
250
+ "fluent-auto-fit-height-outline.svg",
251
+ "fluent-auto-fit-height.svg",
252
+ "fluent-auto-fit-width-outline.svg",
253
+ "fluent-auto-fit-width.svg",
254
+ "fluent-autocorrect-outline.svg",
255
+ "fluent-autocorrect.svg",
256
+ "fluent-autosum-outline.svg",
257
+ "fluent-autosum.svg",
258
+ "fluent-backpack-add-outline.svg",
259
+ "fluent-backpack-add.svg",
260
+ "fluent-backpack-outline.svg",
261
+ "fluent-backpack.svg",
262
+ "fluent-backspace-outline.svg",
263
+ "fluent-backspace.svg",
264
+ "fluent-badge-outline.svg",
265
+ "fluent-badge.svg",
266
+ "fluent-balloon-outline.svg",
267
+ "fluent-balloon.svg",
268
+ "fluent-barcode-scanner-outline.svg",
269
+ "fluent-barcode-scanner.svg",
270
+ "fluent-battery-0-outline.svg",
271
+ "fluent-battery-0.svg",
272
+ "fluent-battery-1-outline.svg",
273
+ "fluent-battery-1.svg",
274
+ "fluent-battery-10-outline.svg",
275
+ "fluent-battery-10.svg",
276
+ "fluent-battery-2-outline.svg",
277
+ "fluent-battery-2.svg",
278
+ "fluent-battery-3-outline.svg",
279
+ "fluent-battery-3.svg",
280
+ "fluent-battery-4-outline.svg",
281
+ "fluent-battery-4.svg",
282
+ "fluent-battery-5-outline.svg",
283
+ "fluent-battery-5.svg",
284
+ "fluent-battery-6-outline.svg",
285
+ "fluent-battery-6.svg",
286
+ "fluent-battery-7-outline.svg",
287
+ "fluent-battery-7.svg",
288
+ "fluent-battery-8-outline.svg",
289
+ "fluent-battery-8.svg",
290
+ "fluent-battery-9-outline.svg",
291
+ "fluent-battery-9.svg",
292
+ "fluent-battery-charge-outline.svg",
293
+ "fluent-battery-charge.svg",
294
+ "fluent-battery-checkmark-outline.svg",
295
+ "fluent-battery-checkmark.svg",
296
+ "fluent-battery-saver-outline.svg",
297
+ "fluent-battery-saver.svg",
298
+ "fluent-battery-warning-outline.svg",
299
+ "fluent-battery-warning.svg",
300
+ "fluent-beach-outline.svg",
301
+ "fluent-beach.svg",
302
+ "fluent-beaker-add-outline.svg",
303
+ "fluent-beaker-add.svg",
304
+ "fluent-beaker-dismiss-outline.svg",
305
+ "fluent-beaker-dismiss.svg",
306
+ "fluent-beaker-edit-outline.svg",
307
+ "fluent-beaker-edit.svg",
308
+ "fluent-beaker-outline.svg",
309
+ "fluent-beaker.svg",
310
+ "fluent-bed-outline.svg",
311
+ "fluent-bed.svg",
312
+ "fluent-bench-outline.svg",
313
+ "fluent-bench.svg",
314
+ "fluent-bin-full-outline.svg",
315
+ "fluent-bin-full.svg",
316
+ "fluent-bin-recycle-full-outline.svg",
317
+ "fluent-bin-recycle-full.svg",
318
+ "fluent-bin-recycle-outline.svg",
319
+ "fluent-bin-recycle.svg",
320
+ "fluent-binder-triangle-outline.svg",
321
+ "fluent-binder-triangle.svg",
322
+ "fluent-bluetooth-connected.svg",
323
+ "fluent-bluetooth-disabled.svg",
324
+ "fluent-bluetooth-outline.svg",
325
+ "fluent-bluetooth-searching.svg",
326
+ "fluent-bluetooth.svg",
327
+ "fluent-blur-outline.svg",
328
+ "fluent-blur.svg",
329
+ "fluent-board-heart-outline.svg",
330
+ "fluent-board-heart.svg",
331
+ "fluent-board-outline.svg",
332
+ "fluent-board-split-outline.svg",
333
+ "fluent-board-split.svg",
334
+ "fluent-board.svg",
335
+ "fluent-book-add-outline.svg",
336
+ "fluent-book-add.svg",
337
+ "fluent-book-arrow-clockwise.svg",
338
+ "fluent-book-clock-outline.svg",
339
+ "fluent-book-clock.svg",
340
+ "fluent-book-coins-outline.svg",
341
+ "fluent-book-coins.svg",
342
+ "fluent-book-compass-outline.svg",
343
+ "fluent-book-compass.svg",
344
+ "fluent-book-contacts-outline.svg",
345
+ "fluent-book-contacts.svg",
346
+ "fluent-book-database-outline.svg",
347
+ "fluent-book-database.svg",
348
+ "fluent-book-exclamation-mark.svg",
349
+ "fluent-book-globe-outline.svg",
350
+ "fluent-book-globe.svg",
351
+ "fluent-book-information-outline.svg",
352
+ "fluent-book-information.svg",
353
+ "fluent-book-letter-outline.svg",
354
+ "fluent-book-letter.svg",
355
+ "fluent-book-number-outline.svg",
356
+ "fluent-book-number.svg",
357
+ "fluent-book-open-globe-outline.svg",
358
+ "fluent-book-open-globe.svg",
359
+ "fluent-book-open-microphone.svg",
360
+ "fluent-book-open-outline.svg",
361
+ "fluent-book-open.svg",
362
+ "fluent-book-outline.svg",
363
+ "fluent-book-pulse-outline.svg",
364
+ "fluent-book-pulse.svg",
365
+ "fluent-book-question-mark-rtl.svg",
366
+ "fluent-book-question-mark.svg",
367
+ "fluent-book-search-outline.svg",
368
+ "fluent-book-search.svg",
369
+ "fluent-book-star-outline.svg",
370
+ "fluent-book-star.svg",
371
+ "fluent-book-theta-outline.svg",
372
+ "fluent-book-theta.svg",
373
+ "fluent-book-toolbox-outline.svg",
374
+ "fluent-book-toolbox.svg",
375
+ "fluent-book.svg",
376
+ "fluent-bookmark-add-outline.svg",
377
+ "fluent-bookmark-add.svg",
378
+ "fluent-bookmark-multiple-outline.svg",
379
+ "fluent-bookmark-multiple.svg",
380
+ "fluent-bookmark-off-outline.svg",
381
+ "fluent-bookmark-off.svg",
382
+ "fluent-bookmark-outline.svg",
383
+ "fluent-bookmark-search-outline.svg",
384
+ "fluent-bookmark-search.svg",
385
+ "fluent-bookmark.svg",
386
+ "fluent-border-all-outline.svg",
387
+ "fluent-border-all.svg",
388
+ "fluent-border-bottom-double.svg",
389
+ "fluent-border-bottom-outline.svg",
390
+ "fluent-border-bottom-thick.svg",
391
+ "fluent-border-bottom.svg",
392
+ "fluent-border-inside-outline.svg",
393
+ "fluent-border-inside.svg",
394
+ "fluent-border-left-outline.svg",
395
+ "fluent-border-left-right-outline.svg",
396
+ "fluent-border-left-right.svg",
397
+ "fluent-border-left.svg",
398
+ "fluent-border-none-outline.svg",
399
+ "fluent-border-none.svg",
400
+ "fluent-border-outside-outline.svg",
401
+ "fluent-border-outside-thick.svg",
402
+ "fluent-border-outside.svg",
403
+ "fluent-border-right-outline.svg",
404
+ "fluent-border-right.svg",
405
+ "fluent-border-top-bottom-double.svg",
406
+ "fluent-border-top-bottom-outline.svg",
407
+ "fluent-border-top-bottom-thick.svg",
408
+ "fluent-border-top-bottom.svg",
409
+ "fluent-border-top-outline.svg",
410
+ "fluent-border-top.svg",
411
+ "fluent-bot-add-outline.svg",
412
+ "fluent-bot-add.svg",
413
+ "fluent-bot-outline.svg",
414
+ "fluent-bot-sparkle-outline.svg",
415
+ "fluent-bot-sparkle.svg",
416
+ "fluent-bot.svg",
417
+ "fluent-bow-tie-outline.svg",
418
+ "fluent-bow-tie.svg",
419
+ "fluent-bowl-chopsticks-outline.svg",
420
+ "fluent-bowl-chopsticks.svg",
421
+ "fluent-bowl-salad-outline.svg",
422
+ "fluent-bowl-salad.svg",
423
+ "fluent-box-arrow-left-outline.svg",
424
+ "fluent-box-arrow-left.svg",
425
+ "fluent-box-arrow-up-outline.svg",
426
+ "fluent-box-arrow-up.svg",
427
+ "fluent-box-checkmark-outline.svg",
428
+ "fluent-box-checkmark.svg",
429
+ "fluent-box-dismiss-outline.svg",
430
+ "fluent-box-dismiss.svg",
431
+ "fluent-box-edit-outline.svg",
432
+ "fluent-box-edit.svg",
433
+ "fluent-box-multiple-arrow-left.svg",
434
+ "fluent-box-multiple-arrow-right.svg",
435
+ "fluent-box-multiple-checkmark.svg",
436
+ "fluent-box-multiple-outline.svg",
437
+ "fluent-box-multiple-search.svg",
438
+ "fluent-box-multiple.svg",
439
+ "fluent-box-outline.svg",
440
+ "fluent-box-search-outline.svg",
441
+ "fluent-box-search.svg",
442
+ "fluent-box-toolbox-outline.svg",
443
+ "fluent-box-toolbox.svg",
444
+ "fluent-box.svg",
445
+ "fluent-braces-outline.svg",
446
+ "fluent-braces-variable-outline.svg",
447
+ "fluent-braces-variable.svg",
448
+ "fluent-braces.svg",
449
+ "fluent-brain-circuit-outline.svg",
450
+ "fluent-brain-circuit.svg",
451
+ "fluent-branch-compare-outline.svg",
452
+ "fluent-branch-compare.svg",
453
+ "fluent-branch-fork-hint-outline.svg",
454
+ "fluent-branch-fork-hint.svg",
455
+ "fluent-branch-fork-link-outline.svg",
456
+ "fluent-branch-fork-link.svg",
457
+ "fluent-branch-fork-outline.svg",
458
+ "fluent-branch-fork.svg",
459
+ "fluent-branch-outline.svg",
460
+ "fluent-branch.svg",
461
+ "fluent-breakout-room-outline.svg",
462
+ "fluent-breakout-room.svg",
463
+ "fluent-briefcase-medical-outline.svg",
464
+ "fluent-briefcase-medical.svg",
465
+ "fluent-briefcase-off-outline.svg",
466
+ "fluent-briefcase-off.svg",
467
+ "fluent-briefcase-outline.svg",
468
+ "fluent-briefcase-person-outline.svg",
469
+ "fluent-briefcase-person.svg",
470
+ "fluent-briefcase-search-outline.svg",
471
+ "fluent-briefcase-search.svg",
472
+ "fluent-briefcase.svg",
473
+ "fluent-brightness-high-outline.svg",
474
+ "fluent-brightness-high.svg",
475
+ "fluent-brightness-low-outline.svg",
476
+ "fluent-brightness-low.svg",
477
+ "fluent-broad-activity-feed.svg",
478
+ "fluent-broom-outline.svg",
479
+ "fluent-broom.svg",
480
+ "fluent-bug-outline.svg",
481
+ "fluent-bug.svg",
482
+ "fluent-building-bank-link.svg",
483
+ "fluent-building-bank-outline.svg",
484
+ "fluent-building-bank-toolbox.svg",
485
+ "fluent-building-bank.svg",
486
+ "fluent-building-cloud-outline.svg",
487
+ "fluent-building-cloud.svg",
488
+ "fluent-building-desktop-outline.svg",
489
+ "fluent-building-desktop.svg",
490
+ "fluent-building-factory-outline.svg",
491
+ "fluent-building-factory.svg",
492
+ "fluent-building-government.svg",
493
+ "fluent-building-home-outline.svg",
494
+ "fluent-building-home.svg",
495
+ "fluent-building-lighthouse.svg",
496
+ "fluent-building-mosque-outline.svg",
497
+ "fluent-building-mosque.svg",
498
+ "fluent-building-multiple-outline.svg",
499
+ "fluent-building-multiple.svg",
500
+ "fluent-building-outline.svg",
501
+ "fluent-building-people-outline.svg",
502
+ "fluent-building-people.svg",
503
+ "fluent-building-retail-money.svg",
504
+ "fluent-building-retail-more.svg",
505
+ "fluent-building-retail-outline.svg",
506
+ "fluent-building-retail-shield.svg",
507
+ "fluent-building-retail-toolbox.svg",
508
+ "fluent-building-retail.svg",
509
+ "fluent-building-shop-outline.svg",
510
+ "fluent-building-shop.svg",
511
+ "fluent-building-skyscraper.svg",
512
+ "fluent-building-swap-outline.svg",
513
+ "fluent-building-swap.svg",
514
+ "fluent-building-townhouse.svg",
515
+ "fluent-building.svg",
516
+ "fluent-calculator-multiple.svg",
517
+ "fluent-calculator-outline.svg",
518
+ "fluent-calculator.svg",
519
+ "fluent-calendar-3-day-outline.svg",
520
+ "fluent-calendar-3-day.svg",
521
+ "fluent-calendar-add-outline.svg",
522
+ "fluent-calendar-add.svg",
523
+ "fluent-calendar-agenda-outline.svg",
524
+ "fluent-calendar-agenda.svg",
525
+ "fluent-calendar-arrow-down.svg",
526
+ "fluent-calendar-arrow-repeat-all.svg",
527
+ "fluent-calendar-arrow-right.svg",
528
+ "fluent-calendar-assistant.svg",
529
+ "fluent-calendar-cancel-outline.svg",
530
+ "fluent-calendar-cancel.svg",
531
+ "fluent-calendar-chat-outline.svg",
532
+ "fluent-calendar-chat.svg",
533
+ "fluent-calendar-checkmark.svg",
534
+ "fluent-calendar-clock-outline.svg",
535
+ "fluent-calendar-clock.svg",
536
+ "fluent-calendar-data-bar-outline.svg",
537
+ "fluent-calendar-data-bar.svg",
538
+ "fluent-calendar-date-outline.svg",
539
+ "fluent-calendar-date.svg",
540
+ "fluent-calendar-day-outline.svg",
541
+ "fluent-calendar-day.svg",
542
+ "fluent-calendar-edit-outline.svg",
543
+ "fluent-calendar-edit.svg",
544
+ "fluent-calendar-empty-outline.svg",
545
+ "fluent-calendar-empty.svg",
546
+ "fluent-calendar-error-outline.svg",
547
+ "fluent-calendar-error.svg",
548
+ "fluent-calendar-link-outline.svg",
549
+ "fluent-calendar-link.svg",
550
+ "fluent-calendar-lock-outline.svg",
551
+ "fluent-calendar-lock.svg",
552
+ "fluent-calendar-ltr-outline.svg",
553
+ "fluent-calendar-ltr.svg",
554
+ "fluent-calendar-month-outline.svg",
555
+ "fluent-calendar-month.svg",
556
+ "fluent-calendar-multiple-outline.svg",
557
+ "fluent-calendar-multiple.svg",
558
+ "fluent-calendar-note-outline.svg",
559
+ "fluent-calendar-note.svg",
560
+ "fluent-calendar-outline.svg",
561
+ "fluent-calendar-person-outline.svg",
562
+ "fluent-calendar-person.svg",
563
+ "fluent-calendar-play-outline.svg",
564
+ "fluent-calendar-play.svg",
565
+ "fluent-calendar-question-mark.svg",
566
+ "fluent-calendar-record-outline.svg",
567
+ "fluent-calendar-record.svg",
568
+ "fluent-calendar-reply-outline.svg",
569
+ "fluent-calendar-reply.svg",
570
+ "fluent-calendar-rtl-outline.svg",
571
+ "fluent-calendar-rtl.svg",
572
+ "fluent-calendar-settings-outline.svg",
573
+ "fluent-calendar-settings.svg",
574
+ "fluent-calendar-shield-outline.svg",
575
+ "fluent-calendar-shield.svg",
576
+ "fluent-calendar-sparkle-outline.svg",
577
+ "fluent-calendar-sparkle.svg",
578
+ "fluent-calendar-star-outline.svg",
579
+ "fluent-calendar-star.svg",
580
+ "fluent-calendar-sync-outline.svg",
581
+ "fluent-calendar-sync.svg",
582
+ "fluent-calendar-template-outline.svg",
583
+ "fluent-calendar-template.svg",
584
+ "fluent-calendar-today-outline.svg",
585
+ "fluent-calendar-today.svg",
586
+ "fluent-calendar-toolbox-outline.svg",
587
+ "fluent-calendar-toolbox.svg",
588
+ "fluent-calendar-video-outline.svg",
589
+ "fluent-calendar-video.svg",
590
+ "fluent-calendar-week-numbers.svg",
591
+ "fluent-calendar-week-start.svg",
592
+ "fluent-calendar-work-week.svg",
593
+ "fluent-calendar.svg",
594
+ "fluent-call-add-outline.svg",
595
+ "fluent-call-add.svg",
596
+ "fluent-call-checkmark-outline.svg",
597
+ "fluent-call-checkmark.svg",
598
+ "fluent-call-dismiss-outline.svg",
599
+ "fluent-call-dismiss.svg",
600
+ "fluent-call-end-outline.svg",
601
+ "fluent-call-end.svg",
602
+ "fluent-call-forward-outline.svg",
603
+ "fluent-call-forward.svg",
604
+ "fluent-call-inbound-outline.svg",
605
+ "fluent-call-inbound.svg",
606
+ "fluent-call-missed-outline.svg",
607
+ "fluent-call-missed.svg",
608
+ "fluent-call-outbound-outline.svg",
609
+ "fluent-call-outbound.svg",
610
+ "fluent-call-outline.svg",
611
+ "fluent-call-park-outline.svg",
612
+ "fluent-call-park.svg",
613
+ "fluent-call-pause-outline.svg",
614
+ "fluent-call-pause.svg",
615
+ "fluent-call-prohibited-outline.svg",
616
+ "fluent-call-prohibited.svg",
617
+ "fluent-call-transfer-outline.svg",
618
+ "fluent-call-transfer.svg",
619
+ "fluent-call.svg",
620
+ "fluent-calligraphy-pen-outline.svg",
621
+ "fluent-calligraphy-pen.svg",
622
+ "fluent-camera-add-outline.svg",
623
+ "fluent-camera-add.svg",
624
+ "fluent-camera-arrow-up-outline.svg",
625
+ "fluent-camera-arrow-up.svg",
626
+ "fluent-camera-dome-outline.svg",
627
+ "fluent-camera-dome.svg",
628
+ "fluent-camera-off-outline.svg",
629
+ "fluent-camera-off.svg",
630
+ "fluent-camera-outline.svg",
631
+ "fluent-camera-sparkles-outline.svg",
632
+ "fluent-camera-sparkles.svg",
633
+ "fluent-camera-switch-outline.svg",
634
+ "fluent-camera-switch.svg",
635
+ "fluent-camera.svg",
636
+ "fluent-card-ui-outline.svg",
637
+ "fluent-card-ui-portrait-flip.svg",
638
+ "fluent-card-ui.svg",
639
+ "fluent-caret-down-outline.svg",
640
+ "fluent-caret-down-right-outline.svg",
641
+ "fluent-caret-down-right.svg",
642
+ "fluent-caret-down.svg",
643
+ "fluent-caret-left-outline.svg",
644
+ "fluent-caret-left.svg",
645
+ "fluent-caret-right-outline.svg",
646
+ "fluent-caret-right.svg",
647
+ "fluent-caret-up-outline.svg",
648
+ "fluent-caret-up.svg",
649
+ "fluent-cart-outline.svg",
650
+ "fluent-cart.svg",
651
+ "fluent-cast-multiple-outline.svg",
652
+ "fluent-cast-multiple.svg",
653
+ "fluent-cast-outline.svg",
654
+ "fluent-cast.svg",
655
+ "fluent-catch-up-outline.svg",
656
+ "fluent-catch-up.svg",
657
+ "fluent-cellular-3g-outline.svg",
658
+ "fluent-cellular-3g.svg",
659
+ "fluent-cellular-4g-outline.svg",
660
+ "fluent-cellular-4g.svg",
661
+ "fluent-cellular-5g-outline.svg",
662
+ "fluent-cellular-5g.svg",
663
+ "fluent-cellular-data-1-outline.svg",
664
+ "fluent-cellular-data-1.svg",
665
+ "fluent-cellular-data-2-outline.svg",
666
+ "fluent-cellular-data-2.svg",
667
+ "fluent-cellular-data-3-outline.svg",
668
+ "fluent-cellular-data-3.svg",
669
+ "fluent-cellular-data-4-outline.svg",
670
+ "fluent-cellular-data-4.svg",
671
+ "fluent-cellular-data-5-outline.svg",
672
+ "fluent-cellular-data-5.svg",
673
+ "fluent-cellular-off-outline.svg",
674
+ "fluent-cellular-off.svg",
675
+ "fluent-cellular-warning-outline.svg",
676
+ "fluent-cellular-warning.svg",
677
+ "fluent-center-horizontal-outline.svg",
678
+ "fluent-center-horizontal.svg",
679
+ "fluent-center-vertical-outline.svg",
680
+ "fluent-center-vertical.svg",
681
+ "fluent-certificate-outline.svg",
682
+ "fluent-certificate.svg",
683
+ "fluent-channel-add-outline.svg",
684
+ "fluent-channel-add.svg",
685
+ "fluent-channel-alert-outline.svg",
686
+ "fluent-channel-alert.svg",
687
+ "fluent-channel-arrow-left.svg",
688
+ "fluent-channel-dismiss-outline.svg",
689
+ "fluent-channel-dismiss.svg",
690
+ "fluent-channel-outline.svg",
691
+ "fluent-channel-share-outline.svg",
692
+ "fluent-channel-share.svg",
693
+ "fluent-channel-subtract-outline.svg",
694
+ "fluent-channel-subtract.svg",
695
+ "fluent-channel.svg",
696
+ "fluent-chart-multiple-outline.svg",
697
+ "fluent-chart-multiple.svg",
698
+ "fluent-chart-person-outline.svg",
699
+ "fluent-chart-person.svg",
700
+ "fluent-chat-add-outline.svg",
701
+ "fluent-chat-add.svg",
702
+ "fluent-chat-arrow-back-down.svg",
703
+ "fluent-chat-bubbles-question.svg",
704
+ "fluent-chat-cursor-outline.svg",
705
+ "fluent-chat-cursor.svg",
706
+ "fluent-chat-dismiss-outline.svg",
707
+ "fluent-chat-dismiss.svg",
708
+ "fluent-chat-empty-outline.svg",
709
+ "fluent-chat-empty.svg",
710
+ "fluent-chat-help-outline.svg",
711
+ "fluent-chat-help.svg",
712
+ "fluent-chat-lock-outline.svg",
713
+ "fluent-chat-lock.svg",
714
+ "fluent-chat-multiple-heart.svg",
715
+ "fluent-chat-multiple-outline.svg",
716
+ "fluent-chat-multiple.svg",
717
+ "fluent-chat-off-outline.svg",
718
+ "fluent-chat-off.svg",
719
+ "fluent-chat-outline.svg",
720
+ "fluent-chat-settings-outline.svg",
721
+ "fluent-chat-settings.svg",
722
+ "fluent-chat-sparkle-outline.svg",
723
+ "fluent-chat-sparkle.svg",
724
+ "fluent-chat-video-outline.svg",
725
+ "fluent-chat-video.svg",
726
+ "fluent-chat-warning-outline.svg",
727
+ "fluent-chat-warning.svg",
728
+ "fluent-chat.svg",
729
+ "fluent-check-outline.svg",
730
+ "fluent-check.svg",
731
+ "fluent-checkbox-1-outline.svg",
732
+ "fluent-checkbox-1.svg",
733
+ "fluent-checkbox-2-outline.svg",
734
+ "fluent-checkbox-2.svg",
735
+ "fluent-checkbox-arrow-right.svg",
736
+ "fluent-checkbox-checked-outline.svg",
737
+ "fluent-checkbox-checked.svg",
738
+ "fluent-checkbox-indeterminate.svg",
739
+ "fluent-checkbox-person-outline.svg",
740
+ "fluent-checkbox-person.svg",
741
+ "fluent-checkbox-unchecked.svg",
742
+ "fluent-checkbox-warning-outline.svg",
743
+ "fluent-checkbox-warning.svg",
744
+ "fluent-checkmark-circle-outline.svg",
745
+ "fluent-checkmark-circle-square.svg",
746
+ "fluent-checkmark-circle-warning.svg",
747
+ "fluent-checkmark-circle.svg",
748
+ "fluent-checkmark-lock-outline.svg",
749
+ "fluent-checkmark-lock.svg",
750
+ "fluent-checkmark-outline.svg",
751
+ "fluent-checkmark-square-outline.svg",
752
+ "fluent-checkmark-square.svg",
753
+ "fluent-checkmark-starburst.svg",
754
+ "fluent-checkmark.svg",
755
+ "fluent-chevron-circle-down.svg",
756
+ "fluent-chevron-circle-left.svg",
757
+ "fluent-chevron-circle-right.svg",
758
+ "fluent-chevron-circle-up-outline.svg",
759
+ "fluent-chevron-circle-up.svg",
760
+ "fluent-chevron-down-outline.svg",
761
+ "fluent-chevron-down-up-outline.svg",
762
+ "fluent-chevron-down-up.svg",
763
+ "fluent-chevron-down.svg",
764
+ "fluent-chevron-left-outline.svg",
765
+ "fluent-chevron-left.svg",
766
+ "fluent-chevron-right-outline.svg",
767
+ "fluent-chevron-right.svg",
768
+ "fluent-chevron-up-down-outline.svg",
769
+ "fluent-chevron-up-down.svg",
770
+ "fluent-chevron-up-outline.svg",
771
+ "fluent-chevron-up.svg",
772
+ "fluent-circle-edit-outline.svg",
773
+ "fluent-circle-edit.svg",
774
+ "fluent-circle-half-fill-outline.svg",
775
+ "fluent-circle-half-fill.svg",
776
+ "fluent-circle-highlight-outline.svg",
777
+ "fluent-circle-highlight.svg",
778
+ "fluent-circle-hint-half-vertical.svg",
779
+ "fluent-circle-hint-outline.svg",
780
+ "fluent-circle-hint.svg",
781
+ "fluent-circle-image-outline.svg",
782
+ "fluent-circle-image.svg",
783
+ "fluent-circle-line-outline.svg",
784
+ "fluent-circle-line.svg",
785
+ "fluent-circle-outline.svg",
786
+ "fluent-circle-shadow-outline.svg",
787
+ "fluent-circle-shadow.svg",
788
+ "fluent-circle-small-outline.svg",
789
+ "fluent-circle-small.svg",
790
+ "fluent-circle.svg",
791
+ "fluent-city-outline.svg",
792
+ "fluent-city.svg",
793
+ "fluent-class-outline.svg",
794
+ "fluent-class.svg",
795
+ "fluent-classification-outline.svg",
796
+ "fluent-classification.svg",
797
+ "fluent-clear-formatting-outline.svg",
798
+ "fluent-clear-formatting.svg",
799
+ "fluent-clipboard-3-day-outline.svg",
800
+ "fluent-clipboard-3-day.svg",
801
+ "fluent-clipboard-arrow-right.svg",
802
+ "fluent-clipboard-brush-outline.svg",
803
+ "fluent-clipboard-brush.svg",
804
+ "fluent-clipboard-checkmark.svg",
805
+ "fluent-clipboard-clock-outline.svg",
806
+ "fluent-clipboard-clock.svg",
807
+ "fluent-clipboard-code-outline.svg",
808
+ "fluent-clipboard-code.svg",
809
+ "fluent-clipboard-data-bar.svg",
810
+ "fluent-clipboard-day-outline.svg",
811
+ "fluent-clipboard-day.svg",
812
+ "fluent-clipboard-error-outline.svg",
813
+ "fluent-clipboard-error.svg",
814
+ "fluent-clipboard-heart-outline.svg",
815
+ "fluent-clipboard-heart.svg",
816
+ "fluent-clipboard-image-outline.svg",
817
+ "fluent-clipboard-image.svg",
818
+ "fluent-clipboard-letter-outline.svg",
819
+ "fluent-clipboard-letter.svg",
820
+ "fluent-clipboard-link-outline.svg",
821
+ "fluent-clipboard-link.svg",
822
+ "fluent-clipboard-math-formula.svg",
823
+ "fluent-clipboard-month-outline.svg",
824
+ "fluent-clipboard-month.svg",
825
+ "fluent-clipboard-more-outline.svg",
826
+ "fluent-clipboard-more.svg",
827
+ "fluent-clipboard-number-123.svg",
828
+ "fluent-clipboard-outline.svg",
829
+ "fluent-clipboard-paste-outline.svg",
830
+ "fluent-clipboard-paste.svg",
831
+ "fluent-clipboard-pulse-outline.svg",
832
+ "fluent-clipboard-pulse.svg",
833
+ "fluent-clipboard-search-outline.svg",
834
+ "fluent-clipboard-search.svg",
835
+ "fluent-clipboard-settings.svg",
836
+ "fluent-clipboard-task-add.svg",
837
+ "fluent-clipboard-task-list-ltr.svg",
838
+ "fluent-clipboard-task-list-rtl.svg",
839
+ "fluent-clipboard-task-outline.svg",
840
+ "fluent-clipboard-task.svg",
841
+ "fluent-clipboard-text-edit.svg",
842
+ "fluent-clipboard-text-ltr.svg",
843
+ "fluent-clipboard-text-rtl.svg",
844
+ "fluent-clipboard.svg",
845
+ "fluent-clock-alarm-outline.svg",
846
+ "fluent-clock-alarm.svg",
847
+ "fluent-clock-arrow-download.svg",
848
+ "fluent-clock-bill-outline.svg",
849
+ "fluent-clock-bill.svg",
850
+ "fluent-clock-dismiss-outline.svg",
851
+ "fluent-clock-dismiss.svg",
852
+ "fluent-clock-lock-outline.svg",
853
+ "fluent-clock-lock.svg",
854
+ "fluent-clock-outline.svg",
855
+ "fluent-clock-pause-outline.svg",
856
+ "fluent-clock-pause.svg",
857
+ "fluent-clock-toolbox-outline.svg",
858
+ "fluent-clock-toolbox.svg",
859
+ "fluent-clock.svg",
860
+ "fluent-closed-caption-off.svg",
861
+ "fluent-closed-caption-outline.svg",
862
+ "fluent-closed-caption.svg",
863
+ "fluent-cloud-add-outline.svg",
864
+ "fluent-cloud-add.svg",
865
+ "fluent-cloud-archive-outline.svg",
866
+ "fluent-cloud-archive.svg",
867
+ "fluent-cloud-arrow-down-outline.svg",
868
+ "fluent-cloud-arrow-down.svg",
869
+ "fluent-cloud-arrow-right-outline.svg",
870
+ "fluent-cloud-arrow-right.svg",
871
+ "fluent-cloud-arrow-up-outline.svg",
872
+ "fluent-cloud-arrow-up.svg",
873
+ "fluent-cloud-beaker-outline.svg",
874
+ "fluent-cloud-beaker.svg",
875
+ "fluent-cloud-bidirectional.svg",
876
+ "fluent-cloud-checkmark-outline.svg",
877
+ "fluent-cloud-checkmark.svg",
878
+ "fluent-cloud-cube-outline.svg",
879
+ "fluent-cloud-cube.svg",
880
+ "fluent-cloud-dismiss-outline.svg",
881
+ "fluent-cloud-dismiss.svg",
882
+ "fluent-cloud-edit-outline.svg",
883
+ "fluent-cloud-edit.svg",
884
+ "fluent-cloud-error-outline.svg",
885
+ "fluent-cloud-error.svg",
886
+ "fluent-cloud-flow-outline.svg",
887
+ "fluent-cloud-flow.svg",
888
+ "fluent-cloud-link-outline.svg",
889
+ "fluent-cloud-link.svg",
890
+ "fluent-cloud-off-outline.svg",
891
+ "fluent-cloud-off.svg",
892
+ "fluent-cloud-outline.svg",
893
+ "fluent-cloud-swap-outline.svg",
894
+ "fluent-cloud-swap.svg",
895
+ "fluent-cloud-sync-outline.svg",
896
+ "fluent-cloud-sync.svg",
897
+ "fluent-cloud-words-outline.svg",
898
+ "fluent-cloud-words.svg",
899
+ "fluent-cloud.svg",
900
+ "fluent-clover-outline.svg",
901
+ "fluent-clover.svg",
902
+ "fluent-code-block-outline.svg",
903
+ "fluent-code-block.svg",
904
+ "fluent-code-circle-outline.svg",
905
+ "fluent-code-circle.svg",
906
+ "fluent-code-outline.svg",
907
+ "fluent-code.svg",
908
+ "fluent-coin-stack-outline.svg",
909
+ "fluent-coin-stack.svg",
910
+ "fluent-collections-add-outline.svg",
911
+ "fluent-collections-add.svg",
912
+ "fluent-collections-outline.svg",
913
+ "fluent-collections.svg",
914
+ "fluent-color-background-outline.svg",
915
+ "fluent-color-background.svg",
916
+ "fluent-color-fill-accent-outline.svg",
917
+ "fluent-color-fill-outline.svg",
918
+ "fluent-color-fill.svg",
919
+ "fluent-color-line-accent-outline.svg",
920
+ "fluent-color-line-outline.svg",
921
+ "fluent-color-line.svg",
922
+ "fluent-color-outline.svg",
923
+ "fluent-color.svg",
924
+ "fluent-column-edit-outline.svg",
925
+ "fluent-column-edit.svg",
926
+ "fluent-column-outline.svg",
927
+ "fluent-column-triple-edit.svg",
928
+ "fluent-column-triple-outline.svg",
929
+ "fluent-column-triple.svg",
930
+ "fluent-column.svg",
931
+ "fluent-comma-outline.svg",
932
+ "fluent-comma.svg",
933
+ "fluent-comment-add-outline.svg",
934
+ "fluent-comment-add.svg",
935
+ "fluent-comment-arrow-left.svg",
936
+ "fluent-comment-arrow-right.svg",
937
+ "fluent-comment-checkmark-outline.svg",
938
+ "fluent-comment-checkmark.svg",
939
+ "fluent-comment-dismiss-outline.svg",
940
+ "fluent-comment-dismiss.svg",
941
+ "fluent-comment-edit-outline.svg",
942
+ "fluent-comment-edit.svg",
943
+ "fluent-comment-error-outline.svg",
944
+ "fluent-comment-error.svg",
945
+ "fluent-comment-lightning-outline.svg",
946
+ "fluent-comment-lightning.svg",
947
+ "fluent-comment-link-outline.svg",
948
+ "fluent-comment-link.svg",
949
+ "fluent-comment-mention-outline.svg",
950
+ "fluent-comment-mention.svg",
951
+ "fluent-comment-multiple-link.svg",
952
+ "fluent-comment-multiple-outline.svg",
953
+ "fluent-comment-multiple.svg",
954
+ "fluent-comment-note-outline.svg",
955
+ "fluent-comment-note.svg",
956
+ "fluent-comment-off-outline.svg",
957
+ "fluent-comment-off.svg",
958
+ "fluent-comment-outline.svg",
959
+ "fluent-comment.svg",
960
+ "fluent-communication-outline.svg",
961
+ "fluent-communication-person.svg",
962
+ "fluent-communication-shield.svg",
963
+ "fluent-communication.svg",
964
+ "fluent-compass-northwest-outline.svg",
965
+ "fluent-compass-northwest.svg",
966
+ "fluent-compose-outline.svg",
967
+ "fluent-compose.svg",
968
+ "fluent-conference-room-outline.svg",
969
+ "fluent-conference-room.svg",
970
+ "fluent-connector-outline.svg",
971
+ "fluent-connector.svg",
972
+ "fluent-contact-card-group.svg",
973
+ "fluent-contact-card-outline.svg",
974
+ "fluent-contact-card-ribbon.svg",
975
+ "fluent-contact-card.svg",
976
+ "fluent-content-settings-outline.svg",
977
+ "fluent-content-settings.svg",
978
+ "fluent-content-view-gallery.svg",
979
+ "fluent-content-view-outline.svg",
980
+ "fluent-content-view.svg",
981
+ "fluent-contract-down-left.svg",
982
+ "fluent-contract-up-right-outline.svg",
983
+ "fluent-contract-up-right.svg",
984
+ "fluent-control-button-outline.svg",
985
+ "fluent-control-button.svg",
986
+ "fluent-convert-range-outline.svg",
987
+ "fluent-convert-range.svg",
988
+ "fluent-cookies-outline.svg",
989
+ "fluent-cookies.svg",
990
+ "fluent-copy-add-outline.svg",
991
+ "fluent-copy-add.svg",
992
+ "fluent-copy-arrow-right-outline.svg",
993
+ "fluent-copy-arrow-right.svg",
994
+ "fluent-copy-outline.svg",
995
+ "fluent-copy-select-outline.svg",
996
+ "fluent-copy-select.svg",
997
+ "fluent-copy.svg",
998
+ "fluent-couch-outline.svg",
999
+ "fluent-couch.svg",
1000
+ "fluent-credit-card-clock-outline.svg",
1001
+ "fluent-credit-card-clock.svg",
1002
+ "fluent-credit-card-person.svg",
1003
+ "fluent-credit-card-toolbox.svg",
1004
+ "fluent-crop-arrow-rotate-outline.svg",
1005
+ "fluent-crop-arrow-rotate.svg",
1006
+ "fluent-crop-interim-off-outline.svg",
1007
+ "fluent-crop-interim-off.svg",
1008
+ "fluent-crop-interim-outline.svg",
1009
+ "fluent-crop-interim.svg",
1010
+ "fluent-crop-outline.svg",
1011
+ "fluent-crop-sparkle-outline.svg",
1012
+ "fluent-crop-sparkle.svg",
1013
+ "fluent-crop.svg",
1014
+ "fluent-crown-outline.svg",
1015
+ "fluent-crown-subtract-outline.svg",
1016
+ "fluent-crown-subtract.svg",
1017
+ "fluent-crown.svg",
1018
+ "fluent-cube-multiple-outline.svg",
1019
+ "fluent-cube-multiple.svg",
1020
+ "fluent-cube-outline.svg",
1021
+ "fluent-cube-quick-outline.svg",
1022
+ "fluent-cube-quick.svg",
1023
+ "fluent-cube-sync-outline.svg",
1024
+ "fluent-cube-sync.svg",
1025
+ "fluent-cube-tree-outline.svg",
1026
+ "fluent-cube-tree.svg",
1027
+ "fluent-cube.svg",
1028
+ "fluent-currency-dollar-euro.svg",
1029
+ "fluent-currency-dollar-rupee.svg",
1030
+ "fluent-cursor-click-outline.svg",
1031
+ "fluent-cursor-click.svg",
1032
+ "fluent-cursor-hover-off-outline.svg",
1033
+ "fluent-cursor-hover-off.svg",
1034
+ "fluent-cursor-hover-outline.svg",
1035
+ "fluent-cursor-hover.svg",
1036
+ "fluent-cursor-outline.svg",
1037
+ "fluent-cursor.svg",
1038
+ "fluent-cut-outline.svg",
1039
+ "fluent-cut.svg",
1040
+ "fluent-dark-theme-outline.svg",
1041
+ "fluent-dark-theme.svg",
1042
+ "fluent-data-area-outline.svg",
1043
+ "fluent-data-area.svg",
1044
+ "fluent-data-bar-horizontal.svg",
1045
+ "fluent-data-bar-vertical-add.svg",
1046
+ "fluent-data-bar-vertical-outline.svg",
1047
+ "fluent-data-bar-vertical-star.svg",
1048
+ "fluent-data-bar-vertical.svg",
1049
+ "fluent-data-funnel-outline.svg",
1050
+ "fluent-data-funnel.svg",
1051
+ "fluent-data-histogram-outline.svg",
1052
+ "fluent-data-histogram.svg",
1053
+ "fluent-data-line-outline.svg",
1054
+ "fluent-data-line.svg",
1055
+ "fluent-data-pie-outline.svg",
1056
+ "fluent-data-pie.svg",
1057
+ "fluent-data-scatter-outline.svg",
1058
+ "fluent-data-scatter.svg",
1059
+ "fluent-data-sunburst-outline.svg",
1060
+ "fluent-data-sunburst.svg",
1061
+ "fluent-data-treemap-outline.svg",
1062
+ "fluent-data-treemap.svg",
1063
+ "fluent-data-trending-outline.svg",
1064
+ "fluent-data-trending.svg",
1065
+ "fluent-data-usage-edit-outline.svg",
1066
+ "fluent-data-usage-edit.svg",
1067
+ "fluent-data-usage-outline.svg",
1068
+ "fluent-data-usage-settings.svg",
1069
+ "fluent-data-usage-toolbox.svg",
1070
+ "fluent-data-usage.svg",
1071
+ "fluent-data-waterfall-outline.svg",
1072
+ "fluent-data-waterfall.svg",
1073
+ "fluent-data-whisker-outline.svg",
1074
+ "fluent-data-whisker.svg",
1075
+ "fluent-database-arrow-right.svg",
1076
+ "fluent-database-link-outline.svg",
1077
+ "fluent-database-link.svg",
1078
+ "fluent-database-outline.svg",
1079
+ "fluent-database-person-outline.svg",
1080
+ "fluent-database-person.svg",
1081
+ "fluent-database-search-outline.svg",
1082
+ "fluent-database-search.svg",
1083
+ "fluent-database.svg",
1084
+ "fluent-decimal-arrow-left.svg",
1085
+ "fluent-decimal-arrow-right.svg",
1086
+ "fluent-delete-dismiss-outline.svg",
1087
+ "fluent-delete-dismiss.svg",
1088
+ "fluent-delete-off-outline.svg",
1089
+ "fluent-delete-off.svg",
1090
+ "fluent-delete-outline.svg",
1091
+ "fluent-delete.svg",
1092
+ "fluent-dentist-outline.svg",
1093
+ "fluent-dentist.svg",
1094
+ "fluent-design-ideas-outline.svg",
1095
+ "fluent-design-ideas.svg",
1096
+ "fluent-desk-outline.svg",
1097
+ "fluent-desk.svg",
1098
+ "fluent-desktop-arrow-down.svg",
1099
+ "fluent-desktop-arrow-right.svg",
1100
+ "fluent-desktop-checkmark-outline.svg",
1101
+ "fluent-desktop-checkmark.svg",
1102
+ "fluent-desktop-cursor-outline.svg",
1103
+ "fluent-desktop-cursor.svg",
1104
+ "fluent-desktop-edit-outline.svg",
1105
+ "fluent-desktop-edit.svg",
1106
+ "fluent-desktop-flow-outline.svg",
1107
+ "fluent-desktop-flow.svg",
1108
+ "fluent-desktop-keyboard-outline.svg",
1109
+ "fluent-desktop-keyboard.svg",
1110
+ "fluent-desktop-mac-outline.svg",
1111
+ "fluent-desktop-mac.svg",
1112
+ "fluent-desktop-off-outline.svg",
1113
+ "fluent-desktop-off.svg",
1114
+ "fluent-desktop-outline.svg",
1115
+ "fluent-desktop-pulse-outline.svg",
1116
+ "fluent-desktop-pulse.svg",
1117
+ "fluent-desktop-signal-outline.svg",
1118
+ "fluent-desktop-signal.svg",
1119
+ "fluent-desktop-speaker-off.svg",
1120
+ "fluent-desktop-speaker-outline.svg",
1121
+ "fluent-desktop-speaker.svg",
1122
+ "fluent-desktop-sync-outline.svg",
1123
+ "fluent-desktop-sync.svg",
1124
+ "fluent-desktop-toolbox-outline.svg",
1125
+ "fluent-desktop-toolbox.svg",
1126
+ "fluent-desktop-tower-outline.svg",
1127
+ "fluent-desktop-tower.svg",
1128
+ "fluent-desktop.svg",
1129
+ "fluent-developer-board-outline.svg",
1130
+ "fluent-developer-board-search.svg",
1131
+ "fluent-developer-board.svg",
1132
+ "fluent-device-eq-outline.svg",
1133
+ "fluent-device-eq.svg",
1134
+ "fluent-device-meeting-room.svg",
1135
+ "fluent-diagram-outline.svg",
1136
+ "fluent-diagram.svg",
1137
+ "fluent-dialpad-off-outline.svg",
1138
+ "fluent-dialpad-off.svg",
1139
+ "fluent-dialpad-outline.svg",
1140
+ "fluent-dialpad-question-mark.svg",
1141
+ "fluent-dialpad.svg",
1142
+ "fluent-diamond-outline.svg",
1143
+ "fluent-diamond.svg",
1144
+ "fluent-directions-outline.svg",
1145
+ "fluent-directions.svg",
1146
+ "fluent-dishwasher-outline.svg",
1147
+ "fluent-dishwasher.svg",
1148
+ "fluent-dismiss-circle-outline.svg",
1149
+ "fluent-dismiss-circle.svg",
1150
+ "fluent-dismiss-outline.svg",
1151
+ "fluent-dismiss-square-outline.svg",
1152
+ "fluent-dismiss-square.svg",
1153
+ "fluent-dismiss.svg",
1154
+ "fluent-diversity-outline.svg",
1155
+ "fluent-diversity.svg",
1156
+ "fluent-divider-short-outline.svg",
1157
+ "fluent-divider-short.svg",
1158
+ "fluent-divider-tall-outline.svg",
1159
+ "fluent-divider-tall.svg",
1160
+ "fluent-dock-outline.svg",
1161
+ "fluent-dock-row-outline.svg",
1162
+ "fluent-dock-row.svg",
1163
+ "fluent-dock.svg",
1164
+ "fluent-doctor-outline.svg",
1165
+ "fluent-doctor.svg",
1166
+ "fluent-document-100-outline.svg",
1167
+ "fluent-document-100.svg",
1168
+ "fluent-document-add-outline.svg",
1169
+ "fluent-document-add.svg",
1170
+ "fluent-document-arrow-down.svg",
1171
+ "fluent-document-arrow-left.svg",
1172
+ "fluent-document-arrow-right.svg",
1173
+ "fluent-document-border-outline.svg",
1174
+ "fluent-document-border-print.svg",
1175
+ "fluent-document-border.svg",
1176
+ "fluent-document-briefcase.svg",
1177
+ "fluent-document-bullet-list-cube.svg",
1178
+ "fluent-document-bullet-list-off.svg",
1179
+ "fluent-document-bullet-list.svg",
1180
+ "fluent-document-catch-up-outline.svg",
1181
+ "fluent-document-catch-up.svg",
1182
+ "fluent-document-checkmark.svg",
1183
+ "fluent-document-chevron-double.svg",
1184
+ "fluent-document-copy-outline.svg",
1185
+ "fluent-document-copy.svg",
1186
+ "fluent-document-css-outline.svg",
1187
+ "fluent-document-css.svg",
1188
+ "fluent-document-cube-outline.svg",
1189
+ "fluent-document-cube.svg",
1190
+ "fluent-document-data-link.svg",
1191
+ "fluent-document-data-lock.svg",
1192
+ "fluent-document-data-outline.svg",
1193
+ "fluent-document-data.svg",
1194
+ "fluent-document-database-outline.svg",
1195
+ "fluent-document-database.svg",
1196
+ "fluent-document-dismiss-outline.svg",
1197
+ "fluent-document-dismiss.svg",
1198
+ "fluent-document-edit-outline.svg",
1199
+ "fluent-document-edit.svg",
1200
+ "fluent-document-endnote-outline.svg",
1201
+ "fluent-document-endnote.svg",
1202
+ "fluent-document-error-outline.svg",
1203
+ "fluent-document-error.svg",
1204
+ "fluent-document-fit-outline.svg",
1205
+ "fluent-document-fit.svg",
1206
+ "fluent-document-flowchart.svg",
1207
+ "fluent-document-folder-outline.svg",
1208
+ "fluent-document-folder.svg",
1209
+ "fluent-document-footer-dismiss.svg",
1210
+ "fluent-document-footer-outline.svg",
1211
+ "fluent-document-footer.svg",
1212
+ "fluent-document-globe-outline.svg",
1213
+ "fluent-document-globe.svg",
1214
+ "fluent-document-header-dismiss.svg",
1215
+ "fluent-document-header-footer.svg",
1216
+ "fluent-document-header-outline.svg",
1217
+ "fluent-document-header.svg",
1218
+ "fluent-document-heart-outline.svg",
1219
+ "fluent-document-heart-pulse.svg",
1220
+ "fluent-document-heart.svg",
1221
+ "fluent-document-javascript.svg",
1222
+ "fluent-document-landscape-data.svg",
1223
+ "fluent-document-landscape-split.svg",
1224
+ "fluent-document-landscape.svg",
1225
+ "fluent-document-lightning.svg",
1226
+ "fluent-document-link-outline.svg",
1227
+ "fluent-document-link.svg",
1228
+ "fluent-document-lock-outline.svg",
1229
+ "fluent-document-lock.svg",
1230
+ "fluent-document-margins-outline.svg",
1231
+ "fluent-document-margins.svg",
1232
+ "fluent-document-mention-outline.svg",
1233
+ "fluent-document-mention.svg",
1234
+ "fluent-document-multiple-outline.svg",
1235
+ "fluent-document-multiple-percent.svg",
1236
+ "fluent-document-multiple.svg",
1237
+ "fluent-document-one-page-add.svg",
1238
+ "fluent-document-one-page-columns.svg",
1239
+ "fluent-document-one-page-link.svg",
1240
+ "fluent-document-one-page-outline.svg",
1241
+ "fluent-document-one-page-sparkle.svg",
1242
+ "fluent-document-one-page.svg",
1243
+ "fluent-document-outline.svg",
1244
+ "fluent-document-page-bottom-left.svg",
1245
+ "fluent-document-page-break.svg",
1246
+ "fluent-document-page-number.svg",
1247
+ "fluent-document-page-top-center.svg",
1248
+ "fluent-document-page-top-left.svg",
1249
+ "fluent-document-page-top-right.svg",
1250
+ "fluent-document-pdf-outline.svg",
1251
+ "fluent-document-pdf.svg",
1252
+ "fluent-document-percent-outline.svg",
1253
+ "fluent-document-percent.svg",
1254
+ "fluent-document-pill-outline.svg",
1255
+ "fluent-document-pill.svg",
1256
+ "fluent-document-print-outline.svg",
1257
+ "fluent-document-print.svg",
1258
+ "fluent-document-prohibited.svg",
1259
+ "fluent-document-question-mark.svg",
1260
+ "fluent-document-queue-add.svg",
1261
+ "fluent-document-queue-multiple.svg",
1262
+ "fluent-document-queue-outline.svg",
1263
+ "fluent-document-queue.svg",
1264
+ "fluent-document-ribbon-outline.svg",
1265
+ "fluent-document-ribbon.svg",
1266
+ "fluent-document-save-outline.svg",
1267
+ "fluent-document-save.svg",
1268
+ "fluent-document-search-outline.svg",
1269
+ "fluent-document-search.svg",
1270
+ "fluent-document-signature.svg",
1271
+ "fluent-document-split-hint-off.svg",
1272
+ "fluent-document-split-hint.svg",
1273
+ "fluent-document-sync-outline.svg",
1274
+ "fluent-document-sync.svg",
1275
+ "fluent-document-table-checkmark.svg",
1276
+ "fluent-document-table-cube.svg",
1277
+ "fluent-document-table-outline.svg",
1278
+ "fluent-document-table-search.svg",
1279
+ "fluent-document-table-truck.svg",
1280
+ "fluent-document-table.svg",
1281
+ "fluent-document-target-outline.svg",
1282
+ "fluent-document-target.svg",
1283
+ "fluent-document-text-clock.svg",
1284
+ "fluent-document-text-extract.svg",
1285
+ "fluent-document-text-link.svg",
1286
+ "fluent-document-text-outline.svg",
1287
+ "fluent-document-text-toolbox.svg",
1288
+ "fluent-document-text.svg",
1289
+ "fluent-document-toolbox-outline.svg",
1290
+ "fluent-document-toolbox.svg",
1291
+ "fluent-document-width-outline.svg",
1292
+ "fluent-document-width.svg",
1293
+ "fluent-document.svg",
1294
+ "fluent-door-arrow-left-outline.svg",
1295
+ "fluent-door-arrow-left.svg",
1296
+ "fluent-door-tag-outline.svg",
1297
+ "fluent-door-tag.svg",
1298
+ "fluent-double-swipe-down-outline.svg",
1299
+ "fluent-double-swipe-down.svg",
1300
+ "fluent-double-swipe-up-outline.svg",
1301
+ "fluent-double-swipe-up.svg",
1302
+ "fluent-double-tap-swipe-down.svg",
1303
+ "fluent-double-tap-swipe-up.svg",
1304
+ "fluent-drafts-outline.svg",
1305
+ "fluent-drafts.svg",
1306
+ "fluent-drag-outline.svg",
1307
+ "fluent-drag.svg",
1308
+ "fluent-draw-image-outline.svg",
1309
+ "fluent-draw-image.svg",
1310
+ "fluent-draw-shape-outline.svg",
1311
+ "fluent-draw-shape.svg",
1312
+ "fluent-draw-text-outline.svg",
1313
+ "fluent-draw-text.svg",
1314
+ "fluent-drawer-add-outline.svg",
1315
+ "fluent-drawer-add.svg",
1316
+ "fluent-drawer-arrow-download.svg",
1317
+ "fluent-drawer-dismiss-outline.svg",
1318
+ "fluent-drawer-dismiss.svg",
1319
+ "fluent-drawer-outline.svg",
1320
+ "fluent-drawer-play-outline.svg",
1321
+ "fluent-drawer-play.svg",
1322
+ "fluent-drawer-subtract-outline.svg",
1323
+ "fluent-drawer-subtract.svg",
1324
+ "fluent-drawer.svg",
1325
+ "fluent-drink-beer-outline.svg",
1326
+ "fluent-drink-beer.svg",
1327
+ "fluent-drink-coffee-outline.svg",
1328
+ "fluent-drink-coffee.svg",
1329
+ "fluent-drink-margarita-outline.svg",
1330
+ "fluent-drink-margarita.svg",
1331
+ "fluent-drink-to-go-outline.svg",
1332
+ "fluent-drink-to-go.svg",
1333
+ "fluent-drink-wine-outline.svg",
1334
+ "fluent-drink-wine.svg",
1335
+ "fluent-drive-train-outline.svg",
1336
+ "fluent-drive-train.svg",
1337
+ "fluent-drop-outline.svg",
1338
+ "fluent-drop.svg",
1339
+ "fluent-dual-screen-add-outline.svg",
1340
+ "fluent-dual-screen-add.svg",
1341
+ "fluent-dual-screen-arrow-right.svg",
1342
+ "fluent-dual-screen-arrow-up.svg",
1343
+ "fluent-dual-screen-clock-outline.svg",
1344
+ "fluent-dual-screen-clock.svg",
1345
+ "fluent-dual-screen-closed-alert.svg",
1346
+ "fluent-dual-screen-desktop.svg",
1347
+ "fluent-dual-screen-dismiss.svg",
1348
+ "fluent-dual-screen-group-outline.svg",
1349
+ "fluent-dual-screen-group.svg",
1350
+ "fluent-dual-screen-header.svg",
1351
+ "fluent-dual-screen-lock-outline.svg",
1352
+ "fluent-dual-screen-lock.svg",
1353
+ "fluent-dual-screen-mirror.svg",
1354
+ "fluent-dual-screen-outline.svg",
1355
+ "fluent-dual-screen-pagination.svg",
1356
+ "fluent-dual-screen-settings.svg",
1357
+ "fluent-dual-screen-span-outline.svg",
1358
+ "fluent-dual-screen-span.svg",
1359
+ "fluent-dual-screen-speaker.svg",
1360
+ "fluent-dual-screen-status-bar.svg",
1361
+ "fluent-dual-screen-tablet.svg",
1362
+ "fluent-dual-screen-update.svg",
1363
+ "fluent-dual-screen-vibrate.svg",
1364
+ "fluent-dual-screen.svg",
1365
+ "fluent-dumbbell-outline.svg",
1366
+ "fluent-dumbbell.svg",
1367
+ "fluent-dust-outline.svg",
1368
+ "fluent-dust.svg",
1369
+ "fluent-earth-leaf-outline.svg",
1370
+ "fluent-earth-leaf.svg",
1371
+ "fluent-earth-outline.svg",
1372
+ "fluent-earth.svg",
1373
+ "fluent-edit-arrow-back-outline.svg",
1374
+ "fluent-edit-arrow-back.svg",
1375
+ "fluent-edit-line-horizontal-3.svg",
1376
+ "fluent-edit-lock-outline.svg",
1377
+ "fluent-edit-lock.svg",
1378
+ "fluent-edit-off-outline.svg",
1379
+ "fluent-edit-off.svg",
1380
+ "fluent-edit-outline.svg",
1381
+ "fluent-edit-person-outline.svg",
1382
+ "fluent-edit-person.svg",
1383
+ "fluent-edit-prohibited-outline.svg",
1384
+ "fluent-edit-prohibited.svg",
1385
+ "fluent-edit-settings-outline.svg",
1386
+ "fluent-edit-settings.svg",
1387
+ "fluent-edit.svg",
1388
+ "fluent-elevator-outline.svg",
1389
+ "fluent-elevator.svg",
1390
+ "fluent-emoji-add-outline.svg",
1391
+ "fluent-emoji-add.svg",
1392
+ "fluent-emoji-angry-outline.svg",
1393
+ "fluent-emoji-angry.svg",
1394
+ "fluent-emoji-edit-outline.svg",
1395
+ "fluent-emoji-edit.svg",
1396
+ "fluent-emoji-hand-outline.svg",
1397
+ "fluent-emoji-hand.svg",
1398
+ "fluent-emoji-hint-outline.svg",
1399
+ "fluent-emoji-hint.svg",
1400
+ "fluent-emoji-laugh-outline.svg",
1401
+ "fluent-emoji-laugh.svg",
1402
+ "fluent-emoji-meh-outline.svg",
1403
+ "fluent-emoji-meh.svg",
1404
+ "fluent-emoji-meme-outline.svg",
1405
+ "fluent-emoji-meme.svg",
1406
+ "fluent-emoji-multiple-outline.svg",
1407
+ "fluent-emoji-multiple.svg",
1408
+ "fluent-emoji-outline.svg",
1409
+ "fluent-emoji-sad-outline.svg",
1410
+ "fluent-emoji-sad-slight-outline.svg",
1411
+ "fluent-emoji-sad-slight.svg",
1412
+ "fluent-emoji-sad.svg",
1413
+ "fluent-emoji-smile-slight.svg",
1414
+ "fluent-emoji-sparkle-outline.svg",
1415
+ "fluent-emoji-sparkle.svg",
1416
+ "fluent-emoji-surprise-outline.svg",
1417
+ "fluent-emoji-surprise.svg",
1418
+ "fluent-emoji.svg",
1419
+ "fluent-engine-outline.svg",
1420
+ "fluent-engine.svg",
1421
+ "fluent-equal-circle-outline.svg",
1422
+ "fluent-equal-circle.svg",
1423
+ "fluent-equal-off-outline.svg",
1424
+ "fluent-equal-off.svg",
1425
+ "fluent-eraser-medium-outline.svg",
1426
+ "fluent-eraser-medium.svg",
1427
+ "fluent-eraser-outline.svg",
1428
+ "fluent-eraser-segment-outline.svg",
1429
+ "fluent-eraser-segment.svg",
1430
+ "fluent-eraser-small-outline.svg",
1431
+ "fluent-eraser-small.svg",
1432
+ "fluent-eraser-tool-outline.svg",
1433
+ "fluent-eraser-tool.svg",
1434
+ "fluent-eraser.svg",
1435
+ "fluent-error-circle-outline.svg",
1436
+ "fluent-error-circle.svg",
1437
+ "fluent-expand-up-left-outline.svg",
1438
+ "fluent-expand-up-left.svg",
1439
+ "fluent-expand-up-right-outline.svg",
1440
+ "fluent-expand-up-right.svg",
1441
+ "fluent-extended-dock-outline.svg",
1442
+ "fluent-extended-dock.svg",
1443
+ "fluent-eye-lines-outline.svg",
1444
+ "fluent-eye-lines.svg",
1445
+ "fluent-eye-off-outline.svg",
1446
+ "fluent-eye-off.svg",
1447
+ "fluent-eye-outline.svg",
1448
+ "fluent-eye-tracking-off-outline.svg",
1449
+ "fluent-eye-tracking-off.svg",
1450
+ "fluent-eye-tracking-outline.svg",
1451
+ "fluent-eye-tracking.svg",
1452
+ "fluent-eye.svg",
1453
+ "fluent-eyedropper-off-outline.svg",
1454
+ "fluent-eyedropper-off.svg",
1455
+ "fluent-eyedropper-outline.svg",
1456
+ "fluent-eyedropper.svg",
1457
+ "fluent-f-stop-outline.svg",
1458
+ "fluent-f-stop.svg",
1459
+ "fluent-fast-acceleration-outline.svg",
1460
+ "fluent-fast-acceleration.svg",
1461
+ "fluent-fast-forward-outline.svg",
1462
+ "fluent-fast-forward.svg",
1463
+ "fluent-feed-outline.svg",
1464
+ "fluent-feed.svg",
1465
+ "fluent-filmstrip-image-outline.svg",
1466
+ "fluent-filmstrip-image.svg",
1467
+ "fluent-filmstrip-outline.svg",
1468
+ "fluent-filmstrip-play-outline.svg",
1469
+ "fluent-filmstrip-play.svg",
1470
+ "fluent-filmstrip-split-outline.svg",
1471
+ "fluent-filmstrip-split.svg",
1472
+ "fluent-filmstrip.svg",
1473
+ "fluent-filter-dismiss-outline.svg",
1474
+ "fluent-filter-dismiss.svg",
1475
+ "fluent-filter-outline.svg",
1476
+ "fluent-filter-sync-outline.svg",
1477
+ "fluent-filter-sync.svg",
1478
+ "fluent-filter.svg",
1479
+ "fluent-fingerprint-outline.svg",
1480
+ "fluent-fingerprint.svg",
1481
+ "fluent-fire-outline.svg",
1482
+ "fluent-fire.svg",
1483
+ "fluent-fireplace-outline.svg",
1484
+ "fluent-fireplace.svg",
1485
+ "fluent-fixed-width-outline.svg",
1486
+ "fluent-fixed-width.svg",
1487
+ "fluent-flag-clock-outline.svg",
1488
+ "fluent-flag-clock.svg",
1489
+ "fluent-flag-off-outline.svg",
1490
+ "fluent-flag-off.svg",
1491
+ "fluent-flag-outline.svg",
1492
+ "fluent-flag-pride-philadelphia.svg",
1493
+ "fluent-flag-pride-progress.svg",
1494
+ "fluent-flag-pride.svg",
1495
+ "fluent-flag.svg",
1496
+ "fluent-flash-auto-outline.svg",
1497
+ "fluent-flash-auto.svg",
1498
+ "fluent-flash-checkmark-outline.svg",
1499
+ "fluent-flash-checkmark.svg",
1500
+ "fluent-flash-flow-outline.svg",
1501
+ "fluent-flash-flow.svg",
1502
+ "fluent-flash-off-outline.svg",
1503
+ "fluent-flash-off.svg",
1504
+ "fluent-flash-outline.svg",
1505
+ "fluent-flash-settings-outline.svg",
1506
+ "fluent-flash-settings.svg",
1507
+ "fluent-flash-sparkle-outline.svg",
1508
+ "fluent-flash-sparkle.svg",
1509
+ "fluent-flash.svg",
1510
+ "fluent-flashlight-off-outline.svg",
1511
+ "fluent-flashlight-off.svg",
1512
+ "fluent-flashlight-outline.svg",
1513
+ "fluent-flashlight.svg",
1514
+ "fluent-flip-horizontal-outline.svg",
1515
+ "fluent-flip-horizontal.svg",
1516
+ "fluent-flip-vertical-outline.svg",
1517
+ "fluent-flip-vertical.svg",
1518
+ "fluent-flow-outline.svg",
1519
+ "fluent-flow.svg",
1520
+ "fluent-flowchart-circle-outline.svg",
1521
+ "fluent-flowchart-circle.svg",
1522
+ "fluent-flowchart-outline.svg",
1523
+ "fluent-flowchart.svg",
1524
+ "fluent-fluent-outline.svg",
1525
+ "fluent-fluent.svg",
1526
+ "fluent-fluid-outline.svg",
1527
+ "fluent-fluid.svg",
1528
+ "fluent-folder-add-outline.svg",
1529
+ "fluent-folder-add.svg",
1530
+ "fluent-folder-arrow-left-outline.svg",
1531
+ "fluent-folder-arrow-left.svg",
1532
+ "fluent-folder-arrow-right.svg",
1533
+ "fluent-folder-arrow-up-outline.svg",
1534
+ "fluent-folder-arrow-up.svg",
1535
+ "fluent-folder-lightning-outline.svg",
1536
+ "fluent-folder-lightning.svg",
1537
+ "fluent-folder-link-outline.svg",
1538
+ "fluent-folder-link.svg",
1539
+ "fluent-folder-mail-outline.svg",
1540
+ "fluent-folder-mail.svg",
1541
+ "fluent-folder-open-outline.svg",
1542
+ "fluent-folder-open-vertical.svg",
1543
+ "fluent-folder-open.svg",
1544
+ "fluent-folder-outline.svg",
1545
+ "fluent-folder-people-outline.svg",
1546
+ "fluent-folder-people.svg",
1547
+ "fluent-folder-person-outline.svg",
1548
+ "fluent-folder-person.svg",
1549
+ "fluent-folder-prohibited-outline.svg",
1550
+ "fluent-folder-prohibited.svg",
1551
+ "fluent-folder-search-outline.svg",
1552
+ "fluent-folder-search.svg",
1553
+ "fluent-folder-swap-outline.svg",
1554
+ "fluent-folder-swap.svg",
1555
+ "fluent-folder-sync-outline.svg",
1556
+ "fluent-folder-sync.svg",
1557
+ "fluent-folder-zip-outline.svg",
1558
+ "fluent-folder-zip.svg",
1559
+ "fluent-folder.svg",
1560
+ "fluent-font-decrease-outline.svg",
1561
+ "fluent-font-decrease.svg",
1562
+ "fluent-font-increase-outline.svg",
1563
+ "fluent-font-increase.svg",
1564
+ "fluent-font-space-tracking-in.svg",
1565
+ "fluent-font-space-tracking-out.svg",
1566
+ "fluent-food-apple-outline.svg",
1567
+ "fluent-food-apple.svg",
1568
+ "fluent-food-cake-outline.svg",
1569
+ "fluent-food-cake.svg",
1570
+ "fluent-food-carrot-outline.svg",
1571
+ "fluent-food-carrot.svg",
1572
+ "fluent-food-chicken-leg-outline.svg",
1573
+ "fluent-food-chicken-leg.svg",
1574
+ "fluent-food-egg-outline.svg",
1575
+ "fluent-food-egg.svg",
1576
+ "fluent-food-fish-outline.svg",
1577
+ "fluent-food-fish.svg",
1578
+ "fluent-food-grains-outline.svg",
1579
+ "fluent-food-grains.svg",
1580
+ "fluent-food-outline.svg",
1581
+ "fluent-food-pizza-outline.svg",
1582
+ "fluent-food-pizza.svg",
1583
+ "fluent-food-toast-outline.svg",
1584
+ "fluent-food-toast.svg",
1585
+ "fluent-food.svg",
1586
+ "fluent-form-multiple-outline.svg",
1587
+ "fluent-form-multiple.svg",
1588
+ "fluent-form-new-outline.svg",
1589
+ "fluent-form-new.svg",
1590
+ "fluent-form-outline.svg",
1591
+ "fluent-form.svg",
1592
+ "fluent-fps-120-outline.svg",
1593
+ "fluent-fps-120.svg",
1594
+ "fluent-fps-240-outline.svg",
1595
+ "fluent-fps-240.svg",
1596
+ "fluent-fps-30-outline.svg",
1597
+ "fluent-fps-30.svg",
1598
+ "fluent-fps-60-outline.svg",
1599
+ "fluent-fps-60.svg",
1600
+ "fluent-fps-960-outline.svg",
1601
+ "fluent-fps-960.svg",
1602
+ "fluent-frame-outline.svg",
1603
+ "fluent-frame.svg",
1604
+ "fluent-full-screen-maximize.svg",
1605
+ "fluent-full-screen-minimize.svg",
1606
+ "fluent-games-outline.svg",
1607
+ "fluent-games.svg",
1608
+ "fluent-gantt-chart-outline.svg",
1609
+ "fluent-gantt-chart.svg",
1610
+ "fluent-gas-outline.svg",
1611
+ "fluent-gas-pump-outline.svg",
1612
+ "fluent-gas-pump.svg",
1613
+ "fluent-gas.svg",
1614
+ "fluent-gauge-outline.svg",
1615
+ "fluent-gauge.svg",
1616
+ "fluent-gavel-outline.svg",
1617
+ "fluent-gavel.svg",
1618
+ "fluent-gesture-outline.svg",
1619
+ "fluent-gesture.svg",
1620
+ "fluent-gif-outline.svg",
1621
+ "fluent-gif.svg",
1622
+ "fluent-gift-card-add-outline.svg",
1623
+ "fluent-gift-card-add.svg",
1624
+ "fluent-gift-card-arrow-right.svg",
1625
+ "fluent-gift-card-money-outline.svg",
1626
+ "fluent-gift-card-money.svg",
1627
+ "fluent-gift-card-multiple.svg",
1628
+ "fluent-gift-card-outline.svg",
1629
+ "fluent-gift-card.svg",
1630
+ "fluent-gift-open-outline.svg",
1631
+ "fluent-gift-open.svg",
1632
+ "fluent-gift-outline.svg",
1633
+ "fluent-gift.svg",
1634
+ "fluent-glance-horizontal-outline.svg",
1635
+ "fluent-glance-horizontal.svg",
1636
+ "fluent-glance-outline.svg",
1637
+ "fluent-glance.svg",
1638
+ "fluent-glasses-off-outline.svg",
1639
+ "fluent-glasses-off.svg",
1640
+ "fluent-glasses-outline.svg",
1641
+ "fluent-glasses.svg",
1642
+ "fluent-globe-add-outline.svg",
1643
+ "fluent-globe-add.svg",
1644
+ "fluent-globe-arrow-forward.svg",
1645
+ "fluent-globe-arrow-up-outline.svg",
1646
+ "fluent-globe-arrow-up.svg",
1647
+ "fluent-globe-clock-outline.svg",
1648
+ "fluent-globe-clock.svg",
1649
+ "fluent-globe-desktop-outline.svg",
1650
+ "fluent-globe-desktop.svg",
1651
+ "fluent-globe-error-outline.svg",
1652
+ "fluent-globe-error.svg",
1653
+ "fluent-globe-location-outline.svg",
1654
+ "fluent-globe-location.svg",
1655
+ "fluent-globe-off-outline.svg",
1656
+ "fluent-globe-off.svg",
1657
+ "fluent-globe-outline.svg",
1658
+ "fluent-globe-person-outline.svg",
1659
+ "fluent-globe-person.svg",
1660
+ "fluent-globe-prohibited-outline.svg",
1661
+ "fluent-globe-prohibited.svg",
1662
+ "fluent-globe-search-outline.svg",
1663
+ "fluent-globe-search.svg",
1664
+ "fluent-globe-shield-outline.svg",
1665
+ "fluent-globe-shield.svg",
1666
+ "fluent-globe-surface-outline.svg",
1667
+ "fluent-globe-surface.svg",
1668
+ "fluent-globe-sync-outline.svg",
1669
+ "fluent-globe-sync.svg",
1670
+ "fluent-globe-video-outline.svg",
1671
+ "fluent-globe-video.svg",
1672
+ "fluent-globe-warning-outline.svg",
1673
+ "fluent-globe-warning.svg",
1674
+ "fluent-globe.svg",
1675
+ "fluent-grid-circles-outline.svg",
1676
+ "fluent-grid-circles.svg",
1677
+ "fluent-grid-dots-outline.svg",
1678
+ "fluent-grid-dots.svg",
1679
+ "fluent-grid-outline.svg",
1680
+ "fluent-grid.svg",
1681
+ "fluent-group-dismiss-outline.svg",
1682
+ "fluent-group-dismiss.svg",
1683
+ "fluent-group-list-outline.svg",
1684
+ "fluent-group-list.svg",
1685
+ "fluent-group-outline.svg",
1686
+ "fluent-group-return-outline.svg",
1687
+ "fluent-group-return.svg",
1688
+ "fluent-group.svg",
1689
+ "fluent-guardian-outline.svg",
1690
+ "fluent-guardian.svg",
1691
+ "fluent-guest-add-outline.svg",
1692
+ "fluent-guest-add.svg",
1693
+ "fluent-guest-outline.svg",
1694
+ "fluent-guest.svg",
1695
+ "fluent-guitar-outline.svg",
1696
+ "fluent-guitar.svg",
1697
+ "fluent-hand-draw-outline.svg",
1698
+ "fluent-hand-draw.svg",
1699
+ "fluent-hand-left-chat-outline.svg",
1700
+ "fluent-hand-left-chat.svg",
1701
+ "fluent-hand-left-outline.svg",
1702
+ "fluent-hand-left.svg",
1703
+ "fluent-hand-point-outline.svg",
1704
+ "fluent-hand-point.svg",
1705
+ "fluent-hand-right-off-outline.svg",
1706
+ "fluent-hand-right-off.svg",
1707
+ "fluent-hand-right-outline.svg",
1708
+ "fluent-hand-right.svg",
1709
+ "fluent-hand-wave-outline.svg",
1710
+ "fluent-hand-wave.svg",
1711
+ "fluent-handshake-outline.svg",
1712
+ "fluent-handshake.svg",
1713
+ "fluent-haptic-strong-outline.svg",
1714
+ "fluent-haptic-strong.svg",
1715
+ "fluent-haptic-weak-outline.svg",
1716
+ "fluent-haptic-weak.svg",
1717
+ "fluent-hard-drive-call-outline.svg",
1718
+ "fluent-hard-drive-call.svg",
1719
+ "fluent-hard-drive-outline.svg",
1720
+ "fluent-hard-drive.svg",
1721
+ "fluent-hat-graduation-add.svg",
1722
+ "fluent-hat-graduation-outline.svg",
1723
+ "fluent-hat-graduation-sparkle.svg",
1724
+ "fluent-hat-graduation.svg",
1725
+ "fluent-hd-outline.svg",
1726
+ "fluent-hd.svg",
1727
+ "fluent-hdr-off-outline.svg",
1728
+ "fluent-hdr-off.svg",
1729
+ "fluent-hdr-outline.svg",
1730
+ "fluent-hdr.svg",
1731
+ "fluent-headphones-outline.svg",
1732
+ "fluent-headphones-sound-wave.svg",
1733
+ "fluent-headphones.svg",
1734
+ "fluent-headset-add-outline.svg",
1735
+ "fluent-headset-add.svg",
1736
+ "fluent-headset-outline.svg",
1737
+ "fluent-headset-vr-outline.svg",
1738
+ "fluent-headset-vr.svg",
1739
+ "fluent-headset.svg",
1740
+ "fluent-heart-broken-outline.svg",
1741
+ "fluent-heart-broken.svg",
1742
+ "fluent-heart-circle-hint-outline.svg",
1743
+ "fluent-heart-circle-hint.svg",
1744
+ "fluent-heart-circle-outline.svg",
1745
+ "fluent-heart-circle.svg",
1746
+ "fluent-heart-off-outline.svg",
1747
+ "fluent-heart-off.svg",
1748
+ "fluent-heart-outline.svg",
1749
+ "fluent-heart-pulse-outline.svg",
1750
+ "fluent-heart-pulse.svg",
1751
+ "fluent-heart.svg",
1752
+ "fluent-hexagon-outline.svg",
1753
+ "fluent-hexagon-sparkle-outline.svg",
1754
+ "fluent-hexagon-sparkle.svg",
1755
+ "fluent-hexagon-three-outline.svg",
1756
+ "fluent-hexagon-three.svg",
1757
+ "fluent-hexagon.svg",
1758
+ "fluent-highlight-accent.svg",
1759
+ "fluent-highlight-outline.svg",
1760
+ "fluent-highlight.svg",
1761
+ "fluent-highway-outline.svg",
1762
+ "fluent-highway.svg",
1763
+ "fluent-history-dismiss-outline.svg",
1764
+ "fluent-history-dismiss.svg",
1765
+ "fluent-history-outline.svg",
1766
+ "fluent-history.svg",
1767
+ "fluent-home-add-outline.svg",
1768
+ "fluent-home-add.svg",
1769
+ "fluent-home-checkmark-outline.svg",
1770
+ "fluent-home-checkmark.svg",
1771
+ "fluent-home-database-outline.svg",
1772
+ "fluent-home-database.svg",
1773
+ "fluent-home-garage-outline.svg",
1774
+ "fluent-home-garage.svg",
1775
+ "fluent-home-heart-outline.svg",
1776
+ "fluent-home-heart.svg",
1777
+ "fluent-home-more-outline.svg",
1778
+ "fluent-home-more.svg",
1779
+ "fluent-home-outline.svg",
1780
+ "fluent-home-person-outline.svg",
1781
+ "fluent-home-person.svg",
1782
+ "fluent-home-split-outline.svg",
1783
+ "fluent-home-split.svg",
1784
+ "fluent-home.svg",
1785
+ "fluent-hourglass-half-outline.svg",
1786
+ "fluent-hourglass-half.svg",
1787
+ "fluent-hourglass-one-quarter.svg",
1788
+ "fluent-hourglass-outline.svg",
1789
+ "fluent-hourglass-three-quarter.svg",
1790
+ "fluent-hourglass.svg",
1791
+ "fluent-icons-outline.svg",
1792
+ "fluent-icons.svg",
1793
+ "fluent-image-add-outline.svg",
1794
+ "fluent-image-add.svg",
1795
+ "fluent-image-alt-text-outline.svg",
1796
+ "fluent-image-alt-text.svg",
1797
+ "fluent-image-arrow-back-outline.svg",
1798
+ "fluent-image-arrow-back.svg",
1799
+ "fluent-image-arrow-forward.svg",
1800
+ "fluent-image-border-outline.svg",
1801
+ "fluent-image-border.svg",
1802
+ "fluent-image-circle-outline.svg",
1803
+ "fluent-image-circle.svg",
1804
+ "fluent-image-copy-outline.svg",
1805
+ "fluent-image-copy.svg",
1806
+ "fluent-image-edit-outline.svg",
1807
+ "fluent-image-edit.svg",
1808
+ "fluent-image-globe-outline.svg",
1809
+ "fluent-image-globe.svg",
1810
+ "fluent-image-multiple-outline.svg",
1811
+ "fluent-image-multiple.svg",
1812
+ "fluent-image-off-outline.svg",
1813
+ "fluent-image-off.svg",
1814
+ "fluent-image-outline.svg",
1815
+ "fluent-image-prohibited-outline.svg",
1816
+ "fluent-image-prohibited.svg",
1817
+ "fluent-image-reflection-outline.svg",
1818
+ "fluent-image-reflection.svg",
1819
+ "fluent-image-search-outline.svg",
1820
+ "fluent-image-search.svg",
1821
+ "fluent-image-shadow-outline.svg",
1822
+ "fluent-image-shadow.svg",
1823
+ "fluent-image-sparkle-outline.svg",
1824
+ "fluent-image-sparkle.svg",
1825
+ "fluent-image-split-outline.svg",
1826
+ "fluent-image-split.svg",
1827
+ "fluent-image-table-outline.svg",
1828
+ "fluent-image-table.svg",
1829
+ "fluent-image.svg",
1830
+ "fluent-immersive-reader-outline.svg",
1831
+ "fluent-immersive-reader.svg",
1832
+ "fluent-important-outline.svg",
1833
+ "fluent-important.svg",
1834
+ "fluent-incognito-outline.svg",
1835
+ "fluent-incognito.svg",
1836
+ "fluent-info-outline.svg",
1837
+ "fluent-info.svg",
1838
+ "fluent-ink-stroke-arrow-down.svg",
1839
+ "fluent-ink-stroke-arrow-up-down.svg",
1840
+ "fluent-ink-stroke-outline.svg",
1841
+ "fluent-ink-stroke.svg",
1842
+ "fluent-inking-tool-accent.svg",
1843
+ "fluent-inking-tool-outline.svg",
1844
+ "fluent-inking-tool.svg",
1845
+ "fluent-inprivate-account-outline.svg",
1846
+ "fluent-inprivate-account.svg",
1847
+ "fluent-ios-arrow-ltr-outline.svg",
1848
+ "fluent-ios-arrow-ltr.svg",
1849
+ "fluent-ios-arrow-outline.svg",
1850
+ "fluent-ios-arrow-rtl-outline.svg",
1851
+ "fluent-ios-arrow-rtl.svg",
1852
+ "fluent-ios-arrow.svg",
1853
+ "fluent-iot-alert-outline.svg",
1854
+ "fluent-iot-alert.svg",
1855
+ "fluent-iot-outline.svg",
1856
+ "fluent-iot.svg",
1857
+ "fluent-javascript-outline.svg",
1858
+ "fluent-javascript.svg",
1859
+ "fluent-key-command-outline.svg",
1860
+ "fluent-key-command.svg",
1861
+ "fluent-key-multiple-outline.svg",
1862
+ "fluent-key-multiple.svg",
1863
+ "fluent-key-outline.svg",
1864
+ "fluent-key-reset-outline.svg",
1865
+ "fluent-key-reset.svg",
1866
+ "fluent-key.svg",
1867
+ "fluent-keyboard-123-outline.svg",
1868
+ "fluent-keyboard-123.svg",
1869
+ "fluent-keyboard-dock-outline.svg",
1870
+ "fluent-keyboard-dock.svg",
1871
+ "fluent-keyboard-layout-float.svg",
1872
+ "fluent-keyboard-layout-resize.svg",
1873
+ "fluent-keyboard-layout-split.svg",
1874
+ "fluent-keyboard-outline.svg",
1875
+ "fluent-keyboard-shift-outline.svg",
1876
+ "fluent-keyboard-shift-uppercase.svg",
1877
+ "fluent-keyboard-shift.svg",
1878
+ "fluent-keyboard-tab-outline.svg",
1879
+ "fluent-keyboard-tab.svg",
1880
+ "fluent-keyboard.svg",
1881
+ "fluent-kiosk-outline.svg",
1882
+ "fluent-kiosk.svg",
1883
+ "fluent-laptop-briefcase-outline.svg",
1884
+ "fluent-laptop-briefcase.svg",
1885
+ "fluent-laptop-multiple-outline.svg",
1886
+ "fluent-laptop-multiple.svg",
1887
+ "fluent-laptop-outline.svg",
1888
+ "fluent-laptop-person-outline.svg",
1889
+ "fluent-laptop-person.svg",
1890
+ "fluent-laptop-settings-outline.svg",
1891
+ "fluent-laptop-settings.svg",
1892
+ "fluent-laptop.svg",
1893
+ "fluent-lasso-outline.svg",
1894
+ "fluent-lasso.svg",
1895
+ "fluent-launcher-settings-outline.svg",
1896
+ "fluent-launcher-settings.svg",
1897
+ "fluent-layer-diagonal-add.svg",
1898
+ "fluent-layer-diagonal-outline.svg",
1899
+ "fluent-layer-diagonal-person.svg",
1900
+ "fluent-layer-diagonal-sparkle.svg",
1901
+ "fluent-layer-diagonal.svg",
1902
+ "fluent-layer-outline.svg",
1903
+ "fluent-layer.svg",
1904
+ "fluent-layout-cell-four-outline.svg",
1905
+ "fluent-layout-cell-four.svg",
1906
+ "fluent-layout-column-four.svg",
1907
+ "fluent-layout-column-three.svg",
1908
+ "fluent-layout-column-two-outline.svg",
1909
+ "fluent-layout-column-two.svg",
1910
+ "fluent-layout-row-four-focus-top.svg",
1911
+ "fluent-layout-row-four-outline.svg",
1912
+ "fluent-layout-row-four.svg",
1913
+ "fluent-layout-row-three-outline.svg",
1914
+ "fluent-layout-row-three.svg",
1915
+ "fluent-layout-row-two-focus-top.svg",
1916
+ "fluent-layout-row-two-outline.svg",
1917
+ "fluent-layout-row-two-settings.svg",
1918
+ "fluent-layout-row-two-split-top.svg",
1919
+ "fluent-layout-row-two.svg",
1920
+ "fluent-leaf-one-outline.svg",
1921
+ "fluent-leaf-one.svg",
1922
+ "fluent-leaf-three-outline.svg",
1923
+ "fluent-leaf-three.svg",
1924
+ "fluent-leaf-two-outline.svg",
1925
+ "fluent-leaf-two.svg",
1926
+ "fluent-learning-app-outline.svg",
1927
+ "fluent-learning-app.svg",
1928
+ "fluent-library-outline.svg",
1929
+ "fluent-library.svg",
1930
+ "fluent-lightbulb-circle-outline.svg",
1931
+ "fluent-lightbulb-circle.svg",
1932
+ "fluent-lightbulb-filament.svg",
1933
+ "fluent-lightbulb-outline.svg",
1934
+ "fluent-lightbulb-person-outline.svg",
1935
+ "fluent-lightbulb-person.svg",
1936
+ "fluent-lightbulb.svg",
1937
+ "fluent-likert-outline.svg",
1938
+ "fluent-likert.svg",
1939
+ "fluent-line-dashes-outline.svg",
1940
+ "fluent-line-dashes.svg",
1941
+ "fluent-line-horizontal-1-dashes.svg",
1942
+ "fluent-line-horizontal-1-outline.svg",
1943
+ "fluent-line-horizontal-1.svg",
1944
+ "fluent-line-outline.svg",
1945
+ "fluent-line-style-outline.svg",
1946
+ "fluent-line-style-sketch-outline.svg",
1947
+ "fluent-line-style-sketch.svg",
1948
+ "fluent-line-style.svg",
1949
+ "fluent-line-thickness-outline.svg",
1950
+ "fluent-line-thickness.svg",
1951
+ "fluent-line.svg",
1952
+ "fluent-link-add-outline.svg",
1953
+ "fluent-link-add.svg",
1954
+ "fluent-link-dismiss-outline.svg",
1955
+ "fluent-link-dismiss.svg",
1956
+ "fluent-link-edit-outline.svg",
1957
+ "fluent-link-edit.svg",
1958
+ "fluent-link-multiple-outline.svg",
1959
+ "fluent-link-multiple.svg",
1960
+ "fluent-link-outline.svg",
1961
+ "fluent-link-person-outline.svg",
1962
+ "fluent-link-person.svg",
1963
+ "fluent-link-settings-outline.svg",
1964
+ "fluent-link-settings.svg",
1965
+ "fluent-link-square-outline.svg",
1966
+ "fluent-link-square.svg",
1967
+ "fluent-link.svg",
1968
+ "fluent-list-outline.svg",
1969
+ "fluent-list.svg",
1970
+ "fluent-live-off-outline.svg",
1971
+ "fluent-live-off.svg",
1972
+ "fluent-live-outline.svg",
1973
+ "fluent-live.svg",
1974
+ "fluent-local-language-outline.svg",
1975
+ "fluent-local-language.svg",
1976
+ "fluent-location-add-outline.svg",
1977
+ "fluent-location-add.svg",
1978
+ "fluent-location-arrow-outline.svg",
1979
+ "fluent-location-arrow.svg",
1980
+ "fluent-location-dismiss-outline.svg",
1981
+ "fluent-location-dismiss.svg",
1982
+ "fluent-location-live-outline.svg",
1983
+ "fluent-location-live.svg",
1984
+ "fluent-location-off-outline.svg",
1985
+ "fluent-location-off.svg",
1986
+ "fluent-location-outline.svg",
1987
+ "fluent-location-ripple-outline.svg",
1988
+ "fluent-location-ripple.svg",
1989
+ "fluent-location-target-square.svg",
1990
+ "fluent-location.svg",
1991
+ "fluent-lock-closed-key-outline.svg",
1992
+ "fluent-lock-closed-key.svg",
1993
+ "fluent-lock-closed-outline.svg",
1994
+ "fluent-lock-closed.svg",
1995
+ "fluent-lock-multiple-outline.svg",
1996
+ "fluent-lock-multiple.svg",
1997
+ "fluent-lock-open-outline.svg",
1998
+ "fluent-lock-open.svg",
1999
+ "fluent-lock-shield-outline.svg",
2000
+ "fluent-lock-shield.svg",
2001
+ "fluent-lottery-outline.svg",
2002
+ "fluent-lottery.svg",
2003
+ "fluent-luggage-outline.svg",
2004
+ "fluent-luggage.svg",
2005
+ "fluent-mail-add-outline.svg",
2006
+ "fluent-mail-add.svg",
2007
+ "fluent-mail-alert-outline.svg",
2008
+ "fluent-mail-alert.svg",
2009
+ "fluent-mail-all-read-outline.svg",
2010
+ "fluent-mail-all-read.svg",
2011
+ "fluent-mail-arrow-clockwise.svg",
2012
+ "fluent-mail-arrow-double-back.svg",
2013
+ "fluent-mail-arrow-up-outline.svg",
2014
+ "fluent-mail-arrow-up.svg",
2015
+ "fluent-mail-attach-outline.svg",
2016
+ "fluent-mail-attach.svg",
2017
+ "fluent-mail-checkmark-outline.svg",
2018
+ "fluent-mail-checkmark.svg",
2019
+ "fluent-mail-clock-outline.svg",
2020
+ "fluent-mail-clock.svg",
2021
+ "fluent-mail-copy-outline.svg",
2022
+ "fluent-mail-copy.svg",
2023
+ "fluent-mail-dismiss-outline.svg",
2024
+ "fluent-mail-dismiss.svg",
2025
+ "fluent-mail-edit-outline.svg",
2026
+ "fluent-mail-edit.svg",
2027
+ "fluent-mail-error-outline.svg",
2028
+ "fluent-mail-error.svg",
2029
+ "fluent-mail-inbox-add-outline.svg",
2030
+ "fluent-mail-inbox-add.svg",
2031
+ "fluent-mail-inbox-all-outline.svg",
2032
+ "fluent-mail-inbox-all.svg",
2033
+ "fluent-mail-inbox-arrow-right.svg",
2034
+ "fluent-mail-inbox-arrow-up.svg",
2035
+ "fluent-mail-inbox-checkmark.svg",
2036
+ "fluent-mail-inbox-dismiss.svg",
2037
+ "fluent-mail-inbox-outline.svg",
2038
+ "fluent-mail-inbox.svg",
2039
+ "fluent-mail-link-outline.svg",
2040
+ "fluent-mail-link.svg",
2041
+ "fluent-mail-list-outline.svg",
2042
+ "fluent-mail-list.svg",
2043
+ "fluent-mail-multiple-outline.svg",
2044
+ "fluent-mail-multiple.svg",
2045
+ "fluent-mail-off-outline.svg",
2046
+ "fluent-mail-off.svg",
2047
+ "fluent-mail-open-person-outline.svg",
2048
+ "fluent-mail-open-person.svg",
2049
+ "fluent-mail-outline.svg",
2050
+ "fluent-mail-prohibited-outline.svg",
2051
+ "fluent-mail-prohibited.svg",
2052
+ "fluent-mail-read-multiple.svg",
2053
+ "fluent-mail-read-outline.svg",
2054
+ "fluent-mail-read.svg",
2055
+ "fluent-mail-rewind-outline.svg",
2056
+ "fluent-mail-rewind.svg",
2057
+ "fluent-mail-template-outline.svg",
2058
+ "fluent-mail-template.svg",
2059
+ "fluent-mail-unread-outline.svg",
2060
+ "fluent-mail-unread.svg",
2061
+ "fluent-mail-warning-outline.svg",
2062
+ "fluent-mail-warning.svg",
2063
+ "fluent-mail.svg",
2064
+ "fluent-map-drive-outline.svg",
2065
+ "fluent-map-drive.svg",
2066
+ "fluent-map-outline.svg",
2067
+ "fluent-map.svg",
2068
+ "fluent-match-app-layout-outline.svg",
2069
+ "fluent-match-app-layout.svg",
2070
+ "fluent-math-format-linear.svg",
2071
+ "fluent-math-format-professional.svg",
2072
+ "fluent-math-formula-outline.svg",
2073
+ "fluent-math-formula.svg",
2074
+ "fluent-math-symbols-outline.svg",
2075
+ "fluent-math-symbols.svg",
2076
+ "fluent-maximize-outline.svg",
2077
+ "fluent-maximize.svg",
2078
+ "fluent-meet-now-outline.svg",
2079
+ "fluent-meet-now.svg",
2080
+ "fluent-megaphone-circle-outline.svg",
2081
+ "fluent-megaphone-circle.svg",
2082
+ "fluent-megaphone-loud-outline.svg",
2083
+ "fluent-megaphone-loud.svg",
2084
+ "fluent-megaphone-off-outline.svg",
2085
+ "fluent-megaphone-off.svg",
2086
+ "fluent-megaphone-outline.svg",
2087
+ "fluent-megaphone.svg",
2088
+ "fluent-mention-outline.svg",
2089
+ "fluent-mention.svg",
2090
+ "fluent-merge-outline.svg",
2091
+ "fluent-merge.svg",
2092
+ "fluent-mic-off-outline.svg",
2093
+ "fluent-mic-off.svg",
2094
+ "fluent-mic-outline.svg",
2095
+ "fluent-mic-prohibited-outline.svg",
2096
+ "fluent-mic-prohibited.svg",
2097
+ "fluent-mic-pulse-off-outline.svg",
2098
+ "fluent-mic-pulse-off.svg",
2099
+ "fluent-mic-pulse-outline.svg",
2100
+ "fluent-mic-pulse.svg",
2101
+ "fluent-mic-record-outline.svg",
2102
+ "fluent-mic-record.svg",
2103
+ "fluent-mic-settings-outline.svg",
2104
+ "fluent-mic-settings.svg",
2105
+ "fluent-mic-sparkle-outline.svg",
2106
+ "fluent-mic-sparkle.svg",
2107
+ "fluent-mic.svg",
2108
+ "fluent-microscope-outline.svg",
2109
+ "fluent-microscope.svg",
2110
+ "fluent-midi-outline.svg",
2111
+ "fluent-midi.svg",
2112
+ "fluent-mobile-optimized-outline.svg",
2113
+ "fluent-mobile-optimized.svg",
2114
+ "fluent-mold-outline.svg",
2115
+ "fluent-mold.svg",
2116
+ "fluent-molecule-outline.svg",
2117
+ "fluent-molecule.svg",
2118
+ "fluent-money-calculator-outline.svg",
2119
+ "fluent-money-calculator.svg",
2120
+ "fluent-money-dismiss-outline.svg",
2121
+ "fluent-money-dismiss.svg",
2122
+ "fluent-money-hand-outline.svg",
2123
+ "fluent-money-hand.svg",
2124
+ "fluent-money-off-outline.svg",
2125
+ "fluent-money-off.svg",
2126
+ "fluent-money-outline.svg",
2127
+ "fluent-money-settings-outline.svg",
2128
+ "fluent-money-settings.svg",
2129
+ "fluent-money.svg",
2130
+ "fluent-more-circle-outline.svg",
2131
+ "fluent-more-circle.svg",
2132
+ "fluent-more-horizontal-outline.svg",
2133
+ "fluent-more-horizontal.svg",
2134
+ "fluent-more-vertical-outline.svg",
2135
+ "fluent-more-vertical.svg",
2136
+ "fluent-mountain-location-bottom.svg",
2137
+ "fluent-mountain-location-top.svg",
2138
+ "fluent-mountain-trail-outline.svg",
2139
+ "fluent-mountain-trail.svg",
2140
+ "fluent-movies-and-tv-outline.svg",
2141
+ "fluent-movies-and-tv.svg",
2142
+ "fluent-multiplier-1-2x-outline.svg",
2143
+ "fluent-multiplier-1-2x.svg",
2144
+ "fluent-multiplier-1-5x-outline.svg",
2145
+ "fluent-multiplier-1-5x.svg",
2146
+ "fluent-multiplier-1-8x-outline.svg",
2147
+ "fluent-multiplier-1-8x.svg",
2148
+ "fluent-multiplier-1x-outline.svg",
2149
+ "fluent-multiplier-1x.svg",
2150
+ "fluent-multiplier-2x-outline.svg",
2151
+ "fluent-multiplier-2x.svg",
2152
+ "fluent-multiplier-5x-outline.svg",
2153
+ "fluent-multiplier-5x.svg",
2154
+ "fluent-multiselect-ltr-outline.svg",
2155
+ "fluent-multiselect-ltr.svg",
2156
+ "fluent-multiselect-rtl-outline.svg",
2157
+ "fluent-multiselect-rtl.svg",
2158
+ "fluent-music-note-1-outline.svg",
2159
+ "fluent-music-note-1.svg",
2160
+ "fluent-music-note-2-outline.svg",
2161
+ "fluent-music-note-2.svg",
2162
+ "fluent-music-note-off-1-outline.svg",
2163
+ "fluent-music-note-off-1.svg",
2164
+ "fluent-music-note-off-2-outline.svg",
2165
+ "fluent-music-note-off-2.svg",
2166
+ "fluent-my-location-outline.svg",
2167
+ "fluent-my-location.svg",
2168
+ "fluent-navigation-outline.svg",
2169
+ "fluent-navigation-unread-outline.svg",
2170
+ "fluent-navigation-unread.svg",
2171
+ "fluent-navigation.svg",
2172
+ "fluent-network-check-outline.svg",
2173
+ "fluent-network-check.svg",
2174
+ "fluent-new-outline.svg",
2175
+ "fluent-new.svg",
2176
+ "fluent-news-outline.svg",
2177
+ "fluent-news.svg",
2178
+ "fluent-next-frame-outline.svg",
2179
+ "fluent-next-frame.svg",
2180
+ "fluent-next-outline.svg",
2181
+ "fluent-next.svg",
2182
+ "fluent-note-add-outline.svg",
2183
+ "fluent-note-add.svg",
2184
+ "fluent-note-edit-outline.svg",
2185
+ "fluent-note-edit.svg",
2186
+ "fluent-note-outline.svg",
2187
+ "fluent-note.svg",
2188
+ "fluent-notebook-add-outline.svg",
2189
+ "fluent-notebook-add.svg",
2190
+ "fluent-notebook-error-outline.svg",
2191
+ "fluent-notebook-error.svg",
2192
+ "fluent-notebook-lightning.svg",
2193
+ "fluent-notebook-outline.svg",
2194
+ "fluent-notebook-question-mark.svg",
2195
+ "fluent-notebook-section-outline.svg",
2196
+ "fluent-notebook-section.svg",
2197
+ "fluent-notebook-subsection.svg",
2198
+ "fluent-notebook-sync-outline.svg",
2199
+ "fluent-notebook-sync.svg",
2200
+ "fluent-notebook.svg",
2201
+ "fluent-notepad-outline.svg",
2202
+ "fluent-notepad-person-outline.svg",
2203
+ "fluent-notepad-person.svg",
2204
+ "fluent-notepad-sparkle-outline.svg",
2205
+ "fluent-notepad-sparkle.svg",
2206
+ "fluent-notepad.svg",
2207
+ "fluent-number-circle-0-outline.svg",
2208
+ "fluent-number-circle-0.svg",
2209
+ "fluent-number-circle-1-outline.svg",
2210
+ "fluent-number-circle-1.svg",
2211
+ "fluent-number-circle-2-outline.svg",
2212
+ "fluent-number-circle-2.svg",
2213
+ "fluent-number-circle-3-outline.svg",
2214
+ "fluent-number-circle-3.svg",
2215
+ "fluent-number-circle-4-outline.svg",
2216
+ "fluent-number-circle-4.svg",
2217
+ "fluent-number-circle-5-outline.svg",
2218
+ "fluent-number-circle-5.svg",
2219
+ "fluent-number-circle-6-outline.svg",
2220
+ "fluent-number-circle-6.svg",
2221
+ "fluent-number-circle-7-outline.svg",
2222
+ "fluent-number-circle-7.svg",
2223
+ "fluent-number-circle-8-outline.svg",
2224
+ "fluent-number-circle-8.svg",
2225
+ "fluent-number-circle-9-outline.svg",
2226
+ "fluent-number-circle-9.svg",
2227
+ "fluent-number-row-outline.svg",
2228
+ "fluent-number-row.svg",
2229
+ "fluent-number-symbol-dismiss.svg",
2230
+ "fluent-number-symbol-outline.svg",
2231
+ "fluent-number-symbol-square.svg",
2232
+ "fluent-number-symbol.svg",
2233
+ "fluent-open-folder-outline.svg",
2234
+ "fluent-open-folder.svg",
2235
+ "fluent-open-off-outline.svg",
2236
+ "fluent-open-off.svg",
2237
+ "fluent-open-outline.svg",
2238
+ "fluent-open.svg",
2239
+ "fluent-options-outline.svg",
2240
+ "fluent-options.svg",
2241
+ "fluent-organization-horizontal.svg",
2242
+ "fluent-organization-outline.svg",
2243
+ "fluent-organization.svg",
2244
+ "fluent-orientation-outline.svg",
2245
+ "fluent-orientation.svg",
2246
+ "fluent-oval-outline.svg",
2247
+ "fluent-oval.svg",
2248
+ "fluent-oven-outline.svg",
2249
+ "fluent-oven.svg",
2250
+ "fluent-padding-down-outline.svg",
2251
+ "fluent-padding-down.svg",
2252
+ "fluent-padding-left-outline.svg",
2253
+ "fluent-padding-left.svg",
2254
+ "fluent-padding-right-outline.svg",
2255
+ "fluent-padding-right.svg",
2256
+ "fluent-padding-top-outline.svg",
2257
+ "fluent-padding-top.svg",
2258
+ "fluent-page-fit-outline.svg",
2259
+ "fluent-page-fit.svg",
2260
+ "fluent-paint-brush-arrow-down.svg",
2261
+ "fluent-paint-brush-arrow-up.svg",
2262
+ "fluent-paint-brush-outline.svg",
2263
+ "fluent-paint-brush-sparkle.svg",
2264
+ "fluent-paint-brush-subtract.svg",
2265
+ "fluent-paint-brush.svg",
2266
+ "fluent-paint-bucket-outline.svg",
2267
+ "fluent-paint-bucket.svg",
2268
+ "fluent-pair-outline.svg",
2269
+ "fluent-pair.svg",
2270
+ "fluent-panel-left-add-outline.svg",
2271
+ "fluent-panel-left-add.svg",
2272
+ "fluent-panel-left-contract.svg",
2273
+ "fluent-panel-left-expand-outline.svg",
2274
+ "fluent-panel-left-expand.svg",
2275
+ "fluent-panel-left-focus-right.svg",
2276
+ "fluent-panel-left-header-add.svg",
2277
+ "fluent-panel-left-header-key.svg",
2278
+ "fluent-panel-left-header-outline.svg",
2279
+ "fluent-panel-left-header.svg",
2280
+ "fluent-panel-left-key-outline.svg",
2281
+ "fluent-panel-left-key.svg",
2282
+ "fluent-panel-left-outline.svg",
2283
+ "fluent-panel-left-text-add.svg",
2284
+ "fluent-panel-left-text-dismiss.svg",
2285
+ "fluent-panel-left-text-outline.svg",
2286
+ "fluent-panel-left-text.svg",
2287
+ "fluent-panel-left.svg",
2288
+ "fluent-panel-right-contract.svg",
2289
+ "fluent-panel-right-cursor.svg",
2290
+ "fluent-panel-right-gallery.svg",
2291
+ "fluent-panel-right-outline.svg",
2292
+ "fluent-panel-right.svg",
2293
+ "fluent-panel-top-gallery-outline.svg",
2294
+ "fluent-panel-top-gallery.svg",
2295
+ "fluent-password-outline.svg",
2296
+ "fluent-password.svg",
2297
+ "fluent-patch-outline.svg",
2298
+ "fluent-patch.svg",
2299
+ "fluent-patient-outline.svg",
2300
+ "fluent-patient.svg",
2301
+ "fluent-pause-circle-outline.svg",
2302
+ "fluent-pause-circle.svg",
2303
+ "fluent-pause-outline.svg",
2304
+ "fluent-pause.svg",
2305
+ "fluent-payment-outline.svg",
2306
+ "fluent-payment-wireless-outline.svg",
2307
+ "fluent-payment-wireless.svg",
2308
+ "fluent-payment.svg",
2309
+ "fluent-pen-dismiss-outline.svg",
2310
+ "fluent-pen-dismiss.svg",
2311
+ "fluent-pen-off-outline.svg",
2312
+ "fluent-pen-off.svg",
2313
+ "fluent-pen-outline.svg",
2314
+ "fluent-pen-prohibited-outline.svg",
2315
+ "fluent-pen-prohibited.svg",
2316
+ "fluent-pen-sparkle-outline.svg",
2317
+ "fluent-pen-sparkle.svg",
2318
+ "fluent-pen.svg",
2319
+ "fluent-people-add-outline.svg",
2320
+ "fluent-people-add.svg",
2321
+ "fluent-people-audience-outline.svg",
2322
+ "fluent-people-audience.svg",
2323
+ "fluent-people-call-outline.svg",
2324
+ "fluent-people-call.svg",
2325
+ "fluent-people-chat-outline.svg",
2326
+ "fluent-people-chat.svg",
2327
+ "fluent-people-checkmark-outline.svg",
2328
+ "fluent-people-checkmark.svg",
2329
+ "fluent-people-community-add.svg",
2330
+ "fluent-people-community-outline.svg",
2331
+ "fluent-people-community.svg",
2332
+ "fluent-people-edit-outline.svg",
2333
+ "fluent-people-edit.svg",
2334
+ "fluent-people-error-outline.svg",
2335
+ "fluent-people-error.svg",
2336
+ "fluent-people-list-outline.svg",
2337
+ "fluent-people-list.svg",
2338
+ "fluent-people-lock-outline.svg",
2339
+ "fluent-people-lock.svg",
2340
+ "fluent-people-money-outline.svg",
2341
+ "fluent-people-money.svg",
2342
+ "fluent-people-outline.svg",
2343
+ "fluent-people-prohibited-outline.svg",
2344
+ "fluent-people-prohibited.svg",
2345
+ "fluent-people-queue-outline.svg",
2346
+ "fluent-people-queue.svg",
2347
+ "fluent-people-search-outline.svg",
2348
+ "fluent-people-search.svg",
2349
+ "fluent-people-settings-outline.svg",
2350
+ "fluent-people-settings.svg",
2351
+ "fluent-people-star-outline.svg",
2352
+ "fluent-people-star.svg",
2353
+ "fluent-people-subtract-outline.svg",
2354
+ "fluent-people-subtract.svg",
2355
+ "fluent-people-swap-outline.svg",
2356
+ "fluent-people-swap.svg",
2357
+ "fluent-people-team-add-outline.svg",
2358
+ "fluent-people-team-add.svg",
2359
+ "fluent-people-team-delete.svg",
2360
+ "fluent-people-team-outline.svg",
2361
+ "fluent-people-team-toolbox.svg",
2362
+ "fluent-people-team.svg",
2363
+ "fluent-people.svg",
2364
+ "fluent-person-accounts-outline.svg",
2365
+ "fluent-person-accounts.svg",
2366
+ "fluent-person-add-outline.svg",
2367
+ "fluent-person-add.svg",
2368
+ "fluent-person-alert-off-outline.svg",
2369
+ "fluent-person-alert-off.svg",
2370
+ "fluent-person-alert-outline.svg",
2371
+ "fluent-person-alert.svg",
2372
+ "fluent-person-arrow-back-outline.svg",
2373
+ "fluent-person-arrow-back.svg",
2374
+ "fluent-person-arrow-left-outline.svg",
2375
+ "fluent-person-arrow-left.svg",
2376
+ "fluent-person-arrow-right.svg",
2377
+ "fluent-person-available-outline.svg",
2378
+ "fluent-person-available.svg",
2379
+ "fluent-person-board-add-outline.svg",
2380
+ "fluent-person-board-add.svg",
2381
+ "fluent-person-board-outline.svg",
2382
+ "fluent-person-board.svg",
2383
+ "fluent-person-call-outline.svg",
2384
+ "fluent-person-call.svg",
2385
+ "fluent-person-chat-outline.svg",
2386
+ "fluent-person-chat.svg",
2387
+ "fluent-person-circle-outline.svg",
2388
+ "fluent-person-circle.svg",
2389
+ "fluent-person-clock-outline.svg",
2390
+ "fluent-person-clock.svg",
2391
+ "fluent-person-delete-outline.svg",
2392
+ "fluent-person-delete.svg",
2393
+ "fluent-person-edit-outline.svg",
2394
+ "fluent-person-edit.svg",
2395
+ "fluent-person-feedback-outline.svg",
2396
+ "fluent-person-feedback.svg",
2397
+ "fluent-person-heart-outline.svg",
2398
+ "fluent-person-heart.svg",
2399
+ "fluent-person-home-outline.svg",
2400
+ "fluent-person-home.svg",
2401
+ "fluent-person-info-outline.svg",
2402
+ "fluent-person-info.svg",
2403
+ "fluent-person-lightbulb-outline.svg",
2404
+ "fluent-person-lightbulb.svg",
2405
+ "fluent-person-link-outline.svg",
2406
+ "fluent-person-link.svg",
2407
+ "fluent-person-lock-outline.svg",
2408
+ "fluent-person-lock.svg",
2409
+ "fluent-person-mail-outline.svg",
2410
+ "fluent-person-mail.svg",
2411
+ "fluent-person-money-outline.svg",
2412
+ "fluent-person-money.svg",
2413
+ "fluent-person-note-outline.svg",
2414
+ "fluent-person-note.svg",
2415
+ "fluent-person-outline.svg",
2416
+ "fluent-person-passkey-outline.svg",
2417
+ "fluent-person-passkey.svg",
2418
+ "fluent-person-phone-outline.svg",
2419
+ "fluent-person-phone.svg",
2420
+ "fluent-person-pill-outline.svg",
2421
+ "fluent-person-pill.svg",
2422
+ "fluent-person-prohibited-outline.svg",
2423
+ "fluent-person-prohibited.svg",
2424
+ "fluent-person-question-mark.svg",
2425
+ "fluent-person-ribbon-outline.svg",
2426
+ "fluent-person-ribbon.svg",
2427
+ "fluent-person-search-outline.svg",
2428
+ "fluent-person-search.svg",
2429
+ "fluent-person-square-add-outline.svg",
2430
+ "fluent-person-square-add.svg",
2431
+ "fluent-person-square-checkmark.svg",
2432
+ "fluent-person-square-outline.svg",
2433
+ "fluent-person-square.svg",
2434
+ "fluent-person-star-outline.svg",
2435
+ "fluent-person-star.svg",
2436
+ "fluent-person-starburst-outline.svg",
2437
+ "fluent-person-starburst.svg",
2438
+ "fluent-person-subtract-outline.svg",
2439
+ "fluent-person-subtract.svg",
2440
+ "fluent-person-support-outline.svg",
2441
+ "fluent-person-support.svg",
2442
+ "fluent-person-swap-outline.svg",
2443
+ "fluent-person-swap.svg",
2444
+ "fluent-person-sync-outline.svg",
2445
+ "fluent-person-sync.svg",
2446
+ "fluent-person-tag-outline.svg",
2447
+ "fluent-person-tag.svg",
2448
+ "fluent-person-tentative-outline.svg",
2449
+ "fluent-person-tentative.svg",
2450
+ "fluent-person-voice-outline.svg",
2451
+ "fluent-person-voice.svg",
2452
+ "fluent-person-walking-outline.svg",
2453
+ "fluent-person-walking.svg",
2454
+ "fluent-person-warning-outline.svg",
2455
+ "fluent-person-warning.svg",
2456
+ "fluent-person.svg",
2457
+ "fluent-phone-add-outline.svg",
2458
+ "fluent-phone-add.svg",
2459
+ "fluent-phone-arrow-right-outline.svg",
2460
+ "fluent-phone-arrow-right.svg",
2461
+ "fluent-phone-briefcase-outline.svg",
2462
+ "fluent-phone-briefcase.svg",
2463
+ "fluent-phone-chat-outline.svg",
2464
+ "fluent-phone-chat.svg",
2465
+ "fluent-phone-desktop-outline.svg",
2466
+ "fluent-phone-desktop.svg",
2467
+ "fluent-phone-dismiss-outline.svg",
2468
+ "fluent-phone-dismiss.svg",
2469
+ "fluent-phone-edit-outline.svg",
2470
+ "fluent-phone-edit.svg",
2471
+ "fluent-phone-footer-arrow-down.svg",
2472
+ "fluent-phone-header-arrow-up.svg",
2473
+ "fluent-phone-key-outline.svg",
2474
+ "fluent-phone-key.svg",
2475
+ "fluent-phone-laptop-outline.svg",
2476
+ "fluent-phone-laptop.svg",
2477
+ "fluent-phone-link-setup-outline.svg",
2478
+ "fluent-phone-link-setup.svg",
2479
+ "fluent-phone-lock-outline.svg",
2480
+ "fluent-phone-lock.svg",
2481
+ "fluent-phone-multiple-outline.svg",
2482
+ "fluent-phone-multiple-settings.svg",
2483
+ "fluent-phone-multiple.svg",
2484
+ "fluent-phone-outline.svg",
2485
+ "fluent-phone-page-header-outline.svg",
2486
+ "fluent-phone-page-header.svg",
2487
+ "fluent-phone-pagination-outline.svg",
2488
+ "fluent-phone-pagination.svg",
2489
+ "fluent-phone-person-outline.svg",
2490
+ "fluent-phone-person.svg",
2491
+ "fluent-phone-screen-time-outline.svg",
2492
+ "fluent-phone-screen-time.svg",
2493
+ "fluent-phone-shake-outline.svg",
2494
+ "fluent-phone-shake.svg",
2495
+ "fluent-phone-span-in-outline.svg",
2496
+ "fluent-phone-span-in.svg",
2497
+ "fluent-phone-span-out-outline.svg",
2498
+ "fluent-phone-span-out.svg",
2499
+ "fluent-phone-speaker-outline.svg",
2500
+ "fluent-phone-speaker.svg",
2501
+ "fluent-phone-status-bar-outline.svg",
2502
+ "fluent-phone-status-bar.svg",
2503
+ "fluent-phone-subtract-outline.svg",
2504
+ "fluent-phone-subtract.svg",
2505
+ "fluent-phone-tablet-outline.svg",
2506
+ "fluent-phone-tablet.svg",
2507
+ "fluent-phone-update-checkmark.svg",
2508
+ "fluent-phone-update-outline.svg",
2509
+ "fluent-phone-update.svg",
2510
+ "fluent-phone-vertical-scroll.svg",
2511
+ "fluent-phone-vibrate-outline.svg",
2512
+ "fluent-phone-vibrate.svg",
2513
+ "fluent-phone.svg",
2514
+ "fluent-photo-filter-outline.svg",
2515
+ "fluent-photo-filter.svg",
2516
+ "fluent-pi-outline.svg",
2517
+ "fluent-pi.svg",
2518
+ "fluent-picture-in-picture-enter.svg",
2519
+ "fluent-picture-in-picture-exit.svg",
2520
+ "fluent-picture-in-picture.svg",
2521
+ "fluent-pill-outline.svg",
2522
+ "fluent-pill.svg",
2523
+ "fluent-pin-off-outline.svg",
2524
+ "fluent-pin-off.svg",
2525
+ "fluent-pin-outline.svg",
2526
+ "fluent-pin.svg",
2527
+ "fluent-pipeline-outline.svg",
2528
+ "fluent-pipeline.svg",
2529
+ "fluent-pivot-outline.svg",
2530
+ "fluent-pivot.svg",
2531
+ "fluent-plant-cattail-outline.svg",
2532
+ "fluent-plant-cattail.svg",
2533
+ "fluent-plant-grass-outline.svg",
2534
+ "fluent-plant-grass.svg",
2535
+ "fluent-plant-ragweed-outline.svg",
2536
+ "fluent-plant-ragweed.svg",
2537
+ "fluent-play-circle-hint-outline.svg",
2538
+ "fluent-play-circle-hint.svg",
2539
+ "fluent-play-circle-outline.svg",
2540
+ "fluent-play-circle-sparkle.svg",
2541
+ "fluent-play-circle.svg",
2542
+ "fluent-play-outline.svg",
2543
+ "fluent-play.svg",
2544
+ "fluent-plug-connected-outline.svg",
2545
+ "fluent-plug-connected-settings.svg",
2546
+ "fluent-plug-connected.svg",
2547
+ "fluent-plug-disconnected-outline.svg",
2548
+ "fluent-plug-disconnected.svg",
2549
+ "fluent-point-scan-outline.svg",
2550
+ "fluent-point-scan.svg",
2551
+ "fluent-poll-horizontal-outline.svg",
2552
+ "fluent-poll-horizontal.svg",
2553
+ "fluent-poll-off-outline.svg",
2554
+ "fluent-poll-off.svg",
2555
+ "fluent-poll-outline.svg",
2556
+ "fluent-poll.svg",
2557
+ "fluent-port-hdmi-outline.svg",
2558
+ "fluent-port-hdmi.svg",
2559
+ "fluent-port-micro-usb-outline.svg",
2560
+ "fluent-port-micro-usb.svg",
2561
+ "fluent-port-usb-a-outline.svg",
2562
+ "fluent-port-usb-a.svg",
2563
+ "fluent-port-usb-c-outline.svg",
2564
+ "fluent-port-usb-c.svg",
2565
+ "fluent-position-backward-outline.svg",
2566
+ "fluent-position-backward.svg",
2567
+ "fluent-position-forward-outline.svg",
2568
+ "fluent-position-forward.svg",
2569
+ "fluent-position-to-back-outline.svg",
2570
+ "fluent-position-to-back.svg",
2571
+ "fluent-position-to-front-outline.svg",
2572
+ "fluent-position-to-front.svg",
2573
+ "fluent-power-outline.svg",
2574
+ "fluent-power.svg",
2575
+ "fluent-predictions-outline.svg",
2576
+ "fluent-predictions.svg",
2577
+ "fluent-premium-outline.svg",
2578
+ "fluent-premium-person-outline.svg",
2579
+ "fluent-premium-person.svg",
2580
+ "fluent-premium.svg",
2581
+ "fluent-presence-available.svg",
2582
+ "fluent-presence-away-outline.svg",
2583
+ "fluent-presence-away.svg",
2584
+ "fluent-presence-blocked-outline.svg",
2585
+ "fluent-presence-busy.svg",
2586
+ "fluent-presence-dnd-outline.svg",
2587
+ "fluent-presence-dnd.svg",
2588
+ "fluent-presence-offline-outline.svg",
2589
+ "fluent-presence-oof-outline.svg",
2590
+ "fluent-presence-unknown-outline.svg",
2591
+ "fluent-presenter-off-outline.svg",
2592
+ "fluent-presenter-off.svg",
2593
+ "fluent-presenter-outline.svg",
2594
+ "fluent-presenter.svg",
2595
+ "fluent-preview-link-outline.svg",
2596
+ "fluent-preview-link.svg",
2597
+ "fluent-previous-frame-outline.svg",
2598
+ "fluent-previous-frame.svg",
2599
+ "fluent-previous-outline.svg",
2600
+ "fluent-previous.svg",
2601
+ "fluent-print-add-outline.svg",
2602
+ "fluent-print-add.svg",
2603
+ "fluent-print-outline.svg",
2604
+ "fluent-print.svg",
2605
+ "fluent-production-checkmark.svg",
2606
+ "fluent-production-outline.svg",
2607
+ "fluent-production.svg",
2608
+ "fluent-prohibited-multiple.svg",
2609
+ "fluent-prohibited-outline.svg",
2610
+ "fluent-prohibited.svg",
2611
+ "fluent-projection-screen-dismiss.svg",
2612
+ "fluent-projection-screen-outline.svg",
2613
+ "fluent-projection-screen-text.svg",
2614
+ "fluent-projection-screen.svg",
2615
+ "fluent-prompt-outline.svg",
2616
+ "fluent-prompt.svg",
2617
+ "fluent-protocol-handler-outline.svg",
2618
+ "fluent-protocol-handler.svg",
2619
+ "fluent-pulse-outline.svg",
2620
+ "fluent-pulse-square-outline.svg",
2621
+ "fluent-pulse-square.svg",
2622
+ "fluent-pulse.svg",
2623
+ "fluent-puzzle-cube-outline.svg",
2624
+ "fluent-puzzle-cube.svg",
2625
+ "fluent-puzzle-piece-outline.svg",
2626
+ "fluent-puzzle-piece.svg",
2627
+ "fluent-qr-code-outline.svg",
2628
+ "fluent-qr-code.svg",
2629
+ "fluent-question-circle-outline.svg",
2630
+ "fluent-question-circle.svg",
2631
+ "fluent-question-outline.svg",
2632
+ "fluent-question.svg",
2633
+ "fluent-quiz-new-outline.svg",
2634
+ "fluent-quiz-new.svg",
2635
+ "fluent-radio-button-outline.svg",
2636
+ "fluent-radio-button.svg",
2637
+ "fluent-rating-mature-outline.svg",
2638
+ "fluent-rating-mature.svg",
2639
+ "fluent-ratio-one-to-one-outline.svg",
2640
+ "fluent-ratio-one-to-one.svg",
2641
+ "fluent-re-order-dots-horizontal.svg",
2642
+ "fluent-re-order-dots-vertical.svg",
2643
+ "fluent-re-order-outline.svg",
2644
+ "fluent-re-order.svg",
2645
+ "fluent-read-aloud-outline.svg",
2646
+ "fluent-read-aloud.svg",
2647
+ "fluent-reading-list-add-outline.svg",
2648
+ "fluent-reading-list-add.svg",
2649
+ "fluent-reading-list-outline.svg",
2650
+ "fluent-reading-list.svg",
2651
+ "fluent-reading-mode-mobile.svg",
2652
+ "fluent-real-estate-outline.svg",
2653
+ "fluent-real-estate.svg",
2654
+ "fluent-receipt-add-outline.svg",
2655
+ "fluent-receipt-add.svg",
2656
+ "fluent-receipt-bag-outline.svg",
2657
+ "fluent-receipt-bag.svg",
2658
+ "fluent-receipt-cube-outline.svg",
2659
+ "fluent-receipt-cube.svg",
2660
+ "fluent-receipt-money-outline.svg",
2661
+ "fluent-receipt-money.svg",
2662
+ "fluent-receipt-outline.svg",
2663
+ "fluent-receipt-play-outline.svg",
2664
+ "fluent-receipt-play.svg",
2665
+ "fluent-receipt-sparkles-outline.svg",
2666
+ "fluent-receipt-sparkles.svg",
2667
+ "fluent-receipt.svg",
2668
+ "fluent-record-outline.svg",
2669
+ "fluent-record-stop-outline.svg",
2670
+ "fluent-record-stop.svg",
2671
+ "fluent-record.svg",
2672
+ "fluent-rectangle-landscape-sync.svg",
2673
+ "fluent-rectangle-landscape.svg",
2674
+ "fluent-remix-add-outline.svg",
2675
+ "fluent-remix-add.svg",
2676
+ "fluent-rename-outline.svg",
2677
+ "fluent-rename.svg",
2678
+ "fluent-replay-outline.svg",
2679
+ "fluent-replay.svg",
2680
+ "fluent-resize-image-outline.svg",
2681
+ "fluent-resize-image.svg",
2682
+ "fluent-resize-large-outline.svg",
2683
+ "fluent-resize-large.svg",
2684
+ "fluent-resize-outline.svg",
2685
+ "fluent-resize-small-outline.svg",
2686
+ "fluent-resize-small.svg",
2687
+ "fluent-resize-table-outline.svg",
2688
+ "fluent-resize-table.svg",
2689
+ "fluent-resize-video-outline.svg",
2690
+ "fluent-resize-video.svg",
2691
+ "fluent-resize.svg",
2692
+ "fluent-reward-outline.svg",
2693
+ "fluent-reward.svg",
2694
+ "fluent-rewind-outline.svg",
2695
+ "fluent-rewind.svg",
2696
+ "fluent-rhombus-outline.svg",
2697
+ "fluent-rhombus.svg",
2698
+ "fluent-ribbon-add-outline.svg",
2699
+ "fluent-ribbon-add.svg",
2700
+ "fluent-ribbon-off-outline.svg",
2701
+ "fluent-ribbon-off.svg",
2702
+ "fluent-ribbon-outline.svg",
2703
+ "fluent-ribbon-star-outline.svg",
2704
+ "fluent-ribbon-star.svg",
2705
+ "fluent-ribbon.svg",
2706
+ "fluent-road-cone-outline.svg",
2707
+ "fluent-road-cone.svg",
2708
+ "fluent-road-outline.svg",
2709
+ "fluent-road.svg",
2710
+ "fluent-rocket-outline.svg",
2711
+ "fluent-rocket.svg",
2712
+ "fluent-rotate-left-outline.svg",
2713
+ "fluent-rotate-left.svg",
2714
+ "fluent-rotate-right-outline.svg",
2715
+ "fluent-rotate-right.svg",
2716
+ "fluent-router-outline.svg",
2717
+ "fluent-router.svg",
2718
+ "fluent-row-triple-outline.svg",
2719
+ "fluent-row-triple.svg",
2720
+ "fluent-rss-outline.svg",
2721
+ "fluent-rss.svg",
2722
+ "fluent-ruler-outline.svg",
2723
+ "fluent-ruler.svg",
2724
+ "fluent-run-outline.svg",
2725
+ "fluent-run.svg",
2726
+ "fluent-sanitize-outline.svg",
2727
+ "fluent-sanitize.svg",
2728
+ "fluent-save-arrow-right-outline.svg",
2729
+ "fluent-save-arrow-right.svg",
2730
+ "fluent-save-copy-outline.svg",
2731
+ "fluent-save-copy.svg",
2732
+ "fluent-save-edit-outline.svg",
2733
+ "fluent-save-edit.svg",
2734
+ "fluent-save-multiple-outline.svg",
2735
+ "fluent-save-multiple.svg",
2736
+ "fluent-save-outline.svg",
2737
+ "fluent-save.svg",
2738
+ "fluent-savings-outline.svg",
2739
+ "fluent-savings.svg",
2740
+ "fluent-scale-fill-outline.svg",
2741
+ "fluent-scale-fill.svg",
2742
+ "fluent-scale-fit-outline.svg",
2743
+ "fluent-scale-fit.svg",
2744
+ "fluent-scales-outline.svg",
2745
+ "fluent-scales.svg",
2746
+ "fluent-scan-camera-outline.svg",
2747
+ "fluent-scan-camera.svg",
2748
+ "fluent-scan-dash-outline.svg",
2749
+ "fluent-scan-dash.svg",
2750
+ "fluent-scan-object-outline.svg",
2751
+ "fluent-scan-object.svg",
2752
+ "fluent-scan-outline.svg",
2753
+ "fluent-scan-person-outline.svg",
2754
+ "fluent-scan-person.svg",
2755
+ "fluent-scan-qr-code-outline.svg",
2756
+ "fluent-scan-qr-code.svg",
2757
+ "fluent-scan-table-outline.svg",
2758
+ "fluent-scan-table.svg",
2759
+ "fluent-scan-text-outline.svg",
2760
+ "fluent-scan-text.svg",
2761
+ "fluent-scan-thumb-up-off-outline.svg",
2762
+ "fluent-scan-thumb-up-off.svg",
2763
+ "fluent-scan-thumb-up-outline.svg",
2764
+ "fluent-scan-thumb-up.svg",
2765
+ "fluent-scan-type-checkmark.svg",
2766
+ "fluent-scan-type-off-outline.svg",
2767
+ "fluent-scan-type-off.svg",
2768
+ "fluent-scan-type-outline.svg",
2769
+ "fluent-scan-type.svg",
2770
+ "fluent-scan.svg",
2771
+ "fluent-scratchpad-outline.svg",
2772
+ "fluent-scratchpad.svg",
2773
+ "fluent-screen-search-outline.svg",
2774
+ "fluent-screen-search.svg",
2775
+ "fluent-screenshot-outline.svg",
2776
+ "fluent-screenshot-record-outline.svg",
2777
+ "fluent-screenshot-record.svg",
2778
+ "fluent-screenshot.svg",
2779
+ "fluent-script-outline.svg",
2780
+ "fluent-script.svg",
2781
+ "fluent-search-info-outline.svg",
2782
+ "fluent-search-info.svg",
2783
+ "fluent-search-outline.svg",
2784
+ "fluent-search-sparkle-outline.svg",
2785
+ "fluent-search-sparkle.svg",
2786
+ "fluent-search-square-outline.svg",
2787
+ "fluent-search-square.svg",
2788
+ "fluent-search-visual-outline.svg",
2789
+ "fluent-search-visual.svg",
2790
+ "fluent-search.svg",
2791
+ "fluent-seat-add-outline.svg",
2792
+ "fluent-seat-add.svg",
2793
+ "fluent-seat-outline.svg",
2794
+ "fluent-seat.svg",
2795
+ "fluent-select-all-off-outline.svg",
2796
+ "fluent-select-all-off.svg",
2797
+ "fluent-select-all-on-outline.svg",
2798
+ "fluent-select-all-on.svg",
2799
+ "fluent-select-object-outline.svg",
2800
+ "fluent-select-object-skew-edit.svg",
2801
+ "fluent-select-object-skew.svg",
2802
+ "fluent-select-object.svg",
2803
+ "fluent-send-beaker-outline.svg",
2804
+ "fluent-send-beaker.svg",
2805
+ "fluent-send-clock-outline.svg",
2806
+ "fluent-send-clock.svg",
2807
+ "fluent-send-copy-outline.svg",
2808
+ "fluent-send-copy.svg",
2809
+ "fluent-send-outline.svg",
2810
+ "fluent-send-person-outline.svg",
2811
+ "fluent-send-person.svg",
2812
+ "fluent-send.svg",
2813
+ "fluent-serial-port-outline.svg",
2814
+ "fluent-serial-port.svg",
2815
+ "fluent-server-link-outline.svg",
2816
+ "fluent-server-link.svg",
2817
+ "fluent-server-outline.svg",
2818
+ "fluent-server.svg",
2819
+ "fluent-service-bell-outline.svg",
2820
+ "fluent-service-bell.svg",
2821
+ "fluent-settings-chat-outline.svg",
2822
+ "fluent-settings-chat.svg",
2823
+ "fluent-settings-cog-multiple.svg",
2824
+ "fluent-settings-outline.svg",
2825
+ "fluent-settings.svg",
2826
+ "fluent-shape-exclude-outline.svg",
2827
+ "fluent-shape-exclude.svg",
2828
+ "fluent-shape-intersect-outline.svg",
2829
+ "fluent-shape-intersect.svg",
2830
+ "fluent-shape-organic-outline.svg",
2831
+ "fluent-shape-organic.svg",
2832
+ "fluent-shape-subtract-outline.svg",
2833
+ "fluent-shape-subtract.svg",
2834
+ "fluent-shape-union-outline.svg",
2835
+ "fluent-shape-union.svg",
2836
+ "fluent-shapes-outline.svg",
2837
+ "fluent-shapes.svg",
2838
+ "fluent-share-android-outline.svg",
2839
+ "fluent-share-android.svg",
2840
+ "fluent-share-close-tray-outline.svg",
2841
+ "fluent-share-close-tray.svg",
2842
+ "fluent-share-ios-outline.svg",
2843
+ "fluent-share-ios.svg",
2844
+ "fluent-share-multiple-outline.svg",
2845
+ "fluent-share-multiple.svg",
2846
+ "fluent-share-outline.svg",
2847
+ "fluent-share-screen-person-p.svg",
2848
+ "fluent-share-screen-person.svg",
2849
+ "fluent-share-screen-start.svg",
2850
+ "fluent-share-screen-stop-outline.svg",
2851
+ "fluent-share-screen-stop.svg",
2852
+ "fluent-share.svg",
2853
+ "fluent-shield-add-outline.svg",
2854
+ "fluent-shield-add.svg",
2855
+ "fluent-shield-badge-outline.svg",
2856
+ "fluent-shield-badge.svg",
2857
+ "fluent-shield-checkmark-outline.svg",
2858
+ "fluent-shield-checkmark.svg",
2859
+ "fluent-shield-dismiss-outline.svg",
2860
+ "fluent-shield-dismiss.svg",
2861
+ "fluent-shield-error-outline.svg",
2862
+ "fluent-shield-error.svg",
2863
+ "fluent-shield-globe-outline.svg",
2864
+ "fluent-shield-globe.svg",
2865
+ "fluent-shield-keyhole-outline.svg",
2866
+ "fluent-shield-keyhole.svg",
2867
+ "fluent-shield-lock-outline.svg",
2868
+ "fluent-shield-lock.svg",
2869
+ "fluent-shield-outline.svg",
2870
+ "fluent-shield-prohibited-outline.svg",
2871
+ "fluent-shield-prohibited.svg",
2872
+ "fluent-shield-question-outline.svg",
2873
+ "fluent-shield-question.svg",
2874
+ "fluent-shield-task-outline.svg",
2875
+ "fluent-shield-task.svg",
2876
+ "fluent-shield.svg",
2877
+ "fluent-shifts-30-minutes-outline.svg",
2878
+ "fluent-shifts-30-minutes.svg",
2879
+ "fluent-shifts-activity-outline.svg",
2880
+ "fluent-shifts-activity.svg",
2881
+ "fluent-shifts-add-outline.svg",
2882
+ "fluent-shifts-add.svg",
2883
+ "fluent-shifts-availability.svg",
2884
+ "fluent-shifts-checkmark-outline.svg",
2885
+ "fluent-shifts-checkmark.svg",
2886
+ "fluent-shifts-day-outline.svg",
2887
+ "fluent-shifts-day.svg",
2888
+ "fluent-shifts-open-outline.svg",
2889
+ "fluent-shifts-open.svg",
2890
+ "fluent-shifts-outline.svg",
2891
+ "fluent-shifts-prohibited-outline.svg",
2892
+ "fluent-shifts-prohibited.svg",
2893
+ "fluent-shifts-question-mark.svg",
2894
+ "fluent-shifts-team-outline.svg",
2895
+ "fluent-shifts-team.svg",
2896
+ "fluent-shifts.svg",
2897
+ "fluent-shopping-bag-add-outline.svg",
2898
+ "fluent-shopping-bag-add.svg",
2899
+ "fluent-shopping-bag-arrow-left.svg",
2900
+ "fluent-shopping-bag-dismiss.svg",
2901
+ "fluent-shopping-bag-outline.svg",
2902
+ "fluent-shopping-bag-pause.svg",
2903
+ "fluent-shopping-bag-percent.svg",
2904
+ "fluent-shopping-bag-play-outline.svg",
2905
+ "fluent-shopping-bag-play.svg",
2906
+ "fluent-shopping-bag-tag-outline.svg",
2907
+ "fluent-shopping-bag-tag.svg",
2908
+ "fluent-shopping-bag.svg",
2909
+ "fluent-shortpick-outline.svg",
2910
+ "fluent-shortpick.svg",
2911
+ "fluent-showerhead-outline.svg",
2912
+ "fluent-showerhead.svg",
2913
+ "fluent-sign-out-outline.svg",
2914
+ "fluent-sign-out.svg",
2915
+ "fluent-signature-outline.svg",
2916
+ "fluent-signature.svg",
2917
+ "fluent-sim-outline.svg",
2918
+ "fluent-sim.svg",
2919
+ "fluent-skip-back-10-outline.svg",
2920
+ "fluent-skip-back-10.svg",
2921
+ "fluent-skip-forward-10-outline.svg",
2922
+ "fluent-skip-forward-10.svg",
2923
+ "fluent-skip-forward-30-outline.svg",
2924
+ "fluent-skip-forward-30.svg",
2925
+ "fluent-skip-forward-tab-outline.svg",
2926
+ "fluent-skip-forward-tab.svg",
2927
+ "fluent-slash-forward-outline.svg",
2928
+ "fluent-slash-forward.svg",
2929
+ "fluent-sleep-outline.svg",
2930
+ "fluent-sleep.svg",
2931
+ "fluent-slide-add-outline.svg",
2932
+ "fluent-slide-add.svg",
2933
+ "fluent-slide-arrow-right-outline.svg",
2934
+ "fluent-slide-arrow-right.svg",
2935
+ "fluent-slide-content-outline.svg",
2936
+ "fluent-slide-content.svg",
2937
+ "fluent-slide-eraser-outline.svg",
2938
+ "fluent-slide-eraser.svg",
2939
+ "fluent-slide-grid-outline.svg",
2940
+ "fluent-slide-grid.svg",
2941
+ "fluent-slide-hide-outline.svg",
2942
+ "fluent-slide-hide.svg",
2943
+ "fluent-slide-layout-outline.svg",
2944
+ "fluent-slide-layout.svg",
2945
+ "fluent-slide-link-outline.svg",
2946
+ "fluent-slide-link.svg",
2947
+ "fluent-slide-microphone-outline.svg",
2948
+ "fluent-slide-microphone.svg",
2949
+ "fluent-slide-multiple-outline.svg",
2950
+ "fluent-slide-multiple-search.svg",
2951
+ "fluent-slide-multiple.svg",
2952
+ "fluent-slide-play-outline.svg",
2953
+ "fluent-slide-play.svg",
2954
+ "fluent-slide-record-outline.svg",
2955
+ "fluent-slide-record.svg",
2956
+ "fluent-slide-search-outline.svg",
2957
+ "fluent-slide-search.svg",
2958
+ "fluent-slide-settings-outline.svg",
2959
+ "fluent-slide-settings.svg",
2960
+ "fluent-slide-size-outline.svg",
2961
+ "fluent-slide-size.svg",
2962
+ "fluent-slide-text-call-outline.svg",
2963
+ "fluent-slide-text-call.svg",
2964
+ "fluent-slide-text-cursor-outline.svg",
2965
+ "fluent-slide-text-cursor.svg",
2966
+ "fluent-slide-text-edit-outline.svg",
2967
+ "fluent-slide-text-edit.svg",
2968
+ "fluent-slide-text-multiple.svg",
2969
+ "fluent-slide-text-outline.svg",
2970
+ "fluent-slide-text-person-outline.svg",
2971
+ "fluent-slide-text-person.svg",
2972
+ "fluent-slide-text-sparkle.svg",
2973
+ "fluent-slide-text.svg",
2974
+ "fluent-slide-transition-outline.svg",
2975
+ "fluent-slide-transition.svg",
2976
+ "fluent-smartwatch-dot-outline.svg",
2977
+ "fluent-smartwatch-dot.svg",
2978
+ "fluent-smartwatch-outline.svg",
2979
+ "fluent-smartwatch.svg",
2980
+ "fluent-snooze-outline.svg",
2981
+ "fluent-snooze.svg",
2982
+ "fluent-sound-source-outline.svg",
2983
+ "fluent-sound-source.svg",
2984
+ "fluent-sound-wave-circle-outline.svg",
2985
+ "fluent-sound-wave-circle.svg",
2986
+ "fluent-space-3d-outline.svg",
2987
+ "fluent-space-3d.svg",
2988
+ "fluent-spacebar-outline.svg",
2989
+ "fluent-spacebar.svg",
2990
+ "fluent-sparkle-circle-outline.svg",
2991
+ "fluent-sparkle-circle.svg",
2992
+ "fluent-sparkle-outline.svg",
2993
+ "fluent-sparkle.svg",
2994
+ "fluent-spatula-spoon-outline.svg",
2995
+ "fluent-spatula-spoon.svg",
2996
+ "fluent-speaker-0-outline.svg",
2997
+ "fluent-speaker-0.svg",
2998
+ "fluent-speaker-1-outline.svg",
2999
+ "fluent-speaker-1.svg",
3000
+ "fluent-speaker-2-outline.svg",
3001
+ "fluent-speaker-2.svg",
3002
+ "fluent-speaker-bluetooth-outline.svg",
3003
+ "fluent-speaker-bluetooth.svg",
3004
+ "fluent-speaker-box-outline.svg",
3005
+ "fluent-speaker-box.svg",
3006
+ "fluent-speaker-edit-outline.svg",
3007
+ "fluent-speaker-edit.svg",
3008
+ "fluent-speaker-mute-outline.svg",
3009
+ "fluent-speaker-mute.svg",
3010
+ "fluent-speaker-off-outline.svg",
3011
+ "fluent-speaker-off.svg",
3012
+ "fluent-speaker-settings-outline.svg",
3013
+ "fluent-speaker-settings.svg",
3014
+ "fluent-speaker-usb-outline.svg",
3015
+ "fluent-speaker-usb.svg",
3016
+ "fluent-split-horizontal-outline.svg",
3017
+ "fluent-split-horizontal.svg",
3018
+ "fluent-split-vertical-outline.svg",
3019
+ "fluent-split-vertical.svg",
3020
+ "fluent-sport-american-football.svg",
3021
+ "fluent-sport-baseball-outline.svg",
3022
+ "fluent-sport-baseball.svg",
3023
+ "fluent-sport-basketball-outline.svg",
3024
+ "fluent-sport-basketball.svg",
3025
+ "fluent-sport-hockey-outline.svg",
3026
+ "fluent-sport-hockey.svg",
3027
+ "fluent-sport-outline.svg",
3028
+ "fluent-sport-soccer-outline.svg",
3029
+ "fluent-sport-soccer.svg",
3030
+ "fluent-sport.svg",
3031
+ "fluent-square-arrow-forward.svg",
3032
+ "fluent-square-dovetail-joint.svg",
3033
+ "fluent-square-hint-apps-outline.svg",
3034
+ "fluent-square-hint-apps.svg",
3035
+ "fluent-square-hint-hexagon.svg",
3036
+ "fluent-square-hint-outline.svg",
3037
+ "fluent-square-hint-sparkles.svg",
3038
+ "fluent-square-hint.svg",
3039
+ "fluent-square-multiple-outline.svg",
3040
+ "fluent-square-multiple.svg",
3041
+ "fluent-square-outline.svg",
3042
+ "fluent-square.svg",
3043
+ "fluent-stack-add-outline.svg",
3044
+ "fluent-stack-add.svg",
3045
+ "fluent-stack-arrow-forward.svg",
3046
+ "fluent-stack-outline.svg",
3047
+ "fluent-stack-star-outline.svg",
3048
+ "fluent-stack-star.svg",
3049
+ "fluent-stack-vertical-outline.svg",
3050
+ "fluent-stack-vertical.svg",
3051
+ "fluent-stack.svg",
3052
+ "fluent-star-add-outline.svg",
3053
+ "fluent-star-add.svg",
3054
+ "fluent-star-arrow-back-outline.svg",
3055
+ "fluent-star-arrow-back.svg",
3056
+ "fluent-star-arrow-right-end.svg",
3057
+ "fluent-star-arrow-right-start.svg",
3058
+ "fluent-star-checkmark-outline.svg",
3059
+ "fluent-star-checkmark.svg",
3060
+ "fluent-star-dismiss-outline.svg",
3061
+ "fluent-star-dismiss.svg",
3062
+ "fluent-star-edit-outline.svg",
3063
+ "fluent-star-edit.svg",
3064
+ "fluent-star-emphasis-outline.svg",
3065
+ "fluent-star-emphasis.svg",
3066
+ "fluent-star-half-outline.svg",
3067
+ "fluent-star-half.svg",
3068
+ "fluent-star-line-horizontal-3.svg",
3069
+ "fluent-star-off-outline.svg",
3070
+ "fluent-star-off.svg",
3071
+ "fluent-star-one-quarter-outline.svg",
3072
+ "fluent-star-one-quarter.svg",
3073
+ "fluent-star-outline.svg",
3074
+ "fluent-star-prohibited-outline.svg",
3075
+ "fluent-star-prohibited.svg",
3076
+ "fluent-star-settings-outline.svg",
3077
+ "fluent-star-settings.svg",
3078
+ "fluent-star-three-quarter.svg",
3079
+ "fluent-star.svg",
3080
+ "fluent-status-outline.svg",
3081
+ "fluent-status.svg",
3082
+ "fluent-step-outline.svg",
3083
+ "fluent-step.svg",
3084
+ "fluent-steps-outline.svg",
3085
+ "fluent-steps.svg",
3086
+ "fluent-stethoscope-outline.svg",
3087
+ "fluent-stethoscope.svg",
3088
+ "fluent-sticker-add-outline.svg",
3089
+ "fluent-sticker-add.svg",
3090
+ "fluent-sticker-outline.svg",
3091
+ "fluent-sticker.svg",
3092
+ "fluent-stop-outline.svg",
3093
+ "fluent-stop.svg",
3094
+ "fluent-storage-outline.svg",
3095
+ "fluent-storage.svg",
3096
+ "fluent-store-microsoft-outline.svg",
3097
+ "fluent-store-microsoft.svg",
3098
+ "fluent-stream-outline.svg",
3099
+ "fluent-stream.svg",
3100
+ "fluent-street-sign-outline.svg",
3101
+ "fluent-street-sign.svg",
3102
+ "fluent-style-guide-outline.svg",
3103
+ "fluent-style-guide.svg",
3104
+ "fluent-sub-grid-outline.svg",
3105
+ "fluent-sub-grid.svg",
3106
+ "fluent-subtitles-outline.svg",
3107
+ "fluent-subtitles.svg",
3108
+ "fluent-subtract-circle-outline.svg",
3109
+ "fluent-subtract-circle.svg",
3110
+ "fluent-subtract-outline.svg",
3111
+ "fluent-subtract-parentheses.svg",
3112
+ "fluent-subtract-square-outline.svg",
3113
+ "fluent-subtract-square.svg",
3114
+ "fluent-subtract.svg",
3115
+ "fluent-surface-earbuds-outline.svg",
3116
+ "fluent-surface-earbuds.svg",
3117
+ "fluent-surface-hub-outline.svg",
3118
+ "fluent-surface-hub.svg",
3119
+ "fluent-swimming-pool-outline.svg",
3120
+ "fluent-swimming-pool.svg",
3121
+ "fluent-swipe-down-outline.svg",
3122
+ "fluent-swipe-down.svg",
3123
+ "fluent-swipe-right-outline.svg",
3124
+ "fluent-swipe-right.svg",
3125
+ "fluent-swipe-up-outline.svg",
3126
+ "fluent-swipe-up.svg",
3127
+ "fluent-symbols-outline.svg",
3128
+ "fluent-symbols.svg",
3129
+ "fluent-syringe-outline.svg",
3130
+ "fluent-syringe.svg",
3131
+ "fluent-system-outline.svg",
3132
+ "fluent-system.svg",
3133
+ "fluent-tab-add-outline.svg",
3134
+ "fluent-tab-add.svg",
3135
+ "fluent-tab-arrow-left-outline.svg",
3136
+ "fluent-tab-arrow-left.svg",
3137
+ "fluent-tab-desktop-bottom.svg",
3138
+ "fluent-tab-desktop-image-outline.svg",
3139
+ "fluent-tab-desktop-image.svg",
3140
+ "fluent-tab-desktop-link-outline.svg",
3141
+ "fluent-tab-desktop-link.svg",
3142
+ "fluent-tab-desktop-multiple.svg",
3143
+ "fluent-tab-desktop-outline.svg",
3144
+ "fluent-tab-desktop-search.svg",
3145
+ "fluent-tab-desktop.svg",
3146
+ "fluent-tab-group-outline.svg",
3147
+ "fluent-tab-group.svg",
3148
+ "fluent-tab-in-private-outline.svg",
3149
+ "fluent-tab-in-private.svg",
3150
+ "fluent-tab-inprivate-account.svg",
3151
+ "fluent-tab-outline.svg",
3152
+ "fluent-tab-prohibited-outline.svg",
3153
+ "fluent-tab-prohibited.svg",
3154
+ "fluent-tab-shield-dismiss.svg",
3155
+ "fluent-tab.svg",
3156
+ "fluent-table-add-outline.svg",
3157
+ "fluent-table-add.svg",
3158
+ "fluent-table-arrow-up-outline.svg",
3159
+ "fluent-table-arrow-up.svg",
3160
+ "fluent-table-bottom-row-outline.svg",
3161
+ "fluent-table-bottom-row.svg",
3162
+ "fluent-table-cell-edit-outline.svg",
3163
+ "fluent-table-cell-edit.svg",
3164
+ "fluent-table-cells-merge-outline.svg",
3165
+ "fluent-table-cells-merge.svg",
3166
+ "fluent-table-cells-split-outline.svg",
3167
+ "fluent-table-cells-split.svg",
3168
+ "fluent-table-column-top-bottom.svg",
3169
+ "fluent-table-cursor-outline.svg",
3170
+ "fluent-table-cursor.svg",
3171
+ "fluent-table-delete-column.svg",
3172
+ "fluent-table-delete-row-outline.svg",
3173
+ "fluent-table-delete-row.svg",
3174
+ "fluent-table-dismiss-outline.svg",
3175
+ "fluent-table-dismiss.svg",
3176
+ "fluent-table-edit-outline.svg",
3177
+ "fluent-table-edit.svg",
3178
+ "fluent-table-freeze-column.svg",
3179
+ "fluent-table-freeze-row-outline.svg",
3180
+ "fluent-table-freeze-row.svg",
3181
+ "fluent-table-insert-column.svg",
3182
+ "fluent-table-insert-row-outline.svg",
3183
+ "fluent-table-insert-row.svg",
3184
+ "fluent-table-lightning-outline.svg",
3185
+ "fluent-table-lightning.svg",
3186
+ "fluent-table-link-outline.svg",
3187
+ "fluent-table-link.svg",
3188
+ "fluent-table-lock-outline.svg",
3189
+ "fluent-table-lock.svg",
3190
+ "fluent-table-move-above-outline.svg",
3191
+ "fluent-table-move-above.svg",
3192
+ "fluent-table-move-below-outline.svg",
3193
+ "fluent-table-move-below.svg",
3194
+ "fluent-table-move-left-outline.svg",
3195
+ "fluent-table-move-left.svg",
3196
+ "fluent-table-move-right-outline.svg",
3197
+ "fluent-table-move-right.svg",
3198
+ "fluent-table-offset-add-outline.svg",
3199
+ "fluent-table-offset-add.svg",
3200
+ "fluent-table-offset-outline.svg",
3201
+ "fluent-table-offset-settings.svg",
3202
+ "fluent-table-offset.svg",
3203
+ "fluent-table-outline.svg",
3204
+ "fluent-table-resize-column.svg",
3205
+ "fluent-table-resize-row-outline.svg",
3206
+ "fluent-table-resize-row.svg",
3207
+ "fluent-table-settings-outline.svg",
3208
+ "fluent-table-settings.svg",
3209
+ "fluent-table-simple-checkmark.svg",
3210
+ "fluent-table-simple-exclude.svg",
3211
+ "fluent-table-simple-include.svg",
3212
+ "fluent-table-simple-multiple.svg",
3213
+ "fluent-table-simple-outline.svg",
3214
+ "fluent-table-simple.svg",
3215
+ "fluent-table-sparkle-outline.svg",
3216
+ "fluent-table-sparkle.svg",
3217
+ "fluent-table-stack-above-outline.svg",
3218
+ "fluent-table-stack-above.svg",
3219
+ "fluent-table-stack-below-outline.svg",
3220
+ "fluent-table-stack-below.svg",
3221
+ "fluent-table-stack-left-outline.svg",
3222
+ "fluent-table-stack-left.svg",
3223
+ "fluent-table-stack-right-outline.svg",
3224
+ "fluent-table-stack-right.svg",
3225
+ "fluent-table-switch-outline.svg",
3226
+ "fluent-table-switch.svg",
3227
+ "fluent-table.svg",
3228
+ "fluent-tablet-laptop-outline.svg",
3229
+ "fluent-tablet-laptop.svg",
3230
+ "fluent-tablet-outline.svg",
3231
+ "fluent-tablet-speaker-outline.svg",
3232
+ "fluent-tablet-speaker.svg",
3233
+ "fluent-tablet.svg",
3234
+ "fluent-tabs-outline.svg",
3235
+ "fluent-tabs.svg",
3236
+ "fluent-tag-dismiss-outline.svg",
3237
+ "fluent-tag-dismiss.svg",
3238
+ "fluent-tag-error-outline.svg",
3239
+ "fluent-tag-error.svg",
3240
+ "fluent-tag-lock-accent.svg",
3241
+ "fluent-tag-lock-outline.svg",
3242
+ "fluent-tag-lock.svg",
3243
+ "fluent-tag-multiple-outline.svg",
3244
+ "fluent-tag-multiple.svg",
3245
+ "fluent-tag-off-outline.svg",
3246
+ "fluent-tag-off.svg",
3247
+ "fluent-tag-outline.svg",
3248
+ "fluent-tag-question-mark-outline.svg",
3249
+ "fluent-tag-question-mark.svg",
3250
+ "fluent-tag-reset-outline.svg",
3251
+ "fluent-tag-reset.svg",
3252
+ "fluent-tag-search-outline.svg",
3253
+ "fluent-tag-search.svg",
3254
+ "fluent-tag.svg",
3255
+ "fluent-tap-double-outline.svg",
3256
+ "fluent-tap-double.svg",
3257
+ "fluent-tap-single-outline.svg",
3258
+ "fluent-tap-single.svg",
3259
+ "fluent-target-add-outline.svg",
3260
+ "fluent-target-add.svg",
3261
+ "fluent-target-arrow-outline.svg",
3262
+ "fluent-target-arrow.svg",
3263
+ "fluent-target-dismiss-outline.svg",
3264
+ "fluent-target-dismiss.svg",
3265
+ "fluent-target-edit-outline.svg",
3266
+ "fluent-target-edit.svg",
3267
+ "fluent-target-outline.svg",
3268
+ "fluent-target.svg",
3269
+ "fluent-task-list-add-outline.svg",
3270
+ "fluent-task-list-add.svg",
3271
+ "fluent-task-list-ltr-outline.svg",
3272
+ "fluent-task-list-ltr.svg",
3273
+ "fluent-task-list-rtl-outline.svg",
3274
+ "fluent-task-list-rtl.svg",
3275
+ "fluent-task-list-square-add.svg",
3276
+ "fluent-task-list-square-ltr.svg",
3277
+ "fluent-task-list-square-rtl.svg",
3278
+ "fluent-tasks-app-outline.svg",
3279
+ "fluent-tasks-app.svg",
3280
+ "fluent-teaching-outline.svg",
3281
+ "fluent-teaching.svg",
3282
+ "fluent-teardrop-bottom-right.svg",
3283
+ "fluent-teddy-outline.svg",
3284
+ "fluent-teddy.svg",
3285
+ "fluent-temperature-outline.svg",
3286
+ "fluent-temperature.svg",
3287
+ "fluent-tent-outline.svg",
3288
+ "fluent-tent.svg",
3289
+ "fluent-tetris-app-outline.svg",
3290
+ "fluent-tetris-app.svg",
3291
+ "fluent-text-add-space-after.svg",
3292
+ "fluent-text-add-space-before.svg",
3293
+ "fluent-text-add-t-outline.svg",
3294
+ "fluent-text-add-t.svg",
3295
+ "fluent-text-align-center-outline.svg",
3296
+ "fluent-text-align-center.svg",
3297
+ "fluent-text-align-distributed.svg",
3298
+ "fluent-text-align-justify-low-90.svg",
3299
+ "fluent-text-align-justify-low.svg",
3300
+ "fluent-text-align-justify.svg",
3301
+ "fluent-text-align-left-outline.svg",
3302
+ "fluent-text-align-left-rotate-90.svg",
3303
+ "fluent-text-align-left.svg",
3304
+ "fluent-text-align-right-outline.svg",
3305
+ "fluent-text-align-right.svg",
3306
+ "fluent-text-bold-outline.svg",
3307
+ "fluent-text-bold.svg",
3308
+ "fluent-text-box-settings-outline.svg",
3309
+ "fluent-text-box-settings.svg",
3310
+ "fluent-text-bullet-list-270.svg",
3311
+ "fluent-text-bullet-list-90.svg",
3312
+ "fluent-text-bullet-list-add.svg",
3313
+ "fluent-text-bullet-list-ltr-90.svg",
3314
+ "fluent-text-bullet-list-ltr.svg",
3315
+ "fluent-text-bullet-list-outline.svg",
3316
+ "fluent-text-bullet-list-rtl.svg",
3317
+ "fluent-text-bullet-list-square.svg",
3318
+ "fluent-text-bullet-list-tree.svg",
3319
+ "fluent-text-bullet-list.svg",
3320
+ "fluent-text-case-lowercase.svg",
3321
+ "fluent-text-case-title-outline.svg",
3322
+ "fluent-text-case-title.svg",
3323
+ "fluent-text-case-uppercase.svg",
3324
+ "fluent-text-change-case-outline.svg",
3325
+ "fluent-text-change-case.svg",
3326
+ "fluent-text-clear-formatting.svg",
3327
+ "fluent-text-collapse-outline.svg",
3328
+ "fluent-text-collapse.svg",
3329
+ "fluent-text-color-accent.svg",
3330
+ "fluent-text-color-outline.svg",
3331
+ "fluent-text-color.svg",
3332
+ "fluent-text-column-one-narrow.svg",
3333
+ "fluent-text-column-one-outline.svg",
3334
+ "fluent-text-column-one-wide.svg",
3335
+ "fluent-text-column-one.svg",
3336
+ "fluent-text-column-three-outline.svg",
3337
+ "fluent-text-column-three.svg",
3338
+ "fluent-text-column-two-left.svg",
3339
+ "fluent-text-column-two-outline.svg",
3340
+ "fluent-text-column-two-right.svg",
3341
+ "fluent-text-column-two.svg",
3342
+ "fluent-text-column-wide-outline.svg",
3343
+ "fluent-text-column-wide.svg",
3344
+ "fluent-text-continuous-outline.svg",
3345
+ "fluent-text-continuous.svg",
3346
+ "fluent-text-density-outline.svg",
3347
+ "fluent-text-density.svg",
3348
+ "fluent-text-description-ltr.svg",
3349
+ "fluent-text-description-outline.svg",
3350
+ "fluent-text-description-rtl.svg",
3351
+ "fluent-text-description.svg",
3352
+ "fluent-text-direction-vertical.svg",
3353
+ "fluent-text-edit-style-outline.svg",
3354
+ "fluent-text-edit-style.svg",
3355
+ "fluent-text-effects-outline.svg",
3356
+ "fluent-text-effects-sparkle.svg",
3357
+ "fluent-text-effects.svg",
3358
+ "fluent-text-expand-outline.svg",
3359
+ "fluent-text-expand.svg",
3360
+ "fluent-text-field-outline.svg",
3361
+ "fluent-text-field.svg",
3362
+ "fluent-text-first-line-outline.svg",
3363
+ "fluent-text-first-line.svg",
3364
+ "fluent-text-font-info-outline.svg",
3365
+ "fluent-text-font-info.svg",
3366
+ "fluent-text-font-outline.svg",
3367
+ "fluent-text-font-size-outline.svg",
3368
+ "fluent-text-font-size.svg",
3369
+ "fluent-text-font.svg",
3370
+ "fluent-text-footnote-outline.svg",
3371
+ "fluent-text-footnote.svg",
3372
+ "fluent-text-grammar-arrow-left.svg",
3373
+ "fluent-text-grammar-arrow-right.svg",
3374
+ "fluent-text-grammar-checkmark.svg",
3375
+ "fluent-text-grammar-dismiss.svg",
3376
+ "fluent-text-grammar-lightning.svg",
3377
+ "fluent-text-grammar-settings.svg",
3378
+ "fluent-text-grammar-wand-outline.svg",
3379
+ "fluent-text-grammar-wand.svg",
3380
+ "fluent-text-hanging-outline.svg",
3381
+ "fluent-text-hanging.svg",
3382
+ "fluent-text-header-1-lines-caret.svg",
3383
+ "fluent-text-header-1-lines.svg",
3384
+ "fluent-text-header-1-outline.svg",
3385
+ "fluent-text-header-1.svg",
3386
+ "fluent-text-header-2-lines-caret.svg",
3387
+ "fluent-text-header-2-lines.svg",
3388
+ "fluent-text-header-2-outline.svg",
3389
+ "fluent-text-header-2.svg",
3390
+ "fluent-text-header-3-lines-caret.svg",
3391
+ "fluent-text-header-3-lines.svg",
3392
+ "fluent-text-header-3-outline.svg",
3393
+ "fluent-text-header-3.svg",
3394
+ "fluent-text-indent-decrease-ltr.svg",
3395
+ "fluent-text-indent-decrease-rtl.svg",
3396
+ "fluent-text-indent-decrease.svg",
3397
+ "fluent-text-indent-increase-ltr.svg",
3398
+ "fluent-text-indent-increase-rtl.svg",
3399
+ "fluent-text-indent-increase.svg",
3400
+ "fluent-text-italic-outline.svg",
3401
+ "fluent-text-italic.svg",
3402
+ "fluent-text-line-spacing-outline.svg",
3403
+ "fluent-text-line-spacing.svg",
3404
+ "fluent-text-more-outline.svg",
3405
+ "fluent-text-more.svg",
3406
+ "fluent-text-number-format.svg",
3407
+ "fluent-text-number-list-ltr-90.svg",
3408
+ "fluent-text-number-list-ltr.svg",
3409
+ "fluent-text-number-list-rtl-90.svg",
3410
+ "fluent-text-number-list-rtl.svg",
3411
+ "fluent-text-paragraph-direction.svg",
3412
+ "fluent-text-paragraph-outline.svg",
3413
+ "fluent-text-paragraph.svg",
3414
+ "fluent-text-position-behind.svg",
3415
+ "fluent-text-position-front.svg",
3416
+ "fluent-text-position-line.svg",
3417
+ "fluent-text-position-square-left.svg",
3418
+ "fluent-text-position-square.svg",
3419
+ "fluent-text-position-through.svg",
3420
+ "fluent-text-position-tight.svg",
3421
+ "fluent-text-position-top-bottom.svg",
3422
+ "fluent-text-proofing-tools.svg",
3423
+ "fluent-text-quote-outline.svg",
3424
+ "fluent-text-quote.svg",
3425
+ "fluent-text-sort-ascending.svg",
3426
+ "fluent-text-sort-descending.svg",
3427
+ "fluent-text-strikethrough.svg",
3428
+ "fluent-text-subscript-outline.svg",
3429
+ "fluent-text-subscript.svg",
3430
+ "fluent-text-superscript-outline.svg",
3431
+ "fluent-text-superscript.svg",
3432
+ "fluent-text-t-outline.svg",
3433
+ "fluent-text-t.svg",
3434
+ "fluent-text-underline-double.svg",
3435
+ "fluent-text-underline-outline.svg",
3436
+ "fluent-text-underline.svg",
3437
+ "fluent-text-word-count-outline.svg",
3438
+ "fluent-text-word-count.svg",
3439
+ "fluent-text-wrap-off-outline.svg",
3440
+ "fluent-text-wrap-off.svg",
3441
+ "fluent-text-wrap-outline.svg",
3442
+ "fluent-text-wrap.svg",
3443
+ "fluent-textbox-align-bottom-left.svg",
3444
+ "fluent-textbox-align-bottom.svg",
3445
+ "fluent-textbox-align-center.svg",
3446
+ "fluent-textbox-align-middle-left.svg",
3447
+ "fluent-textbox-align-middle.svg",
3448
+ "fluent-textbox-align-top-center.svg",
3449
+ "fluent-textbox-align-top-left.svg",
3450
+ "fluent-textbox-align-top-outline.svg",
3451
+ "fluent-textbox-align-top-right.svg",
3452
+ "fluent-textbox-align-top.svg",
3453
+ "fluent-textbox-more-outline.svg",
3454
+ "fluent-textbox-more.svg",
3455
+ "fluent-textbox-outline.svg",
3456
+ "fluent-textbox-rotate-90-outline.svg",
3457
+ "fluent-textbox-rotate-90.svg",
3458
+ "fluent-textbox-settings-outline.svg",
3459
+ "fluent-textbox-settings.svg",
3460
+ "fluent-textbox.svg",
3461
+ "fluent-thinking-outline.svg",
3462
+ "fluent-thinking.svg",
3463
+ "fluent-thumb-dislike-outline.svg",
3464
+ "fluent-thumb-dislike.svg",
3465
+ "fluent-thumb-like-dislike.svg",
3466
+ "fluent-thumb-like-outline.svg",
3467
+ "fluent-thumb-like.svg",
3468
+ "fluent-ticket-diagonal-outline.svg",
3469
+ "fluent-ticket-diagonal.svg",
3470
+ "fluent-ticket-horizontal-outline.svg",
3471
+ "fluent-ticket-horizontal.svg",
3472
+ "fluent-time-and-weather-outline.svg",
3473
+ "fluent-time-and-weather.svg",
3474
+ "fluent-time-picker-outline.svg",
3475
+ "fluent-time-picker.svg",
3476
+ "fluent-timeline-outline.svg",
3477
+ "fluent-timeline.svg",
3478
+ "fluent-timer-10-outline.svg",
3479
+ "fluent-timer-10.svg",
3480
+ "fluent-timer-2-outline.svg",
3481
+ "fluent-timer-2.svg",
3482
+ "fluent-timer-3-outline.svg",
3483
+ "fluent-timer-3.svg",
3484
+ "fluent-timer-off-outline.svg",
3485
+ "fluent-timer-off.svg",
3486
+ "fluent-timer-outline.svg",
3487
+ "fluent-timer.svg",
3488
+ "fluent-toggle-left-outline.svg",
3489
+ "fluent-toggle-left.svg",
3490
+ "fluent-toggle-multiple-outline.svg",
3491
+ "fluent-toggle-multiple.svg",
3492
+ "fluent-toggle-right-outline.svg",
3493
+ "fluent-toggle-right.svg",
3494
+ "fluent-toolbox-outline.svg",
3495
+ "fluent-toolbox.svg",
3496
+ "fluent-tooltip-quote-outline.svg",
3497
+ "fluent-tooltip-quote.svg",
3498
+ "fluent-top-speed-outline.svg",
3499
+ "fluent-top-speed.svg",
3500
+ "fluent-translate-auto-outline.svg",
3501
+ "fluent-translate-auto.svg",
3502
+ "fluent-translate-off-outline.svg",
3503
+ "fluent-translate-off.svg",
3504
+ "fluent-translate-outline.svg",
3505
+ "fluent-translate.svg",
3506
+ "fluent-transmission-outline.svg",
3507
+ "fluent-transmission.svg",
3508
+ "fluent-transparency-square.svg",
3509
+ "fluent-tray-item-add-outline.svg",
3510
+ "fluent-tray-item-add.svg",
3511
+ "fluent-tray-item-remove-outline.svg",
3512
+ "fluent-tray-item-remove.svg",
3513
+ "fluent-tree-deciduous-outline.svg",
3514
+ "fluent-tree-deciduous.svg",
3515
+ "fluent-triangle-down-outline.svg",
3516
+ "fluent-triangle-down.svg",
3517
+ "fluent-triangle-outline.svg",
3518
+ "fluent-triangle.svg",
3519
+ "fluent-trophy-lock-outline.svg",
3520
+ "fluent-trophy-lock.svg",
3521
+ "fluent-trophy-off-outline.svg",
3522
+ "fluent-trophy-off.svg",
3523
+ "fluent-trophy-outline.svg",
3524
+ "fluent-trophy.svg",
3525
+ "fluent-tv-outline.svg",
3526
+ "fluent-tv-usb-outline.svg",
3527
+ "fluent-tv-usb.svg",
3528
+ "fluent-tv.svg",
3529
+ "fluent-umbrella-outline.svg",
3530
+ "fluent-umbrella.svg",
3531
+ "fluent-uninstall-app-outline.svg",
3532
+ "fluent-uninstall-app.svg",
3533
+ "fluent-usb-plug-outline.svg",
3534
+ "fluent-usb-plug.svg",
3535
+ "fluent-usb-stick-outline.svg",
3536
+ "fluent-usb-stick.svg",
3537
+ "fluent-vault-outline.svg",
3538
+ "fluent-vault.svg",
3539
+ "fluent-vehicle-bicycle-outline.svg",
3540
+ "fluent-vehicle-bicycle.svg",
3541
+ "fluent-vehicle-bus-outline.svg",
3542
+ "fluent-vehicle-bus.svg",
3543
+ "fluent-vehicle-cab-outline.svg",
3544
+ "fluent-vehicle-cab.svg",
3545
+ "fluent-vehicle-cable-car-outline.svg",
3546
+ "fluent-vehicle-cable-car.svg",
3547
+ "fluent-vehicle-car-collision.svg",
3548
+ "fluent-vehicle-car-outline.svg",
3549
+ "fluent-vehicle-car-parking.svg",
3550
+ "fluent-vehicle-car-profile-ltr.svg",
3551
+ "fluent-vehicle-car-profile-rtl.svg",
3552
+ "fluent-vehicle-car-profile.svg",
3553
+ "fluent-vehicle-car.svg",
3554
+ "fluent-vehicle-motorcycle.svg",
3555
+ "fluent-vehicle-ship-outline.svg",
3556
+ "fluent-vehicle-ship.svg",
3557
+ "fluent-vehicle-subway-clock.svg",
3558
+ "fluent-vehicle-subway-outline.svg",
3559
+ "fluent-vehicle-subway.svg",
3560
+ "fluent-vehicle-tractor-outline.svg",
3561
+ "fluent-vehicle-tractor.svg",
3562
+ "fluent-vehicle-truck-bag-outline.svg",
3563
+ "fluent-vehicle-truck-bag.svg",
3564
+ "fluent-vehicle-truck-cube.svg",
3565
+ "fluent-vehicle-truck-outline.svg",
3566
+ "fluent-vehicle-truck-profile.svg",
3567
+ "fluent-vehicle-truck.svg",
3568
+ "fluent-video-360-outline.svg",
3569
+ "fluent-video-360.svg",
3570
+ "fluent-video-add-outline.svg",
3571
+ "fluent-video-add.svg",
3572
+ "fluent-video-background-effect.svg",
3573
+ "fluent-video-chat-outline.svg",
3574
+ "fluent-video-chat.svg",
3575
+ "fluent-video-clip-multiple.svg",
3576
+ "fluent-video-clip-off-outline.svg",
3577
+ "fluent-video-clip-off.svg",
3578
+ "fluent-video-clip-optimize.svg",
3579
+ "fluent-video-clip-outline.svg",
3580
+ "fluent-video-clip-wand-outline.svg",
3581
+ "fluent-video-clip-wand.svg",
3582
+ "fluent-video-clip.svg",
3583
+ "fluent-video-link-outline.svg",
3584
+ "fluent-video-link.svg",
3585
+ "fluent-video-off-outline.svg",
3586
+ "fluent-video-off.svg",
3587
+ "fluent-video-outline.svg",
3588
+ "fluent-video-person-call-outline.svg",
3589
+ "fluent-video-person-call.svg",
3590
+ "fluent-video-person-clock.svg",
3591
+ "fluent-video-person-off-outline.svg",
3592
+ "fluent-video-person-off.svg",
3593
+ "fluent-video-person-outline.svg",
3594
+ "fluent-video-person-pulse.svg",
3595
+ "fluent-video-person-sparkle-off.svg",
3596
+ "fluent-video-person-sparkle.svg",
3597
+ "fluent-video-person-star-off.svg",
3598
+ "fluent-video-person-star-outline.svg",
3599
+ "fluent-video-person-star.svg",
3600
+ "fluent-video-person.svg",
3601
+ "fluent-video-play-pause-outline.svg",
3602
+ "fluent-video-play-pause.svg",
3603
+ "fluent-video-prohibited-outline.svg",
3604
+ "fluent-video-prohibited.svg",
3605
+ "fluent-video-security-outline.svg",
3606
+ "fluent-video-security.svg",
3607
+ "fluent-video-switch-outline.svg",
3608
+ "fluent-video-switch.svg",
3609
+ "fluent-video.svg",
3610
+ "fluent-view-desktop-mobile.svg",
3611
+ "fluent-view-desktop-outline.svg",
3612
+ "fluent-view-desktop.svg",
3613
+ "fluent-voicemail-outline.svg",
3614
+ "fluent-voicemail-shield-outline.svg",
3615
+ "fluent-voicemail-shield.svg",
3616
+ "fluent-voicemail.svg",
3617
+ "fluent-vote-outline.svg",
3618
+ "fluent-vote.svg",
3619
+ "fluent-walkie-talkie-outline.svg",
3620
+ "fluent-walkie-talkie.svg",
3621
+ "fluent-wallet-credit-card.svg",
3622
+ "fluent-wallet-outline.svg",
3623
+ "fluent-wallet.svg",
3624
+ "fluent-wallpaper-outline.svg",
3625
+ "fluent-wallpaper.svg",
3626
+ "fluent-wand-outline.svg",
3627
+ "fluent-wand.svg",
3628
+ "fluent-warning-lock-open-outline.svg",
3629
+ "fluent-warning-lock-open.svg",
3630
+ "fluent-warning-outline.svg",
3631
+ "fluent-warning.svg",
3632
+ "fluent-washer-outline.svg",
3633
+ "fluent-washer.svg",
3634
+ "fluent-water-outline.svg",
3635
+ "fluent-water.svg",
3636
+ "fluent-weather-blowing-snow.svg",
3637
+ "fluent-weather-cloudy-outline.svg",
3638
+ "fluent-weather-cloudy.svg",
3639
+ "fluent-weather-drizzle-outline.svg",
3640
+ "fluent-weather-drizzle.svg",
3641
+ "fluent-weather-duststorm-outline.svg",
3642
+ "fluent-weather-duststorm.svg",
3643
+ "fluent-weather-fog-outline.svg",
3644
+ "fluent-weather-fog.svg",
3645
+ "fluent-weather-hail-day-outline.svg",
3646
+ "fluent-weather-hail-day.svg",
3647
+ "fluent-weather-hail-night.svg",
3648
+ "fluent-weather-haze-outline.svg",
3649
+ "fluent-weather-haze.svg",
3650
+ "fluent-weather-moon-off-outline.svg",
3651
+ "fluent-weather-moon-off.svg",
3652
+ "fluent-weather-moon-outline.svg",
3653
+ "fluent-weather-moon.svg",
3654
+ "fluent-weather-partly-cloudy-day.svg",
3655
+ "fluent-weather-rain-outline.svg",
3656
+ "fluent-weather-rain-showers-day.svg",
3657
+ "fluent-weather-rain-snow-outline.svg",
3658
+ "fluent-weather-rain-snow.svg",
3659
+ "fluent-weather-rain.svg",
3660
+ "fluent-weather-snow-outline.svg",
3661
+ "fluent-weather-snow-shower-day.svg",
3662
+ "fluent-weather-snow-shower-night.svg",
3663
+ "fluent-weather-snow.svg",
3664
+ "fluent-weather-snowflake-outline.svg",
3665
+ "fluent-weather-snowflake.svg",
3666
+ "fluent-weather-squalls-outline.svg",
3667
+ "fluent-weather-squalls.svg",
3668
+ "fluent-weather-sunny-high.svg",
3669
+ "fluent-weather-sunny-low-outline.svg",
3670
+ "fluent-weather-sunny-low.svg",
3671
+ "fluent-weather-sunny-outline.svg",
3672
+ "fluent-weather-sunny.svg",
3673
+ "fluent-weather-thunderstorm.svg",
3674
+ "fluent-web-asset-outline.svg",
3675
+ "fluent-web-asset.svg",
3676
+ "fluent-whiteboard-off-outline.svg",
3677
+ "fluent-whiteboard-off.svg",
3678
+ "fluent-whiteboard-outline.svg",
3679
+ "fluent-whiteboard.svg",
3680
+ "fluent-wifi-1-outline.svg",
3681
+ "fluent-wifi-1.svg",
3682
+ "fluent-wifi-2-outline.svg",
3683
+ "fluent-wifi-2.svg",
3684
+ "fluent-wifi-3-outline.svg",
3685
+ "fluent-wifi-3.svg",
3686
+ "fluent-wifi-4-outline.svg",
3687
+ "fluent-wifi-4.svg",
3688
+ "fluent-wifi-lock-outline.svg",
3689
+ "fluent-wifi-lock.svg",
3690
+ "fluent-wifi-off-outline.svg",
3691
+ "fluent-wifi-off.svg",
3692
+ "fluent-wifi-warning-outline.svg",
3693
+ "fluent-wifi-warning.svg",
3694
+ "fluent-window-ad-outline.svg",
3695
+ "fluent-window-ad.svg",
3696
+ "fluent-window-apps-outline.svg",
3697
+ "fluent-window-apps.svg",
3698
+ "fluent-window-arrow-up-outline.svg",
3699
+ "fluent-window-arrow-up.svg",
3700
+ "fluent-window-brush-outline.svg",
3701
+ "fluent-window-brush.svg",
3702
+ "fluent-window-database-outline.svg",
3703
+ "fluent-window-database.svg",
3704
+ "fluent-window-dev-tools-outline.svg",
3705
+ "fluent-window-dev-tools.svg",
3706
+ "fluent-window-fingerprint.svg",
3707
+ "fluent-window-new-outline.svg",
3708
+ "fluent-window-new.svg",
3709
+ "fluent-window-outline.svg",
3710
+ "fluent-window-shield-outline.svg",
3711
+ "fluent-window-shield.svg",
3712
+ "fluent-window-wrench-outline.svg",
3713
+ "fluent-window-wrench.svg",
3714
+ "fluent-window.svg",
3715
+ "fluent-wrench-outline.svg",
3716
+ "fluent-wrench-screwdriver.svg",
3717
+ "fluent-wrench-settings-outline.svg",
3718
+ "fluent-wrench-settings.svg",
3719
+ "fluent-wrench.svg",
3720
+ "fluent-xbox-console-outline.svg",
3721
+ "fluent-xbox-console.svg",
3722
+ "fluent-xbox-controller-error.svg",
3723
+ "fluent-xbox-controller-outline.svg",
3724
+ "fluent-xbox-controller.svg",
3725
+ "fluent-xray-outline.svg",
3726
+ "fluent-xray.svg",
3727
+ "fluent-zoom-fit-outline.svg",
3728
+ "fluent-zoom-fit.svg",
3729
+ "fluent-zoom-in-outline.svg",
3730
+ "fluent-zoom-in.svg",
3731
+ "fluent-zoom-out-outline.svg",
3732
+ "fluent-zoom-out.svg"
3733
+ ];