@riverty/web-components 6.3.0 → 6.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 (397) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/cjs/app-globals-V2Kpy_OQ.js +5 -0
  3. package/dist/cjs/focusable-Oll_rmtP.js +28 -0
  4. package/dist/cjs/formData-B2DZyLxP.js +44 -0
  5. package/dist/cjs/index-BnETQtSf.js +1834 -0
  6. package/dist/cjs/index.cjs.js +37 -0
  7. package/dist/cjs/loader.cjs.js +13 -0
  8. package/dist/cjs/r-accordion-panel.cjs.entry.js +24 -0
  9. package/dist/cjs/r-accordion-section.cjs.entry.js +125 -0
  10. package/dist/cjs/r-accordion-trigger.cjs.entry.js +93 -0
  11. package/dist/cjs/r-accordion.cjs.entry.js +20 -0
  12. package/dist/cjs/r-alert.cjs.entry.js +146 -0
  13. package/dist/cjs/r-badge.cjs.entry.js +41 -0
  14. package/dist/cjs/r-button.cjs.entry.js +149 -0
  15. package/dist/cjs/r-checkbox-group.cjs.entry.js +237 -0
  16. package/dist/cjs/r-checkbox.cjs.entry.js +274 -0
  17. package/dist/cjs/r-design-system-devtools.cjs.entry.js +31 -0
  18. package/dist/cjs/r-dialog.cjs.entry.js +107 -0
  19. package/dist/cjs/r-hint_2.cjs.entry.js +50 -0
  20. package/dist/cjs/r-icon-button_2.cjs.entry.js +492 -0
  21. package/dist/cjs/r-icon.cjs.entry.js +284 -0
  22. package/dist/cjs/r-illustration.cjs.entry.js +396 -0
  23. package/dist/cjs/r-input-code.cjs.entry.js +437 -0
  24. package/dist/cjs/r-input-date.cjs.entry.js +524 -0
  25. package/dist/cjs/r-input-password.cjs.entry.js +270 -0
  26. package/dist/cjs/r-input-phone-number.cjs.entry.js +2525 -0
  27. package/dist/cjs/r-input.cjs.entry.js +618 -0
  28. package/dist/cjs/r-list-item.cjs.entry.js +109 -0
  29. package/dist/cjs/r-pagination.cjs.entry.js +320 -0
  30. package/dist/cjs/r-panel.cjs.entry.js +184 -0
  31. package/dist/cjs/r-popover-action.cjs.entry.js +80 -0
  32. package/dist/cjs/r-popover-content.cjs.entry.js +62 -0
  33. package/dist/cjs/r-popover-headline.cjs.entry.js +28 -0
  34. package/dist/cjs/r-popover-trigger.cjs.entry.js +70 -0
  35. package/dist/cjs/r-popover.cjs.entry.js +347 -0
  36. package/dist/cjs/r-progress-bar.cjs.entry.js +25 -0
  37. package/dist/cjs/r-radio-button-description.cjs.entry.js +18 -0
  38. package/dist/cjs/r-radio-button-leading.cjs.entry.js +18 -0
  39. package/dist/cjs/r-radio-button-title.cjs.entry.js +18 -0
  40. package/dist/cjs/r-radio-button-trailing.cjs.entry.js +18 -0
  41. package/dist/cjs/r-radio-button.cjs.entry.js +139 -0
  42. package/dist/cjs/r-radio-group.cjs.entry.js +428 -0
  43. package/dist/cjs/r-select-option.cjs.entry.js +130 -0
  44. package/dist/cjs/r-select.cjs.entry.js +1107 -0
  45. package/dist/cjs/r-skip-link.cjs.entry.js +19 -0
  46. package/dist/cjs/r-stepper-item.cjs.entry.js +42 -0
  47. package/dist/cjs/r-stepper.cjs.entry.js +99 -0
  48. package/dist/cjs/r-tab-panel.cjs.entry.js +26 -0
  49. package/dist/cjs/r-tab.cjs.entry.js +62 -0
  50. package/dist/cjs/r-tabs-list.cjs.entry.js +175 -0
  51. package/dist/cjs/r-tabs.cjs.entry.js +277 -0
  52. package/dist/cjs/r-textarea.cjs.entry.js +270 -0
  53. package/dist/cjs/r-toast-group.cjs.entry.js +46 -0
  54. package/dist/cjs/r-toast.cjs.entry.js +314 -0
  55. package/dist/cjs/style-observer-D9zSP9wP.js +1118 -0
  56. package/dist/cjs/theming-NqxjhVJS.js +109 -0
  57. package/dist/cjs/web-components.cjs.js +25 -0
  58. package/dist/collection/collection-manifest.json +60 -0
  59. package/dist/collection/components/accordion/accordion.css +24 -0
  60. package/dist/collection/components/accordion/accordion.js +90 -0
  61. package/dist/collection/components/accordion/exports.js +1 -0
  62. package/dist/collection/components/accordion-panel/accordion-panel.css +50 -0
  63. package/dist/collection/components/accordion-panel/accordion-panel.js +86 -0
  64. package/dist/collection/components/accordion-section/accordion-section.css +27 -0
  65. package/dist/collection/components/accordion-section/accordion-section.js +235 -0
  66. package/dist/collection/components/accordion-trigger/accordion-trigger.css +93 -0
  67. package/dist/collection/components/accordion-trigger/accordion-trigger.js +220 -0
  68. package/dist/collection/components/alert/alert.css +120 -0
  69. package/dist/collection/components/alert/alert.js +526 -0
  70. package/dist/collection/components/alert/exports.js +2 -0
  71. package/dist/collection/components/badge/badge.css +62 -0
  72. package/dist/collection/components/badge/badge.js +124 -0
  73. package/dist/collection/components/badge/exports.js +1 -0
  74. package/dist/collection/components/button/button.css +180 -0
  75. package/dist/collection/components/button/button.js +510 -0
  76. package/dist/collection/components/button/exports.js +5 -0
  77. package/dist/collection/components/checkbox/checkbox.css +116 -0
  78. package/dist/collection/components/checkbox/checkbox.js +803 -0
  79. package/dist/collection/components/checkbox-group/checkbox-group.css +48 -0
  80. package/dist/collection/components/checkbox-group/checkbox-group.js +744 -0
  81. package/dist/collection/components/design-system-devtools/design-system-devtools.js +59 -0
  82. package/dist/collection/components/dialog/dialog.css +125 -0
  83. package/dist/collection/components/dialog/dialog.js +345 -0
  84. package/dist/collection/components/dialog/exports.js +9 -0
  85. package/dist/collection/components/hint/exports.js +1 -0
  86. package/dist/collection/components/hint/hint.css +63 -0
  87. package/dist/collection/components/hint/hint.js +114 -0
  88. package/dist/collection/components/icon/all-kit.js +2 -0
  89. package/dist/collection/components/icon/data.js +90 -0
  90. package/dist/collection/components/icon/exports.js +7 -0
  91. package/dist/collection/components/icon/icon.css +105 -0
  92. package/dist/collection/components/icon/icon.js +379 -0
  93. package/dist/collection/components/icon/riverty-kit.js +2 -0
  94. package/dist/collection/components/icon-button/icon-button.css +105 -0
  95. package/dist/collection/components/icon-button/icon-button.js +343 -0
  96. package/dist/collection/components/illustration/data.js +112 -0
  97. package/dist/collection/components/illustration/exports.js +3 -0
  98. package/dist/collection/components/illustration/illustration.css +52 -0
  99. package/dist/collection/components/illustration/illustration.js +540 -0
  100. package/dist/collection/components/illustration/illustrations-ui-kit.js +2 -0
  101. package/dist/collection/components/input/exports.js +62 -0
  102. package/dist/collection/components/input/input.css +186 -0
  103. package/dist/collection/components/input/input.js +1861 -0
  104. package/dist/collection/components/input-code/exports.js +2 -0
  105. package/dist/collection/components/input-code/input-code.css +127 -0
  106. package/dist/collection/components/input-code/input-code.js +1165 -0
  107. package/dist/collection/components/input-date/exports.js +1 -0
  108. package/dist/collection/components/input-date/input-date.css +148 -0
  109. package/dist/collection/components/input-date/input-date.js +1254 -0
  110. package/dist/collection/components/input-password/exports.js +1 -0
  111. package/dist/collection/components/input-password/input-password.css +25 -0
  112. package/dist/collection/components/input-password/input-password.js +1077 -0
  113. package/dist/collection/components/input-phone-number/input-phone-number.css +61 -0
  114. package/dist/collection/components/input-phone-number/input-phone-number.js +893 -0
  115. package/dist/collection/components/label/label.css +38 -0
  116. package/dist/collection/components/label/label.js +47 -0
  117. package/dist/collection/components/list-item/list-item/exports.js +2 -0
  118. package/dist/collection/components/list-item/list-item/list-item.css +199 -0
  119. package/dist/collection/components/list-item/list-item/list-item.js +467 -0
  120. package/dist/collection/components/pagination/exports.js +3 -0
  121. package/dist/collection/components/pagination/pagination.css +118 -0
  122. package/dist/collection/components/pagination/pagination.js +814 -0
  123. package/dist/collection/components/panel/exports.js +1 -0
  124. package/dist/collection/components/panel/panel.css +192 -0
  125. package/dist/collection/components/panel/panel.js +473 -0
  126. package/dist/collection/components/popover/exports.js +3 -0
  127. package/dist/collection/components/popover/popover.css +251 -0
  128. package/dist/collection/components/popover/popover.js +741 -0
  129. package/dist/collection/components/popover-action/popover-action.css +21 -0
  130. package/dist/collection/components/popover-action/popover-action.js +150 -0
  131. package/dist/collection/components/popover-content/popover-content.css +9 -0
  132. package/dist/collection/components/popover-content/popover-content.js +130 -0
  133. package/dist/collection/components/popover-headline/popover-headline.css +7 -0
  134. package/dist/collection/components/popover-headline/popover-headline.js +28 -0
  135. package/dist/collection/components/popover-trigger/exports.js +1 -0
  136. package/dist/collection/components/popover-trigger/popover-trigger.css +4 -0
  137. package/dist/collection/components/popover-trigger/popover-trigger.js +163 -0
  138. package/dist/collection/components/progress-bar/progress-bar.css +41 -0
  139. package/dist/collection/components/progress-bar/progress-bar.js +71 -0
  140. package/dist/collection/components/radio-button/radio-button.css +126 -0
  141. package/dist/collection/components/radio-button/radio-button.js +559 -0
  142. package/dist/collection/components/radio-button-description/radio-button-description.css +5 -0
  143. package/dist/collection/components/radio-button-description/radio-button-description.js +22 -0
  144. package/dist/collection/components/radio-button-leading/radio-button-leading.css +3 -0
  145. package/dist/collection/components/radio-button-leading/radio-button-leading.js +22 -0
  146. package/dist/collection/components/radio-button-title/radio-button-title.css +8 -0
  147. package/dist/collection/components/radio-button-title/radio-button-title.js +22 -0
  148. package/dist/collection/components/radio-button-trailing/radio-button-trailing.css +6 -0
  149. package/dist/collection/components/radio-button-trailing/radio-button-trailing.js +22 -0
  150. package/dist/collection/components/radio-group/exports.js +1 -0
  151. package/dist/collection/components/radio-group/radio-group.css +65 -0
  152. package/dist/collection/components/radio-group/radio-group.js +1023 -0
  153. package/dist/collection/components/select/exports.js +1 -0
  154. package/dist/collection/components/select/select.css +247 -0
  155. package/dist/collection/components/select/select.js +2038 -0
  156. package/dist/collection/components/select-option/select-option.css +93 -0
  157. package/dist/collection/components/select-option/select-option.js +459 -0
  158. package/dist/collection/components/skip-link/exports.js +1 -0
  159. package/dist/collection/components/skip-link/skip-link.css +37 -0
  160. package/dist/collection/components/skip-link/skip-link.js +52 -0
  161. package/dist/collection/components/stepper/stepper.css +25 -0
  162. package/dist/collection/components/stepper/stepper.js +216 -0
  163. package/dist/collection/components/stepper-item/stepper-item.css +62 -0
  164. package/dist/collection/components/stepper-item/stepper-item.js +171 -0
  165. package/dist/collection/components/tab/tab.css +81 -0
  166. package/dist/collection/components/tab/tab.js +169 -0
  167. package/dist/collection/components/tab-panel/tab-panel.css +19 -0
  168. package/dist/collection/components/tab-panel/tab-panel.js +72 -0
  169. package/dist/collection/components/tabs/tabs.css +4 -0
  170. package/dist/collection/components/tabs/tabs.js +345 -0
  171. package/dist/collection/components/tabs-list/exports.js +2 -0
  172. package/dist/collection/components/tabs-list/tabs-list.css +58 -0
  173. package/dist/collection/components/tabs-list/tabs-list.js +294 -0
  174. package/dist/collection/components/textarea/exports.js +8 -0
  175. package/dist/collection/components/textarea/textarea.css +148 -0
  176. package/dist/collection/components/textarea/textarea.js +1055 -0
  177. package/dist/collection/components/toast/exports.js +3 -0
  178. package/dist/collection/components/toast/toast.css +179 -0
  179. package/dist/collection/components/toast/toast.js +820 -0
  180. package/dist/collection/components/toast-group/exports.js +1 -0
  181. package/dist/collection/components/toast-group/toast-group.css +37 -0
  182. package/dist/collection/components/toast-group/toast-group.js +49 -0
  183. package/dist/collection/components/tooltip/exports.js +3 -0
  184. package/dist/collection/components/tooltip/tooltip.css +77 -0
  185. package/dist/collection/components/tooltip/tooltip.js +525 -0
  186. package/dist/collection/index.js +2 -0
  187. package/dist/collection/utils/focusable.js +24 -0
  188. package/dist/collection/utils/formData.js +40 -0
  189. package/dist/collection/utils/theming.js +103 -0
  190. package/dist/collection/utils/version-checker.js +33 -0
  191. package/dist/esm/app-globals-DQuL1Twl.js +3 -0
  192. package/dist/esm/focusable-ky1yonnS.js +26 -0
  193. package/dist/esm/formData-DvLT8-y3.js +42 -0
  194. package/dist/esm/index-CTxpqopm.js +1806 -0
  195. package/dist/esm/index.js +35 -0
  196. package/dist/esm/loader.js +11 -0
  197. package/dist/esm/r-accordion-panel.entry.js +22 -0
  198. package/dist/esm/r-accordion-section.entry.js +123 -0
  199. package/dist/esm/r-accordion-trigger.entry.js +91 -0
  200. package/dist/esm/r-accordion.entry.js +18 -0
  201. package/dist/esm/r-alert.entry.js +144 -0
  202. package/dist/esm/r-badge.entry.js +39 -0
  203. package/dist/esm/r-button.entry.js +147 -0
  204. package/dist/esm/r-checkbox-group.entry.js +235 -0
  205. package/dist/esm/r-checkbox.entry.js +272 -0
  206. package/dist/esm/r-design-system-devtools.entry.js +29 -0
  207. package/dist/esm/r-dialog.entry.js +105 -0
  208. package/dist/esm/r-hint_2.entry.js +47 -0
  209. package/dist/esm/r-icon-button_2.entry.js +489 -0
  210. package/dist/esm/r-icon.entry.js +282 -0
  211. package/dist/esm/r-illustration.entry.js +394 -0
  212. package/dist/esm/r-input-code.entry.js +435 -0
  213. package/dist/esm/r-input-date.entry.js +522 -0
  214. package/dist/esm/r-input-password.entry.js +268 -0
  215. package/dist/esm/r-input-phone-number.entry.js +2523 -0
  216. package/dist/esm/r-input.entry.js +616 -0
  217. package/dist/esm/r-list-item.entry.js +107 -0
  218. package/dist/esm/r-pagination.entry.js +318 -0
  219. package/dist/esm/r-panel.entry.js +182 -0
  220. package/dist/esm/r-popover-action.entry.js +78 -0
  221. package/dist/esm/r-popover-content.entry.js +60 -0
  222. package/dist/esm/r-popover-headline.entry.js +26 -0
  223. package/dist/esm/r-popover-trigger.entry.js +68 -0
  224. package/dist/esm/r-popover.entry.js +345 -0
  225. package/dist/esm/r-progress-bar.entry.js +23 -0
  226. package/dist/esm/r-radio-button-description.entry.js +16 -0
  227. package/dist/esm/r-radio-button-leading.entry.js +16 -0
  228. package/dist/esm/r-radio-button-title.entry.js +16 -0
  229. package/dist/esm/r-radio-button-trailing.entry.js +16 -0
  230. package/dist/esm/r-radio-button.entry.js +137 -0
  231. package/dist/esm/r-radio-group.entry.js +426 -0
  232. package/dist/esm/r-select-option.entry.js +128 -0
  233. package/dist/esm/r-select.entry.js +1105 -0
  234. package/dist/esm/r-skip-link.entry.js +17 -0
  235. package/dist/esm/r-stepper-item.entry.js +40 -0
  236. package/dist/esm/r-stepper.entry.js +97 -0
  237. package/dist/esm/r-tab-panel.entry.js +24 -0
  238. package/dist/esm/r-tab.entry.js +60 -0
  239. package/dist/esm/r-tabs-list.entry.js +173 -0
  240. package/dist/esm/r-tabs.entry.js +275 -0
  241. package/dist/esm/r-textarea.entry.js +268 -0
  242. package/dist/esm/r-toast-group.entry.js +44 -0
  243. package/dist/esm/r-toast.entry.js +312 -0
  244. package/dist/esm/style-observer-4Uv3PpKT.js +1116 -0
  245. package/dist/esm/theming-DD2IrjpG.js +106 -0
  246. package/dist/esm/web-components.js +21 -0
  247. package/dist/index.cjs.js +1 -0
  248. package/dist/index.js +1 -0
  249. package/dist/types/components/accordion/accordion.d.ts +27 -0
  250. package/dist/types/components/accordion/exports.d.ts +2 -0
  251. package/dist/types/components/accordion-panel/accordion-panel.d.ts +10 -0
  252. package/dist/types/components/accordion-section/accordion-section.d.ts +36 -0
  253. package/dist/types/components/accordion-trigger/accordion-trigger.d.ts +33 -0
  254. package/dist/types/components/alert/alert.d.ts +67 -0
  255. package/dist/types/components/alert/exports.d.ts +4 -0
  256. package/dist/types/components/badge/badge.d.ts +26 -0
  257. package/dist/types/components/badge/exports.d.ts +2 -0
  258. package/dist/types/components/button/button.d.ts +89 -0
  259. package/dist/types/components/button/exports.d.ts +10 -0
  260. package/dist/types/components/checkbox/checkbox.d.ts +138 -0
  261. package/dist/types/components/checkbox-group/checkbox-group.d.ts +124 -0
  262. package/dist/types/components/design-system-devtools/design-system-devtools.d.ts +15 -0
  263. package/dist/types/components/dialog/dialog.d.ts +69 -0
  264. package/dist/types/components/dialog/exports.d.ts +10 -0
  265. package/dist/types/components/hint/exports.d.ts +2 -0
  266. package/dist/types/components/hint/hint.d.ts +20 -0
  267. package/dist/types/components/icon/all-kit.d.ts +2890 -0
  268. package/dist/types/components/icon/data.d.ts +145 -0
  269. package/dist/types/components/icon/exports.d.ts +152 -0
  270. package/dist/types/components/icon/icon.d.ts +37 -0
  271. package/dist/types/components/icon/riverty-kit.d.ts +139 -0
  272. package/dist/types/components/icon-button/icon-button.d.ts +69 -0
  273. package/dist/types/components/illustration/data.d.ts +52 -0
  274. package/dist/types/components/illustration/exports.d.ts +23 -0
  275. package/dist/types/components/illustration/illustration.d.ts +51 -0
  276. package/dist/types/components/illustration/illustrations-ui-kit.d.ts +21 -0
  277. package/dist/types/components/input/exports.d.ts +55 -0
  278. package/dist/types/components/input/input.d.ts +365 -0
  279. package/dist/types/components/input-code/exports.d.ts +4 -0
  280. package/dist/types/components/input-code/input-code.d.ts +177 -0
  281. package/dist/types/components/input-date/exports.d.ts +5 -0
  282. package/dist/types/components/input-date/input-date.d.ts +174 -0
  283. package/dist/types/components/input-password/exports.d.ts +1 -0
  284. package/dist/types/components/input-password/input-password.d.ts +186 -0
  285. package/dist/types/components/input-phone-number/input-phone-number.d.ts +130 -0
  286. package/dist/types/components/label/label.d.ts +9 -0
  287. package/dist/types/components/list-item/list-item/exports.d.ts +4 -0
  288. package/dist/types/components/list-item/list-item/list-item.d.ts +61 -0
  289. package/dist/types/components/pagination/exports.d.ts +6 -0
  290. package/dist/types/components/pagination/pagination.d.ts +140 -0
  291. package/dist/types/components/panel/exports.d.ts +2 -0
  292. package/dist/types/components/panel/panel.d.ts +56 -0
  293. package/dist/types/components/popover/exports.d.ts +6 -0
  294. package/dist/types/components/popover/popover.d.ts +131 -0
  295. package/dist/types/components/popover-action/popover-action.d.ts +24 -0
  296. package/dist/types/components/popover-content/popover-content.d.ts +22 -0
  297. package/dist/types/components/popover-headline/popover-headline.d.ts +6 -0
  298. package/dist/types/components/popover-trigger/exports.d.ts +2 -0
  299. package/dist/types/components/popover-trigger/popover-trigger.d.ts +31 -0
  300. package/dist/types/components/progress-bar/progress-bar.d.ts +10 -0
  301. package/dist/types/components/radio-button/radio-button.d.ts +92 -0
  302. package/dist/types/components/radio-button-description/radio-button-description.d.ts +8 -0
  303. package/dist/types/components/radio-button-leading/radio-button-leading.d.ts +8 -0
  304. package/dist/types/components/radio-button-title/radio-button-title.d.ts +8 -0
  305. package/dist/types/components/radio-button-trailing/radio-button-trailing.d.ts +8 -0
  306. package/dist/types/components/radio-group/exports.d.ts +2 -0
  307. package/dist/types/components/radio-group/radio-group.d.ts +179 -0
  308. package/dist/types/components/select/exports.d.ts +2 -0
  309. package/dist/types/components/select/select.d.ts +319 -0
  310. package/dist/types/components/select-option/select-option.d.ts +113 -0
  311. package/dist/types/components/skip-link/exports.d.ts +2 -0
  312. package/dist/types/components/skip-link/skip-link.d.ts +6 -0
  313. package/dist/types/components/stepper/stepper.d.ts +22 -0
  314. package/dist/types/components/stepper-item/stepper-item.d.ts +23 -0
  315. package/dist/types/components/tab/tab.d.ts +23 -0
  316. package/dist/types/components/tab-panel/tab-panel.d.ts +7 -0
  317. package/dist/types/components/tabs/tabs.d.ts +49 -0
  318. package/dist/types/components/tabs-list/exports.d.ts +4 -0
  319. package/dist/types/components/tabs-list/tabs-list.d.ts +41 -0
  320. package/dist/types/components/textarea/exports.d.ts +2 -0
  321. package/dist/types/components/textarea/textarea.d.ts +158 -0
  322. package/dist/types/components/toast/exports.d.ts +6 -0
  323. package/dist/types/components/toast/toast.d.ts +146 -0
  324. package/dist/types/components/toast-group/exports.d.ts +2 -0
  325. package/dist/types/components/toast-group/toast-group.d.ts +9 -0
  326. package/dist/types/components/tooltip/exports.d.ts +6 -0
  327. package/dist/types/components/tooltip/tooltip.d.ts +132 -0
  328. package/dist/types/components.d.ts +6347 -0
  329. package/dist/types/index.d.ts +1 -0
  330. package/dist/types/stencil-public-runtime.d.ts +1732 -0
  331. package/dist/types/types/jsx-shim.d.ts +13 -0
  332. package/dist/types/types/style-observer.d.ts +20 -0
  333. package/dist/types/utils/focusable.d.ts +1 -0
  334. package/dist/types/utils/formData.d.ts +1 -0
  335. package/dist/types/utils/theming.d.ts +15 -0
  336. package/dist/types/utils/version-checker.d.ts +1 -0
  337. package/dist/web-components/index.esm.js +1 -0
  338. package/dist/web-components/p-01aefcf0.entry.js +1 -0
  339. package/dist/web-components/p-05cb55db.entry.js +1 -0
  340. package/dist/web-components/p-0a34d33b.entry.js +1 -0
  341. package/dist/web-components/p-11b22309.entry.js +1 -0
  342. package/dist/web-components/p-2d878934.entry.js +1 -0
  343. package/dist/web-components/p-325dbedf.entry.js +1 -0
  344. package/dist/web-components/p-34b9457b.entry.js +1 -0
  345. package/dist/web-components/p-36abd05a.entry.js +1 -0
  346. package/dist/web-components/p-386d1ef9.entry.js +1 -0
  347. package/dist/web-components/p-3d67b77b.entry.js +1 -0
  348. package/dist/web-components/p-4Uv3PpKT.js +1 -0
  349. package/dist/web-components/p-4b12fbc0.entry.js +1 -0
  350. package/dist/web-components/p-52f7b505.entry.js +1 -0
  351. package/dist/web-components/p-55600d47.entry.js +1 -0
  352. package/dist/web-components/p-57ebc474.entry.js +1 -0
  353. package/dist/web-components/p-57edf7f4.entry.js +1 -0
  354. package/dist/web-components/p-69a24fe2.entry.js +1 -0
  355. package/dist/web-components/p-6d92648c.entry.js +1 -0
  356. package/dist/web-components/p-75052597.entry.js +1 -0
  357. package/dist/web-components/p-7b2c5b63.entry.js +1 -0
  358. package/dist/web-components/p-7bf463ff.entry.js +1 -0
  359. package/dist/web-components/p-838e43d4.entry.js +1 -0
  360. package/dist/web-components/p-8c16d038.entry.js +1 -0
  361. package/dist/web-components/p-8f8313de.entry.js +1 -0
  362. package/dist/web-components/p-9026d5a2.entry.js +1 -0
  363. package/dist/web-components/p-95396b5c.entry.js +1 -0
  364. package/dist/web-components/p-9c31c7c4.entry.js +1 -0
  365. package/dist/web-components/p-9c415b9c.entry.js +1 -0
  366. package/dist/web-components/p-9f583ed1.entry.js +1 -0
  367. package/dist/web-components/p-B9rsR6cQ.js +1 -0
  368. package/dist/web-components/p-CTxpqopm.js +2 -0
  369. package/dist/web-components/p-DQuL1Twl.js +1 -0
  370. package/dist/web-components/p-DvLT8-y3.js +1 -0
  371. package/dist/web-components/p-b303b2cc.entry.js +1 -0
  372. package/dist/web-components/p-b8df041d.entry.js +1 -0
  373. package/dist/web-components/p-bc30844f.entry.js +1 -0
  374. package/dist/web-components/p-c4a77a65.entry.js +1 -0
  375. package/dist/web-components/p-c549addf.entry.js +1 -0
  376. package/dist/web-components/p-c65df19f.entry.js +1 -0
  377. package/dist/web-components/p-c80a5541.entry.js +1 -0
  378. package/dist/web-components/p-c96ee61a.entry.js +1 -0
  379. package/dist/web-components/p-cf3f044d.entry.js +1 -0
  380. package/dist/web-components/p-d1412932.entry.js +1 -0
  381. package/dist/web-components/p-d9778cfa.entry.js +1 -0
  382. package/dist/web-components/p-dbe4ccb8.entry.js +1 -0
  383. package/dist/web-components/p-ded50850.entry.js +1 -0
  384. package/dist/web-components/p-e5be895b.entry.js +1 -0
  385. package/dist/web-components/p-e6b34c1e.entry.js +1 -0
  386. package/dist/web-components/p-ec3c4800.entry.js +1 -0
  387. package/dist/web-components/p-f670fd87.entry.js +1 -0
  388. package/dist/web-components/p-f867e4c3.entry.js +1 -0
  389. package/dist/web-components/p-ff6b1b8f.entry.js +1 -0
  390. package/dist/web-components/p-ky1yonnS.js +1 -0
  391. package/dist/web-components/web-components.esm.js +1 -0
  392. package/loader/cdn.js +1 -0
  393. package/loader/index.cjs.js +1 -0
  394. package/loader/index.d.ts +24 -0
  395. package/loader/index.es2017.js +1 -0
  396. package/loader/index.js +2 -0
  397. package/package.json +1 -1
@@ -0,0 +1,2890 @@
1
+ declare const data: {
2
+ "3d-coordinate-axis": string;
3
+ "3d-move": string;
4
+ "3d-perspective-grid": string;
5
+ "3d-rotate-1": string;
6
+ "3d-rotate-2": string;
7
+ "3d-rotate-x-axis": string;
8
+ "3d-rotate-y-axis": string;
9
+ "3d-rotate-z-axis": string;
10
+ "3d-scale": string;
11
+ "account-setting": string;
12
+ "add-1": string;
13
+ "add-2": string;
14
+ "add-alert-clock": string;
15
+ "add-bell-notification": string;
16
+ "add-bookmark": string;
17
+ "add-circle": string;
18
+ "add-layer-1": string;
19
+ "add-layer-2": string;
20
+ "add-pdf": string;
21
+ "add-reaction-sticker-emoji": string;
22
+ "add-square": string;
23
+ "add-task-reminder": string;
24
+ "add-to-playlist": string;
25
+ "address-field": string;
26
+ adobe: string;
27
+ "affordable-and-clean-energy": string;
28
+ "ai-browser-robot": string;
29
+ "ai-browser-spark": string;
30
+ "ai-chat-bot": string;
31
+ "ai-chat-robot": string;
32
+ "ai-chat-spark": string;
33
+ "ai-chip-2": string;
34
+ "ai-chip-robot": string;
35
+ "ai-chip-spark": string;
36
+ "ai-cloud-robot": string;
37
+ "ai-cloud-spark": string;
38
+ "ai-database-robot": string;
39
+ "ai-database-spark": string;
40
+ "ai-edit-robot": string;
41
+ "ai-edit-spark": string;
42
+ "ai-email-generator-robot": string;
43
+ "ai-email-generator-spark": string;
44
+ "ai-file-robot": string;
45
+ "ai-file-spark": string;
46
+ "ai-folder-robot": string;
47
+ "ai-folder-spark": string;
48
+ "ai-gaming-robot": string;
49
+ "ai-gaming-spark": string;
50
+ "ai-generate-landscape-image-robot": string;
51
+ "ai-generate-landscape-image-spark": string;
52
+ "ai-generate-music-robot": string;
53
+ "ai-generate-music-spark": string;
54
+ "ai-generate-portrait-image-robot": string;
55
+ "ai-generate-portrait-image-spark": string;
56
+ "ai-generate-text-robot": string;
57
+ "ai-generate-text-spark": string;
58
+ "ai-generate-variation-robot": string;
59
+ "ai-generate-variation-spark": string;
60
+ "ai-generate-video-camera-robot": string;
61
+ "ai-generate-video-camera-spark": string;
62
+ "ai-generate-video-robot": string;
63
+ "ai-generate-video-spark": string;
64
+ "ai-generate-voice-robot-1": string;
65
+ "ai-generate-voice-robot-2": string;
66
+ "ai-generate-voice-spark-1": string;
67
+ "ai-generate-voice-spark-2": string;
68
+ "ai-health-robot": string;
69
+ "ai-health-spark": string;
70
+ "ai-map-generating-robot": string;
71
+ "ai-map-generating-spark": string;
72
+ "ai-navigation-robot": string;
73
+ "ai-navigation-spark": string;
74
+ "ai-network-robot": string;
75
+ "ai-network-spark": string;
76
+ "ai-new-robot": string;
77
+ "ai-new-spark": string;
78
+ "ai-prompt-robot": string;
79
+ "ai-prompt-spark": string;
80
+ "ai-redo-robot": string;
81
+ "ai-redo-spark": string;
82
+ "ai-scanner-robot": string;
83
+ "ai-scanner-spark": string;
84
+ "ai-science-robot": string;
85
+ "ai-science-spark": string;
86
+ "ai-settings-robot": string;
87
+ "ai-settings-spark": string;
88
+ "ai-tagging-robot": string;
89
+ "ai-tagging-spark": string;
90
+ "ai-technology-robot": string;
91
+ "ai-technology-spark": string;
92
+ "ai-tools-robot": string;
93
+ "ai-tools-spark": string;
94
+ "ai-upscale-robot": string;
95
+ "ai-upscale-spark": string;
96
+ "ai-vehicle-robot-1": string;
97
+ "ai-vehicle-spark-1": string;
98
+ airbnb: string;
99
+ "airplane-disabled": string;
100
+ "airplane-enabled": string;
101
+ airplane: string;
102
+ "airport-arrival-time": string;
103
+ "airport-plane-transit": string;
104
+ "airport-plane": string;
105
+ "airport-security": string;
106
+ airship: string;
107
+ "alarm-clock": string;
108
+ alien: string;
109
+ "align-back-1": string;
110
+ "align-back-2": string;
111
+ "align-bottom-1": string;
112
+ "align-bottom-2": string;
113
+ "align-bottom-horizontal": string;
114
+ "align-bottom-vertical": string;
115
+ "align-center": string;
116
+ "align-front-1": string;
117
+ "align-front-2": string;
118
+ "align-horizontal-center-1": string;
119
+ "align-horizontal-center-2": string;
120
+ "align-key-object": string;
121
+ "align-left-1": string;
122
+ "align-left-2": string;
123
+ "align-left-horizontal": string;
124
+ "align-left-vertical": string;
125
+ "align-left": string;
126
+ "align-margins-horizontal": string;
127
+ "align-margins-vertical": string;
128
+ "align-object-bottom": string;
129
+ "align-object-horizontal": string;
130
+ "align-object-left": string;
131
+ "align-object-right": string;
132
+ "align-object-top": string;
133
+ "align-object-vertical": string;
134
+ "align-page": string;
135
+ "align-right-1": string;
136
+ "align-right-2": string;
137
+ "align-right-horizontal": string;
138
+ "align-right-vertical": string;
139
+ "align-right": string;
140
+ "align-selection": string;
141
+ "align-text-bottom": string;
142
+ "align-text-center": string;
143
+ "align-text-top": string;
144
+ "align-top-1": string;
145
+ "align-top-2": string;
146
+ "align-top-horizontal": string;
147
+ "align-top-vertical": string;
148
+ "align-vertical-center-1": string;
149
+ "align-vertical-center-2": string;
150
+ "all-caps": string;
151
+ alt: string;
152
+ amazon: string;
153
+ ambulance: string;
154
+ ampersand: string;
155
+ anchor: string;
156
+ android: string;
157
+ "angled-moon": string;
158
+ "annoncement-megaphone": string;
159
+ "app-store": string;
160
+ "apple-logo": string;
161
+ apple: string;
162
+ "application-add": string;
163
+ "application-drawer": string;
164
+ "application-remove": string;
165
+ "application-widget": string;
166
+ "arabic-alphabet": string;
167
+ "archive-box": string;
168
+ "archive-document": string;
169
+ "archive-drawer": string;
170
+ "arrow-bend-down-left-1": string;
171
+ "arrow-bend-down-left-2": string;
172
+ "arrow-bend-down-left-large-1": string;
173
+ "arrow-bend-down-left-large-2": string;
174
+ "arrow-bend-down-right-1": string;
175
+ "arrow-bend-down-right-2": string;
176
+ "arrow-bend-down-right-large-1": string;
177
+ "arrow-bend-down-right-large-2": string;
178
+ "arrow-bend-left-down-1": string;
179
+ "arrow-bend-left-down-2": string;
180
+ "arrow-bend-left-down-large-1": string;
181
+ "arrow-bend-left-down-large-2": string;
182
+ "arrow-bend-left-up-1": string;
183
+ "arrow-bend-left-up-2": string;
184
+ "arrow-bend-left-up-large-1": string;
185
+ "arrow-bend-left-up-large-2": string;
186
+ "arrow-bend-right-down-1": string;
187
+ "arrow-bend-right-down-2": string;
188
+ "arrow-bend-right-down-large-1": string;
189
+ "arrow-bend-right-down-large-2": string;
190
+ "arrow-bend-right-up-1": string;
191
+ "arrow-bend-right-up-2": string;
192
+ "arrow-bend-right-up-large-1": string;
193
+ "arrow-bend-right-up-large-2": string;
194
+ "arrow-bend-up-left-1": string;
195
+ "arrow-bend-up-left-2": string;
196
+ "arrow-bend-up-left-large-1": string;
197
+ "arrow-bend-up-left-large-2": string;
198
+ "arrow-bend-up-right-1": string;
199
+ "arrow-bend-up-right-2": string;
200
+ "arrow-bend-up-right-large-1": string;
201
+ "arrow-bend-up-right-large-2": string;
202
+ "arrow-bottom-left-corner-large": string;
203
+ "arrow-bottom-left-corner": string;
204
+ "arrow-bottom-right-corner-large": string;
205
+ "arrow-bottom-right-corner": string;
206
+ "arrow-crossover-down": string;
207
+ "arrow-crossover-left": string;
208
+ "arrow-crossover-right": string;
209
+ "arrow-crossover-up": string;
210
+ "arrow-cursor-1": string;
211
+ "arrow-cursor-2": string;
212
+ "arrow-cursor-click-1": string;
213
+ "arrow-cursor-click-2": string;
214
+ "arrow-cursor-move": string;
215
+ "arrow-curvy-both-direction-1": string;
216
+ "arrow-curvy-both-direction-2": string;
217
+ "arrow-curvy-left": string;
218
+ "arrow-curvy-right": string;
219
+ "arrow-curvy-up-down-1": string;
220
+ "arrow-curvy-up-down-2": string;
221
+ "arrow-diagonal-1": string;
222
+ "arrow-diagonal-2": string;
223
+ "arrow-diagonal-bottom-left-large": string;
224
+ "arrow-diagonal-bottom-left-square": string;
225
+ "arrow-diagonal-bottom-left": string;
226
+ "arrow-diagonal-bottom-right-large": string;
227
+ "arrow-diagonal-bottom-right": string;
228
+ "arrow-diagonal-large-1": string;
229
+ "arrow-diagonal-large-2": string;
230
+ "arrow-diagonal-top-left-large": string;
231
+ "arrow-diagonal-top-left": string;
232
+ "arrow-diagonal-top-right-large": string;
233
+ "arrow-diagonal-top-right-square": string;
234
+ "arrow-diagonal-top-right": string;
235
+ "arrow-down-1": string;
236
+ "arrow-down-2": string;
237
+ "arrow-down-3": string;
238
+ "arrow-down-4": string;
239
+ "arrow-down-circle-1": string;
240
+ "arrow-down-circle-2": string;
241
+ "arrow-down-circle-3": string;
242
+ "arrow-down-circle-4": string;
243
+ "arrow-down-dashed-square": string;
244
+ "arrow-down-double": string;
245
+ "arrow-down-large-1": string;
246
+ "arrow-down-large-2": string;
247
+ "arrow-down-square": string;
248
+ "arrow-expand-diagonal-1": string;
249
+ "arrow-expand-diagonal-2": string;
250
+ "arrow-expand-diagonal-3": string;
251
+ "arrow-expand-diagonal-4": string;
252
+ "arrow-expand-diagonal-large-1": string;
253
+ "arrow-expand-diagonal-large-2": string;
254
+ "arrow-expand": string;
255
+ "arrow-horizontal-large": string;
256
+ "arrow-horizontal": string;
257
+ "arrow-infinite-loop": string;
258
+ "arrow-left-1": string;
259
+ "arrow-left-2": string;
260
+ "arrow-left-3": string;
261
+ "arrow-left-4": string;
262
+ "arrow-left-circle-1": string;
263
+ "arrow-left-circle-2": string;
264
+ "arrow-left-circle-3": string;
265
+ "arrow-left-circle-4": string;
266
+ "arrow-left-double": string;
267
+ "arrow-left-large-1": string;
268
+ "arrow-left-large-2": string;
269
+ "arrow-left-square": string;
270
+ "arrow-move": string;
271
+ "arrow-reload-horizontal-1": string;
272
+ "arrow-reload-horizontal-2": string;
273
+ "arrow-reload-vertical-1": string;
274
+ "arrow-reload-vertical-2": string;
275
+ "arrow-right-1": string;
276
+ "arrow-right-2": string;
277
+ "arrow-right-3": string;
278
+ "arrow-right-4": string;
279
+ "arrow-right-circle-1": string;
280
+ "arrow-right-circle-2": string;
281
+ "arrow-right-circle-3": string;
282
+ "arrow-right-circle-4": string;
283
+ "arrow-right-double": string;
284
+ "arrow-right-large-1": string;
285
+ "arrow-right-large-2": string;
286
+ "arrow-right-square": string;
287
+ "arrow-roadmap": string;
288
+ "arrow-round-left": string;
289
+ "arrow-round-right": string;
290
+ "arrow-shrink-diagonal-1": string;
291
+ "arrow-shrink-diagonal-2": string;
292
+ "arrow-shrink-diagonal-large-1": string;
293
+ "arrow-shrink-diagonal-large-2": string;
294
+ "arrow-shrink": string;
295
+ "arrow-top-left-corner-large": string;
296
+ "arrow-top-left-corner": string;
297
+ "arrow-top-right-corner-large": string;
298
+ "arrow-top-right-corner": string;
299
+ "arrow-transfer-diagonal-1": string;
300
+ "arrow-transfer-diagonal-2": string;
301
+ "arrow-transfer-diagonal-3": string;
302
+ "arrow-transfer-diagonal-circle-1": string;
303
+ "arrow-transfer-diagonal-circle-2": string;
304
+ "arrow-transfer-diagonal-large-1": string;
305
+ "arrow-transfer-diagonal-large-2": string;
306
+ "arrow-transfer-diagonal-large-3": string;
307
+ "arrow-transfer-diagonal-square-1": string;
308
+ "arrow-transfer-diagonal-square-2": string;
309
+ "arrow-transfer-horizontal-1": string;
310
+ "arrow-transfer-horizontal-2": string;
311
+ "arrow-transfer-horizontal-circle": string;
312
+ "arrow-transfer-horizontal-large-1": string;
313
+ "arrow-transfer-horizontal-large-2": string;
314
+ "arrow-transfer-horizontal-square": string;
315
+ "arrow-transfer-vertical-1": string;
316
+ "arrow-transfer-vertical-2": string;
317
+ "arrow-transfer-vertical-circle": string;
318
+ "arrow-transfer-vertical-large-1": string;
319
+ "arrow-transfer-vertical-large-2": string;
320
+ "arrow-transfer-vertical-square": string;
321
+ "arrow-transfrer-vertical-circle": string;
322
+ "arrow-triangle-loop": string;
323
+ "arrow-turn-backward-large": string;
324
+ "arrow-turn-backward": string;
325
+ "arrow-turn-down-large": string;
326
+ "arrow-turn-down": string;
327
+ "arrow-turn-forward-large": string;
328
+ "arrow-turn-forward": string;
329
+ "arrow-turn-up-large": string;
330
+ "arrow-turn-up": string;
331
+ "arrow-up-1": string;
332
+ "arrow-up-2": string;
333
+ "arrow-up-3": string;
334
+ "arrow-up-4": string;
335
+ "arrow-up-circle-1": string;
336
+ "arrow-up-circle-2": string;
337
+ "arrow-up-circle-3": string;
338
+ "arrow-up-circle-4": string;
339
+ "arrow-up-dashed-square": string;
340
+ "arrow-up-double": string;
341
+ "arrow-up-large-1": string;
342
+ "arrow-up-large-2": string;
343
+ "arrow-up-square": string;
344
+ "arrow-vertical-large": string;
345
+ "arrow-vertical": string;
346
+ "artificial-intelligence-brain-chip": string;
347
+ "artificial-intelligence-brain": string;
348
+ "artificial-intelligence-robot": string;
349
+ "artificial-intelligence-spark": string;
350
+ "artist-song": string;
351
+ "ascending-alphabetical-order": string;
352
+ "ascending-number-order": string;
353
+ "asterisk-1": string;
354
+ "asterisk-2": string;
355
+ "asterisk-square": string;
356
+ astronaut: string;
357
+ atom: string;
358
+ attribution: string;
359
+ "auto-correction-check": string;
360
+ "auto-flash": string;
361
+ "baby-botlle": string;
362
+ "back-camera-1": string;
363
+ "back-camera-2": string;
364
+ backpack: string;
365
+ "bacteria-virus-cells-biology": string;
366
+ "bag-2": string;
367
+ "bag-bitcoin": string;
368
+ "bag-dollar": string;
369
+ "bag-ethereum": string;
370
+ "bag-pound": string;
371
+ "bag-rupee": string;
372
+ "bag-share": string;
373
+ "bag-suitcase-1": string;
374
+ "bag-suitcase-2": string;
375
+ "bag-suitcase-3": string;
376
+ "bag-suitcase-4": string;
377
+ "bag-yen": string;
378
+ bag: string;
379
+ "baggage-airplane": string;
380
+ "baggage-lockers": string;
381
+ "baggage-scale": string;
382
+ baggage: string;
383
+ baguette: string;
384
+ ball: string;
385
+ balloon: string;
386
+ bandage: string;
387
+ bank: string;
388
+ "bar-code": string;
389
+ "barbeque-pot": string;
390
+ barn: string;
391
+ "bath-tub": string;
392
+ "battery-alert-1": string;
393
+ "battery-charging": string;
394
+ "battery-empty-1": string;
395
+ "battery-empty-2": string;
396
+ "battery-full-1": string;
397
+ "battery-full-3": string;
398
+ "battery-low-1": string;
399
+ "battery-low-3": string;
400
+ "battery-medium-1": string;
401
+ "battery-medium-3": string;
402
+ beach: string;
403
+ beanie: string;
404
+ bear: string;
405
+ "beer-mug": string;
406
+ "beer-pitch": string;
407
+ behance: string;
408
+ "bell-notification": string;
409
+ "bell-set-timer": string;
410
+ bell: string;
411
+ "bevel-corner": string;
412
+ "bicycle-bike": string;
413
+ "bigger-text-plus-size": string;
414
+ "bill-1": string;
415
+ "bill-2": string;
416
+ "bill-4": string;
417
+ "bill-cashless": string;
418
+ "bill-dollar-1": string;
419
+ "bill-dollar-2": string;
420
+ "bill-dollar-4": string;
421
+ "bill-send": string;
422
+ "binance-circle": string;
423
+ "binary-code": string;
424
+ "binder-clip": string;
425
+ binoculars: string;
426
+ bird: string;
427
+ "bitcoin-circle-1": string;
428
+ bitcoin: string;
429
+ "blank-calendar": string;
430
+ "blank-notepad": string;
431
+ "bleed-marks": string;
432
+ "block-1": string;
433
+ "block-2": string;
434
+ "block-bell-notification": string;
435
+ "block-link": string;
436
+ blockquote: string;
437
+ blogger: string;
438
+ "blood-bag-donation": string;
439
+ "blood-donate-drop": string;
440
+ "blood-drop-donation": string;
441
+ "bluetooth-disabled": string;
442
+ "bluetooth-searching": string;
443
+ bluetooth: string;
444
+ board: string;
445
+ "bold-text": string;
446
+ bomb: string;
447
+ bone: string;
448
+ "book-1": string;
449
+ "book-2": string;
450
+ "book-reading": string;
451
+ bookmark: string;
452
+ "border-bottom": string;
453
+ "border-center": string;
454
+ "border-corner": string;
455
+ "border-frame": string;
456
+ "border-full": string;
457
+ "border-horizontal": string;
458
+ "border-left": string;
459
+ "border-none": string;
460
+ "border-right": string;
461
+ "border-top": string;
462
+ "border-vertical": string;
463
+ "bottom-left-corner": string;
464
+ "bottom-right-corner": string;
465
+ "bow-tie": string;
466
+ bow: string;
467
+ "bowl-chop-stick": string;
468
+ "box-sign": string;
469
+ "box-waterproof": string;
470
+ "braces-circle": string;
471
+ bracket: string;
472
+ "braille-blind": string;
473
+ "brain-cognitive": string;
474
+ brain: string;
475
+ "briefcase-dollar": string;
476
+ "brightness-1": string;
477
+ "brightness-2": string;
478
+ "brightness-3": string;
479
+ "brightness-4": string;
480
+ "broken-heart": string;
481
+ "broken-link-1": string;
482
+ "broken-link-2": string;
483
+ "browser-add": string;
484
+ "browser-block": string;
485
+ "browser-bookmark": string;
486
+ "browser-build": string;
487
+ "browser-check": string;
488
+ "browser-code-1": string;
489
+ "browser-code-2": string;
490
+ "browser-dashboard": string;
491
+ "browser-delete": string;
492
+ "browser-emoji": string;
493
+ "browser-error": string;
494
+ "browser-favorite-fire": string;
495
+ "browser-favorite-heart": string;
496
+ "browser-favorite-star": string;
497
+ "browser-hash": string;
498
+ "browser-key": string;
499
+ "browser-lock": string;
500
+ "browser-multiple-window": string;
501
+ "browser-refresh": string;
502
+ "browser-remove": string;
503
+ "browser-search": string;
504
+ "browser-setting": string;
505
+ "browser-shield": string;
506
+ "browser-time": string;
507
+ "browser-warning": string;
508
+ "browser-website-1": string;
509
+ "browser-wifi": string;
510
+ "bug-antivirus-debugging": string;
511
+ "bug-antivirus-shield": string;
512
+ "bug-virus-browser": string;
513
+ "bug-virus-document": string;
514
+ "bug-virus-folder": string;
515
+ "bug-virus-monitor": string;
516
+ "bug-virus-phone": string;
517
+ "bug-virus-usb": string;
518
+ bug: string;
519
+ "building-1": string;
520
+ "building-2": string;
521
+ "building-office": string;
522
+ "bullet-list": string;
523
+ burger: string;
524
+ "burrito-fastfood": string;
525
+ "bus-1": string;
526
+ "bus-front": string;
527
+ "bus-station": string;
528
+ bus: string;
529
+ "business-card": string;
530
+ "business-handshake": string;
531
+ "business-idea-money": string;
532
+ "business-idea": string;
533
+ "business-profession-home-office": string;
534
+ "business-progress-bar-1": string;
535
+ "business-progress-bar-2": string;
536
+ "button-fast-forward-1": string;
537
+ "button-fast-forward-2": string;
538
+ "button-fast-forward-circle-1": string;
539
+ "button-fast-forward-circle-2": string;
540
+ "button-go-backward-10": string;
541
+ "button-go-backward-15": string;
542
+ "button-go-backward-30": string;
543
+ "button-go-backward-45": string;
544
+ "button-go-backward-5": string;
545
+ "button-go-backward-60": string;
546
+ "button-go-backward-75": string;
547
+ "button-go-backward-90": string;
548
+ "button-go-forward-10": string;
549
+ "button-go-forward-15": string;
550
+ "button-go-forward-30": string;
551
+ "button-go-forward-45": string;
552
+ "button-go-forward-5": string;
553
+ "button-go-forward-60": string;
554
+ "button-go-forward-75": string;
555
+ "button-go-forward-90": string;
556
+ "button-move-circle": string;
557
+ "button-next-circle": string;
558
+ "button-next": string;
559
+ "button-pause-1": string;
560
+ "button-pause-2": string;
561
+ "button-pause-circle": string;
562
+ "button-play-circle": string;
563
+ "button-play-pause": string;
564
+ "button-play": string;
565
+ "button-power-1": string;
566
+ "button-power-2": string;
567
+ "button-power-circle-1": string;
568
+ "button-previous-circle": string;
569
+ "button-previous": string;
570
+ "button-record-1": string;
571
+ "button-record-3": string;
572
+ "button-rewind-1": string;
573
+ "button-rewind-2": string;
574
+ "button-rewind-circle-1": string;
575
+ "button-rewind-circle-2": string;
576
+ "button-stop-circle": string;
577
+ "button-stop": string;
578
+ "buttons-all": string;
579
+ "buttons-down": string;
580
+ "buttons-left": string;
581
+ "buttons-none": string;
582
+ "buttons-right": string;
583
+ "buttons-up": string;
584
+ "buying-and-selling": string;
585
+ "cable-car": string;
586
+ "cable-split": string;
587
+ "cake-slice": string;
588
+ cake: string;
589
+ "calculator-1": string;
590
+ "calculator-2": string;
591
+ "calendar-add": string;
592
+ "calendar-block": string;
593
+ "calendar-check": string;
594
+ "calendar-disable": string;
595
+ "calendar-download": string;
596
+ "calendar-edit": string;
597
+ "calendar-event": string;
598
+ "calendar-fire": string;
599
+ "calendar-flight": string;
600
+ "calendar-heart": string;
601
+ "calendar-home": string;
602
+ "calendar-jump-to-date": string;
603
+ "calendar-list": string;
604
+ "calendar-lock": string;
605
+ "calendar-mark": string;
606
+ "calendar-note": string;
607
+ "calendar-refresh": string;
608
+ "calendar-schedule": string;
609
+ "calendar-search": string;
610
+ "calendar-setting": string;
611
+ "calendar-star": string;
612
+ "calendar-subtract": string;
613
+ "calendar-upload": string;
614
+ "calendar-warning": string;
615
+ "call-center-support-service": string;
616
+ "call-hang-up": string;
617
+ "call-me-hand": string;
618
+ "camera-1": string;
619
+ "camera-action": string;
620
+ "camera-circle": string;
621
+ "camera-disabled": string;
622
+ "camera-loading": string;
623
+ "camera-setting-pin": string;
624
+ "camera-square": string;
625
+ "camera-tripod": string;
626
+ "camera-video": string;
627
+ "camping-tent": string;
628
+ candle: string;
629
+ "candy-cane": string;
630
+ candy: string;
631
+ "cane-2": string;
632
+ cane: string;
633
+ "cao-dai": string;
634
+ capitol: string;
635
+ "car-1": string;
636
+ "car-2": string;
637
+ "car-battery-charging": string;
638
+ "car-rentals": string;
639
+ "car-taxi-1": string;
640
+ "car-taxi-2": string;
641
+ carbon: string;
642
+ "card-add": string;
643
+ "card-flip": string;
644
+ "card-game-diamond": string;
645
+ "card-lift": string;
646
+ "card-place": string;
647
+ card: string;
648
+ "cardano-circle": string;
649
+ cards: string;
650
+ "carousel-horizontal": string;
651
+ "carousel-vertical": string;
652
+ carrot: string;
653
+ cart: string;
654
+ "cashier-machine-2": string;
655
+ cashier: string;
656
+ "cat-1": string;
657
+ "cat-2": string;
658
+ "cellular-network-4g": string;
659
+ "cellular-network-5g": string;
660
+ "cellular-network-lte": string;
661
+ celsius: string;
662
+ "center-stroke": string;
663
+ "chair-1": string;
664
+ "chair-2": string;
665
+ chair: string;
666
+ "champagne-party-alcohol": string;
667
+ "change-account-pin-password": string;
668
+ "change-background-transparent": string;
669
+ charging: string;
670
+ "chat-bubble-censor-square": string;
671
+ "chat-bubble-crack-square": string;
672
+ "chat-bubble-oval-add": string;
673
+ "chat-bubble-oval-block": string;
674
+ "chat-bubble-oval-check": string;
675
+ "chat-bubble-oval-delete": string;
676
+ "chat-bubble-oval-favorite-heart": string;
677
+ "chat-bubble-oval-favorite-star": string;
678
+ "chat-bubble-oval-lock": string;
679
+ "chat-bubble-oval-notification": string;
680
+ "chat-bubble-oval-protect": string;
681
+ "chat-bubble-oval-quotation": string;
682
+ "chat-bubble-oval-smiley-1": string;
683
+ "chat-bubble-oval-smiley-2": string;
684
+ "chat-bubble-oval-subtract": string;
685
+ "chat-bubble-oval-warning": string;
686
+ "chat-bubble-oval": string;
687
+ "chat-bubble-square-add": string;
688
+ "chat-bubble-square-block": string;
689
+ "chat-bubble-square-check": string;
690
+ "chat-bubble-square-delete": string;
691
+ "chat-bubble-square-favorite-heart": string;
692
+ "chat-bubble-square-favorite-star": string;
693
+ "chat-bubble-square-lock": string;
694
+ "chat-bubble-square-notification": string;
695
+ "chat-bubble-square-protect": string;
696
+ "chat-bubble-square-question": string;
697
+ "chat-bubble-square-quotation": string;
698
+ "chat-bubble-square-smiley-1": string;
699
+ "chat-bubble-square-smiley-2": string;
700
+ "chat-bubble-square-subtract": string;
701
+ "chat-bubble-square-warning": string;
702
+ "chat-bubble-square-write": string;
703
+ "chat-bubble-square": string;
704
+ "chat-bubble-text-oval": string;
705
+ "chat-bubble-text-square": string;
706
+ "chat-bubble-typing-oval": string;
707
+ "chat-bubble-typing-square": string;
708
+ "chat-two-bubbles-oval": string;
709
+ "chat-two-bubbles-square": string;
710
+ "check-circle": string;
711
+ "check-square": string;
712
+ "check-thick": string;
713
+ check: string;
714
+ "checkup-medical-report-clipboard": string;
715
+ cheese: string;
716
+ "chef-toque-hat": string;
717
+ cherries: string;
718
+ "chess-bishop": string;
719
+ "chess-king": string;
720
+ "chess-knight": string;
721
+ "chess-pawn": string;
722
+ "chess-queen-1": string;
723
+ "chess-rook": string;
724
+ "chicken-grilled-stream": string;
725
+ "chinese-alphabet": string;
726
+ chocolate: string;
727
+ "christian-cross-1": string;
728
+ "christian-cross-2": string;
729
+ christianity: string;
730
+ chrome: string;
731
+ "circle-and-square-shape": string;
732
+ "circle-clock": string;
733
+ "circle-flask": string;
734
+ circle: string;
735
+ "city-hall": string;
736
+ clapping: string;
737
+ "class-lesson": string;
738
+ "clean-broom-wipe": string;
739
+ "clean-water-and-sanitation": string;
740
+ "cleaning-room-man": string;
741
+ "cleaning-room-woman": string;
742
+ "click-left-double": string;
743
+ "click-right-double": string;
744
+ "climate-action": string;
745
+ "clipboard-add": string;
746
+ "clipboard-block": string;
747
+ "clipboard-check": string;
748
+ "clipboard-delete": string;
749
+ "clipboard-remove": string;
750
+ "clipboard-text": string;
751
+ "clock-setting": string;
752
+ "closed-umbrella": string;
753
+ closet: string;
754
+ "cloud-2": string;
755
+ "cloud-add": string;
756
+ "cloud-block": string;
757
+ "cloud-check": string;
758
+ "cloud-data-transfer": string;
759
+ "cloud-delete": string;
760
+ "cloud-download": string;
761
+ "cloud-gaming-1": string;
762
+ "cloud-globe": string;
763
+ "cloud-lock": string;
764
+ "cloud-off": string;
765
+ "cloud-refresh": string;
766
+ "cloud-remove": string;
767
+ "cloud-share": string;
768
+ "cloud-upload": string;
769
+ "cloud-warning": string;
770
+ "cloud-wifi": string;
771
+ cloud: string;
772
+ clover: string;
773
+ "clubs-symbol": string;
774
+ "cocktail-glass": string;
775
+ "cocktail-shaker": string;
776
+ cocktail: string;
777
+ "code-analysis": string;
778
+ "code-monitor-1": string;
779
+ "code-monitor-2": string;
780
+ "coffee-bean": string;
781
+ "coffee-mug": string;
782
+ "coffee-takeaway-cup": string;
783
+ "cog-automation": string;
784
+ cog: string;
785
+ "coin-share": string;
786
+ coin: string;
787
+ "coins-stack": string;
788
+ "collaborations-idea": string;
789
+ "color-palette": string;
790
+ "color-picker": string;
791
+ "color-registration": string;
792
+ "color-swatches": string;
793
+ "color-triangle": string;
794
+ column: string;
795
+ comet: string;
796
+ "command-square": string;
797
+ command: string;
798
+ "compare-ab": string;
799
+ "compare-arrow": string;
800
+ "compass-navigator": string;
801
+ "composition-oval": string;
802
+ "composition-vertical": string;
803
+ "compress-pdf": string;
804
+ "compsition-horizontal": string;
805
+ "computer-ai-robot": string;
806
+ "computer-ai-spark": string;
807
+ "computer-chip-1": string;
808
+ "computer-chip-2": string;
809
+ "computer-pc-desktop": string;
810
+ "cone-shape": string;
811
+ consellation: string;
812
+ "construction-helmet-2": string;
813
+ "contact-book": string;
814
+ "contact-phonebook-2": string;
815
+ "contact-phonebook": string;
816
+ container: string;
817
+ "content-statistic": string;
818
+ "controller-1": string;
819
+ "controller-stick": string;
820
+ "controller-wireless": string;
821
+ controller: string;
822
+ "convert-pdf-1": string;
823
+ "convert-pdf-2": string;
824
+ "cookie-bite": string;
825
+ "copy-1": string;
826
+ "copy-2": string;
827
+ "copy-document": string;
828
+ "copy-link": string;
829
+ "copy-paste": string;
830
+ copyright: string;
831
+ "correct-password": string;
832
+ cosine: string;
833
+ "countdown-timer": string;
834
+ "creative-commons": string;
835
+ "credit-card-1": string;
836
+ "credit-card-2": string;
837
+ "credit-card-3": string;
838
+ "credit-card-4": string;
839
+ "credit-card-5": string;
840
+ croissant: string;
841
+ "crop-and-rotate": string;
842
+ "crop-marks": string;
843
+ "crop-selection": string;
844
+ "cross-reference": string;
845
+ "crown-circle": string;
846
+ "crown-square": string;
847
+ crown: string;
848
+ crutch: string;
849
+ "css-three": string;
850
+ "cube-shape": string;
851
+ "curly-brackets": string;
852
+ "cursor-area-selection-1": string;
853
+ "cursor-click": string;
854
+ "cursor-screen-recorder": string;
855
+ "curves-levels-graph": string;
856
+ "custom-feeds-like-favorite": string;
857
+ "customer-support-1": string;
858
+ "customer-support-2": string;
859
+ "customer-support-3": string;
860
+ "customer-support-4": string;
861
+ "customer-support-5": string;
862
+ "customer-support-6": string;
863
+ "customer-support-7": string;
864
+ "customer-support-setting": string;
865
+ cut: string;
866
+ cutter: string;
867
+ "cyborg-2": string;
868
+ cyborg: string;
869
+ "cylinder-shape": string;
870
+ "cyrillic-alphabet": string;
871
+ "daily-calendar": string;
872
+ dam: string;
873
+ "dangerous-zone-sign": string;
874
+ "dashboard-1": string;
875
+ "dashboard-2": string;
876
+ "dashboard-3": string;
877
+ "dashboard-4": string;
878
+ "dashboard-circle": string;
879
+ "dashboard-gauge-1": string;
880
+ "dashboard-gauge-2": string;
881
+ "dashboard-square": string;
882
+ "data-analytics": string;
883
+ "database-add-1": string;
884
+ "database-add-2": string;
885
+ "database-alert": string;
886
+ "database-block": string;
887
+ "database-check": string;
888
+ "database-crypto-blockchain": string;
889
+ "database-encryption-2": string;
890
+ "database-lock": string;
891
+ "database-refresh": string;
892
+ "database-remove": string;
893
+ "database-search": string;
894
+ "database-server-1": string;
895
+ "database-server-2": string;
896
+ "database-server-3": string;
897
+ "database-setting": string;
898
+ "database-shield": string;
899
+ "database-subtract-1": string;
900
+ "database-subtract-2": string;
901
+ database: string;
902
+ "date-picker": string;
903
+ "decent-work-and-economic-growth": string;
904
+ "decrease-indent": string;
905
+ "deep-water-area": string;
906
+ "deepfake-technology-1": string;
907
+ "deepfake-technology-2": string;
908
+ "definition-search-book": string;
909
+ "delete-1": string;
910
+ "delete-2": string;
911
+ "delete-3": string;
912
+ "delete-bookmark": string;
913
+ "delete-circle": string;
914
+ "delete-keyboard": string;
915
+ "delete-pdf": string;
916
+ "delete-square-2": string;
917
+ "delete-square": string;
918
+ "delivery-shipping": string;
919
+ "departure-time": string;
920
+ "deploy-object": string;
921
+ "deploy-rules": string;
922
+ "descending-alphabetical-order": string;
923
+ "descending-number-order": string;
924
+ description: string;
925
+ "desktop-add": string;
926
+ "desktop-application": string;
927
+ "desktop-block": string;
928
+ "desktop-chat": string;
929
+ "desktop-check": string;
930
+ "desktop-code": string;
931
+ "desktop-delete": string;
932
+ "desktop-dollar": string;
933
+ "desktop-emoji": string;
934
+ "desktop-equalizer": string;
935
+ "desktop-favorite-heart": string;
936
+ "desktop-favorite-star": string;
937
+ "desktop-game": string;
938
+ "desktop-help": string;
939
+ "desktop-lock": string;
940
+ "desktop-music": string;
941
+ "desktop-remove": string;
942
+ "desktop-search": string;
943
+ "desktop-setting": string;
944
+ "desktop-sync-phone": string;
945
+ "desktop-time": string;
946
+ "desktop-unlock": string;
947
+ "desktop-warning": string;
948
+ desktop: string;
949
+ "device-database-encryption-1": string;
950
+ dhammajak: string;
951
+ "diagonal-scroll-1": string;
952
+ "diagonal-scroll-2": string;
953
+ "dial-pad-1": string;
954
+ "dial-pad-2": string;
955
+ "dial-pad-finger-1": string;
956
+ "dial-pad-finger-2": string;
957
+ "diamond-1": string;
958
+ "diamond-2": string;
959
+ "diamond-shape": string;
960
+ diamond: string;
961
+ "diamonds-symbol": string;
962
+ "dice-1": string;
963
+ "dice-2": string;
964
+ "dice-3": string;
965
+ "dice-4": string;
966
+ "dice-5": string;
967
+ "dice-6": string;
968
+ "dice-empty-1": string;
969
+ "dice-question": string;
970
+ "dice-shield": string;
971
+ "dice-skull": string;
972
+ "dice-sword": string;
973
+ dice: string;
974
+ "dices-entertainment-gaming-dices": string;
975
+ "dictionary-language-book": string;
976
+ "disability-parking": string;
977
+ "disability-ramp-down": string;
978
+ "disability-slope": string;
979
+ "disable-alarm": string;
980
+ "disable-bell-notification": string;
981
+ "disable-bookmark": string;
982
+ "disable-heart": string;
983
+ "disable-protection": string;
984
+ "disable-star": string;
985
+ "disabled-padlock": string;
986
+ discord: string;
987
+ "discount-percent-alternate": string;
988
+ "discount-percent-badge": string;
989
+ "discount-percent-bag": string;
990
+ "discount-percent-circle": string;
991
+ "discount-percent-coupon": string;
992
+ "discount-percent-cutout": string;
993
+ "discount-percent-fire": string;
994
+ "discount-percent-increase": string;
995
+ "discount-percent-square": string;
996
+ "discount-percent": string;
997
+ "discussion-converstion-reply": string;
998
+ "dislike-1": string;
999
+ "dislike-2": string;
1000
+ "dislike-circle": string;
1001
+ "dislike-square": string;
1002
+ "disney-plus": string;
1003
+ "distribute-bottom": string;
1004
+ "distribute-center-horizontal": string;
1005
+ "distribute-center-vertical": string;
1006
+ "distribute-horizontal": string;
1007
+ "distribute-left": string;
1008
+ "distribute-right": string;
1009
+ "distribute-top": string;
1010
+ "distribute-vertical--distribute-vertical-align-interface-navigation": string;
1011
+ "division-circle": string;
1012
+ "division-slash-circle": string;
1013
+ dna: string;
1014
+ "document-certificate": string;
1015
+ "document-setting": string;
1016
+ "document-smart-contract": string;
1017
+ "dog-1": string;
1018
+ "dog-2": string;
1019
+ "doge-circle": string;
1020
+ "dollar-coin-1": string;
1021
+ "dollar-coin": string;
1022
+ dollar: string;
1023
+ donut: string;
1024
+ door: string;
1025
+ "double-arrow-cursor": string;
1026
+ "double-bookmark": string;
1027
+ "double-cloud": string;
1028
+ "double-heart": string;
1029
+ "double-star": string;
1030
+ "download-box-1": string;
1031
+ "download-box-2": string;
1032
+ "download-browser": string;
1033
+ "download-circle": string;
1034
+ "download-computer": string;
1035
+ "download-file": string;
1036
+ "download-laptop": string;
1037
+ "download-square": string;
1038
+ "download-tray": string;
1039
+ draft: string;
1040
+ "drawing-compass": string;
1041
+ dress: string;
1042
+ "dressing-table": string;
1043
+ dribble: string;
1044
+ drone: string;
1045
+ "drop-down-menu": string;
1046
+ dropbox: string;
1047
+ "drum-stick": string;
1048
+ dumbell: string;
1049
+ "ear-hearing": string;
1050
+ "ear-speciality": string;
1051
+ earpods: string;
1052
+ "earth-1": string;
1053
+ "earth-2": string;
1054
+ "earth-airplane": string;
1055
+ "eco-house": string;
1056
+ edge: string;
1057
+ "edit-image-photo": string;
1058
+ "edit-pdf": string;
1059
+ "edit-text-write-filled": string;
1060
+ egg: string;
1061
+ "eject-2": string;
1062
+ "eject-square": string;
1063
+ "electric-bicycle": string;
1064
+ "electric-car": string;
1065
+ "electric-charging-station": string;
1066
+ "electric-cord-1": string;
1067
+ "electric-cord-3": string;
1068
+ "electronic-arts": string;
1069
+ "eletric-scooter": string;
1070
+ elevator: string;
1071
+ "elipse-frame": string;
1072
+ "email-attachment-document": string;
1073
+ "email-attachment-image": string;
1074
+ "emergency-call": string;
1075
+ "emergency-exit": string;
1076
+ "empty-clipboard": string;
1077
+ "empty-gas": string;
1078
+ "empty-recycle-bin-1": string;
1079
+ "empty-recycle-bin-2": string;
1080
+ "enabled-bell-notification": string;
1081
+ "end-point-arrow": string;
1082
+ "end-point-branches": string;
1083
+ "end-point-circle": string;
1084
+ "end-point-diamond": string;
1085
+ "end-point-half-triangle": string;
1086
+ "end-point-inverted-triangle": string;
1087
+ "end-point-none": string;
1088
+ "end-point-square": string;
1089
+ "end-point-triangle": string;
1090
+ "end-point-vertical-bar": string;
1091
+ "epic-games-1": string;
1092
+ "equal-sign-circle": string;
1093
+ "equal-sign": string;
1094
+ eraser: string;
1095
+ "erlenmeyer-flask": string;
1096
+ "escalator-down": string;
1097
+ "escalator-up": string;
1098
+ esports: string;
1099
+ "ethereum-circle": string;
1100
+ ethereum: string;
1101
+ "euro-circle": string;
1102
+ euro: string;
1103
+ "exit-full-screen": string;
1104
+ "expand-crop-resize": string;
1105
+ "expand-horizontal-1": string;
1106
+ "expand-horizontal-2": string;
1107
+ "expand-horizontal-3": string;
1108
+ "expand-horizontal-diamond-1": string;
1109
+ "expand-horizontal-diamond-2": string;
1110
+ "expand-vertical-1": string;
1111
+ "expand-vertical-2": string;
1112
+ "expand-vertical-3": string;
1113
+ "expand-vertical-diamond-1": string;
1114
+ "expand-window-1": string;
1115
+ "expand-window-2": string;
1116
+ expand: string;
1117
+ explorer: string;
1118
+ "exponent-base": string;
1119
+ "exponent-number": string;
1120
+ "eye-optic": string;
1121
+ "face-scan-1": string;
1122
+ "face-scan-2": string;
1123
+ "facebook-1": string;
1124
+ "facebook-2": string;
1125
+ factorial: string;
1126
+ "factory-eco": string;
1127
+ "factory-plant": string;
1128
+ fahrenheit: string;
1129
+ fan: string;
1130
+ "fastforward-clock": string;
1131
+ "feather-pen": string;
1132
+ "feedback-reply-conversation": string;
1133
+ feedback: string;
1134
+ figma: string;
1135
+ "figure-walking": string;
1136
+ "file-add-alternate": string;
1137
+ "file-add": string;
1138
+ "file-block": string;
1139
+ "file-bookmark": string;
1140
+ "file-check-alternate": string;
1141
+ "file-check": string;
1142
+ "file-code-1": string;
1143
+ "file-code-2": string;
1144
+ "file-delete-alternate": string;
1145
+ "file-delete": string;
1146
+ "file-dollar": string;
1147
+ "file-folder": string;
1148
+ "file-lock": string;
1149
+ "file-remove-alternate": string;
1150
+ "file-remove": string;
1151
+ "file-report": string;
1152
+ "file-search": string;
1153
+ "fill-adjustment-layer": string;
1154
+ "fill-and-sign": string;
1155
+ "film-roll-1": string;
1156
+ "film-roll": string;
1157
+ "film-slate": string;
1158
+ film: string;
1159
+ "filter-1": string;
1160
+ "filter-2": string;
1161
+ "filter-text": string;
1162
+ finder: string;
1163
+ "finger-point-down": string;
1164
+ "finger-point-left": string;
1165
+ "finger-point-right": string;
1166
+ "finger-point-up": string;
1167
+ "finger-snapping": string;
1168
+ "finger-touch": string;
1169
+ "fingerprint-1": string;
1170
+ "fingerprint-2": string;
1171
+ "fingerprint-scan-1": string;
1172
+ "fingerprint-scan-2": string;
1173
+ "fingers-cross": string;
1174
+ "fire-alarm-1": string;
1175
+ "fire-alarm-2": string;
1176
+ "fire-evacuation": string;
1177
+ "fire-exit": string;
1178
+ "fire-extinguisher-sign": string;
1179
+ "fire-protection-area": string;
1180
+ "fire-wall": string;
1181
+ "firefighter-truck": string;
1182
+ firefox: string;
1183
+ "fireworks-rocket": string;
1184
+ "first-quarter-moon": string;
1185
+ "fish-bones-waste": string;
1186
+ fish: string;
1187
+ fist: string;
1188
+ "fit-height": string;
1189
+ "fit-screen": string;
1190
+ "fit-to-height-square": string;
1191
+ "fit-to-width-square": string;
1192
+ "fit-width": string;
1193
+ flag: string;
1194
+ "flash-1": string;
1195
+ "flash-2": string;
1196
+ "flash-3": string;
1197
+ "flash-constant-light": string;
1198
+ "flash-off": string;
1199
+ flashlight: string;
1200
+ "flask-empty": string;
1201
+ "flask-full": string;
1202
+ "flask-half": string;
1203
+ flatten: string;
1204
+ "flip-horizontal-arrow-1": string;
1205
+ "flip-horizontal-arrow-2": string;
1206
+ "flip-horizontal-circle-1": string;
1207
+ "flip-horizontal-circle-2": string;
1208
+ "flip-horizontal-square-1": string;
1209
+ "flip-horizontal-square-2": string;
1210
+ "flip-vertical-arrow-1": string;
1211
+ "flip-vertical-arrow-2": string;
1212
+ "flip-vertical-circle-1": string;
1213
+ "flip-vertical-circle-2": string;
1214
+ "flip-vertical-square-1": string;
1215
+ "flip-vertical-square-2": string;
1216
+ "floating-keyboard-case-tablet": string;
1217
+ "floppy-disk": string;
1218
+ "flower-2": string;
1219
+ flower: string;
1220
+ "flu-mask": string;
1221
+ "focus-center": string;
1222
+ "focus-frame": string;
1223
+ "focus-points": string;
1224
+ "folder-add": string;
1225
+ "folder-block": string;
1226
+ "folder-check": string;
1227
+ "folder-delete": string;
1228
+ "folder-lock": string;
1229
+ "folder-remove": string;
1230
+ "folder-search": string;
1231
+ followers: string;
1232
+ following: string;
1233
+ "font-size": string;
1234
+ "font-variable": string;
1235
+ "food-takeaway-packaging": string;
1236
+ "food-truck-event-fair": string;
1237
+ "fork-knife": string;
1238
+ "fork-plate": string;
1239
+ "fork-spoon": string;
1240
+ "form-email": string;
1241
+ "fortune-telling-sphere": string;
1242
+ "forward-email": string;
1243
+ fox: string;
1244
+ fragile: string;
1245
+ "free-return": string;
1246
+ "freehand-tool": string;
1247
+ "fried-egg-breakfast": string;
1248
+ "front-camera": string;
1249
+ "full-moon": string;
1250
+ "full-screen-osx": string;
1251
+ "galaxy-1": string;
1252
+ "galaxy-2": string;
1253
+ "gallery-2-2": string;
1254
+ "gallery-2": string;
1255
+ "gallery-view": string;
1256
+ gallery: string;
1257
+ gameboy: string;
1258
+ "gaming-award-prize": string;
1259
+ "gaming-mouse": string;
1260
+ "garbage-throw": string;
1261
+ "gas-station-fuel-petroleum": string;
1262
+ "gender-equality": string;
1263
+ "gif-format": string;
1264
+ "gift-2": string;
1265
+ gift: string;
1266
+ "give-gift": string;
1267
+ "give-star": string;
1268
+ glasses: string;
1269
+ "global-learning": string;
1270
+ "global-warming-1": string;
1271
+ "global-warming-2": string;
1272
+ globe: string;
1273
+ gmail: string;
1274
+ gog: string;
1275
+ gold: string;
1276
+ "good-health-and-well-being": string;
1277
+ "google-drive": string;
1278
+ google: string;
1279
+ "government-building-1": string;
1280
+ "government-building-2": string;
1281
+ "gradient-color": string;
1282
+ "gradient-gramp": string;
1283
+ "graduation-cap": string;
1284
+ gramophone: string;
1285
+ grape: string;
1286
+ "graph-arrow-decrease": string;
1287
+ "graph-arrow-increase": string;
1288
+ "graph-arrow-user-increase": string;
1289
+ "graph-bar-decrease-square": string;
1290
+ "graph-bar-decrease": string;
1291
+ "graph-bar-horizontal": string;
1292
+ "graph-bar-increase-square": string;
1293
+ "graph-bar-increase": string;
1294
+ "graph-bar": string;
1295
+ "graph-decrease": string;
1296
+ "graph-dot": string;
1297
+ "graph-increase": string;
1298
+ graph: string;
1299
+ "graphic-template-website-ui": string;
1300
+ "greek-alphabet": string;
1301
+ "green-house": string;
1302
+ "grid-dots": string;
1303
+ "grid-rules": string;
1304
+ "group-meeting-approval": string;
1305
+ "group-meeting-call": string;
1306
+ "half-heart": string;
1307
+ "half-star-1": string;
1308
+ "half-star-2": string;
1309
+ "hamburger-menu-1": string;
1310
+ "hamburger-menu-2": string;
1311
+ "hamburger-menu-3": string;
1312
+ "hamburger-menu-4": string;
1313
+ "hamburger-menu-circle": string;
1314
+ "hamburger-menu-square": string;
1315
+ hammer: string;
1316
+ "hand-cursor": string;
1317
+ "hand-grab": string;
1318
+ "hand-held-tablet-drawing": string;
1319
+ "hand-held-tablet-writing": string;
1320
+ "hand-held": string;
1321
+ "handwritten-font": string;
1322
+ "hang-up-1": string;
1323
+ "hang-up-2": string;
1324
+ hanger: string;
1325
+ "happy-face": string;
1326
+ "happy-mask": string;
1327
+ "hard-disk": string;
1328
+ "hard-drive-1": string;
1329
+ "hard-drive-2": string;
1330
+ "hbo-max": string;
1331
+ "heading-1-paragraph-styles-heading": string;
1332
+ "heading-2-paragraph-styles-heading": string;
1333
+ "heading-3-paragraph-styles-heading": string;
1334
+ "heading-4-paragraph-styles-heading": string;
1335
+ "heading-6-paragraph-styles-heading": string;
1336
+ headphones: string;
1337
+ "health-care-2": string;
1338
+ "hearing-deaf-1": string;
1339
+ "hearing-deaf-2": string;
1340
+ "hearing-telecoil": string;
1341
+ "heart-circle": string;
1342
+ "heart-cross": string;
1343
+ "heart-rate-monitor": string;
1344
+ "heart-rate-pulse-graph": string;
1345
+ "heart-rate-search": string;
1346
+ "heart-rate": string;
1347
+ "heart-square": string;
1348
+ heart: string;
1349
+ "hearts-symbol": string;
1350
+ heater: string;
1351
+ "heatmap-1": string;
1352
+ "heatmap-2": string;
1353
+ "helicopter-front": string;
1354
+ "helicopter-side": string;
1355
+ "help-chat-1": string;
1356
+ "help-chat-2": string;
1357
+ "help-question-1": string;
1358
+ "help-question-2": string;
1359
+ "hexagon-shape": string;
1360
+ hexagram: string;
1361
+ "hidden-layer-style": string;
1362
+ "hide-grid": string;
1363
+ "hide-layer": string;
1364
+ "hide-object": string;
1365
+ "hierarchy-1": string;
1366
+ "hierarchy-10": string;
1367
+ "hierarchy-11": string;
1368
+ "hierarchy-12": string;
1369
+ "hierarchy-13": string;
1370
+ "hierarchy-14": string;
1371
+ "hierarchy-15": string;
1372
+ "hierarchy-16": string;
1373
+ "hierarchy-2": string;
1374
+ "hierarchy-3": string;
1375
+ "hierarchy-4": string;
1376
+ "hierarchy-5": string;
1377
+ "hierarchy-6": string;
1378
+ "hierarchy-7": string;
1379
+ "hierarchy-8": string;
1380
+ "hierarchy-9": string;
1381
+ "high-five": string;
1382
+ "high-speed-train-front": string;
1383
+ "high-speed-train-side": string;
1384
+ highlighter: string;
1385
+ "hindi-alphabet": string;
1386
+ hinduism: string;
1387
+ "home-1": string;
1388
+ "home-3": string;
1389
+ "home-4": string;
1390
+ "honey-pot": string;
1391
+ "horizonal-scroll": string;
1392
+ "horizontal-menu-circle": string;
1393
+ "horizontal-menu-square": string;
1394
+ "horizontal-menu": string;
1395
+ "horizontal-scroll": string;
1396
+ "horizontal-slider-1": string;
1397
+ "horizontal-slider-2": string;
1398
+ "horizontal-slider-3": string;
1399
+ "horizontal-slider-square": string;
1400
+ "horizontal-toggle-button": string;
1401
+ "hospital-sign-circle": string;
1402
+ "hospital-sign-square": string;
1403
+ "hospital-sign": string;
1404
+ "hot-air-balloon": string;
1405
+ "hot-spring": string;
1406
+ "hotel-air-conditioner": string;
1407
+ "hotel-bed-1": string;
1408
+ "hotel-bed-2": string;
1409
+ "hotel-bed-3": string;
1410
+ "hotel-bed-4": string;
1411
+ "hotel-bed-5": string;
1412
+ "hotel-five-star": string;
1413
+ "hotel-four-star": string;
1414
+ "hotel-laundry": string;
1415
+ "hotel-one-star": string;
1416
+ "hotel-shower-head": string;
1417
+ "hotel-three-star": string;
1418
+ "hotel-two-star": string;
1419
+ hourglass: string;
1420
+ "html-five": string;
1421
+ "humidity-none": string;
1422
+ hurricane: string;
1423
+ "ice-cream-1": string;
1424
+ "ice-cream-2": string;
1425
+ "ice-cream-3": string;
1426
+ "ice-cream": string;
1427
+ "image-blur": string;
1428
+ "image-brightness": string;
1429
+ "image-highlights": string;
1430
+ "image-saturation": string;
1431
+ "image-shadows": string;
1432
+ "image-white-balance": string;
1433
+ "important-field": string;
1434
+ "inbox-block": string;
1435
+ "inbox-content": string;
1436
+ "inbox-favorite-heart": string;
1437
+ "inbox-favorite": string;
1438
+ "inbox-lock": string;
1439
+ "inbox-open": string;
1440
+ "inbox-post": string;
1441
+ "inbox-schedule": string;
1442
+ "inbox-tray-1": string;
1443
+ "inbox-tray-2": string;
1444
+ "inbox-warning": string;
1445
+ inbox: string;
1446
+ "incognito-mode": string;
1447
+ "incoming-call": string;
1448
+ "incoming-video-call": string;
1449
+ "incorrect-password": string;
1450
+ "increase-indent": string;
1451
+ "indent-left": string;
1452
+ "indent-right": string;
1453
+ "induction-pot": string;
1454
+ "industry-innovation-and-infrastructure": string;
1455
+ "information-circle": string;
1456
+ "information-desk-customer": string;
1457
+ "information-desk": string;
1458
+ "initial-letter": string;
1459
+ "ink-bottle": string;
1460
+ "input-box": string;
1461
+ "insert-bottom": string;
1462
+ "insert-center-left-1": string;
1463
+ "insert-center-left-2": string;
1464
+ "insert-center-right-1": string;
1465
+ "insert-center-right-2": string;
1466
+ "insert-cloud-link": string;
1467
+ "insert-cloud-video": string;
1468
+ "insert-page": string;
1469
+ "insert-side": string;
1470
+ "insert-top-left": string;
1471
+ "insert-top-right": string;
1472
+ "insert-top": string;
1473
+ "inside-stroke": string;
1474
+ instagram: string;
1475
+ "insurance-hand": string;
1476
+ intellectual: string;
1477
+ "interface-user-curriculum": string;
1478
+ "intersex-symbol": string;
1479
+ "investing-and-banking": string;
1480
+ "investment-selection": string;
1481
+ "invisible-1": string;
1482
+ "invisible-2": string;
1483
+ "ios-ipados": string;
1484
+ "ipad-tablet-screen": string;
1485
+ iphone: string;
1486
+ "iris-scan-confirm": string;
1487
+ "iris-scan": string;
1488
+ iron: string;
1489
+ islam: string;
1490
+ "italic-off": string;
1491
+ "italic-text": string;
1492
+ "japanese-alphabet": string;
1493
+ "jar-1": string;
1494
+ "jar-2": string;
1495
+ "job-searching": string;
1496
+ juice: string;
1497
+ "jump-next-column": string;
1498
+ "jump-object": string;
1499
+ "justice-hammer": string;
1500
+ "justice-scale-1": string;
1501
+ "justice-scale-2": string;
1502
+ "justice-scale-3": string;
1503
+ "justified-alignment": string;
1504
+ key: string;
1505
+ "keyboard-option-setting-2": string;
1506
+ "keyboard-virtual": string;
1507
+ "keyboard-wireless-2": string;
1508
+ "keyboard-wireless": string;
1509
+ keyboard: string;
1510
+ "keyhole-lock-circle": string;
1511
+ "keyhole-shield": string;
1512
+ kickstarter: string;
1513
+ "korean-alphabet": string;
1514
+ "label-file-tag": string;
1515
+ "label-folder-tag": string;
1516
+ ladder: string;
1517
+ landing: string;
1518
+ "landscape-1": string;
1519
+ "landscape-2": string;
1520
+ "landscape-frame": string;
1521
+ "landscape-lock": string;
1522
+ "landscape-nft": string;
1523
+ "landscape-setting": string;
1524
+ "landscape-view": string;
1525
+ "laptop-ai-robot": string;
1526
+ "laptop-ai-spark": string;
1527
+ "laptop-camera": string;
1528
+ "laptop-charging": string;
1529
+ "laptop-project-screen": string;
1530
+ "laptop-track": string;
1531
+ laptop: string;
1532
+ "lasso-tool": string;
1533
+ "latin-alphabet": string;
1534
+ "laundry-basket": string;
1535
+ "layer-mask": string;
1536
+ "layer-style": string;
1537
+ "layers-1": string;
1538
+ "layers-2": string;
1539
+ "layers-3": string;
1540
+ "layout-bottom-bar": string;
1541
+ "layout-left-sidebar": string;
1542
+ "layout-right-sidebar": string;
1543
+ "layout-top-bar": string;
1544
+ "layout-window-1": string;
1545
+ "layout-window-10": string;
1546
+ "layout-window-11": string;
1547
+ "layout-window-12": string;
1548
+ "layout-window-13": string;
1549
+ "layout-window-2": string;
1550
+ "layout-window-3": string;
1551
+ "layout-window-4": string;
1552
+ "layout-window-5": string;
1553
+ "layout-window-6": string;
1554
+ "layout-window-7": string;
1555
+ "layout-window-8": string;
1556
+ "layout-window-9": string;
1557
+ "leaf-protect": string;
1558
+ leaf: string;
1559
+ "learning-computer": string;
1560
+ "left-click": string;
1561
+ "lemon-fruit-seasoning": string;
1562
+ lens: string;
1563
+ "life-below-water": string;
1564
+ "life-on-land": string;
1565
+ lifebuoy: string;
1566
+ "lift-disability-1": string;
1567
+ lift: string;
1568
+ ligature: string;
1569
+ "lightbulb-on": string;
1570
+ lightbulb: string;
1571
+ "lightning-cloud": string;
1572
+ "like-1": string;
1573
+ "like-2": string;
1574
+ "like-circle": string;
1575
+ "like-square": string;
1576
+ "line-spacing": string;
1577
+ "link-chain": string;
1578
+ "link-share-1": string;
1579
+ "link-share-2": string;
1580
+ linkedin: string;
1581
+ lipstick: string;
1582
+ "liquid-glue": string;
1583
+ list: string;
1584
+ "live-audio": string;
1585
+ "live-video-online-view": string;
1586
+ "live-video": string;
1587
+ "loading-1": string;
1588
+ "loading-circle": string;
1589
+ "loading-horizontal-1": string;
1590
+ "loading-horizontal-2": string;
1591
+ "local-storage-folder": string;
1592
+ "location-building-search": string;
1593
+ "location-company-building-pin": string;
1594
+ "location-compass-1": string;
1595
+ "location-compass-2": string;
1596
+ "location-hazard-attention-pin": string;
1597
+ "location-heart-pin": string;
1598
+ "location-home": string;
1599
+ "location-office": string;
1600
+ "location-person-pin": string;
1601
+ "location-pin-2": string;
1602
+ "location-pin-3": string;
1603
+ "location-pin-building-home": string;
1604
+ "location-pin-disabled": string;
1605
+ "location-pin-favorite-flag": string;
1606
+ "location-pin-food-cafe": string;
1607
+ "location-pin-food-restaurant": string;
1608
+ "location-pin-mark-help": string;
1609
+ "location-pin-medical-hospital-1": string;
1610
+ "location-pin-medical-hospital-2": string;
1611
+ "location-pin-money-atm-1": string;
1612
+ "location-pin-option-add": string;
1613
+ "location-pin-option-check": string;
1614
+ "location-pin-option-remove": string;
1615
+ "location-pin-park": string;
1616
+ "location-pin-photo-geotag": string;
1617
+ "location-pin-store": string;
1618
+ "location-pin-tourism-art-gallery": string;
1619
+ "location-pin-tourism-museum": string;
1620
+ "location-pin-transport-bus-stop": string;
1621
+ "location-pin-transport-gas-station": string;
1622
+ "location-pin-transport-parking-area": string;
1623
+ "location-pin-transport-plane-airport": string;
1624
+ "location-pin-transport-train-station": string;
1625
+ "location-pin": string;
1626
+ "location-target-1": string;
1627
+ "location-target-2": string;
1628
+ "location-target-off": string;
1629
+ "lock-comment-security": string;
1630
+ "lock-rotation": string;
1631
+ "locker-room-man": string;
1632
+ "locker-room-women": string;
1633
+ log: string;
1634
+ "login-1": string;
1635
+ "login-2": string;
1636
+ "login-3": string;
1637
+ "logout-1": string;
1638
+ "logout-2": string;
1639
+ "logout-3": string;
1640
+ "loop-1": string;
1641
+ "loop-2": string;
1642
+ "lost-and-found": string;
1643
+ "love-hand": string;
1644
+ lowercase: string;
1645
+ "lunch-set-fastfood": string;
1646
+ lungs: string;
1647
+ "machine-learning": string;
1648
+ "magic-hat": string;
1649
+ "magic-wand-1": string;
1650
+ "magic-wand-2": string;
1651
+ "magic-wand": string;
1652
+ magnet: string;
1653
+ magnifier: string;
1654
+ "magnifying-glass-circle": string;
1655
+ "magnifying-glass-square": string;
1656
+ "magnifying-glass": string;
1657
+ "mail-add": string;
1658
+ "mail-check": string;
1659
+ "mail-incoming": string;
1660
+ "mail-loading": string;
1661
+ "mail-notification": string;
1662
+ "mail-outgoing": string;
1663
+ "mail-remove": string;
1664
+ "mail-reply-all": string;
1665
+ "mail-reply": string;
1666
+ "mail-search": string;
1667
+ "mail-send-email-message-circle": string;
1668
+ "mail-send-email-message": string;
1669
+ "mail-send-envelope": string;
1670
+ "mail-send-reply-all": string;
1671
+ "mail-send": string;
1672
+ "mail-setting": string;
1673
+ "mail-subtract": string;
1674
+ mall: string;
1675
+ "man-arm-raises-1": string;
1676
+ "man-arm-raises-2": string;
1677
+ "man-symbol": string;
1678
+ "manual-book": string;
1679
+ "map-fold": string;
1680
+ "map-location-star-pin": string;
1681
+ "markdown-circle-programming": string;
1682
+ "markdown-document-programming": string;
1683
+ "markdown-rectangle-programming": string;
1684
+ "maximize-1": string;
1685
+ "maximize-2": string;
1686
+ meat: string;
1687
+ "medical-bag": string;
1688
+ "medical-cross-sign-healthcare": string;
1689
+ "medical-cross-symbol": string;
1690
+ "medical-files-report-history": string;
1691
+ "medical-house-1": string;
1692
+ "medical-ribbon-1": string;
1693
+ "medical-search-diagnosis": string;
1694
+ medicines: string;
1695
+ "meeting-room": string;
1696
+ "megaphone-1": string;
1697
+ "megaphone-2": string;
1698
+ "megaphone-refresh": string;
1699
+ "memes-comment-reply": string;
1700
+ menu: string;
1701
+ "merge-pdf": string;
1702
+ "merge-vertical-large": string;
1703
+ "merge-vertical": string;
1704
+ meta: string;
1705
+ "microscope-observation-sciene": string;
1706
+ microwave: string;
1707
+ "middle-click": string;
1708
+ "milk-carton": string;
1709
+ milk: string;
1710
+ milkshake: string;
1711
+ "mine-cart-1": string;
1712
+ "mine-cart-2": string;
1713
+ "minimize-window-1": string;
1714
+ "minimize-window-2": string;
1715
+ minimize: string;
1716
+ "mining-helmet": string;
1717
+ "missed-call": string;
1718
+ "mitter-corner": string;
1719
+ "mobile-ai-robot": string;
1720
+ "mobile-ai-spark": string;
1721
+ "mobile-payment": string;
1722
+ "mobile-phone-camera": string;
1723
+ "module-puzzle-1": string;
1724
+ "module-puzzle-2": string;
1725
+ "module-puzzle-3": string;
1726
+ "module-three": string;
1727
+ module: string;
1728
+ "money-shield": string;
1729
+ "monitor-bluetooth": string;
1730
+ "monitor-error": string;
1731
+ "monitor-lock": string;
1732
+ "monitor-project-screen": string;
1733
+ "monitor-wifi": string;
1734
+ monitor: string;
1735
+ "monospace-font": string;
1736
+ "monthly-calendar": string;
1737
+ "moon-cloud": string;
1738
+ "moon-stars": string;
1739
+ "motocycle-front": string;
1740
+ "motorcycle-courier": string;
1741
+ "motorcycle-side": string;
1742
+ mountain: string;
1743
+ "mouse-wireless-1": string;
1744
+ "mouse-wireless": string;
1745
+ mouse: string;
1746
+ moustache: string;
1747
+ "move-down-2": string;
1748
+ "move-down": string;
1749
+ "move-file": string;
1750
+ "move-left-2": string;
1751
+ "move-left": string;
1752
+ "move-right-2": string;
1753
+ "move-right": string;
1754
+ "move-to-bottom": string;
1755
+ "move-to-top": string;
1756
+ "move-up-2": string;
1757
+ "move-up": string;
1758
+ "multi-select-cursor": string;
1759
+ "multiple-file-1": string;
1760
+ "multiple-file-2": string;
1761
+ "multiple-stars": string;
1762
+ "museum-painting-exhibit-1": string;
1763
+ "museum-painting-exhibit-2": string;
1764
+ "museum-painting-exhibit-3": string;
1765
+ "museum-painting": string;
1766
+ "music-disc": string;
1767
+ "music-equalizer": string;
1768
+ "music-folder-song": string;
1769
+ "music-note-1": string;
1770
+ "music-note-2": string;
1771
+ "music-note-circle-off": string;
1772
+ "music-note-circle": string;
1773
+ "music-note-off-1": string;
1774
+ "music-note-off-2": string;
1775
+ "music-note-trebble-clef": string;
1776
+ "navigation-arrow-east": string;
1777
+ "navigation-arrow-north": string;
1778
+ "navigation-arrow-off": string;
1779
+ "navigation-arrow-on": string;
1780
+ "navigation-arrow-south": string;
1781
+ "navigation-arrow-west": string;
1782
+ necklace: string;
1783
+ necktie: string;
1784
+ netflix: string;
1785
+ network: string;
1786
+ "new-badge-highlight": string;
1787
+ "new-file": string;
1788
+ "new-filter-slide": string;
1789
+ "new-folder": string;
1790
+ "new-sticky-note": string;
1791
+ "new-sublayer": string;
1792
+ "news-paper": string;
1793
+ "next-square": string;
1794
+ next: string;
1795
+ "nine-to-five": string;
1796
+ "nintendo-playstation-controller": string;
1797
+ "nintendo-switch": string;
1798
+ "nintendo-xbox-controller-1": string;
1799
+ "no-derivative-works": string;
1800
+ "no-flight-airport": string;
1801
+ "no-food-allowed": string;
1802
+ "no-pets-allowed": string;
1803
+ "no-photo-taking-zone": string;
1804
+ "no-poverty": string;
1805
+ "no-smoking-area": string;
1806
+ "no-touch-sign": string;
1807
+ "no-word-wrap": string;
1808
+ "non-commercial-dollars": string;
1809
+ "non-commercial-euro": string;
1810
+ "non-commercial-pounds": string;
1811
+ "non-commercial-rupee": string;
1812
+ "non-commercial-yen": string;
1813
+ "non-commercial": string;
1814
+ noodle: string;
1815
+ "nose-smell": string;
1816
+ "not-equal-sign-circle": string;
1817
+ "not-equal-sign": string;
1818
+ notebook: string;
1819
+ "notepad-add": string;
1820
+ "notepad-check": string;
1821
+ "notepad-list": string;
1822
+ "notepad-remove": string;
1823
+ "notepad-sketchpad": string;
1824
+ "notepad-subtract": string;
1825
+ "notepad-text": string;
1826
+ "notification-alarm-1": string;
1827
+ "notification-alarm-2": string;
1828
+ "notification-alarm-snooze": string;
1829
+ "notification-alert": string;
1830
+ "notification-application-1": string;
1831
+ "notification-application-2": string;
1832
+ "notification-message-alert": string;
1833
+ "number-field": string;
1834
+ "number-one-hand": string;
1835
+ number: string;
1836
+ "nurse-assistant-emergency": string;
1837
+ "nurse-hat": string;
1838
+ "nursery-1": string;
1839
+ "nursery-2": string;
1840
+ "octagram-shape": string;
1841
+ octopus: string;
1842
+ "office-building-1": string;
1843
+ "office-building-2": string;
1844
+ "office-worker": string;
1845
+ "ok-hand": string;
1846
+ "one-finger-double-tap": string;
1847
+ "one-finger-drag-horizontal": string;
1848
+ "one-finger-drag-vertical": string;
1849
+ "one-finger-hold": string;
1850
+ "one-finger-long-tap": string;
1851
+ "one-finger-short-tap": string;
1852
+ "one-finger-tap": string;
1853
+ "one-handed-holding-tablet-handheld": string;
1854
+ "one-vesus-one": string;
1855
+ "online-medical-app-checkup-service": string;
1856
+ "online-medical-call-service": string;
1857
+ "online-medical-service-monitor": string;
1858
+ "online-medical-web-service": string;
1859
+ "online-status-active-account": string;
1860
+ "online-status-away-account": string;
1861
+ "open-book": string;
1862
+ "open-hand": string;
1863
+ "open-umbrella": string;
1864
+ opera: string;
1865
+ "option-1": string;
1866
+ "option-square": string;
1867
+ "orientation-landscape": string;
1868
+ "orientation-portrait": string;
1869
+ "outgoging-video-call": string;
1870
+ "outgoing-call": string;
1871
+ "outside-stroke": string;
1872
+ "oval-shape": string;
1873
+ oxygen: string;
1874
+ pacman: string;
1875
+ "padlock-circle-1": string;
1876
+ "padlock-circle-2": string;
1877
+ "padlock-key": string;
1878
+ "padlock-shield": string;
1879
+ "padlock-square-1": string;
1880
+ "padlock-square-2": string;
1881
+ "page-break": string;
1882
+ "page-number": string;
1883
+ "page-setting": string;
1884
+ "paint-bucket": string;
1885
+ "paint-palette": string;
1886
+ "paintbrush-1": string;
1887
+ "paintbrush-2": string;
1888
+ "paintbrush-3": string;
1889
+ "painting-board": string;
1890
+ "panel-expansion": string;
1891
+ "panoramic-screen": string;
1892
+ "paperclip-1": string;
1893
+ "paperclip-2": string;
1894
+ "parachute-drop": string;
1895
+ "paragraph-article": string;
1896
+ "paragraph-column": string;
1897
+ paragraph: string;
1898
+ park: string;
1899
+ "parking-sign": string;
1900
+ parliament: string;
1901
+ "partnerships-for-the-goals": string;
1902
+ "party-popper": string;
1903
+ "passport-globe": string;
1904
+ passport: string;
1905
+ "password-block": string;
1906
+ "password-input": string;
1907
+ "password-lock": string;
1908
+ "pathfinder-crop": string;
1909
+ "pathfinder-divide": string;
1910
+ "pathfinder-exclude": string;
1911
+ "pathfinder-intersect": string;
1912
+ "pathfinder-merge": string;
1913
+ "pathfinder-minus-back-1": string;
1914
+ "pathfinder-minus-back-2": string;
1915
+ "pathfinder-minus-front-1": string;
1916
+ "pathfinder-minus-front-2": string;
1917
+ "pathfinder-outline": string;
1918
+ "pathfinder-trim": string;
1919
+ "pathfinder-union": string;
1920
+ patreon: string;
1921
+ pattern: string;
1922
+ "payment-10": string;
1923
+ "payment-cash-out-3": string;
1924
+ "payment-recieve-7": string;
1925
+ paypal: string;
1926
+ "pdf-reader-application": string;
1927
+ "pdf-reader": string;
1928
+ "pdf-to-jpg": string;
1929
+ "peace-hand": string;
1930
+ "peace-justice-and-strong-institutions": string;
1931
+ "peace-symbol": string;
1932
+ "pen-1": string;
1933
+ "pen-2": string;
1934
+ "pen-3": string;
1935
+ "pen-draw": string;
1936
+ "pen-pressure": string;
1937
+ "pen-tool-add": string;
1938
+ "pen-tool-delete": string;
1939
+ "pen-tool": string;
1940
+ "pen-types": string;
1941
+ "pencil-circle": string;
1942
+ "pencil-line": string;
1943
+ "pencil-square": string;
1944
+ pencil: string;
1945
+ pentagon: string;
1946
+ "pepper-bottle": string;
1947
+ "permanent-block-account-security": string;
1948
+ "perspective-wrap-transform-distort": string;
1949
+ "pet-food": string;
1950
+ "pet-paw": string;
1951
+ "petri-dish-lab-equipment": string;
1952
+ "pets-allowed": string;
1953
+ pharmacy: string;
1954
+ "phone-charging": string;
1955
+ "phone-circle-off": string;
1956
+ "phone-circle": string;
1957
+ "phone-landscape": string;
1958
+ "phone-location": string;
1959
+ "phone-lock-1": string;
1960
+ "phone-lock": string;
1961
+ "phone-mail": string;
1962
+ "phone-message": string;
1963
+ "phone-mobile-phone": string;
1964
+ "phone-notification": string;
1965
+ "phone-numpad-up": string;
1966
+ "phone-off": string;
1967
+ "phone-otp": string;
1968
+ "phone-password": string;
1969
+ "phone-pen-1": string;
1970
+ "phone-pen-2": string;
1971
+ "phone-qr": string;
1972
+ "phone-ringing-1": string;
1973
+ "phone-ringing-2": string;
1974
+ "phone-rotate-mobile": string;
1975
+ "phone-setting": string;
1976
+ "phone-shield": string;
1977
+ "phone-status": string;
1978
+ "phone-telephone-project-screen": string;
1979
+ "phone-vibrate": string;
1980
+ phone: string;
1981
+ "photo-camera": string;
1982
+ "photo-four": string;
1983
+ "pi-symbol-circle": string;
1984
+ "pi-symbol": string;
1985
+ "pictures-folder-memories": string;
1986
+ "pie-chart": string;
1987
+ "piggy-bank": string;
1988
+ "pin-1": string;
1989
+ "pin-2": string;
1990
+ "pine-tree": string;
1991
+ pinterest: string;
1992
+ pinwheel: string;
1993
+ pizza: string;
1994
+ "plane-boarding-pass": string;
1995
+ "plane-flight-board": string;
1996
+ "plane-front": string;
1997
+ planet: string;
1998
+ plate: string;
1999
+ "play-list-1": string;
2000
+ "play-list-2": string;
2001
+ "play-list-3": string;
2002
+ "play-list-4": string;
2003
+ "play-list-5": string;
2004
+ "play-list-6": string;
2005
+ "play-list-7": string;
2006
+ "play-list-8": string;
2007
+ "play-list-9": string;
2008
+ "play-list-folder": string;
2009
+ "play-list-phone": string;
2010
+ "play-station": string;
2011
+ "play-store": string;
2012
+ playlist: string;
2013
+ "plus-minus-1": string;
2014
+ "plus-minus-2": string;
2015
+ podium: string;
2016
+ "polaroid-four": string;
2017
+ polaroid: string;
2018
+ "police-car": string;
2019
+ "politics-compaign": string;
2020
+ "politics-debate": string;
2021
+ "politics-elected-person": string;
2022
+ "politics-speech": string;
2023
+ "politics-vote-2": string;
2024
+ "polka-dot-circle": string;
2025
+ "polygon-frame": string;
2026
+ polygon: string;
2027
+ "polygonal-lasso-tool": string;
2028
+ "pool-ladder": string;
2029
+ "pool-swing": string;
2030
+ popcorn: string;
2031
+ "pork-meat": string;
2032
+ "portrait-lock": string;
2033
+ "portrait-setting": string;
2034
+ "portrait-view": string;
2035
+ "potted-flower-1": string;
2036
+ "potted-flower": string;
2037
+ "potted-plant": string;
2038
+ "potted-tree-1": string;
2039
+ "potted-tree-2": string;
2040
+ "pouch-add-1": string;
2041
+ "pouch-add-2": string;
2042
+ "pouch-remove-1": string;
2043
+ "pouch-remove-2": string;
2044
+ pouch: string;
2045
+ "pound-circle": string;
2046
+ pound: string;
2047
+ "power-off-square": string;
2048
+ "power-off": string;
2049
+ "praying-hand": string;
2050
+ "prescription-pills-drugs-healthcare": string;
2051
+ presentation: string;
2052
+ "press-button": string;
2053
+ "pretzel-bakery": string;
2054
+ "previous-square": string;
2055
+ previous: string;
2056
+ printer: string;
2057
+ "product-selection": string;
2058
+ "production-belt-time": string;
2059
+ "production-belt-user": string;
2060
+ "production-belt": string;
2061
+ "projector-board": string;
2062
+ "projector-screen": string;
2063
+ projector: string;
2064
+ "properties-mortgage": string;
2065
+ "prosthetic-arm": string;
2066
+ "prosthetic-leg": string;
2067
+ "public-domain": string;
2068
+ "pyramid-shape": string;
2069
+ "qr-code": string;
2070
+ "quality-education": string;
2071
+ "quiet-zone": string;
2072
+ "quotation-1": string;
2073
+ "quotation-2": string;
2074
+ "quotation-3": string;
2075
+ "quotation-4": string;
2076
+ rabbit: string;
2077
+ radio: string;
2078
+ "radioactive-1": string;
2079
+ "radioactive-2": string;
2080
+ "rain-cloud": string;
2081
+ rainbow: string;
2082
+ rat: string;
2083
+ "rate-stretch-tool": string;
2084
+ "razor-cutter-tool": string;
2085
+ "receipt-add": string;
2086
+ "receipt-check": string;
2087
+ "receipt-cross": string;
2088
+ "receipt-subtract": string;
2089
+ receipt: string;
2090
+ "receive-money-to-card-transfer": string;
2091
+ "record-player": string;
2092
+ "recording-tape-1": string;
2093
+ "recording-tape-2": string;
2094
+ "recording-tape-bubble-circle": string;
2095
+ "recording-tape-bubble-square": string;
2096
+ "rectangle-flag": string;
2097
+ "rectangle-frame": string;
2098
+ "rectangle-shape": string;
2099
+ "recycle-1": string;
2100
+ "recycle-2": string;
2101
+ "recycle-bin-1": string;
2102
+ "recycle-bin-2": string;
2103
+ "recycle-bin-3": string;
2104
+ "recycle-bin-4": string;
2105
+ "recycle-bin-alert": string;
2106
+ "recycle-bin-throw-1": string;
2107
+ "recycle-bin-throw-2": string;
2108
+ "recycle-bin": string;
2109
+ reddit: string;
2110
+ "reduced-inequalities": string;
2111
+ "refrigerator-2": string;
2112
+ refrigerator: string;
2113
+ registered: string;
2114
+ "registration-marks": string;
2115
+ reload: string;
2116
+ "remix-culture": string;
2117
+ "remote-control": string;
2118
+ "remove-alert-clock": string;
2119
+ "remove-bell-notification-1": string;
2120
+ "remove-bell-notification-2": string;
2121
+ "remove-bookmark": string;
2122
+ "remove-favorite-highlight": string;
2123
+ "remove-filter-slide": string;
2124
+ "remove-like-favorite-love": string;
2125
+ "remove-task-reminder": string;
2126
+ "remove-text-formatting-sentence": string;
2127
+ "reorder-dots-horizontal": string;
2128
+ "reorder-dots-vertical": string;
2129
+ "reorder-pdf": string;
2130
+ "reply-to-message-typing": string;
2131
+ "request-files": string;
2132
+ "reset-clock": string;
2133
+ "responsible-consumption-and-production": string;
2134
+ "return-1": string;
2135
+ "return-2": string;
2136
+ "return-square-1": string;
2137
+ "return-square-2": string;
2138
+ "rewind-clock": string;
2139
+ "rhombus-shape": string;
2140
+ ribbon: string;
2141
+ "rice-field": string;
2142
+ "right-click": string;
2143
+ ring: string;
2144
+ "ringing-bell-notification": string;
2145
+ "riple-edit-tool": string;
2146
+ "rock-and-roll-hand": string;
2147
+ "rock-slide": string;
2148
+ rocket: string;
2149
+ "roller-paintbrush": string;
2150
+ "rolling-edit-tool": string;
2151
+ rose: string;
2152
+ "rotate-angle-45": string;
2153
+ "rotate-angle-90": string;
2154
+ "rotate-left-circle": string;
2155
+ "rotate-left": string;
2156
+ "rotate-object": string;
2157
+ "rotate-pdf": string;
2158
+ "rotate-right-circle": string;
2159
+ "rotate-right": string;
2160
+ "round-anchor-point": string;
2161
+ "round-cap": string;
2162
+ "round-corner": string;
2163
+ "router-wifi-network": string;
2164
+ "rss-square": string;
2165
+ "rss-symbol": string;
2166
+ ruler: string;
2167
+ "rupee-circle": string;
2168
+ rupee: string;
2169
+ "rv-truck": string;
2170
+ "sad-face": string;
2171
+ "sad-mask": string;
2172
+ safari: string;
2173
+ "safe-vault": string;
2174
+ "sail-ship": string;
2175
+ "salad-vegetable-diet": string;
2176
+ "salt-bottle": string;
2177
+ "sans-serif-font": string;
2178
+ "satellite-dish": string;
2179
+ "sausage-processed-food": string;
2180
+ scale: string;
2181
+ "scan-document-focus": string;
2182
+ "scan-text": string;
2183
+ "scanner-1": string;
2184
+ "scanner-3": string;
2185
+ "scanner-bar-code": string;
2186
+ scanner: string;
2187
+ "school-bus-front": string;
2188
+ "school-bus-side": string;
2189
+ school: string;
2190
+ scissors: string;
2191
+ scooter: string;
2192
+ "screen-1": string;
2193
+ "screen-2": string;
2194
+ "screen-broadcast": string;
2195
+ "screen-curve": string;
2196
+ "screen-tv": string;
2197
+ "screensaver-monitor-wallpaper": string;
2198
+ screenshot: string;
2199
+ "screwdriver-wrench": string;
2200
+ screwdriver: string;
2201
+ "script-1": string;
2202
+ "script-2": string;
2203
+ "script-font": string;
2204
+ "sd-card": string;
2205
+ "search-arrow-increase": string;
2206
+ "search-category": string;
2207
+ "search-comment-history": string;
2208
+ "search-dollar": string;
2209
+ "search-history-browser": string;
2210
+ "search-history": string;
2211
+ "search-visual": string;
2212
+ "security-shield": string;
2213
+ "security-umbrella": string;
2214
+ "segway-front": string;
2215
+ "segway-side": string;
2216
+ "select-all": string;
2217
+ "select-app-object-mark": string;
2218
+ "select-back": string;
2219
+ "select-circle-area-1": string;
2220
+ "select-circle-area-2": string;
2221
+ "select-frame": string;
2222
+ "select-front": string;
2223
+ "select-none": string;
2224
+ "select-square-area-1": string;
2225
+ "select-square-area-2": string;
2226
+ "send-email-square": string;
2227
+ "send-email": string;
2228
+ "send-money-from-card-transfer": string;
2229
+ "send-reply": string;
2230
+ "serif-font": string;
2231
+ "service-mark": string;
2232
+ "serving-dome-hand": string;
2233
+ "serving-dome": string;
2234
+ "settings-bolt-nut": string;
2235
+ "share-alike": string;
2236
+ "share-code": string;
2237
+ "share-heart": string;
2238
+ "share-link-approved": string;
2239
+ "share-link-block": string;
2240
+ "share-link-circle-2": string;
2241
+ "share-link-circle": string;
2242
+ "share-link-disabled": string;
2243
+ "share-link-lock": string;
2244
+ "share-link": string;
2245
+ "share-lock": string;
2246
+ "share-money-dollar": string;
2247
+ "share-time": string;
2248
+ shark: string;
2249
+ shelf: string;
2250
+ shell: string;
2251
+ "shield-1": string;
2252
+ "shield-2": string;
2253
+ "shield-3": string;
2254
+ "shield-check": string;
2255
+ "shield-cross": string;
2256
+ "shield-defense": string;
2257
+ "shift-square": string;
2258
+ shift: string;
2259
+ shinto: string;
2260
+ ship: string;
2261
+ "shipment-add": string;
2262
+ "shipment-check": string;
2263
+ "shipment-download": string;
2264
+ "shipment-favorite": string;
2265
+ "shipment-pickup": string;
2266
+ "shipment-remove": string;
2267
+ "shipment-search": string;
2268
+ "shipment-time": string;
2269
+ "shipping-box-1": string;
2270
+ "shipping-box-2": string;
2271
+ "shipping-transfer-truck": string;
2272
+ shirt: string;
2273
+ "shopping-bag-hand-bag-2": string;
2274
+ "shopping-bag-hand-bag-price-tag": string;
2275
+ "shopping-basket-1": string;
2276
+ "shopping-basket-2": string;
2277
+ "shopping-basket-3": string;
2278
+ "shopping-basket-add": string;
2279
+ "shopping-basket-emoji-sad": string;
2280
+ "shopping-basket-emoji-smile": string;
2281
+ "shopping-basket-remove": string;
2282
+ "shopping-cart-1": string;
2283
+ "shopping-cart-2": string;
2284
+ "shopping-cart-add": string;
2285
+ "shopping-cart-check": string;
2286
+ "shopping-cart-cross": string;
2287
+ "shopping-cart-heavy": string;
2288
+ "shopping-cart-remove": string;
2289
+ "shopping-cart-subtract": string;
2290
+ "shovel-rake": string;
2291
+ "show-grid": string;
2292
+ "show-hat-magician": string;
2293
+ "show-layer": string;
2294
+ shredder: string;
2295
+ shrimp: string;
2296
+ "shrink-horizontal-1": string;
2297
+ "shrink-horizontal-2": string;
2298
+ "shrink-vertical": string;
2299
+ "shrink-window-osx": string;
2300
+ shuffle: string;
2301
+ "sidebar-collapses": string;
2302
+ "sidebar-expand": string;
2303
+ sigma: string;
2304
+ "sign-at": string;
2305
+ "sign-cross-circle": string;
2306
+ "sign-cross-shield": string;
2307
+ "sign-cross-square": string;
2308
+ "sign-hashtag": string;
2309
+ "sign-language-hand": string;
2310
+ "signage-1": string;
2311
+ "signage-2": string;
2312
+ "signage-3": string;
2313
+ "signage-4": string;
2314
+ "signage-meeting-point": string;
2315
+ "signage-pedestrian-no-crossing": string;
2316
+ "signage-priority-infant-person": string;
2317
+ "signage-priority-infant-woman": string;
2318
+ "signage-priority-pregnant-woman": string;
2319
+ "signal-full": string;
2320
+ "signal-loading": string;
2321
+ "signal-low": string;
2322
+ "signal-medium": string;
2323
+ "signal-none": string;
2324
+ signature: string;
2325
+ "sim-card": string;
2326
+ sine: string;
2327
+ sink: string;
2328
+ sizing: string;
2329
+ "skull-1": string;
2330
+ "skull-2": string;
2331
+ skype: string;
2332
+ "slab-serif-font": string;
2333
+ slack: string;
2334
+ sleep: string;
2335
+ "slide-show-play": string;
2336
+ "slide-tool": string;
2337
+ "slip-tool": string;
2338
+ "small-caps": string;
2339
+ "smaller-text-minus-size": string;
2340
+ "smiley-angry": string;
2341
+ "smiley-blessed": string;
2342
+ "smiley-blush": string;
2343
+ "smiley-cool": string;
2344
+ "smiley-crying-1": string;
2345
+ "smiley-crying-2": string;
2346
+ "smiley-cute": string;
2347
+ "smiley-devastated": string;
2348
+ "smiley-drool": string;
2349
+ "smiley-drop": string;
2350
+ "smiley-emoji-kiss-happy": string;
2351
+ "smiley-emoji-kiss-nervous": string;
2352
+ "smiley-emoji-terrified": string;
2353
+ "smiley-grumpy": string;
2354
+ "smiley-happy": string;
2355
+ "smiley-in-love": string;
2356
+ "smiley-indiferent": string;
2357
+ "smiley-kiss-and-wink": string;
2358
+ "smiley-kiss": string;
2359
+ "smiley-laughing-1": string;
2360
+ "smiley-laughing-2": string;
2361
+ "smiley-laughing-3": string;
2362
+ "smiley-mad": string;
2363
+ "smiley-mask": string;
2364
+ "smiley-mind-blown": string;
2365
+ "smiley-nauseas": string;
2366
+ "smiley-rich": string;
2367
+ "smiley-sad": string;
2368
+ "smiley-scared": string;
2369
+ "smiley-shocked": string;
2370
+ "smiley-sick": string;
2371
+ "smiley-silent": string;
2372
+ "smiley-sleepy": string;
2373
+ "smiley-smirk": string;
2374
+ "smiley-sparks": string;
2375
+ "smiley-surprised": string;
2376
+ "smiley-throw-up": string;
2377
+ "smiley-tongue-out-and-wink": string;
2378
+ "smiley-tongue-out": string;
2379
+ "smiley-unhappy": string;
2380
+ "smiley-upside-down": string;
2381
+ "smiley-very-happy-1": string;
2382
+ "smiley-very-happy-2": string;
2383
+ "smiley-very-shocked": string;
2384
+ "smiley-wink": string;
2385
+ "smiley-worried": string;
2386
+ "smiley-yawn": string;
2387
+ "smoke-detector": string;
2388
+ "smoking-area": string;
2389
+ snapchat: string;
2390
+ "snooze-alarm": string;
2391
+ "snooze-clock": string;
2392
+ snooze: string;
2393
+ snorkle: string;
2394
+ "snow-cloud": string;
2395
+ "snow-flake": string;
2396
+ sofa: string;
2397
+ "song-recommendation": string;
2398
+ "sort-ascending": string;
2399
+ "sort-descending": string;
2400
+ "sos-help-emergency-sign": string;
2401
+ "sound-recognition-search": string;
2402
+ "sound-recording-copyright": string;
2403
+ spa: string;
2404
+ "spades-symbol": string;
2405
+ "speaker-1": string;
2406
+ "speaker-2": string;
2407
+ "speed-skills": string;
2408
+ "sphere-shape": string;
2409
+ "spiral-shape": string;
2410
+ "split-vertical": string;
2411
+ spotify: string;
2412
+ "spray-paint": string;
2413
+ sprout: string;
2414
+ "square-brackets-circle": string;
2415
+ "square-cap": string;
2416
+ "square-clock": string;
2417
+ "square-root-sign": string;
2418
+ "square-root-x-circle": string;
2419
+ "square-root-x": string;
2420
+ square: string;
2421
+ "stairs-1": string;
2422
+ "stairs-2": string;
2423
+ stamp: string;
2424
+ "star-1": string;
2425
+ "star-2": string;
2426
+ "star-badge": string;
2427
+ "star-circle": string;
2428
+ "star-medal": string;
2429
+ "star-square": string;
2430
+ startup: string;
2431
+ "steering-wheel": string;
2432
+ "steps-1": string;
2433
+ "steps-2": string;
2434
+ "steps-letter": string;
2435
+ "steps-number": string;
2436
+ stethoscope: string;
2437
+ "sticky-note-add": string;
2438
+ "sticky-note-remove": string;
2439
+ stock: string;
2440
+ stomach: string;
2441
+ "stone-spa": string;
2442
+ stool: string;
2443
+ "stopwatch-half": string;
2444
+ "stopwatch-quarter": string;
2445
+ "stopwatch-three-quarter": string;
2446
+ "stopwatch-zero": string;
2447
+ stopwatch: string;
2448
+ "store-1": string;
2449
+ "store-2": string;
2450
+ "store-computer": string;
2451
+ "store-factory": string;
2452
+ "store-phone": string;
2453
+ "story-button": string;
2454
+ "story-post": string;
2455
+ "straight-cap": string;
2456
+ "straight-face": string;
2457
+ "strategy-tasks": string;
2458
+ strawberry: string;
2459
+ stream: string;
2460
+ "street-road": string;
2461
+ "street-sign": string;
2462
+ "strenght-skills": string;
2463
+ "strikethrough-1": string;
2464
+ "strikethrough-2": string;
2465
+ stroller: string;
2466
+ "subscript-1": string;
2467
+ "subscript-2": string;
2468
+ "subscription-cashflow": string;
2469
+ "subtract-1": string;
2470
+ "subtract-2": string;
2471
+ "subtract-circle": string;
2472
+ "subtract-square": string;
2473
+ "suitcase-rolling": string;
2474
+ summit: string;
2475
+ "sun-cloud": string;
2476
+ sun: string;
2477
+ "sunset-2": string;
2478
+ sunset: string;
2479
+ "superscript-1": string;
2480
+ "superscript-2": string;
2481
+ "surveillance-camera": string;
2482
+ sushi: string;
2483
+ "sustainable-cities-and-communities": string;
2484
+ "swipe-left": string;
2485
+ "swipe-right": string;
2486
+ "sword-attack": string;
2487
+ "symmetry-mirror-1": string;
2488
+ "synchronize-disable": string;
2489
+ "synchronize-warning": string;
2490
+ synchronize: string;
2491
+ syringe: string;
2492
+ "table-2": string;
2493
+ "table-lamp-1": string;
2494
+ "table-lamp-2": string;
2495
+ "table-lamp-3": string;
2496
+ table: string;
2497
+ "tablet-ai-robot": string;
2498
+ "tablet-ai-spark": string;
2499
+ "tablet-capsule": string;
2500
+ "taco-fastfood": string;
2501
+ "tag-2": string;
2502
+ "tag-free-circle": string;
2503
+ "tag-free-square": string;
2504
+ "tag-new-circle": string;
2505
+ "tag-new-square": string;
2506
+ tag: string;
2507
+ "take-off": string;
2508
+ "tall-hat": string;
2509
+ tangent: string;
2510
+ "tape-cassette-record": string;
2511
+ "target-2": string;
2512
+ "target-3": string;
2513
+ "target-check": string;
2514
+ "target-cross": string;
2515
+ "target-dollar": string;
2516
+ "target-no-arrow": string;
2517
+ target: string;
2518
+ "task-list-edit": string;
2519
+ "task-list": string;
2520
+ "taxi-station": string;
2521
+ "tea-cup": string;
2522
+ "tea-hot-relax": string;
2523
+ "team-vesus-team": string;
2524
+ teapot: string;
2525
+ telegram: string;
2526
+ telescope: string;
2527
+ temperature: string;
2528
+ "temporary-block-account-security": string;
2529
+ "test-tube": string;
2530
+ "tether-circle": string;
2531
+ "text-bar": string;
2532
+ "text-box-1": string;
2533
+ "text-box-2": string;
2534
+ "text-editing-typing": string;
2535
+ "text-field": string;
2536
+ "text-file": string;
2537
+ "text-flow-columns": string;
2538
+ "text-flow-rows": string;
2539
+ "text-footnote": string;
2540
+ "text-image-center-large": string;
2541
+ "text-image-center": string;
2542
+ "text-image-top": string;
2543
+ "text-kerning": string;
2544
+ "text-outline": string;
2545
+ "text-shadow": string;
2546
+ "text-square": string;
2547
+ "text-style": string;
2548
+ "text-to-speech-1": string;
2549
+ "text-to-speech-2": string;
2550
+ "text-tracking": string;
2551
+ texture: string;
2552
+ "theater-mask": string;
2553
+ "thermometer-negative": string;
2554
+ "thermometer-positive": string;
2555
+ thermometer: string;
2556
+ "third-quarter-moon": string;
2557
+ "thread-post-tweet": string;
2558
+ "threat-browser-1": string;
2559
+ "threat-browser": string;
2560
+ "threat-document": string;
2561
+ "threat-folder": string;
2562
+ "threat-monitor": string;
2563
+ "threat-phone": string;
2564
+ "threat-usb": string;
2565
+ tickets: string;
2566
+ "tidal-wave": string;
2567
+ tiktok: string;
2568
+ "tile-window-center": string;
2569
+ "tile-window-left": string;
2570
+ "tile-window-right": string;
2571
+ timeline: string;
2572
+ "timer-nine": string;
2573
+ "timer-six": string;
2574
+ "timer-three": string;
2575
+ "timer-zero": string;
2576
+ tinder: string;
2577
+ toast: string;
2578
+ toaster: string;
2579
+ "toilet-man-woman-1": string;
2580
+ "toilet-man": string;
2581
+ "toilet-paper": string;
2582
+ "toilet-sign-man-woman-2": string;
2583
+ "toilet-sign-man": string;
2584
+ "toilet-women": string;
2585
+ toilet: string;
2586
+ "toiltet-sign-woman": string;
2587
+ "tongue-taste": string;
2588
+ "tool-box": string;
2589
+ tooth: string;
2590
+ "top-left-corner": string;
2591
+ "top-order-report": string;
2592
+ "top-right-corner": string;
2593
+ towel: string;
2594
+ "track-select-left-tool": string;
2595
+ "track-select-right-tool": string;
2596
+ trademark: string;
2597
+ "traffic-cone": string;
2598
+ "traffic-light": string;
2599
+ "traffic-sign": string;
2600
+ "train-front": string;
2601
+ "train-station": string;
2602
+ "transaction-refund-cashback": string;
2603
+ "transaction-repeat-recurring": string;
2604
+ "transfer-cart": string;
2605
+ "transfer-forwarding-call": string;
2606
+ "transfer-truck-time": string;
2607
+ "transgender-symbol": string;
2608
+ "translate-text": string;
2609
+ transparent: string;
2610
+ "trash-bin-remove": string;
2611
+ "treasure-chest": string;
2612
+ "tree-1": string;
2613
+ "tree-2": string;
2614
+ "tree-3": string;
2615
+ "trending-content": string;
2616
+ "triangle-flag": string;
2617
+ triangle: string;
2618
+ trophy: string;
2619
+ "truck-front": string;
2620
+ tumblr: string;
2621
+ "tune-adjust-volume": string;
2622
+ twitch: string;
2623
+ twitter: string;
2624
+ "two-finger-double-tap": string;
2625
+ "two-finger-drag-hotizontal": string;
2626
+ "two-finger-drag-vertical": string;
2627
+ "two-finger-hold": string;
2628
+ "two-finger-tap": string;
2629
+ "type-area": string;
2630
+ "type-on-path": string;
2631
+ typewriter: string;
2632
+ ubisoft: string;
2633
+ "underline-text-1": string;
2634
+ "underline-text-2": string;
2635
+ "underline-text-3": string;
2636
+ "uniswap-circle": string;
2637
+ "unreal-engine": string;
2638
+ "upload-box-1": string;
2639
+ "upload-box-2": string;
2640
+ "upload-browser": string;
2641
+ "upload-circle": string;
2642
+ "upload-computer": string;
2643
+ "upload-file": string;
2644
+ "upload-laptop": string;
2645
+ "upload-square": string;
2646
+ "upload-tray": string;
2647
+ uppercase: string;
2648
+ "usb-cable": string;
2649
+ "usb-drive": string;
2650
+ "usb-port": string;
2651
+ "usdc-circle": string;
2652
+ "user-add-plus": string;
2653
+ "user-alert-bell": string;
2654
+ "user-arrows-account-switch": string;
2655
+ "user-block-remove": string;
2656
+ "user-check-validate": string;
2657
+ "user-circle-avatar-happy": string;
2658
+ "user-circle-single": string;
2659
+ "user-collaborate-group": string;
2660
+ "user-delete-cross": string;
2661
+ "user-edit-pencil": string;
2662
+ "user-experience-design": string;
2663
+ "user-face-female": string;
2664
+ "user-face-id-mask": string;
2665
+ "user-face-male": string;
2666
+ "user-feedback-heart": string;
2667
+ "user-folder": string;
2668
+ "user-friendship-group": string;
2669
+ "user-full-body": string;
2670
+ "user-head-focus": string;
2671
+ "user-head-side": string;
2672
+ "user-home-single": string;
2673
+ "user-identifier-card": string;
2674
+ "user-king-crown": string;
2675
+ "user-lock-privacy": string;
2676
+ "user-multiple-accounts": string;
2677
+ "user-multiple-circle": string;
2678
+ "user-multiple-group": string;
2679
+ "user-nft-profile-picture-1": string;
2680
+ "user-nft-profile-picture-2": string;
2681
+ "user-pin": string;
2682
+ "user-podcast": string;
2683
+ "user-profile-focus": string;
2684
+ "user-protection-1\u00E2\u0080\u0094shield-secure-security-person": string;
2685
+ "user-protection-2\u00E2\u0080\u0094shield-secure-security-profile-person": string;
2686
+ "user-protection-check": string;
2687
+ "user-protection-cross": string;
2688
+ "user-queen-crown": string;
2689
+ "user-question-query": string;
2690
+ "user-remove-subtract": string;
2691
+ "user-search": string;
2692
+ "user-share": string;
2693
+ "user-single-neutral-female": string;
2694
+ "user-single-neutral-male": string;
2695
+ "user-single-neutral": string;
2696
+ "user-square-single": string;
2697
+ "user-sticker-circle": string;
2698
+ "user-sticker-square": string;
2699
+ "user-story": string;
2700
+ "user-switch-account": string;
2701
+ "user-sync-online-in-person": string;
2702
+ "user-target": string;
2703
+ "user-warning": string;
2704
+ "user-work-laptop-outdoor": string;
2705
+ "user-work-laptop-wifi": string;
2706
+ "user-work-laptop": string;
2707
+ "validated-bookmark": string;
2708
+ "vector-stroke-weight": string;
2709
+ "vertical-menu": string;
2710
+ "vertical-scroll-2": string;
2711
+ "vertical-scroll": string;
2712
+ "vertical-slider-1": string;
2713
+ "vertical-slider-2": string;
2714
+ "vertical-slider-3": string;
2715
+ "vertical-slider-square": string;
2716
+ "vertical-toggle-button": string;
2717
+ "video-aspect-ratio": string;
2718
+ "video-call": string;
2719
+ "video-camera": string;
2720
+ "video-close-captioning": string;
2721
+ "video-folder-play": string;
2722
+ "video-subtitles": string;
2723
+ "video-swap-camera": string;
2724
+ "view-document-files": string;
2725
+ vimeo: string;
2726
+ "virtual-reality": string;
2727
+ "virus-antivirus": string;
2728
+ "virus-immunity": string;
2729
+ virus: string;
2730
+ visible: string;
2731
+ "visual-blind": string;
2732
+ "voice-activation-1": string;
2733
+ "voice-activation-2": string;
2734
+ "voice-mail-off": string;
2735
+ "voice-mail": string;
2736
+ "voice-scan-1": string;
2737
+ "voice-scan-2": string;
2738
+ "voice-typing-word-convert": string;
2739
+ volcano: string;
2740
+ "volume-bluetooth": string;
2741
+ "volume-down": string;
2742
+ "volume-level-high": string;
2743
+ "volume-level-low": string;
2744
+ "volume-level-off": string;
2745
+ "volume-mute": string;
2746
+ "volume-off": string;
2747
+ "volume-setting": string;
2748
+ "volume-up": string;
2749
+ "volume-warning": string;
2750
+ "vpn-connection": string;
2751
+ "vr-headset-1": string;
2752
+ "vr-headset-2": string;
2753
+ "waiting-appointments-calendar": string;
2754
+ "waiting-room": string;
2755
+ walker: string;
2756
+ "wallet-purse": string;
2757
+ wallet: string;
2758
+ "waning-cresent-moon": string;
2759
+ "waning-gibbous-moon": string;
2760
+ "warehouse-1": string;
2761
+ "warning-circle": string;
2762
+ "warning-diamond": string;
2763
+ "warning-octagon": string;
2764
+ "warning-shield": string;
2765
+ "warning-square": string;
2766
+ "warning-triangle": string;
2767
+ "warp-arc-lower": string;
2768
+ "warp-arc": string;
2769
+ "warp-bulge": string;
2770
+ "warp-fish": string;
2771
+ "warp-fisheye": string;
2772
+ "warp-flag": string;
2773
+ "warp-inflate": string;
2774
+ "warp-rise": string;
2775
+ "warp-shell-lower": string;
2776
+ "warp-squeeze": string;
2777
+ "warp-twist": string;
2778
+ "warp-wave": string;
2779
+ "warranty-badge-highlight": string;
2780
+ "watch-1": string;
2781
+ "watch-2": string;
2782
+ "watch-circle-charging": string;
2783
+ "watch-circle-heartbeat-monitor-1": string;
2784
+ "watch-circle-heartbeat-monitor-2": string;
2785
+ "watch-circle-menu": string;
2786
+ "watch-circle-time": string;
2787
+ "watch-square-charging": string;
2788
+ "watch-square-heartbeat-monitor-1": string;
2789
+ "watch-square-heartbeat-monitor-2": string;
2790
+ "watch-square-menu": string;
2791
+ "watch-square-time": string;
2792
+ "watchtower-castle": string;
2793
+ "water-drop-1": string;
2794
+ "water-drop-2": string;
2795
+ "water-drop": string;
2796
+ "water-glass": string;
2797
+ "water-melon": string;
2798
+ "water-pitcher": string;
2799
+ "water-tap": string;
2800
+ "watering-can": string;
2801
+ "wave-signal-circle": string;
2802
+ "wave-signal-square": string;
2803
+ "wave-signal": string;
2804
+ "waving-hand": string;
2805
+ "waxing-cresent-moon": string;
2806
+ "waxing-gibbous-moon": string;
2807
+ "web-application-learning": string;
2808
+ web: string;
2809
+ "webcam-off": string;
2810
+ "webcam-video-circle": string;
2811
+ "webcam-video-off": string;
2812
+ "webcam-video-square": string;
2813
+ "webcam-video": string;
2814
+ webcam: string;
2815
+ webhook: string;
2816
+ "weekly-calendar": string;
2817
+ whatsapp: string;
2818
+ wheat: string;
2819
+ "wheelchair-1": string;
2820
+ "wheelchair-2": string;
2821
+ wheelchair: string;
2822
+ whistle: string;
2823
+ "white-board": string;
2824
+ wicca: string;
2825
+ widget: string;
2826
+ "wifi-antenna": string;
2827
+ "wifi-disabled": string;
2828
+ "wifi-horizontal": string;
2829
+ "wifi-not-secure-connection": string;
2830
+ "wifi-router": string;
2831
+ "wifi-secure-connection": string;
2832
+ wifi: string;
2833
+ "wind-flow-1": string;
2834
+ "wind-flow-2": string;
2835
+ "wind-flow-3": string;
2836
+ windmill: string;
2837
+ windows: string;
2838
+ "wine-bottle-and-glass": string;
2839
+ "wine-glass": string;
2840
+ wine: string;
2841
+ "wishlist-love-add-favorite": string;
2842
+ "woman-symbol": string;
2843
+ "word-wrap-around-bounding-box": string;
2844
+ "word-wrap-around-object": string;
2845
+ wordpress: string;
2846
+ "work-organization": string;
2847
+ "workspace-desk": string;
2848
+ "world-home": string;
2849
+ world: string;
2850
+ "wrap-arc-upper": string;
2851
+ "wrap-arch": string;
2852
+ "wrap-shell-upper": string;
2853
+ "wrench-circle": string;
2854
+ "wrench-hand": string;
2855
+ "wrench-square": string;
2856
+ wrench: string;
2857
+ xbox: string;
2858
+ "xrp-circle": string;
2859
+ "yin-yang-symbol": string;
2860
+ "youtube-gaming": string;
2861
+ youtube: string;
2862
+ "yuan-circle": string;
2863
+ yuan: string;
2864
+ "zero-hunger": string;
2865
+ "zip-file": string;
2866
+ "zip-folder": string;
2867
+ "zodiac-1": string;
2868
+ "zodiac-10": string;
2869
+ "zodiac-11": string;
2870
+ "zodiac-12": string;
2871
+ "zodiac-2": string;
2872
+ "zodiac-3": string;
2873
+ "zodiac-4": string;
2874
+ "zodiac-5": string;
2875
+ "zodiac-6": string;
2876
+ "zodiac-7": string;
2877
+ "zodiac-8": string;
2878
+ "zodiac-9": string;
2879
+ "zoom-1": string;
2880
+ "zoom-area": string;
2881
+ "zoom-document": string;
2882
+ "zoom-in-2": string;
2883
+ "zoom-in-area": string;
2884
+ "zoom-in": string;
2885
+ "zoom-out-2": string;
2886
+ "zoom-out-area": string;
2887
+ "zoom-out": string;
2888
+ "zoom-reset": string;
2889
+ };
2890
+ export default data;