@agility/plenum-ui 1.3.50 → 2.0.0-rc2

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 (333) hide show
  1. package/.eslintrc.json +6 -0
  2. package/.prettierrc +12 -12
  3. package/.storybook/Layout.jsx +9 -6
  4. package/.storybook/head.tsx +4 -0
  5. package/.storybook/main.ts +18 -0
  6. package/.storybook/manager-head.html +1 -0
  7. package/.storybook/manager.ts +25 -0
  8. package/.storybook/plenumTheme.ts +8 -0
  9. package/.storybook/preview-head.html +4 -0
  10. package/.storybook/preview.tsx +28 -0
  11. package/.vscode/settings.json +4 -0
  12. package/.yarnrc.yml +1 -0
  13. package/README.md +165 -53
  14. package/app/globals.css +99 -0
  15. package/app/head.tsx +59 -0
  16. package/app/layout.tsx +28 -0
  17. package/app/page.tsx +7 -0
  18. package/build.js +41 -0
  19. package/dist/index.d.ts +959 -0
  20. package/dist/index.js +5936 -0
  21. package/dist/index.js.map +7 -0
  22. package/{lib/components → dist/types/stories/atoms}/Avatar/Avatar.d.ts +28 -27
  23. package/dist/types/stories/atoms/Avatar/index.d.ts +3 -0
  24. package/dist/types/stories/atoms/badges/Badge.d.ts +21 -0
  25. package/dist/types/stories/atoms/badges/index.d.ts +3 -0
  26. package/dist/types/stories/atoms/buttons/Button/Alternative/Alternative.stories.d.ts +13 -0
  27. package/dist/types/stories/atoms/buttons/Button/Button.d.ts +33 -0
  28. package/dist/types/stories/atoms/buttons/Button/Danger/Danger.stories.d.ts +13 -0
  29. package/dist/types/stories/atoms/buttons/Button/Primary/Primary.stories.d.ts +13 -0
  30. package/dist/types/stories/atoms/buttons/Button/Secondary/Secondary.stories.d.ts +13 -0
  31. package/dist/types/stories/atoms/buttons/Button/defaultArgs.d.ts +3 -0
  32. package/dist/types/stories/atoms/buttons/Button/index.d.ts +3 -0
  33. package/dist/types/stories/atoms/buttons/Capsule/Alternative/Alternative.stories.d.ts +6 -0
  34. package/dist/types/stories/atoms/buttons/Capsule/Capsule.d.ts +27 -0
  35. package/dist/types/stories/atoms/buttons/Capsule/Danger/Danger.stories.d.ts +6 -0
  36. package/dist/types/stories/atoms/buttons/Capsule/Primary/Primary.stories.d.ts +6 -0
  37. package/dist/types/stories/atoms/buttons/Capsule/Secondary/Secondary.stories.d.ts +6 -0
  38. package/dist/types/stories/atoms/buttons/Capsule/index.d.ts +3 -0
  39. package/dist/types/stories/atoms/buttons/index.d.ts +4 -0
  40. package/{lib/components/DynamicIcons/DynamicIcons.d.ts → dist/types/stories/atoms/icons/DynamicIcon.d.ts} +20 -18
  41. package/dist/types/stories/atoms/icons/DynamicIcon.stories.d.ts +10 -0
  42. package/dist/types/stories/atoms/icons/IconWithShadow.d.ts +6 -0
  43. package/dist/types/stories/atoms/icons/IconWithShadow.stories.d.ts +10 -0
  44. package/{lib/components/DynamicIcons → dist/types/stories/atoms/icons}/TablerIcon.d.ts +9 -9
  45. package/dist/types/stories/atoms/icons/index.d.ts +4 -0
  46. package/dist/types/stories/atoms/icons/tablerIconNames.d.ts +2 -0
  47. package/dist/types/stories/atoms/index.d.ts +7 -0
  48. package/dist/types/stories/atoms/loaders/Loader.d.ts +6 -0
  49. package/dist/types/stories/atoms/loaders/Loader.stories.d.ts +6 -0
  50. package/dist/types/stories/atoms/loaders/NProgress/RadialProgress.d.ts +11 -0
  51. package/dist/types/stories/atoms/loaders/NProgress/index.d.ts +3 -0
  52. package/dist/types/stories/atoms/loaders/index.d.ts +4 -0
  53. package/dist/types/stories/index.d.ts +5 -0
  54. package/dist/types/stories/layouts/index.d.ts +0 -0
  55. package/dist/types/stories/molecules/index.d.ts +3 -0
  56. package/dist/types/stories/molecules/inputs/InputField/InputField.d.ts +28 -0
  57. package/dist/types/stories/molecules/inputs/InputField/index.d.ts +3 -0
  58. package/{lib/components/Forms → dist/types/stories/molecules/inputs}/InputLabel/InputLabel.d.ts +15 -14
  59. package/dist/types/stories/molecules/inputs/InputLabel/index.d.ts +3 -0
  60. package/dist/types/stories/molecules/inputs/NestedInputButton/NestedInputButton.d.ts +17 -0
  61. package/dist/types/stories/molecules/inputs/NestedInputButton/index.d.ts +3 -0
  62. package/{lib/components/Forms/Checkbox → dist/types/stories/molecules/inputs/checkbox}/Checkbox.d.ts +28 -27
  63. package/dist/types/stories/molecules/inputs/checkbox/Checkbox.stories.d.ts +6 -0
  64. package/dist/types/stories/molecules/inputs/checkbox/index.d.ts +3 -0
  65. package/{lib/components/Combobox/Combobox.d.ts → dist/types/stories/molecules/inputs/combobox/ComboBox.d.ts} +34 -34
  66. package/dist/types/stories/molecules/inputs/combobox/ComboBox.stories.d.ts +6 -0
  67. package/dist/types/stories/molecules/inputs/combobox/index.d.ts +3 -0
  68. package/dist/types/stories/molecules/inputs/index.d.ts +11 -0
  69. package/{lib/components/Forms/Radio → dist/types/stories/molecules/inputs/radio}/Radio.d.ts +27 -27
  70. package/dist/types/stories/molecules/inputs/radio/Radio.stories.d.ts +6 -0
  71. package/dist/types/stories/molecules/inputs/radio/index.d.ts +3 -0
  72. package/{lib/components/Forms/Select → dist/types/stories/molecules/inputs/select}/Select.d.ts +27 -27
  73. package/dist/types/stories/molecules/inputs/select/Select.stories.d.ts +6 -0
  74. package/dist/types/stories/molecules/inputs/select/index.d.ts +3 -0
  75. package/dist/types/stories/molecules/inputs/textArea/TextArea.d.ts +26 -0
  76. package/dist/types/stories/molecules/inputs/textArea/TextArea.stories.d.ts +6 -0
  77. package/dist/types/stories/molecules/inputs/textArea/index.d.ts +3 -0
  78. package/dist/types/stories/molecules/inputs/toggleSwitch/ToggleSwitch.d.ts +18 -0
  79. package/dist/types/stories/molecules/inputs/toggleSwitch/index.d.ts +3 -0
  80. package/dist/types/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.d.ts +18 -0
  81. package/dist/types/stories/organisms/AnimatedLabelInput/index.d.ts +3 -0
  82. package/dist/types/stories/organisms/ButtonDropdown/ButtonDropdown.d.ts +14 -0
  83. package/dist/types/stories/organisms/ButtonDropdown/index.d.ts +3 -0
  84. package/{lib/components/Dropdown/Dropdown.d.ts → dist/types/stories/organisms/DropdownComponent/DropdownComponent.d.ts} +40 -39
  85. package/dist/types/stories/organisms/DropdownComponent/dropdownItems.d.ts +3 -0
  86. package/dist/types/stories/organisms/DropdownComponent/index.d.ts +4 -0
  87. package/dist/types/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.d.ts +19 -0
  88. package/dist/types/stories/organisms/EmptySectionPlaceholder/index.d.ts +3 -0
  89. package/dist/types/stories/organisms/FormInputWithAddons/FormInputWithAddons.d.ts +21 -0
  90. package/dist/types/stories/organisms/FormInputWithAddons/index.d.ts +3 -0
  91. package/dist/types/stories/organisms/index.d.ts +7 -0
  92. package/dist/types/utils/types.d.ts +2 -0
  93. package/dist/types/utils/useId.d.ts +1 -0
  94. package/next.config.js +8 -0
  95. package/package.json +55 -78
  96. package/pages/api/hello.ts +13 -0
  97. package/postcss.config.js +5 -6
  98. package/public/next.svg +1 -0
  99. package/public/thirteen.svg +1 -0
  100. package/public/vercel.svg +1 -0
  101. package/scripts/create-component.js +97 -0
  102. package/stories/Introduction.mdx +314 -0
  103. package/stories/assets/code-brackets.svg +1 -0
  104. package/stories/assets/colors.svg +1 -0
  105. package/stories/assets/comments.svg +1 -0
  106. package/stories/assets/direction.svg +1 -0
  107. package/stories/assets/flow.svg +1 -0
  108. package/stories/assets/plugin.svg +1 -0
  109. package/stories/assets/repo.svg +1 -0
  110. package/stories/assets/stackalt.svg +1 -0
  111. package/stories/atoms/Avatar/Avatar.stories.tsx +96 -0
  112. package/stories/atoms/Avatar/Avatar.tsx +123 -0
  113. package/stories/atoms/Avatar/index.ts +3 -0
  114. package/stories/atoms/badges/Badge.tsx +127 -0
  115. package/stories/atoms/badges/Pill/Pill.stories.tsx +75 -0
  116. package/stories/atoms/badges/Rounded/Rounded.stories.tsx +75 -0
  117. package/stories/atoms/badges/index.ts +3 -0
  118. package/stories/atoms/buttons/Button/Alternative/Alternative.stories.ts +69 -0
  119. package/stories/atoms/buttons/Button/Button.tsx +123 -0
  120. package/stories/atoms/buttons/Button/Danger/Danger.stories.ts +71 -0
  121. package/stories/atoms/buttons/Button/Primary/Primary.stories.ts +78 -0
  122. package/stories/atoms/buttons/Button/Secondary/Secondary.stories.ts +74 -0
  123. package/stories/atoms/buttons/Button/defaultArgs.ts +9 -0
  124. package/stories/atoms/buttons/Button/index.ts +3 -0
  125. package/stories/atoms/buttons/Capsule/Alternative/Alternative.stories.ts +27 -0
  126. package/stories/atoms/buttons/Capsule/Capsule.tsx +87 -0
  127. package/stories/atoms/buttons/Capsule/Danger/Danger.stories.ts +27 -0
  128. package/stories/atoms/buttons/Capsule/Primary/Primary.stories.ts +27 -0
  129. package/stories/atoms/buttons/Capsule/Secondary/Secondary.stories.ts +27 -0
  130. package/stories/atoms/buttons/Capsule/index.ts +3 -0
  131. package/stories/atoms/buttons/FloatingActionButton/FloatingActionButton.stories.tsx +15 -0
  132. package/stories/atoms/buttons/FloatingActionButton/FloatingActionButton.tsx +22 -0
  133. package/stories/atoms/buttons/FloatingActionButton/index.tsx +3 -0
  134. package/stories/atoms/buttons/index.ts +4 -0
  135. package/stories/atoms/crumb/Crumb.stories.tsx +18 -0
  136. package/stories/atoms/crumb/Crumb.tsx +22 -0
  137. package/stories/atoms/crumb/index.tsx +3 -0
  138. package/stories/atoms/icons/DynamicIcon.stories.ts +43 -0
  139. package/stories/atoms/icons/DynamicIcon.tsx +90 -0
  140. package/stories/atoms/icons/IconWithShadow.stories.ts +43 -0
  141. package/stories/atoms/icons/IconWithShadow.tsx +16 -0
  142. package/stories/atoms/icons/TablerIcon.tsx +22 -0
  143. package/stories/atoms/icons/index.tsx +14 -0
  144. package/stories/atoms/icons/tablerIconNames.ts +4336 -0
  145. package/stories/atoms/index.ts +46 -0
  146. package/stories/atoms/loaders/Loader.stories.ts +15 -0
  147. package/stories/atoms/loaders/Loader.tsx +15 -0
  148. package/stories/atoms/loaders/NProgress/RadialProgress.stories.tsx +19 -0
  149. package/stories/atoms/loaders/NProgress/RadialProgress.tsx +76 -0
  150. package/stories/atoms/loaders/NProgress/index.ts +3 -0
  151. package/stories/atoms/loaders/index.ts +4 -0
  152. package/stories/index.ts +124 -0
  153. package/stories/layouts/CardLayout/CardLayout.stories.tsx +18 -0
  154. package/stories/layouts/CardLayout/CardLayout.tsx +22 -0
  155. package/stories/layouts/CardLayout/index.tsx +3 -0
  156. package/stories/layouts/ModalLayout/ModalLayout.stories.tsx +18 -0
  157. package/stories/layouts/ModalLayout/ModalLayout.tsx +22 -0
  158. package/stories/layouts/ModalLayout/index.tsx +3 -0
  159. package/stories/layouts/index.ts +0 -0
  160. package/stories/molecules/index.ts +35 -0
  161. package/stories/molecules/inputs/InputField/InputField.stories.tsx +29 -0
  162. package/stories/molecules/inputs/InputField/InputField.tsx +88 -0
  163. package/stories/molecules/inputs/InputField/index.tsx +3 -0
  164. package/stories/molecules/inputs/InputLabel/InputLabel.stories.tsx +19 -0
  165. package/stories/molecules/inputs/InputLabel/InputLabel.tsx +45 -0
  166. package/stories/molecules/inputs/InputLabel/index.tsx +3 -0
  167. package/stories/molecules/inputs/NestedInputButton/NestedInputButton.stories.tsx +52 -0
  168. package/stories/molecules/inputs/NestedInputButton/NestedInputButton.tsx +64 -0
  169. package/stories/molecules/inputs/NestedInputButton/index.tsx +3 -0
  170. package/stories/molecules/inputs/checkbox/Checkbox.stories.ts +23 -0
  171. package/stories/molecules/inputs/checkbox/Checkbox.tsx +99 -0
  172. package/stories/molecules/inputs/checkbox/index.ts +3 -0
  173. package/stories/molecules/inputs/combobox/ComboBox.stories.ts +41 -0
  174. package/stories/molecules/inputs/combobox/ComboBox.tsx +194 -0
  175. package/stories/molecules/inputs/combobox/index.ts +3 -0
  176. package/stories/molecules/inputs/index.ts +24 -0
  177. package/stories/molecules/inputs/radio/Radio.stories.ts +27 -0
  178. package/stories/molecules/inputs/radio/Radio.tsx +92 -0
  179. package/stories/molecules/inputs/radio/index.ts +3 -0
  180. package/stories/molecules/inputs/select/Select.stories.ts +23 -0
  181. package/stories/molecules/inputs/select/Select.tsx +100 -0
  182. package/stories/molecules/inputs/select/index.ts +3 -0
  183. package/stories/molecules/inputs/textArea/TextArea.stories.ts +20 -0
  184. package/stories/molecules/inputs/textArea/TextArea.tsx +67 -0
  185. package/stories/molecules/inputs/textArea/index.ts +3 -0
  186. package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.stories.tsx +119 -0
  187. package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.tsx +75 -0
  188. package/stories/molecules/inputs/toggleSwitch/index.ts +3 -0
  189. package/stories/molecules/tabs/Tabs.stories.tsx +18 -0
  190. package/stories/molecules/tabs/Tabs.tsx +22 -0
  191. package/stories/molecules/tabs/index.tsx +3 -0
  192. package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.stories.tsx +21 -0
  193. package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.tsx +60 -0
  194. package/stories/organisms/AnimatedLabelInput/index.tsx +3 -0
  195. package/stories/organisms/ButtonDropdown/ButtonDropdown.stories.tsx +118 -0
  196. package/stories/organisms/ButtonDropdown/ButtonDropdown.tsx +81 -0
  197. package/stories/organisms/ButtonDropdown/index.tsx +3 -0
  198. package/stories/organisms/DropdownComponent/Dropdown.stories.tsx +49 -0
  199. package/stories/organisms/DropdownComponent/Dropdown.test.tsx +0 -0
  200. package/stories/organisms/DropdownComponent/DropdownComponent.tsx +269 -0
  201. package/stories/organisms/DropdownComponent/dropdownItems.ts +101 -0
  202. package/stories/organisms/DropdownComponent/index.ts +4 -0
  203. package/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.stories.tsx +76 -0
  204. package/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.tsx +52 -0
  205. package/stories/organisms/EmptySectionPlaceholder/index.tsx +3 -0
  206. package/stories/organisms/FormInputWithAddons/FormInputWithAddons.stories.tsx +29 -0
  207. package/stories/organisms/FormInputWithAddons/FormInputWithAddons.tsx +140 -0
  208. package/stories/organisms/FormInputWithAddons/index.tsx +3 -0
  209. package/stories/organisms/index.ts +16 -0
  210. package/tailwind.config.js +165 -36
  211. package/tsconfig.json +27 -21
  212. package/tsconfig.lib.json +19 -0
  213. package/utils/types.d.ts +2 -0
  214. package/utils/types.ts +3 -0
  215. package/utils/useId.d.ts +1 -0
  216. package/utils/useId.tsx +16 -0
  217. package/.babelrc +0 -14
  218. package/.editorconfig +0 -9
  219. package/.eslintrc +0 -13
  220. package/.github/workflows/test.yml +0 -27
  221. package/.storybook/main.js +0 -17
  222. package/.storybook/manager.js +0 -6
  223. package/.storybook/plenumTheme.js +0 -8
  224. package/.storybook/preview.js +0 -44
  225. package/_templates/component/new/component.ejs.t +0 -18
  226. package/_templates/component/new/component.stories.ejs.t +0 -21
  227. package/_templates/component/new/component.test.ejs.t +0 -15
  228. package/_templates/component/new/index.ejs.t +0 -6
  229. package/_templates/component/new/prompt.js +0 -7
  230. package/jest.config.js +0 -8
  231. package/lib/common/brandCfg.d.ts +0 -3
  232. package/lib/common/index.d.ts +0 -3
  233. package/lib/common/storyCfg.d.ts +0 -5
  234. package/lib/components/Avatar/Avatar.stories.d.ts +0 -6
  235. package/lib/components/Avatar/Avatar.test.d.ts +0 -1
  236. package/lib/components/Avatar/index.d.ts +0 -1
  237. package/lib/components/Button/Button.d.ts +0 -55
  238. package/lib/components/Button/Button.stories.d.ts +0 -12
  239. package/lib/components/Button/Button.test.d.ts +0 -1
  240. package/lib/components/Button/index.d.ts +0 -1
  241. package/lib/components/ButtonDropdown/ButtonDropdown.d.ts +0 -12
  242. package/lib/components/ButtonDropdown/ButtonDropdown.stories.d.ts +0 -9
  243. package/lib/components/ButtonDropdown/index.d.ts +0 -1
  244. package/lib/components/Combobox/Combobox.stories.d.ts +0 -14
  245. package/lib/components/Combobox/Combobox.test.d.ts +0 -1
  246. package/lib/components/Combobox/index.d.ts +0 -1
  247. package/lib/components/Dropdown/Dropdown.stories.d.ts +0 -8
  248. package/lib/components/Dropdown/Dropdown.test.d.ts +0 -1
  249. package/lib/components/Dropdown/data.d.ts +0 -3
  250. package/lib/components/Dropdown/index.d.ts +0 -1
  251. package/lib/components/DynamicIcons/DynamicIcons.stories.d.ts +0 -9
  252. package/lib/components/DynamicIcons/index.d.ts +0 -3
  253. package/lib/components/DynamicIcons/tablerIconNames.d.ts +0 -2
  254. package/lib/components/Forms/BaseField/BaseField.d.ts +0 -34
  255. package/lib/components/Forms/BaseField/BaseField.stories.d.ts +0 -6
  256. package/lib/components/Forms/BaseField/BaseField.test.d.ts +0 -1
  257. package/lib/components/Forms/BaseField/index.d.ts +0 -1
  258. package/lib/components/Forms/Checkbox/Checkbox.stories.d.ts +0 -14
  259. package/lib/components/Forms/Checkbox/Checkbox.test.d.ts +0 -1
  260. package/lib/components/Forms/Checkbox/index.d.ts +0 -1
  261. package/lib/components/Forms/InputCounter/InputCounter.d.ts +0 -9
  262. package/lib/components/Forms/InputCounter/InputCounter.stories.d.ts +0 -6
  263. package/lib/components/Forms/InputCounter/InputCounter.test.d.ts +0 -1
  264. package/lib/components/Forms/InputCounter/index.d.ts +0 -1
  265. package/lib/components/Forms/InputLabel/InputLabel.stories.d.ts +0 -6
  266. package/lib/components/Forms/InputLabel/InputLabel.test.d.ts +0 -1
  267. package/lib/components/Forms/InputLabel/index.d.ts +0 -1
  268. package/lib/components/Forms/Radio/Radio.stories.d.ts +0 -12
  269. package/lib/components/Forms/Radio/Radio.test.d.ts +0 -1
  270. package/lib/components/Forms/Radio/index.d.ts +0 -1
  271. package/lib/components/Forms/Select/Select.stories.d.ts +0 -11
  272. package/lib/components/Forms/Select/Select.test.d.ts +0 -1
  273. package/lib/components/Forms/Select/index.d.ts +0 -1
  274. package/lib/components/Forms/TextInput/TextInput.d.ts +0 -39
  275. package/lib/components/Forms/TextInput/TextInput.stories.d.ts +0 -12
  276. package/lib/components/Forms/TextInput/index.d.ts +0 -1
  277. package/lib/components/Forms/TextInputAddon/InputCta/InputCta.d.ts +0 -16
  278. package/lib/components/Forms/TextInputAddon/InputCta/InputCta.stories.d.ts +0 -6
  279. package/lib/components/Forms/TextInputAddon/InputCta/InputCta.test.d.ts +0 -1
  280. package/lib/components/Forms/TextInputAddon/InputCta/index.d.ts +0 -1
  281. package/lib/components/Forms/TextInputAddon/TextInputAddon.d.ts +0 -54
  282. package/lib/components/Forms/TextInputAddon/TextInputAddon.stories.d.ts +0 -13
  283. package/lib/components/Forms/TextInputAddon/index.d.ts +0 -1
  284. package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.d.ts +0 -13
  285. package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.stories.d.ts +0 -6
  286. package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.test.d.ts +0 -1
  287. package/lib/components/Forms/TextInputSelect/InputSelect/index.d.ts +0 -1
  288. package/lib/components/Forms/TextInputSelect/TextInputSelect.d.ts +0 -48
  289. package/lib/components/Forms/TextInputSelect/TextInputSelect.stories.d.ts +0 -8
  290. package/lib/components/Forms/TextInputSelect/index.d.ts +0 -1
  291. package/lib/components/Forms/Textarea/Textarea.d.ts +0 -32
  292. package/lib/components/Forms/Textarea/Textarea.stories.d.ts +0 -12
  293. package/lib/components/Forms/Textarea/Textarea.test.d.ts +0 -1
  294. package/lib/components/Forms/Textarea/index.d.ts +0 -1
  295. package/lib/components/ToggleSwitch/ToggleSwitch.d.ts +0 -28
  296. package/lib/components/ToggleSwitch/ToggleSwitch.stories.d.ts +0 -21
  297. package/lib/components/ToggleSwitch/ToggleSwitch.test.d.ts +0 -1
  298. package/lib/components/ToggleSwitch/index.d.ts +0 -1
  299. package/lib/components/TreeView/TreeView.d.ts +0 -36
  300. package/lib/components/TreeView/TreeView.stories.d.ts +0 -6
  301. package/lib/components/TreeView/TreeView.test.d.ts +0 -1
  302. package/lib/components/TreeView/index.d.ts +0 -1
  303. package/lib/components/TreeView V1/TreeItem/TreeItem.d.ts +0 -16
  304. package/lib/components/TreeView V1/TreeItem/TreeItem.stories.d.ts +0 -9
  305. package/lib/components/TreeView V1/TreeItem/TreeItem.test.d.ts +0 -1
  306. package/lib/components/TreeView V1/TreeItem/index.d.ts +0 -1
  307. package/lib/components/TreeView V1/TreeView.d.ts +0 -6
  308. package/lib/components/TreeView V1/TreeView.stories.d.ts +0 -6
  309. package/lib/components/TreeView V1/TreeView.test.d.ts +0 -1
  310. package/lib/components/TreeView V1/context.d.ts +0 -9
  311. package/lib/components/TreeView V1/index.d.ts +0 -1
  312. package/lib/components/TreeView V1/sampleData.d.ts +0 -71
  313. package/lib/components/TreeView V1/types/tree.types.d.ts +0 -21
  314. package/lib/index.d.ts +0 -13
  315. package/lib/index.esm.js +0 -105883
  316. package/lib/index.esm.js.map +0 -1
  317. package/lib/index.js +0 -105922
  318. package/lib/index.js.map +0 -1
  319. package/lib/page/TreeNavigation/CustomNode/CustomNode.d.ts +0 -3
  320. package/lib/page/TreeNavigation/CustomNode/CustomNode.test.d.ts +0 -1
  321. package/lib/page/TreeNavigation/CustomNode/index.d.ts +0 -1
  322. package/lib/page/TreeNavigation/TreeNavigation.d.ts +0 -8
  323. package/lib/page/TreeNavigation/TreeNavigation.stories.d.ts +0 -6
  324. package/lib/page/TreeNavigation/hooks/useFetch.d.ts +0 -14
  325. package/lib/page/TreeNavigation/index.d.ts +0 -1
  326. package/lib/tailwind.css +0 -2023
  327. package/lib/util/DynamicIcons.d.ts +0 -10
  328. package/lib/util/Loader.d.ts +0 -5
  329. package/lib/util/types.d.ts +0 -2
  330. package/lib/util/useID.d.ts +0 -1
  331. package/rollup.config.js +0 -37
  332. package/setupTests.js +0 -6
  333. package/styleMock.js +0 -2
@@ -0,0 +1,4336 @@
1
+ export const tablerIconNames = [
2
+ "Icon123",
3
+ "Icon24Hours",
4
+ "Icon2fa",
5
+ "Icon360View",
6
+ "Icon360",
7
+ "Icon3dCubeSphereOff",
8
+ "Icon3dCubeSphere",
9
+ "Icon3dRotate",
10
+ "IconAB2",
11
+ "IconABOff",
12
+ "IconAB",
13
+ "IconAbacusOff",
14
+ "IconAbacus",
15
+ "IconAbc",
16
+ "IconAccessPointOff",
17
+ "IconAccessPoint",
18
+ "IconAccessibleOffFilled",
19
+ "IconAccessibleOff",
20
+ "IconAccessible",
21
+ "IconActivityHeartbeat",
22
+ "IconActivity",
23
+ "IconAd2",
24
+ "IconAdCircleFilled",
25
+ "IconAdCircleOff",
26
+ "IconAdCircle",
27
+ "IconAdFilled",
28
+ "IconAdOff",
29
+ "IconAd",
30
+ "IconAddressBookOff",
31
+ "IconAddressBook",
32
+ "IconAdjustmentsAlt",
33
+ "IconAdjustmentsBolt",
34
+ "IconAdjustmentsCancel",
35
+ "IconAdjustmentsCheck",
36
+ "IconAdjustmentsCode",
37
+ "IconAdjustmentsCog",
38
+ "IconAdjustmentsDollar",
39
+ "IconAdjustmentsDown",
40
+ "IconAdjustmentsExclamation",
41
+ "IconAdjustmentsFilled",
42
+ "IconAdjustmentsHeart",
43
+ "IconAdjustmentsHorizontal",
44
+ "IconAdjustmentsMinus",
45
+ "IconAdjustmentsOff",
46
+ "IconAdjustmentsPause",
47
+ "IconAdjustmentsPin",
48
+ "IconAdjustmentsPlus",
49
+ "IconAdjustmentsQuestion",
50
+ "IconAdjustmentsSearch",
51
+ "IconAdjustmentsShare",
52
+ "IconAdjustmentsStar",
53
+ "IconAdjustmentsUp",
54
+ "IconAdjustmentsX",
55
+ "IconAdjustments",
56
+ "IconAerialLift",
57
+ "IconAffiliateFilled",
58
+ "IconAffiliate",
59
+ "IconAirBalloon",
60
+ "IconAirConditioningDisabled",
61
+ "IconAirConditioning",
62
+ "IconAirTrafficControl",
63
+ "IconAlarmFilled",
64
+ "IconAlarmMinusFilled",
65
+ "IconAlarmMinus",
66
+ "IconAlarmOff",
67
+ "IconAlarmPlusFilled",
68
+ "IconAlarmPlus",
69
+ "IconAlarmSnoozeFilled",
70
+ "IconAlarmSnooze",
71
+ "IconAlarm",
72
+ "IconAlbumOff",
73
+ "IconAlbum",
74
+ "IconAlertCircleFilled",
75
+ "IconAlertCircle",
76
+ "IconAlertHexagonFilled",
77
+ "IconAlertHexagon",
78
+ "IconAlertOctagonFilled",
79
+ "IconAlertOctagon",
80
+ "IconAlertSmall",
81
+ "IconAlertSquareFilled",
82
+ "IconAlertSquareRoundedFilled",
83
+ "IconAlertSquareRounded",
84
+ "IconAlertSquare",
85
+ "IconAlertTriangleFilled",
86
+ "IconAlertTriangle",
87
+ "IconAlienFilled",
88
+ "IconAlien",
89
+ "IconAlignBoxBottomCenterFilled",
90
+ "IconAlignBoxBottomCenter",
91
+ "IconAlignBoxBottomLeftFilled",
92
+ "IconAlignBoxBottomLeft",
93
+ "IconAlignBoxBottomRightFilled",
94
+ "IconAlignBoxBottomRight",
95
+ "IconAlignBoxCenterBottom",
96
+ "IconAlignBoxCenterMiddleFilled",
97
+ "IconAlignBoxCenterMiddle",
98
+ "IconAlignBoxCenterStretch",
99
+ "IconAlignBoxCenterTop",
100
+ "IconAlignBoxLeftBottomFilled",
101
+ "IconAlignBoxLeftBottom",
102
+ "IconAlignBoxLeftMiddleFilled",
103
+ "IconAlignBoxLeftMiddle",
104
+ "IconAlignBoxLeftStretch",
105
+ "IconAlignBoxLeftTopFilled",
106
+ "IconAlignBoxLeftTop",
107
+ "IconAlignBoxRightBottomFilled",
108
+ "IconAlignBoxRightBottom",
109
+ "IconAlignBoxRightMiddleFilled",
110
+ "IconAlignBoxRightMiddle",
111
+ "IconAlignBoxRightStretch",
112
+ "IconAlignBoxRightTopFilled",
113
+ "IconAlignBoxRightTop",
114
+ "IconAlignBoxTopCenterFilled",
115
+ "IconAlignBoxTopCenter",
116
+ "IconAlignBoxTopLeftFilled",
117
+ "IconAlignBoxTopLeft",
118
+ "IconAlignBoxTopRightFilled",
119
+ "IconAlignBoxTopRight",
120
+ "IconAlignCenter",
121
+ "IconAlignJustified",
122
+ "IconAlignLeft",
123
+ "IconAlignRight",
124
+ "IconAlpha",
125
+ "IconAlphabetCyrillic",
126
+ "IconAlphabetGreek",
127
+ "IconAlphabetLatin",
128
+ "IconAmbulance",
129
+ "IconAmpersand",
130
+ "IconAnalyzeFilled",
131
+ "IconAnalyzeOff",
132
+ "IconAnalyze",
133
+ "IconAnchorOff",
134
+ "IconAnchor",
135
+ "IconAngle",
136
+ "IconAnkh",
137
+ "IconAntennaBars1",
138
+ "IconAntennaBars2",
139
+ "IconAntennaBars3",
140
+ "IconAntennaBars4",
141
+ "IconAntennaBars5",
142
+ "IconAntennaBarsOff",
143
+ "IconAntennaOff",
144
+ "IconAntenna",
145
+ "IconApertureOff",
146
+ "IconAperture",
147
+ "IconApiAppOff",
148
+ "IconApiApp",
149
+ "IconApiOff",
150
+ "IconApi",
151
+ "IconAppWindowFilled",
152
+ "IconAppWindow",
153
+ "IconApple",
154
+ "IconAppsFilled",
155
+ "IconAppsOff",
156
+ "IconApps",
157
+ "IconArchiveFilled",
158
+ "IconArchiveOff",
159
+ "IconArchive",
160
+ "IconArmchair2Off",
161
+ "IconArmchair2",
162
+ "IconArmchairOff",
163
+ "IconArmchair",
164
+ "IconArrowAutofitContentFilled",
165
+ "IconArrowAutofitContent",
166
+ "IconArrowAutofitDown",
167
+ "IconArrowAutofitHeight",
168
+ "IconArrowAutofitLeft",
169
+ "IconArrowAutofitRight",
170
+ "IconArrowAutofitUp",
171
+ "IconArrowAutofitWidth",
172
+ "IconArrowBackUpDouble",
173
+ "IconArrowBackUp",
174
+ "IconArrowBack",
175
+ "IconArrowBadgeDownFilled",
176
+ "IconArrowBadgeDown",
177
+ "IconArrowBadgeLeftFilled",
178
+ "IconArrowBadgeLeft",
179
+ "IconArrowBadgeRightFilled",
180
+ "IconArrowBadgeRight",
181
+ "IconArrowBadgeUpFilled",
182
+ "IconArrowBadgeUp",
183
+ "IconArrowBarBoth",
184
+ "IconArrowBarDown",
185
+ "IconArrowBarLeft",
186
+ "IconArrowBarRight",
187
+ "IconArrowBarToDown",
188
+ "IconArrowBarToLeft",
189
+ "IconArrowBarToRight",
190
+ "IconArrowBarToUp",
191
+ "IconArrowBarUp",
192
+ "IconArrowBearLeft2",
193
+ "IconArrowBearLeft",
194
+ "IconArrowBearRight2",
195
+ "IconArrowBearRight",
196
+ "IconArrowBigDownFilled",
197
+ "IconArrowBigDownLineFilled",
198
+ "IconArrowBigDownLine",
199
+ "IconArrowBigDownLinesFilled",
200
+ "IconArrowBigDownLines",
201
+ "IconArrowBigDown",
202
+ "IconArrowBigLeftFilled",
203
+ "IconArrowBigLeftLineFilled",
204
+ "IconArrowBigLeftLine",
205
+ "IconArrowBigLeftLinesFilled",
206
+ "IconArrowBigLeftLines",
207
+ "IconArrowBigLeft",
208
+ "IconArrowBigRightFilled",
209
+ "IconArrowBigRightLineFilled",
210
+ "IconArrowBigRightLine",
211
+ "IconArrowBigRightLinesFilled",
212
+ "IconArrowBigRightLines",
213
+ "IconArrowBigRight",
214
+ "IconArrowBigUpFilled",
215
+ "IconArrowBigUpLineFilled",
216
+ "IconArrowBigUpLine",
217
+ "IconArrowBigUpLinesFilled",
218
+ "IconArrowBigUpLines",
219
+ "IconArrowBigUp",
220
+ "IconArrowBounce",
221
+ "IconArrowCapsule",
222
+ "IconArrowCurveLeft",
223
+ "IconArrowCurveRight",
224
+ "IconArrowDownBar",
225
+ "IconArrowDownCircle",
226
+ "IconArrowDownLeftCircle",
227
+ "IconArrowDownLeft",
228
+ "IconArrowDownRhombus",
229
+ "IconArrowDownRightCircle",
230
+ "IconArrowDownRight",
231
+ "IconArrowDownSquare",
232
+ "IconArrowDownTail",
233
+ "IconArrowDown",
234
+ "IconArrowElbowLeft",
235
+ "IconArrowElbowRight",
236
+ "IconArrowFork",
237
+ "IconArrowForwardUpDouble",
238
+ "IconArrowForwardUp",
239
+ "IconArrowForward",
240
+ "IconArrowGuide",
241
+ "IconArrowIteration",
242
+ "IconArrowLeftBar",
243
+ "IconArrowLeftCircle",
244
+ "IconArrowLeftRhombus",
245
+ "IconArrowLeftRight",
246
+ "IconArrowLeftSquare",
247
+ "IconArrowLeftTail",
248
+ "IconArrowLeft",
249
+ "IconArrowLoopLeft2",
250
+ "IconArrowLoopLeft",
251
+ "IconArrowLoopRight2",
252
+ "IconArrowLoopRight",
253
+ "IconArrowMergeBoth",
254
+ "IconArrowMergeLeft",
255
+ "IconArrowMergeRight",
256
+ "IconArrowMerge",
257
+ "IconArrowMoveDown",
258
+ "IconArrowMoveLeft",
259
+ "IconArrowMoveRight",
260
+ "IconArrowMoveUp",
261
+ "IconArrowNarrowDown",
262
+ "IconArrowNarrowLeft",
263
+ "IconArrowNarrowRight",
264
+ "IconArrowNarrowUp",
265
+ "IconArrowRampLeft2",
266
+ "IconArrowRampLeft3",
267
+ "IconArrowRampLeft",
268
+ "IconArrowRampRight2",
269
+ "IconArrowRampRight3",
270
+ "IconArrowRampRight",
271
+ "IconArrowRightBar",
272
+ "IconArrowRightCircle",
273
+ "IconArrowRightRhombus",
274
+ "IconArrowRightSquare",
275
+ "IconArrowRightTail",
276
+ "IconArrowRight",
277
+ "IconArrowRotaryFirstLeft",
278
+ "IconArrowRotaryFirstRight",
279
+ "IconArrowRotaryLastLeft",
280
+ "IconArrowRotaryLastRight",
281
+ "IconArrowRotaryLeft",
282
+ "IconArrowRotaryRight",
283
+ "IconArrowRotaryStraight",
284
+ "IconArrowRoundaboutLeft",
285
+ "IconArrowRoundaboutRight",
286
+ "IconArrowSharpTurnLeft",
287
+ "IconArrowSharpTurnRight",
288
+ "IconArrowUpBar",
289
+ "IconArrowUpCircle",
290
+ "IconArrowUpLeftCircle",
291
+ "IconArrowUpLeft",
292
+ "IconArrowUpRhombus",
293
+ "IconArrowUpRightCircle",
294
+ "IconArrowUpRight",
295
+ "IconArrowUpSquare",
296
+ "IconArrowUpTail",
297
+ "IconArrowUp",
298
+ "IconArrowWaveLeftDown",
299
+ "IconArrowWaveLeftUp",
300
+ "IconArrowWaveRightDown",
301
+ "IconArrowWaveRightUp",
302
+ "IconArrowZigZag",
303
+ "IconArrowsCross",
304
+ "IconArrowsDiagonal2",
305
+ "IconArrowsDiagonalMinimize2",
306
+ "IconArrowsDiagonalMinimize",
307
+ "IconArrowsDiagonal",
308
+ "IconArrowsDiff",
309
+ "IconArrowsDoubleNeSw",
310
+ "IconArrowsDoubleNwSe",
311
+ "IconArrowsDoubleSeNw",
312
+ "IconArrowsDoubleSwNe",
313
+ "IconArrowsDownUp",
314
+ "IconArrowsDown",
315
+ "IconArrowsExchange2",
316
+ "IconArrowsExchange",
317
+ "IconArrowsHorizontal",
318
+ "IconArrowsJoin2",
319
+ "IconArrowsJoin",
320
+ "IconArrowsLeftDown",
321
+ "IconArrowsLeftRight",
322
+ "IconArrowsLeft",
323
+ "IconArrowsMaximize",
324
+ "IconArrowsMinimize",
325
+ "IconArrowsMoveHorizontal",
326
+ "IconArrowsMoveVertical",
327
+ "IconArrowsMove",
328
+ "IconArrowsRandom",
329
+ "IconArrowsRightDown",
330
+ "IconArrowsRightLeft",
331
+ "IconArrowsRight",
332
+ "IconArrowsShuffle2",
333
+ "IconArrowsShuffle",
334
+ "IconArrowsSort",
335
+ "IconArrowsSplit2",
336
+ "IconArrowsSplit",
337
+ "IconArrowsTransferDown",
338
+ "IconArrowsTransferUp",
339
+ "IconArrowsUpDown",
340
+ "IconArrowsUpLeft",
341
+ "IconArrowsUpRight",
342
+ "IconArrowsUp",
343
+ "IconArrowsVertical",
344
+ "IconArtboardFilled",
345
+ "IconArtboardOff",
346
+ "IconArtboard",
347
+ "IconArticleFilledFilled",
348
+ "IconArticleOff",
349
+ "IconArticle",
350
+ "IconAspectRatioFilled",
351
+ "IconAspectRatioOff",
352
+ "IconAspectRatio",
353
+ "IconAssemblyOff",
354
+ "IconAssembly",
355
+ "IconAsset",
356
+ "IconAsteriskSimple",
357
+ "IconAsterisk",
358
+ "IconAtOff",
359
+ "IconAt",
360
+ "IconAtom2Filled",
361
+ "IconAtom2",
362
+ "IconAtomOff",
363
+ "IconAtom",
364
+ "IconAugmentedReality2",
365
+ "IconAugmentedRealityOff",
366
+ "IconAugmentedReality",
367
+ "IconAwardFilled",
368
+ "IconAwardOff",
369
+ "IconAward",
370
+ "IconAxe",
371
+ "IconAxisX",
372
+ "IconAxisY",
373
+ "IconBabyBottle",
374
+ "IconBabyCarriage",
375
+ "IconBackhoe",
376
+ "IconBackpackOff",
377
+ "IconBackpack",
378
+ "IconBackslash",
379
+ "IconBackspaceFilled",
380
+ "IconBackspace",
381
+ "IconBadge3d",
382
+ "IconBadge4k",
383
+ "IconBadge8k",
384
+ "IconBadgeAd",
385
+ "IconBadgeAr",
386
+ "IconBadgeCc",
387
+ "IconBadgeFilled",
388
+ "IconBadgeHd",
389
+ "IconBadgeOff",
390
+ "IconBadgeSd",
391
+ "IconBadgeTm",
392
+ "IconBadgeVo",
393
+ "IconBadgeVr",
394
+ "IconBadgeWc",
395
+ "IconBadge",
396
+ "IconBadgesFilled",
397
+ "IconBadgesOff",
398
+ "IconBadges",
399
+ "IconBaguette",
400
+ "IconBallAmericanFootballOff",
401
+ "IconBallAmericanFootball",
402
+ "IconBallBaseball",
403
+ "IconBallBasketball",
404
+ "IconBallBowling",
405
+ "IconBallFootballOff",
406
+ "IconBallFootball",
407
+ "IconBallTennis",
408
+ "IconBallVolleyball",
409
+ "IconBalloonFilled",
410
+ "IconBalloonOff",
411
+ "IconBalloon",
412
+ "IconBallpenFilled",
413
+ "IconBallpenOff",
414
+ "IconBallpen",
415
+ "IconBan",
416
+ "IconBandageFilled",
417
+ "IconBandageOff",
418
+ "IconBandage",
419
+ "IconBarbellOff",
420
+ "IconBarbell",
421
+ "IconBarcodeOff",
422
+ "IconBarcode",
423
+ "IconBarrelOff",
424
+ "IconBarrel",
425
+ "IconBarrierBlockOff",
426
+ "IconBarrierBlock",
427
+ "IconBaselineDensityLarge",
428
+ "IconBaselineDensityMedium",
429
+ "IconBaselineDensitySmall",
430
+ "IconBaseline",
431
+ "IconBasketFilled",
432
+ "IconBasketOff",
433
+ "IconBasket",
434
+ "IconBat",
435
+ "IconBathFilled",
436
+ "IconBathOff",
437
+ "IconBath",
438
+ "IconBattery1Filled",
439
+ "IconBattery1",
440
+ "IconBattery2Filled",
441
+ "IconBattery2",
442
+ "IconBattery3Filled",
443
+ "IconBattery3",
444
+ "IconBattery4Filled",
445
+ "IconBattery4",
446
+ "IconBatteryAutomotive",
447
+ "IconBatteryCharging2",
448
+ "IconBatteryCharging",
449
+ "IconBatteryEco",
450
+ "IconBatteryFilled",
451
+ "IconBatteryOff",
452
+ "IconBattery",
453
+ "IconBeachOff",
454
+ "IconBeach",
455
+ "IconBedFilled",
456
+ "IconBedOff",
457
+ "IconBed",
458
+ "IconBeerFilled",
459
+ "IconBeerOff",
460
+ "IconBeer",
461
+ "IconBellBolt",
462
+ "IconBellCancel",
463
+ "IconBellCheck",
464
+ "IconBellCode",
465
+ "IconBellCog",
466
+ "IconBellDollar",
467
+ "IconBellDown",
468
+ "IconBellExclamation",
469
+ "IconBellFilled",
470
+ "IconBellHeart",
471
+ "IconBellMinusFilled",
472
+ "IconBellMinus",
473
+ "IconBellOff",
474
+ "IconBellPause",
475
+ "IconBellPin",
476
+ "IconBellPlusFilled",
477
+ "IconBellPlus",
478
+ "IconBellQuestion",
479
+ "IconBellRinging2Filled",
480
+ "IconBellRinging2",
481
+ "IconBellRingingFilled",
482
+ "IconBellRinging",
483
+ "IconBellSchool",
484
+ "IconBellSearch",
485
+ "IconBellShare",
486
+ "IconBellStar",
487
+ "IconBellUp",
488
+ "IconBellXFilled",
489
+ "IconBellX",
490
+ "IconBellZFilled",
491
+ "IconBellZ",
492
+ "IconBell",
493
+ "IconBeta",
494
+ "IconBible",
495
+ "IconBikeOff",
496
+ "IconBike",
497
+ "IconBinaryOff",
498
+ "IconBinaryTree2",
499
+ "IconBinaryTree",
500
+ "IconBinary",
501
+ "IconBiohazardOff",
502
+ "IconBiohazard",
503
+ "IconBladeFilled",
504
+ "IconBlade",
505
+ "IconBleachChlorine",
506
+ "IconBleachNoChlorine",
507
+ "IconBleachOff",
508
+ "IconBleach",
509
+ "IconBlockquote",
510
+ "IconBluetoothConnected",
511
+ "IconBluetoothOff",
512
+ "IconBluetoothX",
513
+ "IconBluetooth",
514
+ "IconBlurOff",
515
+ "IconBlur",
516
+ "IconBmp",
517
+ "IconBoldOff",
518
+ "IconBold",
519
+ "IconBoltOff",
520
+ "IconBolt",
521
+ "IconBombFilled",
522
+ "IconBomb",
523
+ "IconBoneOff",
524
+ "IconBone",
525
+ "IconBongOff",
526
+ "IconBong",
527
+ "IconBook2",
528
+ "IconBookDownload",
529
+ "IconBookFilled",
530
+ "IconBookOff",
531
+ "IconBookUpload",
532
+ "IconBook",
533
+ "IconBookmarkEdit",
534
+ "IconBookmarkFilled",
535
+ "IconBookmarkMinus",
536
+ "IconBookmarkOff",
537
+ "IconBookmarkPlus",
538
+ "IconBookmarkQuestion",
539
+ "IconBookmark",
540
+ "IconBookmarksFilled",
541
+ "IconBookmarksOff",
542
+ "IconBookmarks",
543
+ "IconBooksOff",
544
+ "IconBooks",
545
+ "IconBorderAll",
546
+ "IconBorderBottom",
547
+ "IconBorderCorners",
548
+ "IconBorderHorizontal",
549
+ "IconBorderInner",
550
+ "IconBorderLeft",
551
+ "IconBorderNone",
552
+ "IconBorderOuter",
553
+ "IconBorderRadius",
554
+ "IconBorderRight",
555
+ "IconBorderSides",
556
+ "IconBorderStyle2",
557
+ "IconBorderStyle",
558
+ "IconBorderTop",
559
+ "IconBorderVertical",
560
+ "IconBottleFilled",
561
+ "IconBottleOff",
562
+ "IconBottle",
563
+ "IconBounceLeftFilled",
564
+ "IconBounceLeft",
565
+ "IconBounceRightFilled",
566
+ "IconBounceRight",
567
+ "IconBow",
568
+ "IconBowlFilled",
569
+ "IconBowl",
570
+ "IconBoxAlignBottomFilled",
571
+ "IconBoxAlignBottomLeftFilled",
572
+ "IconBoxAlignBottomLeft",
573
+ "IconBoxAlignBottomRightFilled",
574
+ "IconBoxAlignBottomRight",
575
+ "IconBoxAlignBottom",
576
+ "IconBoxAlignLeftFilled",
577
+ "IconBoxAlignLeft",
578
+ "IconBoxAlignRightFilled",
579
+ "IconBoxAlignRight",
580
+ "IconBoxAlignTopFilled",
581
+ "IconBoxAlignTopLeftFilled",
582
+ "IconBoxAlignTopLeft",
583
+ "IconBoxAlignTopRightFilled",
584
+ "IconBoxAlignTopRight",
585
+ "IconBoxAlignTop",
586
+ "IconBoxMargin",
587
+ "IconBoxModel2Off",
588
+ "IconBoxModel2",
589
+ "IconBoxModelOff",
590
+ "IconBoxModel",
591
+ "IconBoxMultiple0",
592
+ "IconBoxMultiple1",
593
+ "IconBoxMultiple2",
594
+ "IconBoxMultiple3",
595
+ "IconBoxMultiple4",
596
+ "IconBoxMultiple5",
597
+ "IconBoxMultiple6",
598
+ "IconBoxMultiple7",
599
+ "IconBoxMultiple8",
600
+ "IconBoxMultiple9",
601
+ "IconBoxMultiple",
602
+ "IconBoxOff",
603
+ "IconBoxPadding",
604
+ "IconBoxSeam",
605
+ "IconBox",
606
+ "IconBracesOff",
607
+ "IconBraces",
608
+ "IconBracketsContainEnd",
609
+ "IconBracketsContainStart",
610
+ "IconBracketsContain",
611
+ "IconBracketsOff",
612
+ "IconBrackets",
613
+ "IconBraille",
614
+ "IconBrain",
615
+ "IconBrand4chan",
616
+ "IconBrandAbstract",
617
+ "IconBrandAdobe",
618
+ "IconBrandAdonisJs",
619
+ "IconBrandAirbnb",
620
+ "IconBrandAirtable",
621
+ "IconBrandAlgolia",
622
+ "IconBrandAlipay",
623
+ "IconBrandAlpineJs",
624
+ "IconBrandAmazon",
625
+ "IconBrandAmd",
626
+ "IconBrandAmigo",
627
+ "IconBrandAmongUs",
628
+ "IconBrandAndroid",
629
+ "IconBrandAngular",
630
+ "IconBrandAnsible",
631
+ "IconBrandAo3",
632
+ "IconBrandAppgallery",
633
+ "IconBrandAppleArcade",
634
+ "IconBrandApplePodcast",
635
+ "IconBrandApple",
636
+ "IconBrandAppstore",
637
+ "IconBrandAsana",
638
+ "IconBrandAws",
639
+ "IconBrandAzure",
640
+ "IconBrandBackbone",
641
+ "IconBrandBadoo",
642
+ "IconBrandBaidu",
643
+ "IconBrandBandcamp",
644
+ "IconBrandBandlab",
645
+ "IconBrandBeats",
646
+ "IconBrandBehance",
647
+ "IconBrandBilibili",
648
+ "IconBrandBinance",
649
+ "IconBrandBing",
650
+ "IconBrandBitbucket",
651
+ "IconBrandBlackberry",
652
+ "IconBrandBlender",
653
+ "IconBrandBlogger",
654
+ "IconBrandBooking",
655
+ "IconBrandBootstrap",
656
+ "IconBrandBulma",
657
+ "IconBrandBumble",
658
+ "IconBrandBunpo",
659
+ "IconBrandCSharp",
660
+ "IconBrandCake",
661
+ "IconBrandCakephp",
662
+ "IconBrandCampaignmonitor",
663
+ "IconBrandCarbon",
664
+ "IconBrandCashapp",
665
+ "IconBrandChrome",
666
+ "IconBrandCinema4d",
667
+ "IconBrandCitymapper",
668
+ "IconBrandCloudflare",
669
+ "IconBrandCodecov",
670
+ "IconBrandCodepen",
671
+ "IconBrandCodesandbox",
672
+ "IconBrandCohost",
673
+ "IconBrandCoinbase",
674
+ "IconBrandComedyCentral",
675
+ "IconBrandCoreos",
676
+ "IconBrandCouchdb",
677
+ "IconBrandCouchsurfing",
678
+ "IconBrandCpp",
679
+ "IconBrandCraft",
680
+ "IconBrandCrunchbase",
681
+ "IconBrandCss3",
682
+ "IconBrandCtemplar",
683
+ "IconBrandCucumber",
684
+ "IconBrandCupra",
685
+ "IconBrandCypress",
686
+ "IconBrandD3",
687
+ "IconBrandDaysCounter",
688
+ "IconBrandDcos",
689
+ "IconBrandDebian",
690
+ "IconBrandDeezer",
691
+ "IconBrandDeliveroo",
692
+ "IconBrandDeno",
693
+ "IconBrandDenodo",
694
+ "IconBrandDeviantart",
695
+ "IconBrandDigg",
696
+ "IconBrandDingtalk",
697
+ "IconBrandDiscordFilled",
698
+ "IconBrandDiscord",
699
+ "IconBrandDisney",
700
+ "IconBrandDisqus",
701
+ "IconBrandDjango",
702
+ "IconBrandDocker",
703
+ "IconBrandDoctrine",
704
+ "IconBrandDolbyDigital",
705
+ "IconBrandDouban",
706
+ "IconBrandDribbbleFilled",
707
+ "IconBrandDribbble",
708
+ "IconBrandDrops",
709
+ "IconBrandDrupal",
710
+ "IconBrandEdge",
711
+ "IconBrandElastic",
712
+ "IconBrandElectronicArts",
713
+ "IconBrandEmber",
714
+ "IconBrandEnvato",
715
+ "IconBrandEtsy",
716
+ "IconBrandEvernote",
717
+ "IconBrandFacebookFilled",
718
+ "IconBrandFacebook",
719
+ "IconBrandFeedly",
720
+ "IconBrandFigma",
721
+ "IconBrandFilezilla",
722
+ "IconBrandFinder",
723
+ "IconBrandFirebase",
724
+ "IconBrandFirefox",
725
+ "IconBrandFiverr",
726
+ "IconBrandFlickr",
727
+ "IconBrandFlightradar24",
728
+ "IconBrandFlipboard",
729
+ "IconBrandFlutter",
730
+ "IconBrandFortnite",
731
+ "IconBrandFoursquare",
732
+ "IconBrandFramerMotion",
733
+ "IconBrandFramer",
734
+ "IconBrandFunimation",
735
+ "IconBrandGatsby",
736
+ "IconBrandGit",
737
+ "IconBrandGithubCopilot",
738
+ "IconBrandGithubFilled",
739
+ "IconBrandGithub",
740
+ "IconBrandGitlab",
741
+ "IconBrandGmail",
742
+ "IconBrandGolang",
743
+ "IconBrandGoogleAnalytics",
744
+ "IconBrandGoogleBigQuery",
745
+ "IconBrandGoogleDrive",
746
+ "IconBrandGoogleFit",
747
+ "IconBrandGoogleHome",
748
+ "IconBrandGoogleMaps",
749
+ "IconBrandGoogleOne",
750
+ "IconBrandGooglePhotos",
751
+ "IconBrandGooglePlay",
752
+ "IconBrandGooglePodcasts",
753
+ "IconBrandGoogle",
754
+ "IconBrandGrammarly",
755
+ "IconBrandGraphql",
756
+ "IconBrandGravatar",
757
+ "IconBrandGrindr",
758
+ "IconBrandGuardian",
759
+ "IconBrandGumroad",
760
+ "IconBrandHbo",
761
+ "IconBrandHeadlessui",
762
+ "IconBrandHexo",
763
+ "IconBrandHipchat",
764
+ "IconBrandHtml5",
765
+ "IconBrandInertia",
766
+ "IconBrandInstagram",
767
+ "IconBrandIntercom",
768
+ "IconBrandItch",
769
+ "IconBrandJavascript",
770
+ "IconBrandJuejin",
771
+ "IconBrandKbin",
772
+ "IconBrandKick",
773
+ "IconBrandKickstarter",
774
+ "IconBrandKotlin",
775
+ "IconBrandLaravel",
776
+ "IconBrandLastfm",
777
+ "IconBrandLeetcode",
778
+ "IconBrandLetterboxd",
779
+ "IconBrandLine",
780
+ "IconBrandLinkedin",
781
+ "IconBrandLinktree",
782
+ "IconBrandLinqpad",
783
+ "IconBrandLoom",
784
+ "IconBrandMailgun",
785
+ "IconBrandMantine",
786
+ "IconBrandMastercard",
787
+ "IconBrandMastodon",
788
+ "IconBrandMatrix",
789
+ "IconBrandMcdonalds",
790
+ "IconBrandMedium",
791
+ "IconBrandMercedes",
792
+ "IconBrandMessenger",
793
+ "IconBrandMeta",
794
+ "IconBrandMicrosoftTeams",
795
+ "IconBrandMinecraft",
796
+ "IconBrandMiniprogram",
797
+ "IconBrandMixpanel",
798
+ "IconBrandMonday",
799
+ "IconBrandMongodb",
800
+ "IconBrandMyOppo",
801
+ "IconBrandMysql",
802
+ "IconBrandNationalGeographic",
803
+ "IconBrandNem",
804
+ "IconBrandNetbeans",
805
+ "IconBrandNeteaseMusic",
806
+ "IconBrandNetflix",
807
+ "IconBrandNexo",
808
+ "IconBrandNextcloud",
809
+ "IconBrandNextjs",
810
+ "IconBrandNodejs",
811
+ "IconBrandNordVpn",
812
+ "IconBrandNotion",
813
+ "IconBrandNpm",
814
+ "IconBrandNuxt",
815
+ "IconBrandNytimes",
816
+ "IconBrandOauth",
817
+ "IconBrandOffice",
818
+ "IconBrandOkRu",
819
+ "IconBrandOnedrive",
820
+ "IconBrandOnlyfans",
821
+ "IconBrandOpenSource",
822
+ "IconBrandOpenai",
823
+ "IconBrandOpenvpn",
824
+ "IconBrandOpera",
825
+ "IconBrandPagekit",
826
+ "IconBrandPatreon",
827
+ "IconBrandPaypalFilled",
828
+ "IconBrandPaypal",
829
+ "IconBrandPaypay",
830
+ "IconBrandPeanut",
831
+ "IconBrandPepsi",
832
+ "IconBrandPhp",
833
+ "IconBrandPicsart",
834
+ "IconBrandPinterest",
835
+ "IconBrandPlanetscale",
836
+ "IconBrandPocket",
837
+ "IconBrandPolymer",
838
+ "IconBrandPowershell",
839
+ "IconBrandPrisma",
840
+ "IconBrandProducthunt",
841
+ "IconBrandPushbullet",
842
+ "IconBrandPushover",
843
+ "IconBrandPython",
844
+ "IconBrandQq",
845
+ "IconBrandRadixUi",
846
+ "IconBrandReactNative",
847
+ "IconBrandReact",
848
+ "IconBrandReason",
849
+ "IconBrandReddit",
850
+ "IconBrandRedhat",
851
+ "IconBrandRedux",
852
+ "IconBrandRevolut",
853
+ "IconBrandRumble",
854
+ "IconBrandRust",
855
+ "IconBrandSafari",
856
+ "IconBrandSamsungpass",
857
+ "IconBrandSass",
858
+ "IconBrandSentry",
859
+ "IconBrandSharik",
860
+ "IconBrandShazam",
861
+ "IconBrandShopee",
862
+ "IconBrandSketch",
863
+ "IconBrandSkype",
864
+ "IconBrandSlack",
865
+ "IconBrandSnapchat",
866
+ "IconBrandSnapseed",
867
+ "IconBrandSnowflake",
868
+ "IconBrandSocketIo",
869
+ "IconBrandSolidjs",
870
+ "IconBrandSoundcloud",
871
+ "IconBrandSpacehey",
872
+ "IconBrandSpeedtest",
873
+ "IconBrandSpotify",
874
+ "IconBrandStackoverflow",
875
+ "IconBrandStackshare",
876
+ "IconBrandSteam",
877
+ "IconBrandStorj",
878
+ "IconBrandStorybook",
879
+ "IconBrandStorytel",
880
+ "IconBrandStrava",
881
+ "IconBrandStripe",
882
+ "IconBrandSublimeText",
883
+ "IconBrandSugarizer",
884
+ "IconBrandSupabase",
885
+ "IconBrandSuperhuman",
886
+ "IconBrandSupernova",
887
+ "IconBrandSurfshark",
888
+ "IconBrandSvelte",
889
+ "IconBrandSwift",
890
+ "IconBrandSymfony",
891
+ "IconBrandTabler",
892
+ "IconBrandTailwind",
893
+ "IconBrandTaobao",
894
+ "IconBrandTed",
895
+ "IconBrandTelegram",
896
+ "IconBrandTerraform",
897
+ "IconBrandTether",
898
+ "IconBrandThreads",
899
+ "IconBrandThreejs",
900
+ "IconBrandTidal",
901
+ "IconBrandTiktoFilled",
902
+ "IconBrandTiktok",
903
+ "IconBrandTinder",
904
+ "IconBrandTopbuzz",
905
+ "IconBrandTorchain",
906
+ "IconBrandToyota",
907
+ "IconBrandTrello",
908
+ "IconBrandTripadvisor",
909
+ "IconBrandTumblr",
910
+ "IconBrandTwilio",
911
+ "IconBrandTwitch",
912
+ "IconBrandTwitterFilled",
913
+ "IconBrandTwitter",
914
+ "IconBrandTypescript",
915
+ "IconBrandUber",
916
+ "IconBrandUbuntu",
917
+ "IconBrandUnity",
918
+ "IconBrandUnsplash",
919
+ "IconBrandUpwork",
920
+ "IconBrandValorant",
921
+ "IconBrandVercel",
922
+ "IconBrandVimeo",
923
+ "IconBrandVinted",
924
+ "IconBrandVisa",
925
+ "IconBrandVisualStudio",
926
+ "IconBrandVite",
927
+ "IconBrandVivaldi",
928
+ "IconBrandVk",
929
+ "IconBrandVlc",
930
+ "IconBrandVolkswagen",
931
+ "IconBrandVsco",
932
+ "IconBrandVscode",
933
+ "IconBrandVue",
934
+ "IconBrandWalmart",
935
+ "IconBrandWaze",
936
+ "IconBrandWebflow",
937
+ "IconBrandWechat",
938
+ "IconBrandWeibo",
939
+ "IconBrandWhatsapp",
940
+ "IconBrandWikipedia",
941
+ "IconBrandWindows",
942
+ "IconBrandWindy",
943
+ "IconBrandWish",
944
+ "IconBrandWix",
945
+ "IconBrandWordpress",
946
+ "IconBrandXamarin",
947
+ "IconBrandXbox",
948
+ "IconBrandXing",
949
+ "IconBrandYahoo",
950
+ "IconBrandYandex",
951
+ "IconBrandYatse",
952
+ "IconBrandYcombinator",
953
+ "IconBrandYoutubeKids",
954
+ "IconBrandYoutube",
955
+ "IconBrandZalando",
956
+ "IconBrandZapier",
957
+ "IconBrandZeit",
958
+ "IconBrandZhihu",
959
+ "IconBrandZoom",
960
+ "IconBrandZulip",
961
+ "IconBrandZwift",
962
+ "IconBreadOff",
963
+ "IconBread",
964
+ "IconBriefcase2",
965
+ "IconBriefcaseOff",
966
+ "IconBriefcase",
967
+ "IconBrightness2",
968
+ "IconBrightnessDownFilled",
969
+ "IconBrightnessDown",
970
+ "IconBrightnessHalf",
971
+ "IconBrightnessOff",
972
+ "IconBrightnessUpFilled",
973
+ "IconBrightnessUp",
974
+ "IconBrightness",
975
+ "IconBroadcastOff",
976
+ "IconBroadcast",
977
+ "IconBrowserCheck",
978
+ "IconBrowserOff",
979
+ "IconBrowserPlus",
980
+ "IconBrowserX",
981
+ "IconBrowser",
982
+ "IconBrushOff",
983
+ "IconBrush",
984
+ "IconBucketDroplet",
985
+ "IconBucketOff",
986
+ "IconBucket",
987
+ "IconBugOff",
988
+ "IconBug",
989
+ "IconBuildingArch",
990
+ "IconBuildingBank",
991
+ "IconBuildingBridge2",
992
+ "IconBuildingBridge",
993
+ "IconBuildingBroadcastTower",
994
+ "IconBuildingCarousel",
995
+ "IconBuildingCastle",
996
+ "IconBuildingChurch",
997
+ "IconBuildingCircus",
998
+ "IconBuildingCommunity",
999
+ "IconBuildingCottage",
1000
+ "IconBuildingEstate",
1001
+ "IconBuildingFactory2",
1002
+ "IconBuildingFactory",
1003
+ "IconBuildingFortress",
1004
+ "IconBuildingHospital",
1005
+ "IconBuildingLighthouse",
1006
+ "IconBuildingMonument",
1007
+ "IconBuildingMosque",
1008
+ "IconBuildingPavilion",
1009
+ "IconBuildingSkyscraper",
1010
+ "IconBuildingStadium",
1011
+ "IconBuildingStore",
1012
+ "IconBuildingTunnel",
1013
+ "IconBuildingWarehouse",
1014
+ "IconBuildingWindTurbine",
1015
+ "IconBuilding",
1016
+ "IconBulbFilled",
1017
+ "IconBulbOff",
1018
+ "IconBulb",
1019
+ "IconBulldozer",
1020
+ "IconBusOff",
1021
+ "IconBusStop",
1022
+ "IconBus",
1023
+ "IconBusinessplan",
1024
+ "IconButterfly",
1025
+ "IconCactusFilled",
1026
+ "IconCactusOff",
1027
+ "IconCactus",
1028
+ "IconCakeOff",
1029
+ "IconCake",
1030
+ "IconCalculatorFilled",
1031
+ "IconCalculatorOff",
1032
+ "IconCalculator",
1033
+ "IconCalendarBolt",
1034
+ "IconCalendarCancel",
1035
+ "IconCalendarCheck",
1036
+ "IconCalendarCode",
1037
+ "IconCalendarCog",
1038
+ "IconCalendarDollar",
1039
+ "IconCalendarDown",
1040
+ "IconCalendarDue",
1041
+ "IconCalendarEvent",
1042
+ "IconCalendarExclamation",
1043
+ "IconCalendarFilled",
1044
+ "IconCalendarHeart",
1045
+ "IconCalendarMinus",
1046
+ "IconCalendarOff",
1047
+ "IconCalendarPause",
1048
+ "IconCalendarPin",
1049
+ "IconCalendarPlus",
1050
+ "IconCalendarQuestion",
1051
+ "IconCalendarRepeat",
1052
+ "IconCalendarSearch",
1053
+ "IconCalendarShare",
1054
+ "IconCalendarStar",
1055
+ "IconCalendarStats",
1056
+ "IconCalendarTime",
1057
+ "IconCalendarUp",
1058
+ "IconCalendarX",
1059
+ "IconCalendar",
1060
+ "IconCameraBolt",
1061
+ "IconCameraCancel",
1062
+ "IconCameraCheck",
1063
+ "IconCameraCode",
1064
+ "IconCameraCog",
1065
+ "IconCameraDollar",
1066
+ "IconCameraDown",
1067
+ "IconCameraExclamation",
1068
+ "IconCameraFilled",
1069
+ "IconCameraHeart",
1070
+ "IconCameraMinus",
1071
+ "IconCameraOff",
1072
+ "IconCameraPause",
1073
+ "IconCameraPin",
1074
+ "IconCameraPlus",
1075
+ "IconCameraQuestion",
1076
+ "IconCameraRotate",
1077
+ "IconCameraSearch",
1078
+ "IconCameraSelfie",
1079
+ "IconCameraShare",
1080
+ "IconCameraStar",
1081
+ "IconCameraUp",
1082
+ "IconCameraX",
1083
+ "IconCamera",
1084
+ "IconCamper",
1085
+ "IconCampfireFilled",
1086
+ "IconCampfire",
1087
+ "IconCandle",
1088
+ "IconCandyOff",
1089
+ "IconCandy",
1090
+ "IconCane",
1091
+ "IconCannabis",
1092
+ "IconCapsuleHorizontal",
1093
+ "IconCapsule",
1094
+ "IconCaptureFilled",
1095
+ "IconCaptureOff",
1096
+ "IconCapture",
1097
+ "IconCarCrane",
1098
+ "IconCarCrash",
1099
+ "IconCarOff",
1100
+ "IconCarTurbine",
1101
+ "IconCar",
1102
+ "IconCaravan",
1103
+ "IconCardboardsOff",
1104
+ "IconCardboards",
1105
+ "IconCards",
1106
+ "IconCaretDownFilled",
1107
+ "IconCaretDown",
1108
+ "IconCaretLeftFilled",
1109
+ "IconCaretLeft",
1110
+ "IconCaretRightFilled",
1111
+ "IconCaretRight",
1112
+ "IconCaretUpFilled",
1113
+ "IconCaretUp",
1114
+ "IconCarouselHorizontalFilled",
1115
+ "IconCarouselHorizontal",
1116
+ "IconCarouselVerticalFilled",
1117
+ "IconCarouselVertical",
1118
+ "IconCarrotOff",
1119
+ "IconCarrot",
1120
+ "IconCashBanknoteOff",
1121
+ "IconCashBanknote",
1122
+ "IconCashOff",
1123
+ "IconCash",
1124
+ "IconCastOff",
1125
+ "IconCast",
1126
+ "IconCat",
1127
+ "IconCategory2",
1128
+ "IconCategoryFilled",
1129
+ "IconCategory",
1130
+ "IconCeOff",
1131
+ "IconCe",
1132
+ "IconCellSignal1",
1133
+ "IconCellSignal2",
1134
+ "IconCellSignal3",
1135
+ "IconCellSignal4",
1136
+ "IconCellSignal5",
1137
+ "IconCellSignalOff",
1138
+ "IconCell",
1139
+ "IconCertificate2Off",
1140
+ "IconCertificate2",
1141
+ "IconCertificateOff",
1142
+ "IconCertificate",
1143
+ "IconChairDirector",
1144
+ "IconChalkboardOff",
1145
+ "IconChalkboard",
1146
+ "IconChargingPile",
1147
+ "IconChartArcs3",
1148
+ "IconChartArcs",
1149
+ "IconChartAreaFilled",
1150
+ "IconChartAreaLineFilled",
1151
+ "IconChartAreaLine",
1152
+ "IconChartArea",
1153
+ "IconChartArrowsVertical",
1154
+ "IconChartArrows",
1155
+ "IconChartBarOff",
1156
+ "IconChartBar",
1157
+ "IconChartBubbleFilled",
1158
+ "IconChartBubble",
1159
+ "IconChartCandleFilled",
1160
+ "IconChartCandle",
1161
+ "IconChartCircles",
1162
+ "IconChartDonut2",
1163
+ "IconChartDonut3",
1164
+ "IconChartDonut4",
1165
+ "IconChartDonutFilled",
1166
+ "IconChartDonut",
1167
+ "IconChartDots2",
1168
+ "IconChartDots3",
1169
+ "IconChartDots",
1170
+ "IconChartGridDots",
1171
+ "IconChartHistogram",
1172
+ "IconChartInfographic",
1173
+ "IconChartLine",
1174
+ "IconChartPie2",
1175
+ "IconChartPie3",
1176
+ "IconChartPie4",
1177
+ "IconChartPieFilled",
1178
+ "IconChartPieOff",
1179
+ "IconChartPie",
1180
+ "IconChartPpf",
1181
+ "IconChartRadar",
1182
+ "IconChartSankey",
1183
+ "IconChartTreemap",
1184
+ "IconCheck",
1185
+ "IconCheckbox",
1186
+ "IconChecklist",
1187
+ "IconChecks",
1188
+ "IconCheckupList",
1189
+ "IconCheese",
1190
+ "IconChefHatOff",
1191
+ "IconChefHat",
1192
+ "IconCherryFilled",
1193
+ "IconCherry",
1194
+ "IconChessBishopFilled",
1195
+ "IconChessBishop",
1196
+ "IconChessFilled",
1197
+ "IconChessKingFilled",
1198
+ "IconChessKing",
1199
+ "IconChessKnightFilled",
1200
+ "IconChessKnight",
1201
+ "IconChessQueenFilled",
1202
+ "IconChessQueen",
1203
+ "IconChessRookFilled",
1204
+ "IconChessRook",
1205
+ "IconChess",
1206
+ "IconChevronCompactDown",
1207
+ "IconChevronCompactLeft",
1208
+ "IconChevronCompactRight",
1209
+ "IconChevronCompactUp",
1210
+ "IconChevronDownLeft",
1211
+ "IconChevronDownRight",
1212
+ "IconChevronDown",
1213
+ "IconChevronLeftPipe",
1214
+ "IconChevronLeft",
1215
+ "IconChevronRightPipe",
1216
+ "IconChevronRight",
1217
+ "IconChevronUpLeft",
1218
+ "IconChevronUpRight",
1219
+ "IconChevronUp",
1220
+ "IconChevronsDownLeft",
1221
+ "IconChevronsDownRight",
1222
+ "IconChevronsDown",
1223
+ "IconChevronsLeft",
1224
+ "IconChevronsRight",
1225
+ "IconChevronsUpLeft",
1226
+ "IconChevronsUpRight",
1227
+ "IconChevronsUp",
1228
+ "IconChisel",
1229
+ "IconChristmasTreeOff",
1230
+ "IconChristmasTree",
1231
+ "IconCircle0Filled",
1232
+ "IconCircle1Filled",
1233
+ "IconCircle2Filled",
1234
+ "IconCircle3Filled",
1235
+ "IconCircle4Filled",
1236
+ "IconCircle5Filled",
1237
+ "IconCircle6Filled",
1238
+ "IconCircle7Filled",
1239
+ "IconCircle8Filled",
1240
+ "IconCircle9Filled",
1241
+ "IconCircleArrowDownFilled",
1242
+ "IconCircleArrowDownLeftFilled",
1243
+ "IconCircleArrowDownLeft",
1244
+ "IconCircleArrowDownRightFilled",
1245
+ "IconCircleArrowDownRight",
1246
+ "IconCircleArrowDown",
1247
+ "IconCircleArrowLeftFilled",
1248
+ "IconCircleArrowLeft",
1249
+ "IconCircleArrowRightFilled",
1250
+ "IconCircleArrowRight",
1251
+ "IconCircleArrowUpFilled",
1252
+ "IconCircleArrowUpLeftFilled",
1253
+ "IconCircleArrowUpLeft",
1254
+ "IconCircleArrowUpRightFilled",
1255
+ "IconCircleArrowUpRight",
1256
+ "IconCircleArrowUp",
1257
+ "IconCircleCaretDown",
1258
+ "IconCircleCaretLeft",
1259
+ "IconCircleCaretRight",
1260
+ "IconCircleCaretUp",
1261
+ "IconCircleCheckFilled",
1262
+ "IconCircleCheck",
1263
+ "IconCircleChevronDown",
1264
+ "IconCircleChevronLeft",
1265
+ "IconCircleChevronRight",
1266
+ "IconCircleChevronUp",
1267
+ "IconCircleChevronsDown",
1268
+ "IconCircleChevronsLeft",
1269
+ "IconCircleChevronsRight",
1270
+ "IconCircleChevronsUp",
1271
+ "IconCircleDashed",
1272
+ "IconCircleDotFilled",
1273
+ "IconCircleDot",
1274
+ "IconCircleDotted",
1275
+ "IconCircleFilled",
1276
+ "IconCircleHalf2",
1277
+ "IconCircleHalfVertical",
1278
+ "IconCircleHalf",
1279
+ "IconCircleKeyFilled",
1280
+ "IconCircleKey",
1281
+ "IconCircleLetterA",
1282
+ "IconCircleLetterB",
1283
+ "IconCircleLetterC",
1284
+ "IconCircleLetterD",
1285
+ "IconCircleLetterE",
1286
+ "IconCircleLetterF",
1287
+ "IconCircleLetterG",
1288
+ "IconCircleLetterH",
1289
+ "IconCircleLetterI",
1290
+ "IconCircleLetterJ",
1291
+ "IconCircleLetterK",
1292
+ "IconCircleLetterL",
1293
+ "IconCircleLetterM",
1294
+ "IconCircleLetterN",
1295
+ "IconCircleLetterO",
1296
+ "IconCircleLetterP",
1297
+ "IconCircleLetterQ",
1298
+ "IconCircleLetterR",
1299
+ "IconCircleLetterS",
1300
+ "IconCircleLetterT",
1301
+ "IconCircleLetterU",
1302
+ "IconCircleLetterV",
1303
+ "IconCircleLetterW",
1304
+ "IconCircleLetterX",
1305
+ "IconCircleLetterY",
1306
+ "IconCircleLetterZ",
1307
+ "IconCircleMinus",
1308
+ "IconCircleNumber0",
1309
+ "IconCircleNumber1",
1310
+ "IconCircleNumber2",
1311
+ "IconCircleNumber3",
1312
+ "IconCircleNumber4",
1313
+ "IconCircleNumber5",
1314
+ "IconCircleNumber6",
1315
+ "IconCircleNumber7",
1316
+ "IconCircleNumber8",
1317
+ "IconCircleNumber9",
1318
+ "IconCircleOff",
1319
+ "IconCirclePlus",
1320
+ "IconCircleRectangleOff",
1321
+ "IconCircleRectangle",
1322
+ "IconCircleSquare",
1323
+ "IconCircleTriangle",
1324
+ "IconCircleXFilled",
1325
+ "IconCircleX",
1326
+ "IconCircle",
1327
+ "IconCirclesFilled",
1328
+ "IconCirclesRelation",
1329
+ "IconCircles",
1330
+ "IconCircuitAmmeter",
1331
+ "IconCircuitBattery",
1332
+ "IconCircuitBulb",
1333
+ "IconCircuitCapacitorPolarized",
1334
+ "IconCircuitCapacitor",
1335
+ "IconCircuitCellPlus",
1336
+ "IconCircuitCell",
1337
+ "IconCircuitChangeover",
1338
+ "IconCircuitDiodeZener",
1339
+ "IconCircuitDiode",
1340
+ "IconCircuitGroundDigital",
1341
+ "IconCircuitGround",
1342
+ "IconCircuitInductor",
1343
+ "IconCircuitMotor",
1344
+ "IconCircuitPushbutton",
1345
+ "IconCircuitResistor",
1346
+ "IconCircuitSwitchClosed",
1347
+ "IconCircuitSwitchOpen",
1348
+ "IconCircuitVoltmeter",
1349
+ "IconClearAll",
1350
+ "IconClearFormatting",
1351
+ "IconClick",
1352
+ "IconClipboardCheck",
1353
+ "IconClipboardCopy",
1354
+ "IconClipboardData",
1355
+ "IconClipboardHeart",
1356
+ "IconClipboardList",
1357
+ "IconClipboardOff",
1358
+ "IconClipboardPlus",
1359
+ "IconClipboardText",
1360
+ "IconClipboardTypography",
1361
+ "IconClipboardX",
1362
+ "IconClipboard",
1363
+ "IconClock2",
1364
+ "IconClockBolt",
1365
+ "IconClockCancel",
1366
+ "IconClockCheck",
1367
+ "IconClockCode",
1368
+ "IconClockCog",
1369
+ "IconClockDollar",
1370
+ "IconClockDown",
1371
+ "IconClockEdit",
1372
+ "IconClockExclamation",
1373
+ "IconClockFilled",
1374
+ "IconClockHeart",
1375
+ "IconClockHour1",
1376
+ "IconClockHour10",
1377
+ "IconClockHour11",
1378
+ "IconClockHour12",
1379
+ "IconClockHour2",
1380
+ "IconClockHour3",
1381
+ "IconClockHour4",
1382
+ "IconClockHour5",
1383
+ "IconClockHour6",
1384
+ "IconClockHour7",
1385
+ "IconClockHour8",
1386
+ "IconClockHour9",
1387
+ "IconClockMinus",
1388
+ "IconClockOff",
1389
+ "IconClockPause",
1390
+ "IconClockPin",
1391
+ "IconClockPlay",
1392
+ "IconClockPlus",
1393
+ "IconClockQuestion",
1394
+ "IconClockRecord",
1395
+ "IconClockSearch",
1396
+ "IconClockShare",
1397
+ "IconClockShield",
1398
+ "IconClockStar",
1399
+ "IconClockStop",
1400
+ "IconClockUp",
1401
+ "IconClockX",
1402
+ "IconClock",
1403
+ "IconClothesRackOff",
1404
+ "IconClothesRack",
1405
+ "IconCloudBolt",
1406
+ "IconCloudCancel",
1407
+ "IconCloudCheck",
1408
+ "IconCloudCode",
1409
+ "IconCloudCog",
1410
+ "IconCloudComputing",
1411
+ "IconCloudDataConnection",
1412
+ "IconCloudDollar",
1413
+ "IconCloudDown",
1414
+ "IconCloudDownload",
1415
+ "IconCloudExclamation",
1416
+ "IconCloudFilled",
1417
+ "IconCloudFog",
1418
+ "IconCloudHeart",
1419
+ "IconCloudLockOpen",
1420
+ "IconCloudLock",
1421
+ "IconCloudMinus",
1422
+ "IconCloudOff",
1423
+ "IconCloudPause",
1424
+ "IconCloudPin",
1425
+ "IconCloudPlus",
1426
+ "IconCloudQuestion",
1427
+ "IconCloudRain",
1428
+ "IconCloudSearch",
1429
+ "IconCloudShare",
1430
+ "IconCloudSnow",
1431
+ "IconCloudStar",
1432
+ "IconCloudStorm",
1433
+ "IconCloudUp",
1434
+ "IconCloudUpload",
1435
+ "IconCloudX",
1436
+ "IconCloud",
1437
+ "IconClover2",
1438
+ "IconClover",
1439
+ "IconClubsFilled",
1440
+ "IconClubs",
1441
+ "IconCodeAsterix",
1442
+ "IconCodeCircle2",
1443
+ "IconCodeCircle",
1444
+ "IconCodeDots",
1445
+ "IconCodeMinus",
1446
+ "IconCodeOff",
1447
+ "IconCodePlus",
1448
+ "IconCode",
1449
+ "IconCoffeeOff",
1450
+ "IconCoffee",
1451
+ "IconCoffin",
1452
+ "IconCoinBitcoin",
1453
+ "IconCoinEuro",
1454
+ "IconCoinMonero",
1455
+ "IconCoinOff",
1456
+ "IconCoinPound",
1457
+ "IconCoinRupee",
1458
+ "IconCoinYen",
1459
+ "IconCoinYuan",
1460
+ "IconCoin",
1461
+ "IconCoins",
1462
+ "IconColorFilter",
1463
+ "IconColorPickerOff",
1464
+ "IconColorPicker",
1465
+ "IconColorSwatchOff",
1466
+ "IconColorSwatch",
1467
+ "IconColumnInsertLeft",
1468
+ "IconColumnInsertRight",
1469
+ "IconColumnRemove",
1470
+ "IconColumns1",
1471
+ "IconColumns2",
1472
+ "IconColumns3",
1473
+ "IconColumnsOff",
1474
+ "IconColumns",
1475
+ "IconComet",
1476
+ "IconCommandOff",
1477
+ "IconCommand",
1478
+ "IconCompassOff",
1479
+ "IconCompass",
1480
+ "IconComponentsOff",
1481
+ "IconComponents",
1482
+ "IconCone2",
1483
+ "IconConeOff",
1484
+ "IconConePlus",
1485
+ "IconCone",
1486
+ "IconConfettiOff",
1487
+ "IconConfetti",
1488
+ "IconConfucius",
1489
+ "IconContainerOff",
1490
+ "IconContainer",
1491
+ "IconContrast2Off",
1492
+ "IconContrast2",
1493
+ "IconContrastOff",
1494
+ "IconContrast",
1495
+ "IconCooker",
1496
+ "IconCookieMan",
1497
+ "IconCookieOff",
1498
+ "IconCookie",
1499
+ "IconCopyOff",
1500
+ "IconCopy",
1501
+ "IconCopyleftFilled",
1502
+ "IconCopyleftOff",
1503
+ "IconCopyleft",
1504
+ "IconCopyrightFilled",
1505
+ "IconCopyrightOff",
1506
+ "IconCopyright",
1507
+ "IconCornerDownLeftDouble",
1508
+ "IconCornerDownLeft",
1509
+ "IconCornerDownRightDouble",
1510
+ "IconCornerDownRight",
1511
+ "IconCornerLeftDownDouble",
1512
+ "IconCornerLeftDown",
1513
+ "IconCornerLeftUpDouble",
1514
+ "IconCornerLeftUp",
1515
+ "IconCornerRightDownDouble",
1516
+ "IconCornerRightDown",
1517
+ "IconCornerRightUpDouble",
1518
+ "IconCornerRightUp",
1519
+ "IconCornerUpLeftDouble",
1520
+ "IconCornerUpLeft",
1521
+ "IconCornerUpRightDouble",
1522
+ "IconCornerUpRight",
1523
+ "IconCpu2",
1524
+ "IconCpuOff",
1525
+ "IconCpu",
1526
+ "IconCraneOff",
1527
+ "IconCrane",
1528
+ "IconCreativeCommonsBy",
1529
+ "IconCreativeCommonsNc",
1530
+ "IconCreativeCommonsNd",
1531
+ "IconCreativeCommonsOff",
1532
+ "IconCreativeCommonsSa",
1533
+ "IconCreativeCommonsZero",
1534
+ "IconCreativeCommons",
1535
+ "IconCreditCardOff",
1536
+ "IconCreditCard",
1537
+ "IconCricket",
1538
+ "IconCrop",
1539
+ "IconCrossFilled",
1540
+ "IconCrossOff",
1541
+ "IconCross",
1542
+ "IconCrosshair",
1543
+ "IconCrownOff",
1544
+ "IconCrown",
1545
+ "IconCrutchesOff",
1546
+ "IconCrutches",
1547
+ "IconCrystalBall",
1548
+ "IconCsv",
1549
+ "IconCubeOff",
1550
+ "IconCubePlus",
1551
+ "IconCubeSend",
1552
+ "IconCubeUnfolded",
1553
+ "IconCube",
1554
+ "IconCupOff",
1555
+ "IconCup",
1556
+ "IconCurling",
1557
+ "IconCurlyLoop",
1558
+ "IconCurrencyAfghani",
1559
+ "IconCurrencyBahraini",
1560
+ "IconCurrencyBaht",
1561
+ "IconCurrencyBitcoin",
1562
+ "IconCurrencyCent",
1563
+ "IconCurrencyDinar",
1564
+ "IconCurrencyDirham",
1565
+ "IconCurrencyDogecoin",
1566
+ "IconCurrencyDollarAustralian",
1567
+ "IconCurrencyDollarBrunei",
1568
+ "IconCurrencyDollarCanadian",
1569
+ "IconCurrencyDollarGuyanese",
1570
+ "IconCurrencyDollarOff",
1571
+ "IconCurrencyDollarSingapore",
1572
+ "IconCurrencyDollarZimbabwean",
1573
+ "IconCurrencyDollar",
1574
+ "IconCurrencyDong",
1575
+ "IconCurrencyDram",
1576
+ "IconCurrencyEthereum",
1577
+ "IconCurrencyEuroOff",
1578
+ "IconCurrencyEuro",
1579
+ "IconCurrencyFlorin",
1580
+ "IconCurrencyForint",
1581
+ "IconCurrencyFrank",
1582
+ "IconCurrencyGuarani",
1583
+ "IconCurrencyHryvnia",
1584
+ "IconCurrencyIranianRial",
1585
+ "IconCurrencyKip",
1586
+ "IconCurrencyKroneCzech",
1587
+ "IconCurrencyKroneDanish",
1588
+ "IconCurrencyKroneSwedish",
1589
+ "IconCurrencyLari",
1590
+ "IconCurrencyLeu",
1591
+ "IconCurrencyLira",
1592
+ "IconCurrencyLitecoin",
1593
+ "IconCurrencyLyd",
1594
+ "IconCurrencyManat",
1595
+ "IconCurrencyMonero",
1596
+ "IconCurrencyNaira",
1597
+ "IconCurrencyNano",
1598
+ "IconCurrencyOff",
1599
+ "IconCurrencyPaanga",
1600
+ "IconCurrencyPeso",
1601
+ "IconCurrencyPoundOff",
1602
+ "IconCurrencyPound",
1603
+ "IconCurrencyQuetzal",
1604
+ "IconCurrencyReal",
1605
+ "IconCurrencyRenminbi",
1606
+ "IconCurrencyRipple",
1607
+ "IconCurrencyRiyal",
1608
+ "IconCurrencyRubel",
1609
+ "IconCurrencyRufiyaa",
1610
+ "IconCurrencyRupeeNepalese",
1611
+ "IconCurrencyRupee",
1612
+ "IconCurrencyShekel",
1613
+ "IconCurrencySolana",
1614
+ "IconCurrencySom",
1615
+ "IconCurrencyTaka",
1616
+ "IconCurrencyTenge",
1617
+ "IconCurrencyTugrik",
1618
+ "IconCurrencyWon",
1619
+ "IconCurrencyYenOff",
1620
+ "IconCurrencyYen",
1621
+ "IconCurrencyYuan",
1622
+ "IconCurrencyZloty",
1623
+ "IconCurrency",
1624
+ "IconCurrentLocationOff",
1625
+ "IconCurrentLocation",
1626
+ "IconCursorOff",
1627
+ "IconCursorText",
1628
+ "IconCut",
1629
+ "IconCylinderOff",
1630
+ "IconCylinderPlus",
1631
+ "IconCylinder",
1632
+ "IconDashboardOff",
1633
+ "IconDashboard",
1634
+ "IconDatabaseCog",
1635
+ "IconDatabaseDollar",
1636
+ "IconDatabaseEdit",
1637
+ "IconDatabaseExclamation",
1638
+ "IconDatabaseExport",
1639
+ "IconDatabaseHeart",
1640
+ "IconDatabaseImport",
1641
+ "IconDatabaseLeak",
1642
+ "IconDatabaseMinus",
1643
+ "IconDatabaseOff",
1644
+ "IconDatabasePlus",
1645
+ "IconDatabaseSearch",
1646
+ "IconDatabaseShare",
1647
+ "IconDatabaseStar",
1648
+ "IconDatabaseX",
1649
+ "IconDatabase",
1650
+ "IconDecimal",
1651
+ "IconDeer",
1652
+ "IconDelta",
1653
+ "IconDentalBroken",
1654
+ "IconDentalOff",
1655
+ "IconDental",
1656
+ "IconDeselect",
1657
+ "IconDetailsOff",
1658
+ "IconDetails",
1659
+ "IconDeviceAirpodsCase",
1660
+ "IconDeviceAirpods",
1661
+ "IconDeviceAirtag",
1662
+ "IconDeviceAnalytics",
1663
+ "IconDeviceAudioTape",
1664
+ "IconDeviceCameraPhone",
1665
+ "IconDeviceCctvOff",
1666
+ "IconDeviceCctv",
1667
+ "IconDeviceComputerCameraOff",
1668
+ "IconDeviceComputerCamera",
1669
+ "IconDeviceDesktopAnalytics",
1670
+ "IconDeviceDesktopBolt",
1671
+ "IconDeviceDesktopCancel",
1672
+ "IconDeviceDesktopCheck",
1673
+ "IconDeviceDesktopCode",
1674
+ "IconDeviceDesktopCog",
1675
+ "IconDeviceDesktopDollar",
1676
+ "IconDeviceDesktopDown",
1677
+ "IconDeviceDesktopExclamation",
1678
+ "IconDeviceDesktopHeart",
1679
+ "IconDeviceDesktopMinus",
1680
+ "IconDeviceDesktopOff",
1681
+ "IconDeviceDesktopPause",
1682
+ "IconDeviceDesktopPin",
1683
+ "IconDeviceDesktopPlus",
1684
+ "IconDeviceDesktopQuestion",
1685
+ "IconDeviceDesktopSearch",
1686
+ "IconDeviceDesktopShare",
1687
+ "IconDeviceDesktopStar",
1688
+ "IconDeviceDesktopUp",
1689
+ "IconDeviceDesktopX",
1690
+ "IconDeviceDesktop",
1691
+ "IconDeviceFloppy",
1692
+ "IconDeviceGamepad2",
1693
+ "IconDeviceGamepad",
1694
+ "IconDeviceHeartMonitorFilled",
1695
+ "IconDeviceHeartMonitor",
1696
+ "IconDeviceImacBolt",
1697
+ "IconDeviceImacCancel",
1698
+ "IconDeviceImacCheck",
1699
+ "IconDeviceImacCode",
1700
+ "IconDeviceImacCog",
1701
+ "IconDeviceImacDollar",
1702
+ "IconDeviceImacDown",
1703
+ "IconDeviceImacExclamation",
1704
+ "IconDeviceImacHeart",
1705
+ "IconDeviceImacMinus",
1706
+ "IconDeviceImacOff",
1707
+ "IconDeviceImacPause",
1708
+ "IconDeviceImacPin",
1709
+ "IconDeviceImacPlus",
1710
+ "IconDeviceImacQuestion",
1711
+ "IconDeviceImacSearch",
1712
+ "IconDeviceImacShare",
1713
+ "IconDeviceImacStar",
1714
+ "IconDeviceImacUp",
1715
+ "IconDeviceImacX",
1716
+ "IconDeviceImac",
1717
+ "IconDeviceIpadBolt",
1718
+ "IconDeviceIpadCancel",
1719
+ "IconDeviceIpadCheck",
1720
+ "IconDeviceIpadCode",
1721
+ "IconDeviceIpadCog",
1722
+ "IconDeviceIpadDollar",
1723
+ "IconDeviceIpadDown",
1724
+ "IconDeviceIpadExclamation",
1725
+ "IconDeviceIpadHeart",
1726
+ "IconDeviceIpadHorizontalBolt",
1727
+ "IconDeviceIpadHorizontalCancel",
1728
+ "IconDeviceIpadHorizontalCheck",
1729
+ "IconDeviceIpadHorizontalCode",
1730
+ "IconDeviceIpadHorizontalCog",
1731
+ "IconDeviceIpadHorizontalDollar",
1732
+ "IconDeviceIpadHorizontalDown",
1733
+ "IconDeviceIpadHorizontalExclamation",
1734
+ "IconDeviceIpadHorizontalHeart",
1735
+ "IconDeviceIpadHorizontalMinus",
1736
+ "IconDeviceIpadHorizontalOff",
1737
+ "IconDeviceIpadHorizontalPause",
1738
+ "IconDeviceIpadHorizontalPin",
1739
+ "IconDeviceIpadHorizontalPlus",
1740
+ "IconDeviceIpadHorizontalQuestion",
1741
+ "IconDeviceIpadHorizontalSearch",
1742
+ "IconDeviceIpadHorizontalShare",
1743
+ "IconDeviceIpadHorizontalStar",
1744
+ "IconDeviceIpadHorizontalUp",
1745
+ "IconDeviceIpadHorizontalX",
1746
+ "IconDeviceIpadHorizontal",
1747
+ "IconDeviceIpadMinus",
1748
+ "IconDeviceIpadOff",
1749
+ "IconDeviceIpadPause",
1750
+ "IconDeviceIpadPin",
1751
+ "IconDeviceIpadPlus",
1752
+ "IconDeviceIpadQuestion",
1753
+ "IconDeviceIpadSearch",
1754
+ "IconDeviceIpadShare",
1755
+ "IconDeviceIpadStar",
1756
+ "IconDeviceIpadUp",
1757
+ "IconDeviceIpadX",
1758
+ "IconDeviceIpad",
1759
+ "IconDeviceLandlinePhone",
1760
+ "IconDeviceLaptopOff",
1761
+ "IconDeviceLaptop",
1762
+ "IconDeviceMobileBolt",
1763
+ "IconDeviceMobileCancel",
1764
+ "IconDeviceMobileCharging",
1765
+ "IconDeviceMobileCheck",
1766
+ "IconDeviceMobileCode",
1767
+ "IconDeviceMobileCog",
1768
+ "IconDeviceMobileDollar",
1769
+ "IconDeviceMobileDown",
1770
+ "IconDeviceMobileExclamation",
1771
+ "IconDeviceMobileFilled",
1772
+ "IconDeviceMobileHeart",
1773
+ "IconDeviceMobileMessage",
1774
+ "IconDeviceMobileMinus",
1775
+ "IconDeviceMobileOff",
1776
+ "IconDeviceMobilePause",
1777
+ "IconDeviceMobilePin",
1778
+ "IconDeviceMobilePlus",
1779
+ "IconDeviceMobileQuestion",
1780
+ "IconDeviceMobileRotated",
1781
+ "IconDeviceMobileSearch",
1782
+ "IconDeviceMobileShare",
1783
+ "IconDeviceMobileStar",
1784
+ "IconDeviceMobileUp",
1785
+ "IconDeviceMobileVibration",
1786
+ "IconDeviceMobileX",
1787
+ "IconDeviceMobile",
1788
+ "IconDeviceNintendoOff",
1789
+ "IconDeviceNintendo",
1790
+ "IconDeviceRemote",
1791
+ "IconDeviceSdCard",
1792
+ "IconDeviceSim1",
1793
+ "IconDeviceSim2",
1794
+ "IconDeviceSim3",
1795
+ "IconDeviceSim",
1796
+ "IconDeviceSpeakerOff",
1797
+ "IconDeviceSpeaker",
1798
+ "IconDeviceTabletBolt",
1799
+ "IconDeviceTabletCancel",
1800
+ "IconDeviceTabletCheck",
1801
+ "IconDeviceTabletCode",
1802
+ "IconDeviceTabletCog",
1803
+ "IconDeviceTabletDollar",
1804
+ "IconDeviceTabletDown",
1805
+ "IconDeviceTabletExclamation",
1806
+ "IconDeviceTabletFilled",
1807
+ "IconDeviceTabletHeart",
1808
+ "IconDeviceTabletMinus",
1809
+ "IconDeviceTabletOff",
1810
+ "IconDeviceTabletPause",
1811
+ "IconDeviceTabletPin",
1812
+ "IconDeviceTabletPlus",
1813
+ "IconDeviceTabletQuestion",
1814
+ "IconDeviceTabletSearch",
1815
+ "IconDeviceTabletShare",
1816
+ "IconDeviceTabletStar",
1817
+ "IconDeviceTabletUp",
1818
+ "IconDeviceTabletX",
1819
+ "IconDeviceTablet",
1820
+ "IconDeviceTvOff",
1821
+ "IconDeviceTvOld",
1822
+ "IconDeviceTv",
1823
+ "IconDeviceVisionPro",
1824
+ "IconDeviceWatchBolt",
1825
+ "IconDeviceWatchCancel",
1826
+ "IconDeviceWatchCheck",
1827
+ "IconDeviceWatchCode",
1828
+ "IconDeviceWatchCog",
1829
+ "IconDeviceWatchDollar",
1830
+ "IconDeviceWatchDown",
1831
+ "IconDeviceWatchExclamation",
1832
+ "IconDeviceWatchHeart",
1833
+ "IconDeviceWatchMinus",
1834
+ "IconDeviceWatchOff",
1835
+ "IconDeviceWatchPause",
1836
+ "IconDeviceWatchPin",
1837
+ "IconDeviceWatchPlus",
1838
+ "IconDeviceWatchQuestion",
1839
+ "IconDeviceWatchSearch",
1840
+ "IconDeviceWatchShare",
1841
+ "IconDeviceWatchStar",
1842
+ "IconDeviceWatchStats2",
1843
+ "IconDeviceWatchStats",
1844
+ "IconDeviceWatchUp",
1845
+ "IconDeviceWatchX",
1846
+ "IconDeviceWatch",
1847
+ "IconDevices2",
1848
+ "IconDevicesBolt",
1849
+ "IconDevicesCancel",
1850
+ "IconDevicesCheck",
1851
+ "IconDevicesCode",
1852
+ "IconDevicesCog",
1853
+ "IconDevicesDollar",
1854
+ "IconDevicesDown",
1855
+ "IconDevicesExclamation",
1856
+ "IconDevicesHeart",
1857
+ "IconDevicesMinus",
1858
+ "IconDevicesOff",
1859
+ "IconDevicesPause",
1860
+ "IconDevicesPcOff",
1861
+ "IconDevicesPc",
1862
+ "IconDevicesPin",
1863
+ "IconDevicesPlus",
1864
+ "IconDevicesQuestion",
1865
+ "IconDevicesSearch",
1866
+ "IconDevicesShare",
1867
+ "IconDevicesStar",
1868
+ "IconDevicesUp",
1869
+ "IconDevicesX",
1870
+ "IconDevices",
1871
+ "IconDiaboloOff",
1872
+ "IconDiaboloPlus",
1873
+ "IconDiabolo",
1874
+ "IconDialpadFilled",
1875
+ "IconDialpadOff",
1876
+ "IconDialpad",
1877
+ "IconDiamondFilled",
1878
+ "IconDiamondOff",
1879
+ "IconDiamond",
1880
+ "IconDiamondsFilled",
1881
+ "IconDiamonds",
1882
+ "IconDice1Filled",
1883
+ "IconDice1",
1884
+ "IconDice2Filled",
1885
+ "IconDice2",
1886
+ "IconDice3Filled",
1887
+ "IconDice3",
1888
+ "IconDice4Filled",
1889
+ "IconDice4",
1890
+ "IconDice5Filled",
1891
+ "IconDice5",
1892
+ "IconDice6Filled",
1893
+ "IconDice6",
1894
+ "IconDiceFilled",
1895
+ "IconDice",
1896
+ "IconDimensions",
1897
+ "IconDirectionHorizontal",
1898
+ "IconDirectionSignFilled",
1899
+ "IconDirectionSignOff",
1900
+ "IconDirectionSign",
1901
+ "IconDirection",
1902
+ "IconDirectionsOff",
1903
+ "IconDirections",
1904
+ "IconDisabled2",
1905
+ "IconDisabledOff",
1906
+ "IconDisabled",
1907
+ "IconDiscGolf",
1908
+ "IconDiscOff",
1909
+ "IconDisc",
1910
+ "IconDiscount2Off",
1911
+ "IconDiscount2",
1912
+ "IconDiscountCheckFilled",
1913
+ "IconDiscountCheck",
1914
+ "IconDiscountOff",
1915
+ "IconDiscount",
1916
+ "IconDivide",
1917
+ "IconDna2Off",
1918
+ "IconDna2",
1919
+ "IconDnaOff",
1920
+ "IconDna",
1921
+ "IconDogBowl",
1922
+ "IconDog",
1923
+ "IconDoorEnter",
1924
+ "IconDoorExit",
1925
+ "IconDoorOff",
1926
+ "IconDoor",
1927
+ "IconDotsCircleHorizontal",
1928
+ "IconDotsDiagonal2",
1929
+ "IconDotsDiagonal",
1930
+ "IconDotsVertical",
1931
+ "IconDots",
1932
+ "IconDownloadOff",
1933
+ "IconDownload",
1934
+ "IconDragDrop2",
1935
+ "IconDragDrop",
1936
+ "IconDroneOff",
1937
+ "IconDrone",
1938
+ "IconDropCircle",
1939
+ "IconDropletBolt",
1940
+ "IconDropletCancel",
1941
+ "IconDropletCheck",
1942
+ "IconDropletCode",
1943
+ "IconDropletCog",
1944
+ "IconDropletDollar",
1945
+ "IconDropletDown",
1946
+ "IconDropletExclamation",
1947
+ "IconDropletFilled",
1948
+ "IconDropletHalf2",
1949
+ "IconDropletHalfFilled",
1950
+ "IconDropletHalf",
1951
+ "IconDropletHeart",
1952
+ "IconDropletMinus",
1953
+ "IconDropletOff",
1954
+ "IconDropletPause",
1955
+ "IconDropletPin",
1956
+ "IconDropletPlus",
1957
+ "IconDropletQuestion",
1958
+ "IconDropletSearch",
1959
+ "IconDropletShare",
1960
+ "IconDropletStar",
1961
+ "IconDropletUp",
1962
+ "IconDropletX",
1963
+ "IconDroplet",
1964
+ "IconDualScreen",
1965
+ "IconEPassport",
1966
+ "IconEarOff",
1967
+ "IconEar",
1968
+ "IconEaseInControlPoint",
1969
+ "IconEaseInOutControlPoints",
1970
+ "IconEaseInOut",
1971
+ "IconEaseIn",
1972
+ "IconEaseOutControlPoint",
1973
+ "IconEaseOut",
1974
+ "IconEditCircleOff",
1975
+ "IconEditCircle",
1976
+ "IconEditOff",
1977
+ "IconEdit",
1978
+ "IconEggCracked",
1979
+ "IconEggFilled",
1980
+ "IconEggFried",
1981
+ "IconEggOff",
1982
+ "IconEgg",
1983
+ "IconEggs",
1984
+ "IconElevatorOff",
1985
+ "IconElevator",
1986
+ "IconEmergencyBed",
1987
+ "IconEmpathizeOff",
1988
+ "IconEmpathize",
1989
+ "IconEmphasis",
1990
+ "IconEngineOff",
1991
+ "IconEngine",
1992
+ "IconEqualDouble",
1993
+ "IconEqualNot",
1994
+ "IconEqual",
1995
+ "IconEraserOff",
1996
+ "IconEraser",
1997
+ "IconError404Off",
1998
+ "IconError404",
1999
+ "IconEscalatorDown",
2000
+ "IconEscalatorUp",
2001
+ "IconEscalator",
2002
+ "IconExchangeOff",
2003
+ "IconExchange",
2004
+ "IconExclamationCircle",
2005
+ "IconExclamationMarkOff",
2006
+ "IconExclamationMark",
2007
+ "IconExplicitOff",
2008
+ "IconExplicit",
2009
+ "IconExposure0",
2010
+ "IconExposureMinus1",
2011
+ "IconExposureMinus2",
2012
+ "IconExposureOff",
2013
+ "IconExposurePlus1",
2014
+ "IconExposurePlus2",
2015
+ "IconExposure",
2016
+ "IconExternalLinkOff",
2017
+ "IconExternalLink",
2018
+ "IconEyeCheck",
2019
+ "IconEyeClosed",
2020
+ "IconEyeCog",
2021
+ "IconEyeEdit",
2022
+ "IconEyeExclamation",
2023
+ "IconEyeFilled",
2024
+ "IconEyeHeart",
2025
+ "IconEyeOff",
2026
+ "IconEyeTable",
2027
+ "IconEyeX",
2028
+ "IconEye",
2029
+ "IconEyeglass2",
2030
+ "IconEyeglassOff",
2031
+ "IconEyeglass",
2032
+ "IconFaceIdError",
2033
+ "IconFaceId",
2034
+ "IconFaceMaskOff",
2035
+ "IconFaceMask",
2036
+ "IconFall",
2037
+ "IconFeatherOff",
2038
+ "IconFeather",
2039
+ "IconFenceOff",
2040
+ "IconFence",
2041
+ "IconFidgetSpinner",
2042
+ "IconFile3d",
2043
+ "IconFileAlert",
2044
+ "IconFileAnalytics",
2045
+ "IconFileArrowLeft",
2046
+ "IconFileArrowRight",
2047
+ "IconFileBarcode",
2048
+ "IconFileBroken",
2049
+ "IconFileCertificate",
2050
+ "IconFileChart",
2051
+ "IconFileCheck",
2052
+ "IconFileCode2",
2053
+ "IconFileCode",
2054
+ "IconFileCv",
2055
+ "IconFileDatabase",
2056
+ "IconFileDelta",
2057
+ "IconFileDescription",
2058
+ "IconFileDiff",
2059
+ "IconFileDigit",
2060
+ "IconFileDislike",
2061
+ "IconFileDollar",
2062
+ "IconFileDots",
2063
+ "IconFileDownload",
2064
+ "IconFileEuro",
2065
+ "IconFileExport",
2066
+ "IconFileFilled",
2067
+ "IconFileFunction",
2068
+ "IconFileHorizontal",
2069
+ "IconFileImport",
2070
+ "IconFileInfinity",
2071
+ "IconFileInfo",
2072
+ "IconFileInvoice",
2073
+ "IconFileLambda",
2074
+ "IconFileLike",
2075
+ "IconFileMinus",
2076
+ "IconFileMusic",
2077
+ "IconFileOff",
2078
+ "IconFileOrientation",
2079
+ "IconFilePencil",
2080
+ "IconFilePercent",
2081
+ "IconFilePhone",
2082
+ "IconFilePlus",
2083
+ "IconFilePower",
2084
+ "IconFileReport",
2085
+ "IconFileRss",
2086
+ "IconFileScissors",
2087
+ "IconFileSearch",
2088
+ "IconFileSettings",
2089
+ "IconFileShredder",
2090
+ "IconFileSignal",
2091
+ "IconFileSpreadsheet",
2092
+ "IconFileStack",
2093
+ "IconFileStar",
2094
+ "IconFileSymlink",
2095
+ "IconFileTextAi",
2096
+ "IconFileText",
2097
+ "IconFileTime",
2098
+ "IconFileTypeBmp",
2099
+ "IconFileTypeCss",
2100
+ "IconFileTypeCsv",
2101
+ "IconFileTypeDoc",
2102
+ "IconFileTypeDocx",
2103
+ "IconFileTypeHtml",
2104
+ "IconFileTypeJpg",
2105
+ "IconFileTypeJs",
2106
+ "IconFileTypeJsx",
2107
+ "IconFileTypePdf",
2108
+ "IconFileTypePhp",
2109
+ "IconFileTypePng",
2110
+ "IconFileTypePpt",
2111
+ "IconFileTypeRs",
2112
+ "IconFileTypeSql",
2113
+ "IconFileTypeSvg",
2114
+ "IconFileTypeTs",
2115
+ "IconFileTypeTsx",
2116
+ "IconFileTypeTxt",
2117
+ "IconFileTypeVue",
2118
+ "IconFileTypeXls",
2119
+ "IconFileTypeXml",
2120
+ "IconFileTypeZip",
2121
+ "IconFileTypography",
2122
+ "IconFileUnknown",
2123
+ "IconFileUpload",
2124
+ "IconFileVector",
2125
+ "IconFileXFilled",
2126
+ "IconFileX",
2127
+ "IconFileZip",
2128
+ "IconFile",
2129
+ "IconFilesOff",
2130
+ "IconFiles",
2131
+ "IconFilterCog",
2132
+ "IconFilterDollar",
2133
+ "IconFilterEdit",
2134
+ "IconFilterMinus",
2135
+ "IconFilterOff",
2136
+ "IconFilterPlus",
2137
+ "IconFilterStar",
2138
+ "IconFilterX",
2139
+ "IconFilter",
2140
+ "IconFilters",
2141
+ "IconFingerprintOff",
2142
+ "IconFingerprint",
2143
+ "IconFireExtinguisher",
2144
+ "IconFireHydrantOff",
2145
+ "IconFireHydrant",
2146
+ "IconFiretruck",
2147
+ "IconFirstAidKitOff",
2148
+ "IconFirstAidKit",
2149
+ "IconFishBone",
2150
+ "IconFishChristianity",
2151
+ "IconFishHookOff",
2152
+ "IconFishHook",
2153
+ "IconFishOff",
2154
+ "IconFish",
2155
+ "IconFlag2Filled",
2156
+ "IconFlag2Off",
2157
+ "IconFlag2",
2158
+ "IconFlag3Filled",
2159
+ "IconFlag3",
2160
+ "IconFlagFilled",
2161
+ "IconFlagOff",
2162
+ "IconFlag",
2163
+ "IconFlameOff",
2164
+ "IconFlame",
2165
+ "IconFlare",
2166
+ "IconFlask2Off",
2167
+ "IconFlask2",
2168
+ "IconFlaskOff",
2169
+ "IconFlask",
2170
+ "IconFlipFlops",
2171
+ "IconFlipHorizontal",
2172
+ "IconFlipVertical",
2173
+ "IconFloatCenter",
2174
+ "IconFloatLeft",
2175
+ "IconFloatNone",
2176
+ "IconFloatRight",
2177
+ "IconFlowerOff",
2178
+ "IconFlower",
2179
+ "IconFocus2",
2180
+ "IconFocusAuto",
2181
+ "IconFocusCentered",
2182
+ "IconFocus",
2183
+ "IconFoldDown",
2184
+ "IconFoldUp",
2185
+ "IconFold",
2186
+ "IconFolderBolt",
2187
+ "IconFolderCancel",
2188
+ "IconFolderCheck",
2189
+ "IconFolderCode",
2190
+ "IconFolderCog",
2191
+ "IconFolderDollar",
2192
+ "IconFolderDown",
2193
+ "IconFolderExclamation",
2194
+ "IconFolderFilled",
2195
+ "IconFolderHeart",
2196
+ "IconFolderMinus",
2197
+ "IconFolderOff",
2198
+ "IconFolderOpen",
2199
+ "IconFolderPause",
2200
+ "IconFolderPin",
2201
+ "IconFolderPlus",
2202
+ "IconFolderQuestion",
2203
+ "IconFolderSearch",
2204
+ "IconFolderShare",
2205
+ "IconFolderStar",
2206
+ "IconFolderSymlink",
2207
+ "IconFolderUp",
2208
+ "IconFolderX",
2209
+ "IconFolder",
2210
+ "IconFoldersOff",
2211
+ "IconFolders",
2212
+ "IconForbid2",
2213
+ "IconForbid",
2214
+ "IconForklift",
2215
+ "IconForms",
2216
+ "IconFountainOff",
2217
+ "IconFountain",
2218
+ "IconFrameOff",
2219
+ "IconFrame",
2220
+ "IconFreeRights",
2221
+ "IconFreezeColumn",
2222
+ "IconFreezeRowColumn",
2223
+ "IconFreezeRow",
2224
+ "IconFridgeOff",
2225
+ "IconFridge",
2226
+ "IconFriendsOff",
2227
+ "IconFriends",
2228
+ "IconFrustumOff",
2229
+ "IconFrustumPlus",
2230
+ "IconFrustum",
2231
+ "IconFunctionOff",
2232
+ "IconFunction",
2233
+ "IconGardenCartOff",
2234
+ "IconGardenCart",
2235
+ "IconGasStationOff",
2236
+ "IconGasStation",
2237
+ "IconGaugeOff",
2238
+ "IconGauge",
2239
+ "IconGavel",
2240
+ "IconGenderAgender",
2241
+ "IconGenderAndrogyne",
2242
+ "IconGenderBigender",
2243
+ "IconGenderDemiboy",
2244
+ "IconGenderDemigirl",
2245
+ "IconGenderEpicene",
2246
+ "IconGenderFemale",
2247
+ "IconGenderFemme",
2248
+ "IconGenderGenderfluid",
2249
+ "IconGenderGenderless",
2250
+ "IconGenderGenderqueer",
2251
+ "IconGenderHermaphrodite",
2252
+ "IconGenderIntergender",
2253
+ "IconGenderMale",
2254
+ "IconGenderNeutrois",
2255
+ "IconGenderThird",
2256
+ "IconGenderTransgender",
2257
+ "IconGenderTrasvesti",
2258
+ "IconGeometry",
2259
+ "IconGhost2Filled",
2260
+ "IconGhost2",
2261
+ "IconGhostFilled",
2262
+ "IconGhostOff",
2263
+ "IconGhost",
2264
+ "IconGif",
2265
+ "IconGiftCard",
2266
+ "IconGiftOff",
2267
+ "IconGift",
2268
+ "IconGitBranchDeleted",
2269
+ "IconGitBranch",
2270
+ "IconGitCherryPick",
2271
+ "IconGitCommit",
2272
+ "IconGitCompare",
2273
+ "IconGitFork",
2274
+ "IconGitMerge",
2275
+ "IconGitPullRequestClosed",
2276
+ "IconGitPullRequestDraft",
2277
+ "IconGitPullRequest",
2278
+ "IconGizmo",
2279
+ "IconGlassFull",
2280
+ "IconGlassOff",
2281
+ "IconGlass",
2282
+ "IconGlobeOff",
2283
+ "IconGlobe",
2284
+ "IconGoGame",
2285
+ "IconGolfOff",
2286
+ "IconGolf",
2287
+ "IconGps",
2288
+ "IconGradienter",
2289
+ "IconGrain",
2290
+ "IconGraphOff",
2291
+ "IconGraph",
2292
+ "IconGrave2",
2293
+ "IconGrave",
2294
+ "IconGridDots",
2295
+ "IconGridPattern",
2296
+ "IconGrillFork",
2297
+ "IconGrillOff",
2298
+ "IconGrillSpatula",
2299
+ "IconGrill",
2300
+ "IconGripHorizontal",
2301
+ "IconGripVertical",
2302
+ "IconGrowth",
2303
+ "IconGuitarPickFilled",
2304
+ "IconGuitarPick",
2305
+ "IconH1",
2306
+ "IconH2",
2307
+ "IconH3",
2308
+ "IconH4",
2309
+ "IconH5",
2310
+ "IconH6",
2311
+ "IconHammerOff",
2312
+ "IconHammer",
2313
+ "IconHandClick",
2314
+ "IconHandFingerOff",
2315
+ "IconHandFinger",
2316
+ "IconHandGrab",
2317
+ "IconHandLittleFinger",
2318
+ "IconHandMiddleFinger",
2319
+ "IconHandMove",
2320
+ "IconHandOff",
2321
+ "IconHandRingFinger",
2322
+ "IconHandRock",
2323
+ "IconHandSanitizer",
2324
+ "IconHandStop",
2325
+ "IconHandThreeFingers",
2326
+ "IconHandTwoFingers",
2327
+ "IconHanger2",
2328
+ "IconHangerOff",
2329
+ "IconHanger",
2330
+ "IconHash",
2331
+ "IconHazeMoon",
2332
+ "IconHaze",
2333
+ "IconHdr",
2334
+ "IconHeadingOff",
2335
+ "IconHeading",
2336
+ "IconHeadphonesFilled",
2337
+ "IconHeadphonesOff",
2338
+ "IconHeadphones",
2339
+ "IconHeadsetOff",
2340
+ "IconHeadset",
2341
+ "IconHealthRecognition",
2342
+ "IconHeartBroken",
2343
+ "IconHeartFilled",
2344
+ "IconHeartHandshake",
2345
+ "IconHeartMinus",
2346
+ "IconHeartOff",
2347
+ "IconHeartPlus",
2348
+ "IconHeartRateMonitor",
2349
+ "IconHeart",
2350
+ "IconHeartbeat",
2351
+ "IconHeartsOff",
2352
+ "IconHearts",
2353
+ "IconHelicopterLanding",
2354
+ "IconHelicopter",
2355
+ "IconHelmetOff",
2356
+ "IconHelmet",
2357
+ "IconHelpCircleFilled",
2358
+ "IconHelpCircle",
2359
+ "IconHelpHexagonFilled",
2360
+ "IconHelpHexagon",
2361
+ "IconHelpOctagonFilled",
2362
+ "IconHelpOctagon",
2363
+ "IconHelpOff",
2364
+ "IconHelpSmall",
2365
+ "IconHelpSquareFilled",
2366
+ "IconHelpSquareRoundedFilled",
2367
+ "IconHelpSquareRounded",
2368
+ "IconHelpSquare",
2369
+ "IconHelpTriangleFilled",
2370
+ "IconHelpTriangle",
2371
+ "IconHelp",
2372
+ "IconHemisphereOff",
2373
+ "IconHemispherePlus",
2374
+ "IconHemisphere",
2375
+ "IconHexagon0Filled",
2376
+ "IconHexagon1Filled",
2377
+ "IconHexagon2Filled",
2378
+ "IconHexagon3Filled",
2379
+ "IconHexagon3d",
2380
+ "IconHexagon4Filled",
2381
+ "IconHexagon5Filled",
2382
+ "IconHexagon6Filled",
2383
+ "IconHexagon7Filled",
2384
+ "IconHexagon8Filled",
2385
+ "IconHexagon9Filled",
2386
+ "IconHexagonFilled",
2387
+ "IconHexagonLetterA",
2388
+ "IconHexagonLetterB",
2389
+ "IconHexagonLetterC",
2390
+ "IconHexagonLetterD",
2391
+ "IconHexagonLetterE",
2392
+ "IconHexagonLetterF",
2393
+ "IconHexagonLetterG",
2394
+ "IconHexagonLetterH",
2395
+ "IconHexagonLetterI",
2396
+ "IconHexagonLetterJ",
2397
+ "IconHexagonLetterK",
2398
+ "IconHexagonLetterL",
2399
+ "IconHexagonLetterM",
2400
+ "IconHexagonLetterN",
2401
+ "IconHexagonLetterO",
2402
+ "IconHexagonLetterP",
2403
+ "IconHexagonLetterQ",
2404
+ "IconHexagonLetterR",
2405
+ "IconHexagonLetterS",
2406
+ "IconHexagonLetterT",
2407
+ "IconHexagonLetterU",
2408
+ "IconHexagonLetterV",
2409
+ "IconHexagonLetterW",
2410
+ "IconHexagonLetterX",
2411
+ "IconHexagonLetterY",
2412
+ "IconHexagonLetterZ",
2413
+ "IconHexagonNumber0",
2414
+ "IconHexagonNumber1",
2415
+ "IconHexagonNumber2",
2416
+ "IconHexagonNumber3",
2417
+ "IconHexagonNumber4",
2418
+ "IconHexagonNumber5",
2419
+ "IconHexagonNumber6",
2420
+ "IconHexagonNumber7",
2421
+ "IconHexagonNumber8",
2422
+ "IconHexagonNumber9",
2423
+ "IconHexagonOff",
2424
+ "IconHexagon",
2425
+ "IconHexagonalPrismOff",
2426
+ "IconHexagonalPrismPlus",
2427
+ "IconHexagonalPrism",
2428
+ "IconHexagonalPyramidOff",
2429
+ "IconHexagonalPyramidPlus",
2430
+ "IconHexagonalPyramid",
2431
+ "IconHexagonsOff",
2432
+ "IconHexagons",
2433
+ "IconHierarchy2",
2434
+ "IconHierarchy3",
2435
+ "IconHierarchyOff",
2436
+ "IconHierarchy",
2437
+ "IconHighlightOff",
2438
+ "IconHighlight",
2439
+ "IconHistoryOff",
2440
+ "IconHistoryToggle",
2441
+ "IconHistory",
2442
+ "IconHome2",
2443
+ "IconHomeBolt",
2444
+ "IconHomeCancel",
2445
+ "IconHomeCheck",
2446
+ "IconHomeCog",
2447
+ "IconHomeDollar",
2448
+ "IconHomeDot",
2449
+ "IconHomeDown",
2450
+ "IconHomeEco",
2451
+ "IconHomeEdit",
2452
+ "IconHomeExclamation",
2453
+ "IconHomeHand",
2454
+ "IconHomeHeart",
2455
+ "IconHomeInfinity",
2456
+ "IconHomeLink",
2457
+ "IconHomeMinus",
2458
+ "IconHomeMove",
2459
+ "IconHomeOff",
2460
+ "IconHomePlus",
2461
+ "IconHomeQuestion",
2462
+ "IconHomeRibbon",
2463
+ "IconHomeSearch",
2464
+ "IconHomeShare",
2465
+ "IconHomeShield",
2466
+ "IconHomeSignal",
2467
+ "IconHomeStar",
2468
+ "IconHomeStats",
2469
+ "IconHomeUp",
2470
+ "IconHomeX",
2471
+ "IconHome",
2472
+ "IconHorseToy",
2473
+ "IconHotelService",
2474
+ "IconHourglassEmpty",
2475
+ "IconHourglassFilled",
2476
+ "IconHourglassHigh",
2477
+ "IconHourglassLow",
2478
+ "IconHourglassOff",
2479
+ "IconHourglass",
2480
+ "IconHtml",
2481
+ "IconHttpConnect",
2482
+ "IconHttpDelete",
2483
+ "IconHttpGet",
2484
+ "IconHttpHead",
2485
+ "IconHttpOptions",
2486
+ "IconHttpPatch",
2487
+ "IconHttpPost",
2488
+ "IconHttpPut",
2489
+ "IconHttpQue",
2490
+ "IconHttpTrace",
2491
+ "IconIceCream2",
2492
+ "IconIceCreamOff",
2493
+ "IconIceCream",
2494
+ "IconIceSkating",
2495
+ "IconIconsOff",
2496
+ "IconIcons",
2497
+ "IconIdBadge2",
2498
+ "IconIdBadgeOff",
2499
+ "IconIdBadge",
2500
+ "IconIdOff",
2501
+ "IconId",
2502
+ "IconInboxOff",
2503
+ "IconInbox",
2504
+ "IconIndentDecrease",
2505
+ "IconIndentIncrease",
2506
+ "IconInfinityOff",
2507
+ "IconInfinity",
2508
+ "IconInfoCircleFilled",
2509
+ "IconInfoCircle",
2510
+ "IconInfoHexagonFilled",
2511
+ "IconInfoHexagon",
2512
+ "IconInfoOctagonFilled",
2513
+ "IconInfoOctagon",
2514
+ "IconInfoSmall",
2515
+ "IconInfoSquareFilled",
2516
+ "IconInfoSquareRoundedFilled",
2517
+ "IconInfoSquareRounded",
2518
+ "IconInfoSquare",
2519
+ "IconInfoTriangleFilled",
2520
+ "IconInfoTriangle",
2521
+ "IconInnerShadowBottomFilled",
2522
+ "IconInnerShadowBottomLeftFilled",
2523
+ "IconInnerShadowBottomLeft",
2524
+ "IconInnerShadowBottomRightFilled",
2525
+ "IconInnerShadowBottomRight",
2526
+ "IconInnerShadowBottom",
2527
+ "IconInnerShadowLeftFilled",
2528
+ "IconInnerShadowLeft",
2529
+ "IconInnerShadowRightFilled",
2530
+ "IconInnerShadowRight",
2531
+ "IconInnerShadowTopFilled",
2532
+ "IconInnerShadowTopLeftFilled",
2533
+ "IconInnerShadowTopLeft",
2534
+ "IconInnerShadowTopRightFilled",
2535
+ "IconInnerShadowTopRight",
2536
+ "IconInnerShadowTop",
2537
+ "IconInputSearch",
2538
+ "IconIroning1",
2539
+ "IconIroning2",
2540
+ "IconIroning3",
2541
+ "IconIroningOff",
2542
+ "IconIroningSteamOff",
2543
+ "IconIroningSteam",
2544
+ "IconIroning",
2545
+ "IconIrregularPolyhedronOff",
2546
+ "IconIrregularPolyhedronPlus",
2547
+ "IconIrregularPolyhedron",
2548
+ "IconItalic",
2549
+ "IconJacket",
2550
+ "IconJetpack",
2551
+ "IconJewishStarFilled",
2552
+ "IconJewishStar",
2553
+ "IconJpg",
2554
+ "IconJson",
2555
+ "IconJumpRope",
2556
+ "IconKarate",
2557
+ "IconKayak",
2558
+ "IconKering",
2559
+ "IconKeyOff",
2560
+ "IconKey",
2561
+ "IconKeyboardHide",
2562
+ "IconKeyboardOff",
2563
+ "IconKeyboardShow",
2564
+ "IconKeyboard",
2565
+ "IconKeyframeAlignCenter",
2566
+ "IconKeyframeAlignHorizontal",
2567
+ "IconKeyframeAlignVertical",
2568
+ "IconKeyframe",
2569
+ "IconKeyframes",
2570
+ "IconLadderOff",
2571
+ "IconLadder",
2572
+ "IconLambda",
2573
+ "IconLamp2",
2574
+ "IconLampOff",
2575
+ "IconLamp",
2576
+ "IconLane",
2577
+ "IconLanguageHiragana",
2578
+ "IconLanguageKatakana",
2579
+ "IconLanguageOff",
2580
+ "IconLanguage",
2581
+ "IconLassoOff",
2582
+ "IconLassoPolygon",
2583
+ "IconLasso",
2584
+ "IconLayersDifference",
2585
+ "IconLayersIntersect2",
2586
+ "IconLayersIntersect",
2587
+ "IconLayersLinked",
2588
+ "IconLayersOff",
2589
+ "IconLayersSubtract",
2590
+ "IconLayersUnion",
2591
+ "IconLayout2",
2592
+ "IconLayoutAlignBottom",
2593
+ "IconLayoutAlignCenter",
2594
+ "IconLayoutAlignLeft",
2595
+ "IconLayoutAlignMiddle",
2596
+ "IconLayoutAlignRight",
2597
+ "IconLayoutAlignTop",
2598
+ "IconLayoutBoardSplit",
2599
+ "IconLayoutBoard",
2600
+ "IconLayoutBottombarCollapse",
2601
+ "IconLayoutBottombarExpand",
2602
+ "IconLayoutBottombar",
2603
+ "IconLayoutCards",
2604
+ "IconLayoutCollage",
2605
+ "IconLayoutColumns",
2606
+ "IconLayoutDashboard",
2607
+ "IconLayoutDistributeHorizontal",
2608
+ "IconLayoutDistributeVertical",
2609
+ "IconLayoutGridAdd",
2610
+ "IconLayoutGridRemove",
2611
+ "IconLayoutGrid",
2612
+ "IconLayoutKanban",
2613
+ "IconLayoutList",
2614
+ "IconLayoutNavbarCollapse",
2615
+ "IconLayoutNavbarExpand",
2616
+ "IconLayoutNavbar",
2617
+ "IconLayoutOff",
2618
+ "IconLayoutRows",
2619
+ "IconLayoutSidebarLeftCollapse",
2620
+ "IconLayoutSidebarLeftExpand",
2621
+ "IconLayoutSidebarRightCollapse",
2622
+ "IconLayoutSidebarRightExpand",
2623
+ "IconLayoutSidebarRight",
2624
+ "IconLayoutSidebar",
2625
+ "IconLayout",
2626
+ "IconLeafOff",
2627
+ "IconLeaf",
2628
+ "IconLegoOff",
2629
+ "IconLego",
2630
+ "IconLemon2",
2631
+ "IconLemon",
2632
+ "IconLetterA",
2633
+ "IconLetterB",
2634
+ "IconLetterC",
2635
+ "IconLetterCaseLower",
2636
+ "IconLetterCaseToggle",
2637
+ "IconLetterCaseUpper",
2638
+ "IconLetterCase",
2639
+ "IconLetterD",
2640
+ "IconLetterE",
2641
+ "IconLetterF",
2642
+ "IconLetterG",
2643
+ "IconLetterH",
2644
+ "IconLetterI",
2645
+ "IconLetterJ",
2646
+ "IconLetterK",
2647
+ "IconLetterL",
2648
+ "IconLetterM",
2649
+ "IconLetterN",
2650
+ "IconLetterO",
2651
+ "IconLetterP",
2652
+ "IconLetterQ",
2653
+ "IconLetterR",
2654
+ "IconLetterS",
2655
+ "IconLetterSpacing",
2656
+ "IconLetterT",
2657
+ "IconLetterU",
2658
+ "IconLetterV",
2659
+ "IconLetterW",
2660
+ "IconLetterX",
2661
+ "IconLetterY",
2662
+ "IconLetterZ",
2663
+ "IconLicenseOff",
2664
+ "IconLicense",
2665
+ "IconLifebuoyOff",
2666
+ "IconLifebuoy",
2667
+ "IconLighter",
2668
+ "IconLineDashed",
2669
+ "IconLineDotted",
2670
+ "IconLineHeight",
2671
+ "IconLine",
2672
+ "IconLinkOff",
2673
+ "IconLink",
2674
+ "IconListCheck",
2675
+ "IconListDetails",
2676
+ "IconListNumbers",
2677
+ "IconListSearch",
2678
+ "IconListTree",
2679
+ "IconList",
2680
+ "IconLivePhotoOff",
2681
+ "IconLivePhoto",
2682
+ "IconLiveView",
2683
+ "IconLoadBalancer",
2684
+ "IconLoader2",
2685
+ "IconLoader3",
2686
+ "IconLoaderQuarter",
2687
+ "IconLoader",
2688
+ "IconLocationBroken",
2689
+ "IconLocationFilled",
2690
+ "IconLocationOff",
2691
+ "IconLocation",
2692
+ "IconLockAccessOff",
2693
+ "IconLockAccess",
2694
+ "IconLockBolt",
2695
+ "IconLockCancel",
2696
+ "IconLockCheck",
2697
+ "IconLockCode",
2698
+ "IconLockCog",
2699
+ "IconLockDollar",
2700
+ "IconLockDown",
2701
+ "IconLockExclamation",
2702
+ "IconLockHeart",
2703
+ "IconLockMinus",
2704
+ "IconLockOff",
2705
+ "IconLockOpenOff",
2706
+ "IconLockOpen",
2707
+ "IconLockPause",
2708
+ "IconLockPin",
2709
+ "IconLockPlus",
2710
+ "IconLockQuestion",
2711
+ "IconLockSearch",
2712
+ "IconLockShare",
2713
+ "IconLockSquareRoundedFilled",
2714
+ "IconLockSquareRounded",
2715
+ "IconLockSquare",
2716
+ "IconLockStar",
2717
+ "IconLockUp",
2718
+ "IconLockX",
2719
+ "IconLock",
2720
+ "IconLogicAnd",
2721
+ "IconLogicBuffer",
2722
+ "IconLogicNand",
2723
+ "IconLogicNor",
2724
+ "IconLogicNot",
2725
+ "IconLogicOr",
2726
+ "IconLogicXnor",
2727
+ "IconLogicXor",
2728
+ "IconLogin",
2729
+ "IconLogout2",
2730
+ "IconLogout",
2731
+ "IconLollipopOff",
2732
+ "IconLollipop",
2733
+ "IconLuggageOff",
2734
+ "IconLuggage",
2735
+ "IconLungsOff",
2736
+ "IconLungs",
2737
+ "IconMacroOff",
2738
+ "IconMacro",
2739
+ "IconMagnetOff",
2740
+ "IconMagnet",
2741
+ "IconMailAi",
2742
+ "IconMailBolt",
2743
+ "IconMailCancel",
2744
+ "IconMailCheck",
2745
+ "IconMailCode",
2746
+ "IconMailCog",
2747
+ "IconMailDollar",
2748
+ "IconMailDown",
2749
+ "IconMailExclamation",
2750
+ "IconMailFast",
2751
+ "IconMailFilled",
2752
+ "IconMailForward",
2753
+ "IconMailHeart",
2754
+ "IconMailMinus",
2755
+ "IconMailOff",
2756
+ "IconMailOpenedFilled",
2757
+ "IconMailOpened",
2758
+ "IconMailPause",
2759
+ "IconMailPin",
2760
+ "IconMailPlus",
2761
+ "IconMailQuestion",
2762
+ "IconMailSearch",
2763
+ "IconMailShare",
2764
+ "IconMailStar",
2765
+ "IconMailUp",
2766
+ "IconMailX",
2767
+ "IconMail",
2768
+ "IconMailboxOff",
2769
+ "IconMailbox",
2770
+ "IconMan",
2771
+ "IconManualGearbox",
2772
+ "IconMap2",
2773
+ "IconMapOff",
2774
+ "IconMapPinBolt",
2775
+ "IconMapPinCancel",
2776
+ "IconMapPinCheck",
2777
+ "IconMapPinCode",
2778
+ "IconMapPinCog",
2779
+ "IconMapPinDollar",
2780
+ "IconMapPinDown",
2781
+ "IconMapPinExclamation",
2782
+ "IconMapPinFilled",
2783
+ "IconMapPinHeart",
2784
+ "IconMapPinMinus",
2785
+ "IconMapPinOff",
2786
+ "IconMapPinPause",
2787
+ "IconMapPinPin",
2788
+ "IconMapPinPlus",
2789
+ "IconMapPinQuestion",
2790
+ "IconMapPinSearch",
2791
+ "IconMapPinShare",
2792
+ "IconMapPinStar",
2793
+ "IconMapPinUp",
2794
+ "IconMapPinX",
2795
+ "IconMapPin",
2796
+ "IconMapPins",
2797
+ "IconMapSearch",
2798
+ "IconMap",
2799
+ "IconMarkdownOff",
2800
+ "IconMarkdown",
2801
+ "IconMarquee2",
2802
+ "IconMarqueeOff",
2803
+ "IconMarquee",
2804
+ "IconMars",
2805
+ "IconMaskOff",
2806
+ "IconMask",
2807
+ "IconMasksTheaterOff",
2808
+ "IconMasksTheater",
2809
+ "IconMassage",
2810
+ "IconMatchstick",
2811
+ "IconMath1Divide2",
2812
+ "IconMath1Divide3",
2813
+ "IconMathAvg",
2814
+ "IconMathEqualGreater",
2815
+ "IconMathEqualLower",
2816
+ "IconMathFunctionOff",
2817
+ "IconMathFunctionY",
2818
+ "IconMathFunction",
2819
+ "IconMathGreater",
2820
+ "IconMathIntegralX",
2821
+ "IconMathIntegral",
2822
+ "IconMathIntegrals",
2823
+ "IconMathLower",
2824
+ "IconMathMax",
2825
+ "IconMathMin",
2826
+ "IconMathNot",
2827
+ "IconMathOff",
2828
+ "IconMathPiDivide2",
2829
+ "IconMathPi",
2830
+ "IconMathSymbols",
2831
+ "IconMathXDivide2",
2832
+ "IconMathXDivideY2",
2833
+ "IconMathXDivideY",
2834
+ "IconMathXMinusX",
2835
+ "IconMathXMinusY",
2836
+ "IconMathXPlusX",
2837
+ "IconMathXPlusY",
2838
+ "IconMathXy",
2839
+ "IconMathYMinusY",
2840
+ "IconMathYPlusY",
2841
+ "IconMath",
2842
+ "IconMaximizeOff",
2843
+ "IconMaximize",
2844
+ "IconMeatOff",
2845
+ "IconMeat",
2846
+ "IconMedal2",
2847
+ "IconMedal",
2848
+ "IconMedicalCrossCircle",
2849
+ "IconMedicalCrossFilled",
2850
+ "IconMedicalCrossOff",
2851
+ "IconMedicalCross",
2852
+ "IconMedicineSyrup",
2853
+ "IconMeeple",
2854
+ "IconMenorah",
2855
+ "IconMenu2",
2856
+ "IconMenuDeep",
2857
+ "IconMenuOrder",
2858
+ "IconMenu",
2859
+ "IconMessage2Bolt",
2860
+ "IconMessage2Cancel",
2861
+ "IconMessage2Check",
2862
+ "IconMessage2Code",
2863
+ "IconMessage2Cog",
2864
+ "IconMessage2Dollar",
2865
+ "IconMessage2Down",
2866
+ "IconMessage2Exclamation",
2867
+ "IconMessage2Heart",
2868
+ "IconMessage2Minus",
2869
+ "IconMessage2Off",
2870
+ "IconMessage2Pause",
2871
+ "IconMessage2Pin",
2872
+ "IconMessage2Plus",
2873
+ "IconMessage2Question",
2874
+ "IconMessage2Search",
2875
+ "IconMessage2Share",
2876
+ "IconMessage2Star",
2877
+ "IconMessage2Up",
2878
+ "IconMessage2X",
2879
+ "IconMessage2",
2880
+ "IconMessageBolt",
2881
+ "IconMessageCancel",
2882
+ "IconMessageChatbot",
2883
+ "IconMessageCheck",
2884
+ "IconMessageCircle2Filled",
2885
+ "IconMessageCircle2",
2886
+ "IconMessageCircleBolt",
2887
+ "IconMessageCircleCancel",
2888
+ "IconMessageCircleCheck",
2889
+ "IconMessageCircleCode",
2890
+ "IconMessageCircleCog",
2891
+ "IconMessageCircleDollar",
2892
+ "IconMessageCircleDown",
2893
+ "IconMessageCircleExclamation",
2894
+ "IconMessageCircleHeart",
2895
+ "IconMessageCircleMinus",
2896
+ "IconMessageCircleOff",
2897
+ "IconMessageCirclePause",
2898
+ "IconMessageCirclePin",
2899
+ "IconMessageCirclePlus",
2900
+ "IconMessageCircleQuestion",
2901
+ "IconMessageCircleSearch",
2902
+ "IconMessageCircleShare",
2903
+ "IconMessageCircleStar",
2904
+ "IconMessageCircleUp",
2905
+ "IconMessageCircleX",
2906
+ "IconMessageCircle",
2907
+ "IconMessageCode",
2908
+ "IconMessageCog",
2909
+ "IconMessageDollar",
2910
+ "IconMessageDots",
2911
+ "IconMessageDown",
2912
+ "IconMessageExclamation",
2913
+ "IconMessageForward",
2914
+ "IconMessageHeart",
2915
+ "IconMessageLanguage",
2916
+ "IconMessageMinus",
2917
+ "IconMessageOff",
2918
+ "IconMessagePause",
2919
+ "IconMessagePin",
2920
+ "IconMessagePlus",
2921
+ "IconMessageQuestion",
2922
+ "IconMessageReport",
2923
+ "IconMessageSearch",
2924
+ "IconMessageShare",
2925
+ "IconMessageStar",
2926
+ "IconMessageUp",
2927
+ "IconMessageX",
2928
+ "IconMessage",
2929
+ "IconMessagesOff",
2930
+ "IconMessages",
2931
+ "IconMeteorOff",
2932
+ "IconMeteor",
2933
+ "IconMichelinBibGourmand",
2934
+ "IconMichelinStarGreen",
2935
+ "IconMichelinStar",
2936
+ "IconMickeyFilled",
2937
+ "IconMickey",
2938
+ "IconMicrophone2Off",
2939
+ "IconMicrophone2",
2940
+ "IconMicrophoneOff",
2941
+ "IconMicrophone",
2942
+ "IconMicroscopeOff",
2943
+ "IconMicroscope",
2944
+ "IconMicrowaveOff",
2945
+ "IconMicrowave",
2946
+ "IconMilitaryAward",
2947
+ "IconMilitaryRank",
2948
+ "IconMilkOff",
2949
+ "IconMilk",
2950
+ "IconMilkshake",
2951
+ "IconMinimize",
2952
+ "IconMinusVertical",
2953
+ "IconMinus",
2954
+ "IconMistOff",
2955
+ "IconMist",
2956
+ "IconMobiledataOff",
2957
+ "IconMobiledata",
2958
+ "IconMoneybag",
2959
+ "IconMoodAngry",
2960
+ "IconMoodAnnoyed2",
2961
+ "IconMoodAnnoyed",
2962
+ "IconMoodBoy",
2963
+ "IconMoodCheck",
2964
+ "IconMoodCog",
2965
+ "IconMoodConfuzedFilled",
2966
+ "IconMoodConfuzed",
2967
+ "IconMoodCrazyHappy",
2968
+ "IconMoodCry",
2969
+ "IconMoodDollar",
2970
+ "IconMoodEdit",
2971
+ "IconMoodEmptyFilled",
2972
+ "IconMoodEmpty",
2973
+ "IconMoodHappyFilled",
2974
+ "IconMoodHappy",
2975
+ "IconMoodHeart",
2976
+ "IconMoodKidFilled",
2977
+ "IconMoodKid",
2978
+ "IconMoodLookLeft",
2979
+ "IconMoodLookRight",
2980
+ "IconMoodMinus",
2981
+ "IconMoodNerd",
2982
+ "IconMoodNervous",
2983
+ "IconMoodNeutralFilled",
2984
+ "IconMoodNeutral",
2985
+ "IconMoodOff",
2986
+ "IconMoodPin",
2987
+ "IconMoodPlus",
2988
+ "IconMoodSad2",
2989
+ "IconMoodSadDizzy",
2990
+ "IconMoodSadFilled",
2991
+ "IconMoodSadSquint",
2992
+ "IconMoodSad",
2993
+ "IconMoodSearch",
2994
+ "IconMoodShare",
2995
+ "IconMoodSick",
2996
+ "IconMoodSilence",
2997
+ "IconMoodSing",
2998
+ "IconMoodSmileBeam",
2999
+ "IconMoodSmileDizzy",
3000
+ "IconMoodSmileFilled",
3001
+ "IconMoodSmile",
3002
+ "IconMoodSuprised",
3003
+ "IconMoodTongueWink2",
3004
+ "IconMoodTongueWink",
3005
+ "IconMoodTongue",
3006
+ "IconMoodUnamused",
3007
+ "IconMoodUp",
3008
+ "IconMoodWink2",
3009
+ "IconMoodWink",
3010
+ "IconMoodWrrr",
3011
+ "IconMoodX",
3012
+ "IconMoodXd",
3013
+ "IconMoon2",
3014
+ "IconMoonFilled",
3015
+ "IconMoonOff",
3016
+ "IconMoonStars",
3017
+ "IconMoon",
3018
+ "IconMoped",
3019
+ "IconMotorbike",
3020
+ "IconMountainOff",
3021
+ "IconMountain",
3022
+ "IconMouse2",
3023
+ "IconMouseFilled",
3024
+ "IconMouseOff",
3025
+ "IconMouse",
3026
+ "IconMoustache",
3027
+ "IconMovieOff",
3028
+ "IconMovie",
3029
+ "IconMugOff",
3030
+ "IconMug",
3031
+ "IconMultiplier05x",
3032
+ "IconMultiplier15x",
3033
+ "IconMultiplier1x",
3034
+ "IconMultiplier2x",
3035
+ "IconMushroomFilled",
3036
+ "IconMushroomOff",
3037
+ "IconMushroom",
3038
+ "IconMusicOff",
3039
+ "IconMusic",
3040
+ "IconNavigationFilled",
3041
+ "IconNavigationNorth",
3042
+ "IconNavigationOff",
3043
+ "IconNavigation",
3044
+ "IconNeedleThread",
3045
+ "IconNeedle",
3046
+ "IconNetworkOff",
3047
+ "IconNetwork",
3048
+ "IconNewSection",
3049
+ "IconNewsOff",
3050
+ "IconNews",
3051
+ "IconNfcOff",
3052
+ "IconNfc",
3053
+ "IconNoCopyright",
3054
+ "IconNoCreativeCommons",
3055
+ "IconNoDerivatives",
3056
+ "IconNorthStar",
3057
+ "IconNoteOff",
3058
+ "IconNote",
3059
+ "IconNotebookOff",
3060
+ "IconNotebook",
3061
+ "IconNotesOff",
3062
+ "IconNotes",
3063
+ "IconNotificationOff",
3064
+ "IconNotification",
3065
+ "IconNumber0",
3066
+ "IconNumber1",
3067
+ "IconNumber2",
3068
+ "IconNumber3",
3069
+ "IconNumber4",
3070
+ "IconNumber5",
3071
+ "IconNumber6",
3072
+ "IconNumber7",
3073
+ "IconNumber8",
3074
+ "IconNumber9",
3075
+ "IconNumber",
3076
+ "IconNumbers",
3077
+ "IconNurse",
3078
+ "IconOctagonFilled",
3079
+ "IconOctagonOff",
3080
+ "IconOctagon",
3081
+ "IconOctahedronOff",
3082
+ "IconOctahedronPlus",
3083
+ "IconOctahedron",
3084
+ "IconOld",
3085
+ "IconOlympicsOff",
3086
+ "IconOlympics",
3087
+ "IconOm",
3088
+ "IconOmega",
3089
+ "IconOutbound",
3090
+ "IconOutlet",
3091
+ "IconOvalFilled",
3092
+ "IconOvalVerticalFilled",
3093
+ "IconOvalVertical",
3094
+ "IconOval",
3095
+ "IconOverline",
3096
+ "IconPackageExport",
3097
+ "IconPackageImport",
3098
+ "IconPackageOff",
3099
+ "IconPackage",
3100
+ "IconPackages",
3101
+ "IconPacman",
3102
+ "IconPageBreak",
3103
+ "IconPaintFilled",
3104
+ "IconPaintOff",
3105
+ "IconPaint",
3106
+ "IconPaletteOff",
3107
+ "IconPalette",
3108
+ "IconPanoramaHorizontalOff",
3109
+ "IconPanoramaHorizontal",
3110
+ "IconPanoramaVerticalOff",
3111
+ "IconPanoramaVertical",
3112
+ "IconPaperBagOff",
3113
+ "IconPaperBag",
3114
+ "IconPaperclip",
3115
+ "IconParachuteOff",
3116
+ "IconParachute",
3117
+ "IconParenthesesOff",
3118
+ "IconParentheses",
3119
+ "IconParkingOff",
3120
+ "IconParking",
3121
+ "IconPassword",
3122
+ "IconPawFilled",
3123
+ "IconPawOff",
3124
+ "IconPaw",
3125
+ "IconPdf",
3126
+ "IconPeace",
3127
+ "IconPencilMinus",
3128
+ "IconPencilOff",
3129
+ "IconPencilPlus",
3130
+ "IconPencil",
3131
+ "IconPennant2Filled",
3132
+ "IconPennant2",
3133
+ "IconPennantFilled",
3134
+ "IconPennantOff",
3135
+ "IconPennant",
3136
+ "IconPentagonFilled",
3137
+ "IconPentagonOff",
3138
+ "IconPentagon",
3139
+ "IconPentagram",
3140
+ "IconPepperOff",
3141
+ "IconPepper",
3142
+ "IconPercentage",
3143
+ "IconPerfume",
3144
+ "IconPerspectiveOff",
3145
+ "IconPerspective",
3146
+ "IconPhoneCall",
3147
+ "IconPhoneCalling",
3148
+ "IconPhoneCheck",
3149
+ "IconPhoneFilled",
3150
+ "IconPhoneIncoming",
3151
+ "IconPhoneOff",
3152
+ "IconPhoneOutgoing",
3153
+ "IconPhonePause",
3154
+ "IconPhonePlus",
3155
+ "IconPhoneX",
3156
+ "IconPhone",
3157
+ "IconPhotoAi",
3158
+ "IconPhotoBolt",
3159
+ "IconPhotoCancel",
3160
+ "IconPhotoCheck",
3161
+ "IconPhotoCode",
3162
+ "IconPhotoCog",
3163
+ "IconPhotoDollar",
3164
+ "IconPhotoDown",
3165
+ "IconPhotoEdit",
3166
+ "IconPhotoExclamation",
3167
+ "IconPhotoFilled",
3168
+ "IconPhotoHeart",
3169
+ "IconPhotoMinus",
3170
+ "IconPhotoOff",
3171
+ "IconPhotoPause",
3172
+ "IconPhotoPin",
3173
+ "IconPhotoPlus",
3174
+ "IconPhotoQuestion",
3175
+ "IconPhotoSearch",
3176
+ "IconPhotoSensor2",
3177
+ "IconPhotoSensor3",
3178
+ "IconPhotoSensor",
3179
+ "IconPhotoShare",
3180
+ "IconPhotoShield",
3181
+ "IconPhotoStar",
3182
+ "IconPhotoUp",
3183
+ "IconPhotoX",
3184
+ "IconPhoto",
3185
+ "IconPhysotherapist",
3186
+ "IconPiano",
3187
+ "IconPick",
3188
+ "IconPictureInPictureOff",
3189
+ "IconPictureInPictureOn",
3190
+ "IconPictureInPictureTop",
3191
+ "IconPictureInPicture",
3192
+ "IconPigMoney",
3193
+ "IconPigOff",
3194
+ "IconPig",
3195
+ "IconPilcrow",
3196
+ "IconPillOff",
3197
+ "IconPill",
3198
+ "IconPills",
3199
+ "IconPinFilled",
3200
+ "IconPin",
3201
+ "IconPingPong",
3202
+ "IconPinnedFilled",
3203
+ "IconPinnedOff",
3204
+ "IconPinned",
3205
+ "IconPizzaOff",
3206
+ "IconPizza",
3207
+ "IconPlaceholder",
3208
+ "IconPlaneArrival",
3209
+ "IconPlaneDeparture",
3210
+ "IconPlaneInflight",
3211
+ "IconPlaneOff",
3212
+ "IconPlaneTilt",
3213
+ "IconPlane",
3214
+ "IconPlanetOff",
3215
+ "IconPlanet",
3216
+ "IconPlant2Off",
3217
+ "IconPlant2",
3218
+ "IconPlantOff",
3219
+ "IconPlant",
3220
+ "IconPlayBasketball",
3221
+ "IconPlayCardOff",
3222
+ "IconPlayCard",
3223
+ "IconPlayFootball",
3224
+ "IconPlayHandball",
3225
+ "IconPlayVolleyball",
3226
+ "IconPlayerEjectFilled",
3227
+ "IconPlayerEject",
3228
+ "IconPlayerPauseFilled",
3229
+ "IconPlayerPause",
3230
+ "IconPlayerPlayFilled",
3231
+ "IconPlayerPlay",
3232
+ "IconPlayerRecordFilled",
3233
+ "IconPlayerRecord",
3234
+ "IconPlayerSkipBackFilled",
3235
+ "IconPlayerSkipBack",
3236
+ "IconPlayerSkipForwardFilled",
3237
+ "IconPlayerSkipForward",
3238
+ "IconPlayerStopFilled",
3239
+ "IconPlayerStop",
3240
+ "IconPlayerTrackNextFilled",
3241
+ "IconPlayerTrackNext",
3242
+ "IconPlayerTrackPrevFilled",
3243
+ "IconPlayerTrackPrev",
3244
+ "IconPlaylistAdd",
3245
+ "IconPlaylistOff",
3246
+ "IconPlaylistX",
3247
+ "IconPlaylist",
3248
+ "IconPlaystationCircle",
3249
+ "IconPlaystationSquare",
3250
+ "IconPlaystationTriangle",
3251
+ "IconPlaystationX",
3252
+ "IconPlugConnectedX",
3253
+ "IconPlugConnected",
3254
+ "IconPlugOff",
3255
+ "IconPlugX",
3256
+ "IconPlug",
3257
+ "IconPlusEqual",
3258
+ "IconPlusMinus",
3259
+ "IconPlus",
3260
+ "IconPng",
3261
+ "IconPodiumOff",
3262
+ "IconPodium",
3263
+ "IconPointFilled",
3264
+ "IconPointOff",
3265
+ "IconPoint",
3266
+ "IconPointerBolt",
3267
+ "IconPointerCancel",
3268
+ "IconPointerCheck",
3269
+ "IconPointerCode",
3270
+ "IconPointerCog",
3271
+ "IconPointerDollar",
3272
+ "IconPointerDown",
3273
+ "IconPointerExclamation",
3274
+ "IconPointerFilled",
3275
+ "IconPointerHeart",
3276
+ "IconPointerMinus",
3277
+ "IconPointerOff",
3278
+ "IconPointerPause",
3279
+ "IconPointerPin",
3280
+ "IconPointerPlus",
3281
+ "IconPointerQuestion",
3282
+ "IconPointerSearch",
3283
+ "IconPointerShare",
3284
+ "IconPointerStar",
3285
+ "IconPointerUp",
3286
+ "IconPointerX",
3287
+ "IconPointer",
3288
+ "IconPokeballOff",
3289
+ "IconPokeball",
3290
+ "IconPokerChip",
3291
+ "IconPolaroidFilled",
3292
+ "IconPolaroid",
3293
+ "IconPolygonOff",
3294
+ "IconPolygon",
3295
+ "IconPoo",
3296
+ "IconPoolOff",
3297
+ "IconPool",
3298
+ "IconPower",
3299
+ "IconPray",
3300
+ "IconPremiumRights",
3301
+ "IconPrescription",
3302
+ "IconPresentationAnalytics",
3303
+ "IconPresentationOff",
3304
+ "IconPresentation",
3305
+ "IconPrinterOff",
3306
+ "IconPrinter",
3307
+ "IconPrismOff",
3308
+ "IconPrismPlus",
3309
+ "IconPrism",
3310
+ "IconPrison",
3311
+ "IconProgressAlert",
3312
+ "IconProgressBolt",
3313
+ "IconProgressCheck",
3314
+ "IconProgressDown",
3315
+ "IconProgressHelp",
3316
+ "IconProgressX",
3317
+ "IconProgress",
3318
+ "IconPrompt",
3319
+ "IconPropellerOff",
3320
+ "IconPropeller",
3321
+ "IconPumpkinScary",
3322
+ "IconPuzzle2",
3323
+ "IconPuzzleFilled",
3324
+ "IconPuzzleOff",
3325
+ "IconPuzzle",
3326
+ "IconPyramidOff",
3327
+ "IconPyramidPlus",
3328
+ "IconPyramid",
3329
+ "IconQrcodeOff",
3330
+ "IconQrcode",
3331
+ "IconQuestionMark",
3332
+ "IconQuoteOff",
3333
+ "IconQuote",
3334
+ "IconQuotes",
3335
+ "IconRadar2",
3336
+ "IconRadarOff",
3337
+ "IconRadar",
3338
+ "IconRadioOff",
3339
+ "IconRadio",
3340
+ "IconRadioactiveFilled",
3341
+ "IconRadioactiveOff",
3342
+ "IconRadioactive",
3343
+ "IconRadiusBottomLeft",
3344
+ "IconRadiusBottomRight",
3345
+ "IconRadiusTopLeft",
3346
+ "IconRadiusTopRight",
3347
+ "IconRainbowOff",
3348
+ "IconRainbow",
3349
+ "IconRating12Plus",
3350
+ "IconRating14Plus",
3351
+ "IconRating16Plus",
3352
+ "IconRating18Plus",
3353
+ "IconRating21Plus",
3354
+ "IconRazorElectric",
3355
+ "IconRazor",
3356
+ "IconReceipt2",
3357
+ "IconReceiptOff",
3358
+ "IconReceiptRefund",
3359
+ "IconReceiptTax",
3360
+ "IconReceipt",
3361
+ "IconRecharging",
3362
+ "IconRecordMailOff",
3363
+ "IconRecordMail",
3364
+ "IconRectangleFilled",
3365
+ "IconRectangleRoundedBottom",
3366
+ "IconRectangleRoundedTop",
3367
+ "IconRectangleVerticalFilled",
3368
+ "IconRectangleVertical",
3369
+ "IconRectangle",
3370
+ "IconRectangularPrismOff",
3371
+ "IconRectangularPrismPlus",
3372
+ "IconRectangularPrism",
3373
+ "IconRecycleOff",
3374
+ "IconRecycle",
3375
+ "IconRefreshAlert",
3376
+ "IconRefreshDot",
3377
+ "IconRefreshOff",
3378
+ "IconRefresh",
3379
+ "IconRegexOff",
3380
+ "IconRegex",
3381
+ "IconRegistered",
3382
+ "IconRelationManyToMany",
3383
+ "IconRelationOneToMany",
3384
+ "IconRelationOneToOne",
3385
+ "IconReload",
3386
+ "IconRepeatOff",
3387
+ "IconRepeatOnce",
3388
+ "IconRepeat",
3389
+ "IconReplaceFilled",
3390
+ "IconReplaceOff",
3391
+ "IconReplace",
3392
+ "IconReportAnalytics",
3393
+ "IconReportMedical",
3394
+ "IconReportMoney",
3395
+ "IconReportOff",
3396
+ "IconReportSearch",
3397
+ "IconReport",
3398
+ "IconReservedLine",
3399
+ "IconResize",
3400
+ "IconRestore",
3401
+ "IconRewindBackward10",
3402
+ "IconRewindBackward15",
3403
+ "IconRewindBackward20",
3404
+ "IconRewindBackward30",
3405
+ "IconRewindBackward40",
3406
+ "IconRewindBackward5",
3407
+ "IconRewindBackward50",
3408
+ "IconRewindBackward60",
3409
+ "IconRewindForward10",
3410
+ "IconRewindForward15",
3411
+ "IconRewindForward20",
3412
+ "IconRewindForward30",
3413
+ "IconRewindForward40",
3414
+ "IconRewindForward5",
3415
+ "IconRewindForward50",
3416
+ "IconRewindForward60",
3417
+ "IconRibbonHealth",
3418
+ "IconRings",
3419
+ "IconRippleOff",
3420
+ "IconRipple",
3421
+ "IconRoadOff",
3422
+ "IconRoadSign",
3423
+ "IconRoad",
3424
+ "IconRobotOff",
3425
+ "IconRobot",
3426
+ "IconRocketOff",
3427
+ "IconRocket",
3428
+ "IconRollerSkating",
3429
+ "IconRollercoasterOff",
3430
+ "IconRollercoaster",
3431
+ "IconRosetteFilled",
3432
+ "IconRosetteNumber0",
3433
+ "IconRosetteNumber1",
3434
+ "IconRosetteNumber2",
3435
+ "IconRosetteNumber3",
3436
+ "IconRosetteNumber4",
3437
+ "IconRosetteNumber5",
3438
+ "IconRosetteNumber6",
3439
+ "IconRosetteNumber7",
3440
+ "IconRosetteNumber8",
3441
+ "IconRosetteNumber9",
3442
+ "IconRosette",
3443
+ "IconRotate2",
3444
+ "IconRotate360",
3445
+ "IconRotateClockwise2",
3446
+ "IconRotateClockwise",
3447
+ "IconRotateDot",
3448
+ "IconRotateRectangle",
3449
+ "IconRotate",
3450
+ "IconRoute2",
3451
+ "IconRouteOff",
3452
+ "IconRoute",
3453
+ "IconRouterOff",
3454
+ "IconRouter",
3455
+ "IconRowInsertBottom",
3456
+ "IconRowInsertTop",
3457
+ "IconRowRemove",
3458
+ "IconRss",
3459
+ "IconRubberStampOff",
3460
+ "IconRubberStamp",
3461
+ "IconRuler2Off",
3462
+ "IconRuler2",
3463
+ "IconRuler3",
3464
+ "IconRulerMeasure",
3465
+ "IconRulerOff",
3466
+ "IconRuler",
3467
+ "IconRun",
3468
+ "IconSTurnDown",
3469
+ "IconSTurnLeft",
3470
+ "IconSTurnRight",
3471
+ "IconSTurnUp",
3472
+ "IconSailboat2",
3473
+ "IconSailboatOff",
3474
+ "IconSailboat",
3475
+ "IconSalad",
3476
+ "IconSalt",
3477
+ "IconSatelliteOff",
3478
+ "IconSatellite",
3479
+ "IconSausage",
3480
+ "IconScaleOff",
3481
+ "IconScaleOutlineOff",
3482
+ "IconScaleOutline",
3483
+ "IconScale",
3484
+ "IconScanEye",
3485
+ "IconScan",
3486
+ "IconSchemaOff",
3487
+ "IconSchema",
3488
+ "IconSchoolBell",
3489
+ "IconSchoolOff",
3490
+ "IconSchool",
3491
+ "IconScissorsOff",
3492
+ "IconScissors",
3493
+ "IconScooterElectric",
3494
+ "IconScooter",
3495
+ "IconScoreboard",
3496
+ "IconScreenShareOff",
3497
+ "IconScreenShare",
3498
+ "IconScreenshot",
3499
+ "IconScribbleOff",
3500
+ "IconScribble",
3501
+ "IconScriptMinus",
3502
+ "IconScriptPlus",
3503
+ "IconScriptX",
3504
+ "IconScript",
3505
+ "IconScubaMaskOff",
3506
+ "IconScubaMask",
3507
+ "IconSdk",
3508
+ "IconSearchOff",
3509
+ "IconSearch",
3510
+ "IconSectionSign",
3511
+ "IconSection",
3512
+ "IconSeedingOff",
3513
+ "IconSeeding",
3514
+ "IconSelectAll",
3515
+ "IconSelect",
3516
+ "IconSelector",
3517
+ "IconSendOff",
3518
+ "IconSend",
3519
+ "IconSeo",
3520
+ "IconSeparatorHorizontal",
3521
+ "IconSeparatorVertical",
3522
+ "IconSeparator",
3523
+ "IconServer2",
3524
+ "IconServerBolt",
3525
+ "IconServerCog",
3526
+ "IconServerOff",
3527
+ "IconServer",
3528
+ "IconServicemark",
3529
+ "IconSettings2",
3530
+ "IconSettingsAutomation",
3531
+ "IconSettingsBolt",
3532
+ "IconSettingsCancel",
3533
+ "IconSettingsCheck",
3534
+ "IconSettingsCode",
3535
+ "IconSettingsCog",
3536
+ "IconSettingsDollar",
3537
+ "IconSettingsDown",
3538
+ "IconSettingsExclamation",
3539
+ "IconSettingsFilled",
3540
+ "IconSettingsHeart",
3541
+ "IconSettingsMinus",
3542
+ "IconSettingsOff",
3543
+ "IconSettingsPause",
3544
+ "IconSettingsPin",
3545
+ "IconSettingsPlus",
3546
+ "IconSettingsQuestion",
3547
+ "IconSettingsSearch",
3548
+ "IconSettingsShare",
3549
+ "IconSettingsStar",
3550
+ "IconSettingsUp",
3551
+ "IconSettingsX",
3552
+ "IconSettings",
3553
+ "IconShadowOff",
3554
+ "IconShadow",
3555
+ "IconShape2",
3556
+ "IconShape3",
3557
+ "IconShapeOff",
3558
+ "IconShape",
3559
+ "IconShare2",
3560
+ "IconShare3",
3561
+ "IconShareOff",
3562
+ "IconShare",
3563
+ "IconShiJumping",
3564
+ "IconShieldBolt",
3565
+ "IconShieldCancel",
3566
+ "IconShieldCheckFilled",
3567
+ "IconShieldCheck",
3568
+ "IconShieldCheckeredFilled",
3569
+ "IconShieldCheckered",
3570
+ "IconShieldChevron",
3571
+ "IconShieldCode",
3572
+ "IconShieldCog",
3573
+ "IconShieldDollar",
3574
+ "IconShieldDown",
3575
+ "IconShieldExclamation",
3576
+ "IconShieldFilled",
3577
+ "IconShieldHalfFilled",
3578
+ "IconShieldHalf",
3579
+ "IconShieldHeart",
3580
+ "IconShieldLockFilled",
3581
+ "IconShieldLock",
3582
+ "IconShieldMinus",
3583
+ "IconShieldOff",
3584
+ "IconShieldPause",
3585
+ "IconShieldPin",
3586
+ "IconShieldPlus",
3587
+ "IconShieldQuestion",
3588
+ "IconShieldSearch",
3589
+ "IconShieldShare",
3590
+ "IconShieldStar",
3591
+ "IconShieldUp",
3592
+ "IconShieldX",
3593
+ "IconShield",
3594
+ "IconShipOff",
3595
+ "IconShip",
3596
+ "IconShirtFilled",
3597
+ "IconShirtOff",
3598
+ "IconShirtSport",
3599
+ "IconShirt",
3600
+ "IconShoeOff",
3601
+ "IconShoe",
3602
+ "IconShoppingBag",
3603
+ "IconShoppingCartDiscount",
3604
+ "IconShoppingCartOff",
3605
+ "IconShoppingCartPlus",
3606
+ "IconShoppingCartX",
3607
+ "IconShoppingCart",
3608
+ "IconShovel",
3609
+ "IconShredder",
3610
+ "IconSignLeftFilled",
3611
+ "IconSignLeft",
3612
+ "IconSignRightFilled",
3613
+ "IconSignRight",
3614
+ "IconSignal2g",
3615
+ "IconSignal3g",
3616
+ "IconSignal4gPlus",
3617
+ "IconSignal4g",
3618
+ "IconSignal5g",
3619
+ "IconSignal6g",
3620
+ "IconSignalE",
3621
+ "IconSignalG",
3622
+ "IconSignalHPlus",
3623
+ "IconSignalH",
3624
+ "IconSignalLte",
3625
+ "IconSignatureOff",
3626
+ "IconSignature",
3627
+ "IconSitemapOff",
3628
+ "IconSitemap",
3629
+ "IconSkateboardOff",
3630
+ "IconSkateboard",
3631
+ "IconSkateboarding",
3632
+ "IconSkull",
3633
+ "IconSlash",
3634
+ "IconSlashes",
3635
+ "IconSleigh",
3636
+ "IconSlice",
3637
+ "IconSlideshow",
3638
+ "IconSmartHomeOff",
3639
+ "IconSmartHome",
3640
+ "IconSmokingNo",
3641
+ "IconSmoking",
3642
+ "IconSnowflakeOff",
3643
+ "IconSnowflake",
3644
+ "IconSnowman",
3645
+ "IconSoccerField",
3646
+ "IconSocialOff",
3647
+ "IconSocial",
3648
+ "IconSock",
3649
+ "IconSofaOff",
3650
+ "IconSofa",
3651
+ "IconSolarPanel2",
3652
+ "IconSolarPanel",
3653
+ "IconSort09",
3654
+ "IconSort90",
3655
+ "IconSortAZ",
3656
+ "IconSortAscending2",
3657
+ "IconSortAscendingLetters",
3658
+ "IconSortAscendingNumbers",
3659
+ "IconSortAscending",
3660
+ "IconSortDescending2",
3661
+ "IconSortDescendingLetters",
3662
+ "IconSortDescendingNumbers",
3663
+ "IconSortDescending",
3664
+ "IconSortZA",
3665
+ "IconSos",
3666
+ "IconSoupOff",
3667
+ "IconSoup",
3668
+ "IconSourceCode",
3669
+ "IconSpaceOff",
3670
+ "IconSpace",
3671
+ "IconSpacingHorizontal",
3672
+ "IconSpacingVertical",
3673
+ "IconSpadeFilled",
3674
+ "IconSpade",
3675
+ "IconSparkles",
3676
+ "IconSpeakerphone",
3677
+ "IconSpeedboat",
3678
+ "IconSphereOff",
3679
+ "IconSpherePlus",
3680
+ "IconSphere",
3681
+ "IconSpider",
3682
+ "IconSpiralOff",
3683
+ "IconSpiral",
3684
+ "IconSportBillard",
3685
+ "IconSpray",
3686
+ "IconSpyOff",
3687
+ "IconSpy",
3688
+ "IconSql",
3689
+ "IconSquare0Filled",
3690
+ "IconSquare1Filled",
3691
+ "IconSquare2Filled",
3692
+ "IconSquare3Filled",
3693
+ "IconSquare4Filled",
3694
+ "IconSquare5Filled",
3695
+ "IconSquare6Filled",
3696
+ "IconSquare7Filled",
3697
+ "IconSquare8Filled",
3698
+ "IconSquare9Filled",
3699
+ "IconSquareArrowDown",
3700
+ "IconSquareArrowLeft",
3701
+ "IconSquareArrowRight",
3702
+ "IconSquareArrowUp",
3703
+ "IconSquareAsterisk",
3704
+ "IconSquareCheckFilled",
3705
+ "IconSquareCheck",
3706
+ "IconSquareChevronDown",
3707
+ "IconSquareChevronLeft",
3708
+ "IconSquareChevronRight",
3709
+ "IconSquareChevronUp",
3710
+ "IconSquareChevronsDown",
3711
+ "IconSquareChevronsLeft",
3712
+ "IconSquareChevronsRight",
3713
+ "IconSquareChevronsUp",
3714
+ "IconSquareDot",
3715
+ "IconSquareF0Filled",
3716
+ "IconSquareF0",
3717
+ "IconSquareF1Filled",
3718
+ "IconSquareF1",
3719
+ "IconSquareF2Filled",
3720
+ "IconSquareF2",
3721
+ "IconSquareF3Filled",
3722
+ "IconSquareF3",
3723
+ "IconSquareF4Filled",
3724
+ "IconSquareF4",
3725
+ "IconSquareF5Filled",
3726
+ "IconSquareF5",
3727
+ "IconSquareF6Filled",
3728
+ "IconSquareF6",
3729
+ "IconSquareF7Filled",
3730
+ "IconSquareF7",
3731
+ "IconSquareF8Filled",
3732
+ "IconSquareF8",
3733
+ "IconSquareF9Filled",
3734
+ "IconSquareF9",
3735
+ "IconSquareForbid2",
3736
+ "IconSquareForbid",
3737
+ "IconSquareHalf",
3738
+ "IconSquareKey",
3739
+ "IconSquareLetterA",
3740
+ "IconSquareLetterB",
3741
+ "IconSquareLetterC",
3742
+ "IconSquareLetterD",
3743
+ "IconSquareLetterE",
3744
+ "IconSquareLetterF",
3745
+ "IconSquareLetterG",
3746
+ "IconSquareLetterH",
3747
+ "IconSquareLetterI",
3748
+ "IconSquareLetterJ",
3749
+ "IconSquareLetterK",
3750
+ "IconSquareLetterL",
3751
+ "IconSquareLetterM",
3752
+ "IconSquareLetterN",
3753
+ "IconSquareLetterO",
3754
+ "IconSquareLetterP",
3755
+ "IconSquareLetterQ",
3756
+ "IconSquareLetterR",
3757
+ "IconSquareLetterS",
3758
+ "IconSquareLetterT",
3759
+ "IconSquareLetterU",
3760
+ "IconSquareLetterV",
3761
+ "IconSquareLetterW",
3762
+ "IconSquareLetterX",
3763
+ "IconSquareLetterY",
3764
+ "IconSquareLetterZ",
3765
+ "IconSquareMinus",
3766
+ "IconSquareNumber0",
3767
+ "IconSquareNumber1",
3768
+ "IconSquareNumber2",
3769
+ "IconSquareNumber3",
3770
+ "IconSquareNumber4",
3771
+ "IconSquareNumber5",
3772
+ "IconSquareNumber6",
3773
+ "IconSquareNumber7",
3774
+ "IconSquareNumber8",
3775
+ "IconSquareNumber9",
3776
+ "IconSquareOff",
3777
+ "IconSquarePlus",
3778
+ "IconSquareRoot2",
3779
+ "IconSquareRoot",
3780
+ "IconSquareRotatedFilled",
3781
+ "IconSquareRotatedForbid2",
3782
+ "IconSquareRotatedForbid",
3783
+ "IconSquareRotatedOff",
3784
+ "IconSquareRotated",
3785
+ "IconSquareRoundedArrowDownFilled",
3786
+ "IconSquareRoundedArrowDown",
3787
+ "IconSquareRoundedArrowLeftFilled",
3788
+ "IconSquareRoundedArrowLeft",
3789
+ "IconSquareRoundedArrowRightFilled",
3790
+ "IconSquareRoundedArrowRight",
3791
+ "IconSquareRoundedArrowUpFilled",
3792
+ "IconSquareRoundedArrowUp",
3793
+ "IconSquareRoundedCheckFilled",
3794
+ "IconSquareRoundedCheck",
3795
+ "IconSquareRoundedChevronDownFilled",
3796
+ "IconSquareRoundedChevronDown",
3797
+ "IconSquareRoundedChevronLeftFilled",
3798
+ "IconSquareRoundedChevronLeft",
3799
+ "IconSquareRoundedChevronRightFilled",
3800
+ "IconSquareRoundedChevronRight",
3801
+ "IconSquareRoundedChevronUpFilled",
3802
+ "IconSquareRoundedChevronUp",
3803
+ "IconSquareRoundedChevronsDownFilled",
3804
+ "IconSquareRoundedChevronsDown",
3805
+ "IconSquareRoundedChevronsLeftFilled",
3806
+ "IconSquareRoundedChevronsLeft",
3807
+ "IconSquareRoundedChevronsRightFilled",
3808
+ "IconSquareRoundedChevronsRight",
3809
+ "IconSquareRoundedChevronsUpFilled",
3810
+ "IconSquareRoundedChevronsUp",
3811
+ "IconSquareRoundedFilled",
3812
+ "IconSquareRoundedLetterA",
3813
+ "IconSquareRoundedLetterB",
3814
+ "IconSquareRoundedLetterC",
3815
+ "IconSquareRoundedLetterD",
3816
+ "IconSquareRoundedLetterE",
3817
+ "IconSquareRoundedLetterF",
3818
+ "IconSquareRoundedLetterG",
3819
+ "IconSquareRoundedLetterH",
3820
+ "IconSquareRoundedLetterI",
3821
+ "IconSquareRoundedLetterJ",
3822
+ "IconSquareRoundedLetterK",
3823
+ "IconSquareRoundedLetterL",
3824
+ "IconSquareRoundedLetterM",
3825
+ "IconSquareRoundedLetterN",
3826
+ "IconSquareRoundedLetterO",
3827
+ "IconSquareRoundedLetterP",
3828
+ "IconSquareRoundedLetterQ",
3829
+ "IconSquareRoundedLetterR",
3830
+ "IconSquareRoundedLetterS",
3831
+ "IconSquareRoundedLetterT",
3832
+ "IconSquareRoundedLetterU",
3833
+ "IconSquareRoundedLetterV",
3834
+ "IconSquareRoundedLetterW",
3835
+ "IconSquareRoundedLetterX",
3836
+ "IconSquareRoundedLetterY",
3837
+ "IconSquareRoundedLetterZ",
3838
+ "IconSquareRoundedMinus",
3839
+ "IconSquareRoundedNumber0Filled",
3840
+ "IconSquareRoundedNumber0",
3841
+ "IconSquareRoundedNumber1Filled",
3842
+ "IconSquareRoundedNumber1",
3843
+ "IconSquareRoundedNumber2Filled",
3844
+ "IconSquareRoundedNumber2",
3845
+ "IconSquareRoundedNumber3Filled",
3846
+ "IconSquareRoundedNumber3",
3847
+ "IconSquareRoundedNumber4Filled",
3848
+ "IconSquareRoundedNumber4",
3849
+ "IconSquareRoundedNumber5Filled",
3850
+ "IconSquareRoundedNumber5",
3851
+ "IconSquareRoundedNumber6Filled",
3852
+ "IconSquareRoundedNumber6",
3853
+ "IconSquareRoundedNumber7Filled",
3854
+ "IconSquareRoundedNumber7",
3855
+ "IconSquareRoundedNumber8Filled",
3856
+ "IconSquareRoundedNumber8",
3857
+ "IconSquareRoundedNumber9Filled",
3858
+ "IconSquareRoundedNumber9",
3859
+ "IconSquareRoundedPlusFilled",
3860
+ "IconSquareRoundedPlus",
3861
+ "IconSquareRoundedXFilled",
3862
+ "IconSquareRoundedX",
3863
+ "IconSquareRounded",
3864
+ "IconSquareToggleHorizontal",
3865
+ "IconSquareToggle",
3866
+ "IconSquareX",
3867
+ "IconSquare",
3868
+ "IconSquaresDiagonal",
3869
+ "IconSquaresFilled",
3870
+ "IconStack2",
3871
+ "IconStack3",
3872
+ "IconStackPop",
3873
+ "IconStackPush",
3874
+ "IconStack",
3875
+ "IconStairsDown",
3876
+ "IconStairsUp",
3877
+ "IconStairs",
3878
+ "IconStarFilled",
3879
+ "IconStarHalfFilled",
3880
+ "IconStarHalf",
3881
+ "IconStarOff",
3882
+ "IconStar",
3883
+ "IconStarsFilled",
3884
+ "IconStarsOff",
3885
+ "IconStars",
3886
+ "IconStatusChange",
3887
+ "IconSteam",
3888
+ "IconSteeringWheelOff",
3889
+ "IconSteeringWheel",
3890
+ "IconStepInto",
3891
+ "IconStepOut",
3892
+ "IconStereoGlasses",
3893
+ "IconStethoscopeOff",
3894
+ "IconStethoscope",
3895
+ "IconSticker",
3896
+ "IconStormOff",
3897
+ "IconStorm",
3898
+ "IconStretching2",
3899
+ "IconStretching",
3900
+ "IconStrikethrough",
3901
+ "IconSubmarine",
3902
+ "IconSubscript",
3903
+ "IconSubtask",
3904
+ "IconSumOff",
3905
+ "IconSum",
3906
+ "IconSunFilled",
3907
+ "IconSunHigh",
3908
+ "IconSunLow",
3909
+ "IconSunMoon",
3910
+ "IconSunOff",
3911
+ "IconSunWind",
3912
+ "IconSun",
3913
+ "IconSunglasses",
3914
+ "IconSunrise",
3915
+ "IconSunset2",
3916
+ "IconSunset",
3917
+ "IconSuperscript",
3918
+ "IconSvg",
3919
+ "IconSwimming",
3920
+ "IconSwipe",
3921
+ "IconSwitch2",
3922
+ "IconSwitch3",
3923
+ "IconSwitchHorizontal",
3924
+ "IconSwitchVertical",
3925
+ "IconSwitch",
3926
+ "IconSwordOff",
3927
+ "IconSword",
3928
+ "IconSwords",
3929
+ "IconTableAlias",
3930
+ "IconTableColumn",
3931
+ "IconTableDown",
3932
+ "IconTableExport",
3933
+ "IconTableFilled",
3934
+ "IconTableHeart",
3935
+ "IconTableImport",
3936
+ "IconTableMinus",
3937
+ "IconTableOff",
3938
+ "IconTableOptions",
3939
+ "IconTablePlus",
3940
+ "IconTableRow",
3941
+ "IconTableShare",
3942
+ "IconTableShortcut",
3943
+ "IconTable",
3944
+ "IconTagOff",
3945
+ "IconTag",
3946
+ "IconTagsOff",
3947
+ "IconTags",
3948
+ "IconTallymark1",
3949
+ "IconTallymark2",
3950
+ "IconTallymark3",
3951
+ "IconTallymark4",
3952
+ "IconTallymarks",
3953
+ "IconTank",
3954
+ "IconTargetArrow",
3955
+ "IconTargetOff",
3956
+ "IconTarget",
3957
+ "IconTeapot",
3958
+ "IconTelescopeOff",
3959
+ "IconTelescope",
3960
+ "IconTemperatureCelsius",
3961
+ "IconTemperatureFahrenheit",
3962
+ "IconTemperatureMinus",
3963
+ "IconTemperatureOff",
3964
+ "IconTemperaturePlus",
3965
+ "IconTemperature",
3966
+ "IconTemplateOff",
3967
+ "IconTemplate",
3968
+ "IconTentOff",
3969
+ "IconTent",
3970
+ "IconTerminal2",
3971
+ "IconTerminal",
3972
+ "IconTestPipe2",
3973
+ "IconTestPipeOff",
3974
+ "IconTestPipe",
3975
+ "IconTex",
3976
+ "IconTextCaption",
3977
+ "IconTextColor",
3978
+ "IconTextDecrease",
3979
+ "IconTextDirectionLtr",
3980
+ "IconTextDirectionRtl",
3981
+ "IconTextIncrease",
3982
+ "IconTextOrientation",
3983
+ "IconTextPlus",
3984
+ "IconTextRecognition",
3985
+ "IconTextResize",
3986
+ "IconTextSize",
3987
+ "IconTextSpellcheck",
3988
+ "IconTextWrapDisabled",
3989
+ "IconTextWrap",
3990
+ "IconTexture",
3991
+ "IconTheater",
3992
+ "IconThermometer",
3993
+ "IconThumbDownFilled",
3994
+ "IconThumbDownOff",
3995
+ "IconThumbDown",
3996
+ "IconThumbUpFilled",
3997
+ "IconThumbUpOff",
3998
+ "IconThumbUp",
3999
+ "IconTicTac",
4000
+ "IconTicketOff",
4001
+ "IconTicket",
4002
+ "IconTie",
4003
+ "IconTilde",
4004
+ "IconTiltShiftOff",
4005
+ "IconTiltShift",
4006
+ "IconTimeDuration0",
4007
+ "IconTimeDuration10",
4008
+ "IconTimeDuration15",
4009
+ "IconTimeDuration30",
4010
+ "IconTimeDuration45",
4011
+ "IconTimeDuration5",
4012
+ "IconTimeDuration60",
4013
+ "IconTimeDuration90",
4014
+ "IconTimeDurationOff",
4015
+ "IconTimelineEventExclamation",
4016
+ "IconTimelineEventMinus",
4017
+ "IconTimelineEventPlus",
4018
+ "IconTimelineEventText",
4019
+ "IconTimelineEventX",
4020
+ "IconTimelineEvent",
4021
+ "IconTimeline",
4022
+ "IconTir",
4023
+ "IconToggleLeft",
4024
+ "IconToggleRight",
4025
+ "IconToiletPaperOff",
4026
+ "IconToiletPaper",
4027
+ "IconToml",
4028
+ "IconTool",
4029
+ "IconToolsKitchen2Off",
4030
+ "IconToolsKitchen2",
4031
+ "IconToolsKitchenOff",
4032
+ "IconToolsKitchen",
4033
+ "IconToolsOff",
4034
+ "IconTools",
4035
+ "IconTooltip",
4036
+ "IconTopologyBus",
4037
+ "IconTopologyComplex",
4038
+ "IconTopologyFullHierarchy",
4039
+ "IconTopologyFull",
4040
+ "IconTopologyRing2",
4041
+ "IconTopologyRing3",
4042
+ "IconTopologyRing",
4043
+ "IconTopologyStar2",
4044
+ "IconTopologyStar3",
4045
+ "IconTopologyStarRing2",
4046
+ "IconTopologyStarRing3",
4047
+ "IconTopologyStarRing",
4048
+ "IconTopologyStar",
4049
+ "IconTorii",
4050
+ "IconTornado",
4051
+ "IconTournament",
4052
+ "IconTowerOff",
4053
+ "IconTower",
4054
+ "IconTrack",
4055
+ "IconTractor",
4056
+ "IconTrademark",
4057
+ "IconTrafficConeOff",
4058
+ "IconTrafficCone",
4059
+ "IconTrafficLightsOff",
4060
+ "IconTrafficLights",
4061
+ "IconTrain",
4062
+ "IconTransferIn",
4063
+ "IconTransferOut",
4064
+ "IconTransformFilled",
4065
+ "IconTransform",
4066
+ "IconTransitionBottom",
4067
+ "IconTransitionLeft",
4068
+ "IconTransitionRight",
4069
+ "IconTransitionTop",
4070
+ "IconTrashFilled",
4071
+ "IconTrashOff",
4072
+ "IconTrashXFilled",
4073
+ "IconTrashX",
4074
+ "IconTrash",
4075
+ "IconTreadmill",
4076
+ "IconTree",
4077
+ "IconTrees",
4078
+ "IconTrekking",
4079
+ "IconTrendingDown2",
4080
+ "IconTrendingDown3",
4081
+ "IconTrendingDown",
4082
+ "IconTrendingUp2",
4083
+ "IconTrendingUp3",
4084
+ "IconTrendingUp",
4085
+ "IconTriangleFilled",
4086
+ "IconTriangleInvertedFilled",
4087
+ "IconTriangleInverted",
4088
+ "IconTriangleOff",
4089
+ "IconTriangleSquareCircle",
4090
+ "IconTriangle",
4091
+ "IconTriangles",
4092
+ "IconTrident",
4093
+ "IconTrolley",
4094
+ "IconTrophyFilled",
4095
+ "IconTrophyOff",
4096
+ "IconTrophy",
4097
+ "IconTrowel",
4098
+ "IconTruckDelivery",
4099
+ "IconTruckLoading",
4100
+ "IconTruckOff",
4101
+ "IconTruckReturn",
4102
+ "IconTruck",
4103
+ "IconTxt",
4104
+ "IconTypographyOff",
4105
+ "IconTypography",
4106
+ "IconUfoOff",
4107
+ "IconUfo",
4108
+ "IconUmbrellaFilled",
4109
+ "IconUmbrellaOff",
4110
+ "IconUmbrella",
4111
+ "IconUnderline",
4112
+ "IconUnlink",
4113
+ "IconUpload",
4114
+ "IconUrgent",
4115
+ "IconUsb",
4116
+ "IconUserBolt",
4117
+ "IconUserCancel",
4118
+ "IconUserCheck",
4119
+ "IconUserCircle",
4120
+ "IconUserCode",
4121
+ "IconUserCog",
4122
+ "IconUserDollar",
4123
+ "IconUserDown",
4124
+ "IconUserEdit",
4125
+ "IconUserExclamation",
4126
+ "IconUserHeart",
4127
+ "IconUserMinus",
4128
+ "IconUserOff",
4129
+ "IconUserPause",
4130
+ "IconUserPin",
4131
+ "IconUserPlus",
4132
+ "IconUserQuestion",
4133
+ "IconUserSearch",
4134
+ "IconUserShare",
4135
+ "IconUserShield",
4136
+ "IconUserStar",
4137
+ "IconUserUp",
4138
+ "IconUserX",
4139
+ "IconUser",
4140
+ "IconUsersGroup",
4141
+ "IconUsersMinus",
4142
+ "IconUsersPlus",
4143
+ "IconUsers",
4144
+ "IconUvIndex",
4145
+ "IconUxCircle",
4146
+ "IconVaccineBottleOff",
4147
+ "IconVaccineBottle",
4148
+ "IconVaccineOff",
4149
+ "IconVaccine",
4150
+ "IconVacuumCleaner",
4151
+ "IconVariableMinus",
4152
+ "IconVariableOff",
4153
+ "IconVariablePlus",
4154
+ "IconVariable",
4155
+ "IconVectorBezier2",
4156
+ "IconVectorBezierArc",
4157
+ "IconVectorBezierCircle",
4158
+ "IconVectorBezier",
4159
+ "IconVectorOff",
4160
+ "IconVectorSpline",
4161
+ "IconVectorTriangleOff",
4162
+ "IconVectorTriangle",
4163
+ "IconVector",
4164
+ "IconVenus",
4165
+ "IconVersionsFilled",
4166
+ "IconVersionsOff",
4167
+ "IconVersions",
4168
+ "IconVideoMinus",
4169
+ "IconVideoOff",
4170
+ "IconVideoPlus",
4171
+ "IconVideo",
4172
+ "IconView360Off",
4173
+ "IconView360",
4174
+ "IconViewfinderOff",
4175
+ "IconViewfinder",
4176
+ "IconViewportNarrow",
4177
+ "IconViewportWide",
4178
+ "IconVinyl",
4179
+ "IconVipOff",
4180
+ "IconVip",
4181
+ "IconVirusOff",
4182
+ "IconVirusSearch",
4183
+ "IconVirus",
4184
+ "IconVocabularyOff",
4185
+ "IconVocabulary",
4186
+ "IconVolcano",
4187
+ "IconVolume2",
4188
+ "IconVolume3",
4189
+ "IconVolumeOff",
4190
+ "IconVolume",
4191
+ "IconWalk",
4192
+ "IconWallOff",
4193
+ "IconWall",
4194
+ "IconWalletOff",
4195
+ "IconWallet",
4196
+ "IconWallpaperOff",
4197
+ "IconWallpaper",
4198
+ "IconWandOff",
4199
+ "IconWand",
4200
+ "IconWashDry1",
4201
+ "IconWashDry2",
4202
+ "IconWashDry3",
4203
+ "IconWashDryA",
4204
+ "IconWashDryDip",
4205
+ "IconWashDryF",
4206
+ "IconWashDryFlat",
4207
+ "IconWashDryHang",
4208
+ "IconWashDryOff",
4209
+ "IconWashDryP",
4210
+ "IconWashDryShade",
4211
+ "IconWashDryW",
4212
+ "IconWashDry",
4213
+ "IconWashDrycleanOff",
4214
+ "IconWashDryclean",
4215
+ "IconWashEco",
4216
+ "IconWashGentle",
4217
+ "IconWashHand",
4218
+ "IconWashMachine",
4219
+ "IconWashOff",
4220
+ "IconWashPress",
4221
+ "IconWashTemperature1",
4222
+ "IconWashTemperature2",
4223
+ "IconWashTemperature3",
4224
+ "IconWashTemperature4",
4225
+ "IconWashTemperature5",
4226
+ "IconWashTemperature6",
4227
+ "IconWashTumbleDry",
4228
+ "IconWashTumbleOff",
4229
+ "IconWash",
4230
+ "IconWaterpolo",
4231
+ "IconWaveSawTool",
4232
+ "IconWaveSine",
4233
+ "IconWaveSquare",
4234
+ "IconWebhookOff",
4235
+ "IconWebhook",
4236
+ "IconWeight",
4237
+ "IconWheelchairOff",
4238
+ "IconWheelchair",
4239
+ "IconWhirl",
4240
+ "IconWifi0",
4241
+ "IconWifi1",
4242
+ "IconWifi2",
4243
+ "IconWifiOff",
4244
+ "IconWifi",
4245
+ "IconWindOff",
4246
+ "IconWind",
4247
+ "IconWindmillFilled",
4248
+ "IconWindmillOff",
4249
+ "IconWindmill",
4250
+ "IconWindowMaximize",
4251
+ "IconWindowMinimize",
4252
+ "IconWindowOff",
4253
+ "IconWindow",
4254
+ "IconWindsock",
4255
+ "IconWiperWash",
4256
+ "IconWiper",
4257
+ "IconWoman",
4258
+ "IconWood",
4259
+ "IconWorldBolt",
4260
+ "IconWorldCancel",
4261
+ "IconWorldCheck",
4262
+ "IconWorldCode",
4263
+ "IconWorldCog",
4264
+ "IconWorldDollar",
4265
+ "IconWorldDown",
4266
+ "IconWorldDownload",
4267
+ "IconWorldExclamation",
4268
+ "IconWorldHeart",
4269
+ "IconWorldLatitude",
4270
+ "IconWorldLongitude",
4271
+ "IconWorldMinus",
4272
+ "IconWorldOff",
4273
+ "IconWorldPause",
4274
+ "IconWorldPin",
4275
+ "IconWorldPlus",
4276
+ "IconWorldQuestion",
4277
+ "IconWorldSearch",
4278
+ "IconWorldShare",
4279
+ "IconWorldStar",
4280
+ "IconWorldUp",
4281
+ "IconWorldUpload",
4282
+ "IconWorldWww",
4283
+ "IconWorldX",
4284
+ "IconWorld",
4285
+ "IconWreckingBall",
4286
+ "IconWritingOff",
4287
+ "IconWritingSignOff",
4288
+ "IconWritingSign",
4289
+ "IconWriting",
4290
+ "IconX",
4291
+ "IconXboxA",
4292
+ "IconXboxB",
4293
+ "IconXboxX",
4294
+ "IconXboxY",
4295
+ "IconXd",
4296
+ "IconYinYangFilled",
4297
+ "IconYinYang",
4298
+ "IconYoga",
4299
+ "IconZeppelinOff",
4300
+ "IconZeppelin",
4301
+ "IconZip",
4302
+ "IconZodiacAquarius",
4303
+ "IconZodiacAries",
4304
+ "IconZodiacCancer",
4305
+ "IconZodiacCapricorn",
4306
+ "IconZodiacGemini",
4307
+ "IconZodiacLeo",
4308
+ "IconZodiacLibra",
4309
+ "IconZodiacPisces",
4310
+ "IconZodiacSagittarius",
4311
+ "IconZodiacScorpio",
4312
+ "IconZodiacTaurus",
4313
+ "IconZodiacVirgo",
4314
+ "IconZoomCancel",
4315
+ "IconZoomCheckFilled",
4316
+ "IconZoomCheck",
4317
+ "IconZoomCode",
4318
+ "IconZoomExclamation",
4319
+ "IconZoomFilled",
4320
+ "IconZoomInAreaFilled",
4321
+ "IconZoomInArea",
4322
+ "IconZoomInFilled",
4323
+ "IconZoomIn",
4324
+ "IconZoomMoney",
4325
+ "IconZoomOutArea",
4326
+ "IconZoomOutFilled",
4327
+ "IconZoomOut",
4328
+ "IconZoomPan",
4329
+ "IconZoomQuestion",
4330
+ "IconZoomReplace",
4331
+ "IconZoomReset",
4332
+ "IconZzzOff",
4333
+ "IconZzz"
4334
+ ] as const
4335
+
4336
+ export type TablerIconName = (typeof tablerIconNames)[number]