@agility/plenum-ui 1.3.50 → 2.0.0-rc10

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 (346) 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 +1117 -0
  20. package/dist/index.js +6296 -0
  21. package/dist/index.js.map +7 -0
  22. package/dist/lib/tailwind.css +63535 -0
  23. package/{lib/components → dist/types/stories/atoms}/Avatar/Avatar.d.ts +28 -27
  24. package/dist/types/stories/atoms/Avatar/index.d.ts +3 -0
  25. package/dist/types/stories/atoms/badges/Badge.d.ts +21 -0
  26. package/dist/types/stories/atoms/badges/index.d.ts +3 -0
  27. package/dist/types/stories/atoms/buttons/Button/Alternative/Alternative.stories.d.ts +14 -0
  28. package/dist/types/stories/atoms/buttons/Button/Button.d.ts +35 -0
  29. package/dist/types/stories/atoms/buttons/Button/Danger/Danger.stories.d.ts +14 -0
  30. package/dist/types/stories/atoms/buttons/Button/Primary/Primary.stories.d.ts +14 -0
  31. package/dist/types/stories/atoms/buttons/Button/Secondary/Secondary.stories.d.ts +14 -0
  32. package/dist/types/stories/atoms/buttons/Button/defaultArgs.d.ts +3 -0
  33. package/dist/types/stories/atoms/buttons/Button/index.d.ts +3 -0
  34. package/dist/types/stories/atoms/buttons/Capsule/Alternative/Alternative.stories.d.ts +6 -0
  35. package/dist/types/stories/atoms/buttons/Capsule/Capsule.d.ts +27 -0
  36. package/dist/types/stories/atoms/buttons/Capsule/Danger/Danger.stories.d.ts +6 -0
  37. package/dist/types/stories/atoms/buttons/Capsule/Primary/Primary.stories.d.ts +6 -0
  38. package/dist/types/stories/atoms/buttons/Capsule/Secondary/Secondary.stories.d.ts +6 -0
  39. package/dist/types/stories/atoms/buttons/Capsule/index.d.ts +3 -0
  40. package/dist/types/stories/atoms/buttons/index.d.ts +4 -0
  41. package/{lib/components/DynamicIcons/DynamicIcons.d.ts → dist/types/stories/atoms/icons/DynamicIcon.d.ts} +20 -18
  42. package/dist/types/stories/atoms/icons/DynamicIcon.stories.d.ts +10 -0
  43. package/dist/types/stories/atoms/icons/IconWithShadow.d.ts +6 -0
  44. package/dist/types/stories/atoms/icons/IconWithShadow.stories.d.ts +10 -0
  45. package/{lib/components/DynamicIcons → dist/types/stories/atoms/icons}/TablerIcon.d.ts +9 -9
  46. package/dist/types/stories/atoms/icons/index.d.ts +4 -0
  47. package/dist/types/stories/atoms/icons/tablerIconNames.d.ts +2 -0
  48. package/dist/types/stories/atoms/index.d.ts +7 -0
  49. package/dist/types/stories/atoms/loaders/Loader.d.ts +6 -0
  50. package/dist/types/stories/atoms/loaders/Loader.stories.d.ts +6 -0
  51. package/dist/types/stories/atoms/loaders/NProgress/RadialProgress.d.ts +11 -0
  52. package/dist/types/stories/atoms/loaders/NProgress/index.d.ts +3 -0
  53. package/dist/types/stories/atoms/loaders/index.d.ts +4 -0
  54. package/dist/types/stories/index.d.ts +5 -0
  55. package/dist/types/stories/layouts/index.d.ts +0 -0
  56. package/dist/types/stories/molecules/index.d.ts +3 -0
  57. package/{lib/components/Forms → dist/types/stories/molecules/inputs}/InputCounter/InputCounter.d.ts +10 -9
  58. package/dist/types/stories/molecules/inputs/InputCounter/index.d.ts +2 -0
  59. package/dist/types/stories/molecules/inputs/InputField/InputField.d.ts +30 -0
  60. package/dist/types/stories/molecules/inputs/InputField/index.d.ts +3 -0
  61. package/{lib/components/Forms → dist/types/stories/molecules/inputs}/InputLabel/InputLabel.d.ts +15 -14
  62. package/dist/types/stories/molecules/inputs/InputLabel/index.d.ts +3 -0
  63. package/dist/types/stories/molecules/inputs/NestedInputButton/NestedInputButton.d.ts +17 -0
  64. package/dist/types/stories/molecules/inputs/NestedInputButton/index.d.ts +3 -0
  65. package/{lib/components/Forms → dist/types/stories/molecules/inputs}/TextInput/TextInput.d.ts +39 -39
  66. package/dist/types/stories/molecules/inputs/TextInput/index.d.ts +4 -0
  67. package/{lib/components/Forms/Checkbox → dist/types/stories/molecules/inputs/checkbox}/Checkbox.d.ts +28 -27
  68. package/dist/types/stories/molecules/inputs/checkbox/Checkbox.stories.d.ts +6 -0
  69. package/dist/types/stories/molecules/inputs/checkbox/index.d.ts +3 -0
  70. package/{lib/components/Combobox/Combobox.d.ts → dist/types/stories/molecules/inputs/combobox/ComboBox.d.ts} +34 -34
  71. package/dist/types/stories/molecules/inputs/combobox/ComboBox.stories.d.ts +6 -0
  72. package/dist/types/stories/molecules/inputs/combobox/index.d.ts +3 -0
  73. package/dist/types/stories/molecules/inputs/index.d.ts +12 -0
  74. package/{lib/components/Forms/Radio → dist/types/stories/molecules/inputs/radio}/Radio.d.ts +27 -27
  75. package/dist/types/stories/molecules/inputs/radio/Radio.stories.d.ts +6 -0
  76. package/dist/types/stories/molecules/inputs/radio/index.d.ts +3 -0
  77. package/{lib/components/Forms/Select → dist/types/stories/molecules/inputs/select}/Select.d.ts +27 -27
  78. package/dist/types/stories/molecules/inputs/select/Select.stories.d.ts +6 -0
  79. package/dist/types/stories/molecules/inputs/select/index.d.ts +3 -0
  80. package/{lib/components/Forms/Textarea/Textarea.d.ts → dist/types/stories/molecules/inputs/textArea/TextArea.d.ts} +35 -32
  81. package/dist/types/stories/molecules/inputs/textArea/TextArea.stories.d.ts +6 -0
  82. package/dist/types/stories/molecules/inputs/textArea/index.d.ts +3 -0
  83. package/dist/types/stories/molecules/inputs/toggleSwitch/ToggleSwitch.d.ts +18 -0
  84. package/dist/types/stories/molecules/inputs/toggleSwitch/index.d.ts +3 -0
  85. package/dist/types/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.d.ts +18 -0
  86. package/dist/types/stories/organisms/AnimatedLabelInput/index.d.ts +3 -0
  87. package/dist/types/stories/organisms/ButtonDropdown/ButtonDropdown.d.ts +14 -0
  88. package/dist/types/stories/organisms/ButtonDropdown/index.d.ts +3 -0
  89. package/{lib/components/Dropdown/Dropdown.d.ts → dist/types/stories/organisms/DropdownComponent/DropdownComponent.d.ts} +36 -39
  90. package/dist/types/stories/organisms/DropdownComponent/dropdownItems.d.ts +3 -0
  91. package/dist/types/stories/organisms/DropdownComponent/index.d.ts +4 -0
  92. package/dist/types/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.d.ts +19 -0
  93. package/dist/types/stories/organisms/EmptySectionPlaceholder/index.d.ts +3 -0
  94. package/dist/types/stories/organisms/FormInputWithAddons/FormInputWithAddons.d.ts +21 -0
  95. package/dist/types/stories/organisms/FormInputWithAddons/index.d.ts +3 -0
  96. package/{lib/components/Forms/TextInputSelect/InputSelect → dist/types/stories/organisms/TextInputSelect}/InputSelect.d.ts +16 -13
  97. package/{lib/components/Forms → dist/types/stories/organisms}/TextInputSelect/TextInputSelect.d.ts +48 -48
  98. package/dist/types/stories/organisms/TextInputSelect/index.d.ts +3 -0
  99. package/dist/types/stories/organisms/index.d.ts +8 -0
  100. package/dist/types/utils/types.d.ts +2 -0
  101. package/dist/types/utils/useId.d.ts +1 -0
  102. package/next.config.js +8 -0
  103. package/package.json +55 -78
  104. package/pages/api/hello.ts +13 -0
  105. package/postcss.config.js +5 -6
  106. package/public/next.svg +1 -0
  107. package/public/thirteen.svg +1 -0
  108. package/public/vercel.svg +1 -0
  109. package/scripts/create-component.js +97 -0
  110. package/stories/Introduction.mdx +314 -0
  111. package/stories/assets/code-brackets.svg +1 -0
  112. package/stories/assets/colors.svg +1 -0
  113. package/stories/assets/comments.svg +1 -0
  114. package/stories/assets/direction.svg +1 -0
  115. package/stories/assets/flow.svg +1 -0
  116. package/stories/assets/plugin.svg +1 -0
  117. package/stories/assets/repo.svg +1 -0
  118. package/stories/assets/stackalt.svg +1 -0
  119. package/stories/atoms/Avatar/Avatar.stories.tsx +96 -0
  120. package/stories/atoms/Avatar/Avatar.tsx +123 -0
  121. package/stories/atoms/Avatar/index.ts +3 -0
  122. package/stories/atoms/badges/Badge.tsx +127 -0
  123. package/stories/atoms/badges/Pill/Pill.stories.tsx +75 -0
  124. package/stories/atoms/badges/Rounded/Rounded.stories.tsx +75 -0
  125. package/stories/atoms/badges/index.ts +3 -0
  126. package/stories/atoms/buttons/Button/Alternative/Alternative.stories.ts +76 -0
  127. package/stories/atoms/buttons/Button/Button.tsx +146 -0
  128. package/stories/atoms/buttons/Button/Danger/Danger.stories.ts +78 -0
  129. package/stories/atoms/buttons/Button/Primary/Primary.stories.ts +85 -0
  130. package/stories/atoms/buttons/Button/Secondary/Secondary.stories.ts +81 -0
  131. package/stories/atoms/buttons/Button/defaultArgs.ts +9 -0
  132. package/stories/atoms/buttons/Button/index.ts +3 -0
  133. package/stories/atoms/buttons/Capsule/Alternative/Alternative.stories.ts +27 -0
  134. package/stories/atoms/buttons/Capsule/Capsule.tsx +87 -0
  135. package/stories/atoms/buttons/Capsule/Danger/Danger.stories.ts +27 -0
  136. package/stories/atoms/buttons/Capsule/Primary/Primary.stories.ts +27 -0
  137. package/stories/atoms/buttons/Capsule/Secondary/Secondary.stories.ts +27 -0
  138. package/stories/atoms/buttons/Capsule/index.ts +3 -0
  139. package/stories/atoms/buttons/FloatingActionButton/FloatingActionButton.stories.tsx +15 -0
  140. package/stories/atoms/buttons/FloatingActionButton/FloatingActionButton.tsx +22 -0
  141. package/stories/atoms/buttons/FloatingActionButton/index.tsx +3 -0
  142. package/stories/atoms/buttons/index.ts +4 -0
  143. package/stories/atoms/crumb/Crumb.stories.tsx +18 -0
  144. package/stories/atoms/crumb/Crumb.tsx +22 -0
  145. package/stories/atoms/crumb/index.tsx +3 -0
  146. package/stories/atoms/icons/DynamicIcon.stories.ts +43 -0
  147. package/stories/atoms/icons/DynamicIcon.tsx +90 -0
  148. package/stories/atoms/icons/IconWithShadow.stories.ts +43 -0
  149. package/stories/atoms/icons/IconWithShadow.tsx +16 -0
  150. package/stories/atoms/icons/TablerIcon.tsx +22 -0
  151. package/stories/atoms/icons/index.tsx +14 -0
  152. package/stories/atoms/icons/tablerIconNames.ts +4336 -0
  153. package/stories/atoms/index.ts +46 -0
  154. package/stories/atoms/loaders/Loader.stories.ts +15 -0
  155. package/stories/atoms/loaders/Loader.tsx +15 -0
  156. package/stories/atoms/loaders/NProgress/RadialProgress.stories.tsx +19 -0
  157. package/stories/atoms/loaders/NProgress/RadialProgress.tsx +76 -0
  158. package/stories/atoms/loaders/NProgress/index.ts +3 -0
  159. package/stories/atoms/loaders/index.ts +4 -0
  160. package/stories/index.ts +134 -0
  161. package/stories/layouts/CardLayout/CardLayout.stories.tsx +18 -0
  162. package/stories/layouts/CardLayout/CardLayout.tsx +22 -0
  163. package/stories/layouts/CardLayout/index.tsx +3 -0
  164. package/stories/layouts/ModalLayout/ModalLayout.stories.tsx +18 -0
  165. package/stories/layouts/ModalLayout/ModalLayout.tsx +22 -0
  166. package/stories/layouts/ModalLayout/index.tsx +3 -0
  167. package/stories/layouts/index.ts +0 -0
  168. package/stories/molecules/index.ts +51 -0
  169. package/stories/molecules/inputs/InputCounter/InputCounter.stories.tsx +18 -0
  170. package/stories/molecules/inputs/InputCounter/InputCounter.tsx +24 -0
  171. package/stories/molecules/inputs/InputCounter/index.tsx +3 -0
  172. package/stories/molecules/inputs/InputField/InputField.stories.tsx +29 -0
  173. package/stories/molecules/inputs/InputField/InputField.tsx +94 -0
  174. package/stories/molecules/inputs/InputField/index.tsx +3 -0
  175. package/stories/molecules/inputs/InputLabel/InputLabel.stories.tsx +19 -0
  176. package/stories/molecules/inputs/InputLabel/InputLabel.tsx +45 -0
  177. package/stories/molecules/inputs/InputLabel/index.tsx +3 -0
  178. package/stories/molecules/inputs/NestedInputButton/NestedInputButton.stories.tsx +52 -0
  179. package/stories/molecules/inputs/NestedInputButton/NestedInputButton.tsx +64 -0
  180. package/stories/molecules/inputs/NestedInputButton/index.tsx +3 -0
  181. package/stories/molecules/inputs/TextInput/TextInput.stories.tsx +32 -0
  182. package/stories/molecules/inputs/TextInput/TextInput.tsx +162 -0
  183. package/stories/molecules/inputs/TextInput/index.tsx +5 -0
  184. package/stories/molecules/inputs/checkbox/Checkbox.stories.ts +23 -0
  185. package/stories/molecules/inputs/checkbox/Checkbox.tsx +99 -0
  186. package/stories/molecules/inputs/checkbox/index.ts +3 -0
  187. package/stories/molecules/inputs/combobox/ComboBox.stories.ts +41 -0
  188. package/stories/molecules/inputs/combobox/ComboBox.tsx +194 -0
  189. package/stories/molecules/inputs/combobox/index.ts +3 -0
  190. package/stories/molecules/inputs/index.ts +38 -0
  191. package/stories/molecules/inputs/radio/Radio.stories.ts +27 -0
  192. package/stories/molecules/inputs/radio/Radio.tsx +92 -0
  193. package/stories/molecules/inputs/radio/index.ts +3 -0
  194. package/stories/molecules/inputs/select/Select.stories.ts +23 -0
  195. package/stories/molecules/inputs/select/Select.tsx +100 -0
  196. package/stories/molecules/inputs/select/index.ts +3 -0
  197. package/stories/molecules/inputs/textArea/TextArea.stories.ts +22 -0
  198. package/stories/molecules/inputs/textArea/TextArea.tsx +128 -0
  199. package/stories/molecules/inputs/textArea/index.ts +3 -0
  200. package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.stories.tsx +119 -0
  201. package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.tsx +75 -0
  202. package/stories/molecules/inputs/toggleSwitch/index.ts +3 -0
  203. package/stories/molecules/tabs/Tabs.stories.tsx +18 -0
  204. package/stories/molecules/tabs/Tabs.tsx +22 -0
  205. package/stories/molecules/tabs/index.tsx +3 -0
  206. package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.stories.tsx +21 -0
  207. package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.tsx +60 -0
  208. package/stories/organisms/AnimatedLabelInput/index.tsx +3 -0
  209. package/stories/organisms/ButtonDropdown/ButtonDropdown.stories.tsx +118 -0
  210. package/stories/organisms/ButtonDropdown/ButtonDropdown.tsx +81 -0
  211. package/stories/organisms/ButtonDropdown/index.tsx +3 -0
  212. package/stories/organisms/DropdownComponent/Dropdown.stories.tsx +49 -0
  213. package/stories/organisms/DropdownComponent/Dropdown.test.tsx +0 -0
  214. package/stories/organisms/DropdownComponent/DropdownComponent.tsx +300 -0
  215. package/stories/organisms/DropdownComponent/dropdownItems.ts +101 -0
  216. package/stories/organisms/DropdownComponent/index.ts +4 -0
  217. package/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.stories.tsx +76 -0
  218. package/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.tsx +52 -0
  219. package/stories/organisms/EmptySectionPlaceholder/index.tsx +3 -0
  220. package/stories/organisms/FormInputWithAddons/FormInputWithAddons.stories.tsx +29 -0
  221. package/stories/organisms/FormInputWithAddons/FormInputWithAddons.tsx +140 -0
  222. package/stories/organisms/FormInputWithAddons/index.tsx +3 -0
  223. package/stories/organisms/TextInputSelect/InputSelect.tsx +59 -0
  224. package/stories/organisms/TextInputSelect/TextInputSelect.stories.tsx +33 -0
  225. package/stories/organisms/TextInputSelect/TextInputSelect.tsx +186 -0
  226. package/stories/organisms/TextInputSelect/index.tsx +3 -0
  227. package/stories/organisms/index.ts +18 -0
  228. package/tailwind.config.js +165 -36
  229. package/tsconfig.json +27 -21
  230. package/tsconfig.lib.json +19 -0
  231. package/utils/types.d.ts +2 -0
  232. package/utils/types.ts +3 -0
  233. package/utils/useId.d.ts +1 -0
  234. package/utils/useId.tsx +16 -0
  235. package/.babelrc +0 -14
  236. package/.editorconfig +0 -9
  237. package/.eslintrc +0 -13
  238. package/.github/workflows/test.yml +0 -27
  239. package/.storybook/main.js +0 -17
  240. package/.storybook/manager.js +0 -6
  241. package/.storybook/plenumTheme.js +0 -8
  242. package/.storybook/preview.js +0 -44
  243. package/_templates/component/new/component.ejs.t +0 -18
  244. package/_templates/component/new/component.stories.ejs.t +0 -21
  245. package/_templates/component/new/component.test.ejs.t +0 -15
  246. package/_templates/component/new/index.ejs.t +0 -6
  247. package/_templates/component/new/prompt.js +0 -7
  248. package/jest.config.js +0 -8
  249. package/lib/common/brandCfg.d.ts +0 -3
  250. package/lib/common/index.d.ts +0 -3
  251. package/lib/common/storyCfg.d.ts +0 -5
  252. package/lib/components/Avatar/Avatar.stories.d.ts +0 -6
  253. package/lib/components/Avatar/Avatar.test.d.ts +0 -1
  254. package/lib/components/Avatar/index.d.ts +0 -1
  255. package/lib/components/Button/Button.d.ts +0 -55
  256. package/lib/components/Button/Button.stories.d.ts +0 -12
  257. package/lib/components/Button/Button.test.d.ts +0 -1
  258. package/lib/components/Button/index.d.ts +0 -1
  259. package/lib/components/ButtonDropdown/ButtonDropdown.d.ts +0 -12
  260. package/lib/components/ButtonDropdown/ButtonDropdown.stories.d.ts +0 -9
  261. package/lib/components/ButtonDropdown/index.d.ts +0 -1
  262. package/lib/components/Combobox/Combobox.stories.d.ts +0 -14
  263. package/lib/components/Combobox/Combobox.test.d.ts +0 -1
  264. package/lib/components/Combobox/index.d.ts +0 -1
  265. package/lib/components/Dropdown/Dropdown.stories.d.ts +0 -8
  266. package/lib/components/Dropdown/Dropdown.test.d.ts +0 -1
  267. package/lib/components/Dropdown/data.d.ts +0 -3
  268. package/lib/components/Dropdown/index.d.ts +0 -1
  269. package/lib/components/DynamicIcons/DynamicIcons.stories.d.ts +0 -9
  270. package/lib/components/DynamicIcons/index.d.ts +0 -3
  271. package/lib/components/DynamicIcons/tablerIconNames.d.ts +0 -2
  272. package/lib/components/Forms/BaseField/BaseField.d.ts +0 -34
  273. package/lib/components/Forms/BaseField/BaseField.stories.d.ts +0 -6
  274. package/lib/components/Forms/BaseField/BaseField.test.d.ts +0 -1
  275. package/lib/components/Forms/BaseField/index.d.ts +0 -1
  276. package/lib/components/Forms/Checkbox/Checkbox.stories.d.ts +0 -14
  277. package/lib/components/Forms/Checkbox/Checkbox.test.d.ts +0 -1
  278. package/lib/components/Forms/Checkbox/index.d.ts +0 -1
  279. package/lib/components/Forms/InputCounter/InputCounter.stories.d.ts +0 -6
  280. package/lib/components/Forms/InputCounter/InputCounter.test.d.ts +0 -1
  281. package/lib/components/Forms/InputCounter/index.d.ts +0 -1
  282. package/lib/components/Forms/InputLabel/InputLabel.stories.d.ts +0 -6
  283. package/lib/components/Forms/InputLabel/InputLabel.test.d.ts +0 -1
  284. package/lib/components/Forms/InputLabel/index.d.ts +0 -1
  285. package/lib/components/Forms/Radio/Radio.stories.d.ts +0 -12
  286. package/lib/components/Forms/Radio/Radio.test.d.ts +0 -1
  287. package/lib/components/Forms/Radio/index.d.ts +0 -1
  288. package/lib/components/Forms/Select/Select.stories.d.ts +0 -11
  289. package/lib/components/Forms/Select/Select.test.d.ts +0 -1
  290. package/lib/components/Forms/Select/index.d.ts +0 -1
  291. package/lib/components/Forms/TextInput/TextInput.stories.d.ts +0 -12
  292. package/lib/components/Forms/TextInput/index.d.ts +0 -1
  293. package/lib/components/Forms/TextInputAddon/InputCta/InputCta.d.ts +0 -16
  294. package/lib/components/Forms/TextInputAddon/InputCta/InputCta.stories.d.ts +0 -6
  295. package/lib/components/Forms/TextInputAddon/InputCta/InputCta.test.d.ts +0 -1
  296. package/lib/components/Forms/TextInputAddon/InputCta/index.d.ts +0 -1
  297. package/lib/components/Forms/TextInputAddon/TextInputAddon.d.ts +0 -54
  298. package/lib/components/Forms/TextInputAddon/TextInputAddon.stories.d.ts +0 -13
  299. package/lib/components/Forms/TextInputAddon/index.d.ts +0 -1
  300. package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.stories.d.ts +0 -6
  301. package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.test.d.ts +0 -1
  302. package/lib/components/Forms/TextInputSelect/InputSelect/index.d.ts +0 -1
  303. package/lib/components/Forms/TextInputSelect/TextInputSelect.stories.d.ts +0 -8
  304. package/lib/components/Forms/TextInputSelect/index.d.ts +0 -1
  305. package/lib/components/Forms/Textarea/Textarea.stories.d.ts +0 -12
  306. package/lib/components/Forms/Textarea/Textarea.test.d.ts +0 -1
  307. package/lib/components/Forms/Textarea/index.d.ts +0 -1
  308. package/lib/components/ToggleSwitch/ToggleSwitch.d.ts +0 -28
  309. package/lib/components/ToggleSwitch/ToggleSwitch.stories.d.ts +0 -21
  310. package/lib/components/ToggleSwitch/ToggleSwitch.test.d.ts +0 -1
  311. package/lib/components/ToggleSwitch/index.d.ts +0 -1
  312. package/lib/components/TreeView/TreeView.d.ts +0 -36
  313. package/lib/components/TreeView/TreeView.stories.d.ts +0 -6
  314. package/lib/components/TreeView/TreeView.test.d.ts +0 -1
  315. package/lib/components/TreeView/index.d.ts +0 -1
  316. package/lib/components/TreeView V1/TreeItem/TreeItem.d.ts +0 -16
  317. package/lib/components/TreeView V1/TreeItem/TreeItem.stories.d.ts +0 -9
  318. package/lib/components/TreeView V1/TreeItem/TreeItem.test.d.ts +0 -1
  319. package/lib/components/TreeView V1/TreeItem/index.d.ts +0 -1
  320. package/lib/components/TreeView V1/TreeView.d.ts +0 -6
  321. package/lib/components/TreeView V1/TreeView.stories.d.ts +0 -6
  322. package/lib/components/TreeView V1/TreeView.test.d.ts +0 -1
  323. package/lib/components/TreeView V1/context.d.ts +0 -9
  324. package/lib/components/TreeView V1/index.d.ts +0 -1
  325. package/lib/components/TreeView V1/sampleData.d.ts +0 -71
  326. package/lib/components/TreeView V1/types/tree.types.d.ts +0 -21
  327. package/lib/index.d.ts +0 -13
  328. package/lib/index.esm.js +0 -105883
  329. package/lib/index.esm.js.map +0 -1
  330. package/lib/index.js +0 -105922
  331. package/lib/index.js.map +0 -1
  332. package/lib/page/TreeNavigation/CustomNode/CustomNode.d.ts +0 -3
  333. package/lib/page/TreeNavigation/CustomNode/CustomNode.test.d.ts +0 -1
  334. package/lib/page/TreeNavigation/CustomNode/index.d.ts +0 -1
  335. package/lib/page/TreeNavigation/TreeNavigation.d.ts +0 -8
  336. package/lib/page/TreeNavigation/TreeNavigation.stories.d.ts +0 -6
  337. package/lib/page/TreeNavigation/hooks/useFetch.d.ts +0 -14
  338. package/lib/page/TreeNavigation/index.d.ts +0 -1
  339. package/lib/tailwind.css +0 -2023
  340. package/lib/util/DynamicIcons.d.ts +0 -10
  341. package/lib/util/Loader.d.ts +0 -5
  342. package/lib/util/types.d.ts +0 -2
  343. package/lib/util/useID.d.ts +0 -1
  344. package/rollup.config.js +0 -37
  345. package/setupTests.js +0 -6
  346. package/styleMock.js +0 -2
@@ -0,0 +1,1117 @@
1
+ declare module '@agility/plenum-ui/stories/atoms/Avatar/Avatar' {
2
+ import { FC } from "react";
3
+ export interface IAvatarProps {
4
+ /**
5
+ * source url for the avatar
6
+ */
7
+ src?: string;
8
+ /**
9
+ * Initials we use as fallback if no src is passed
10
+ */
11
+ initials?: string;
12
+ /**
13
+ * optional status
14
+ */
15
+ status?: "offline" | "online" | "busy";
16
+ /**
17
+ * avatar picture size (also affects status indicator)
18
+ */
19
+ size?: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
20
+ /**
21
+ * avatar img alt
22
+ */
23
+ alt?: string;
24
+ }
25
+ /**
26
+ * Avatar component that shows profile image or name initials of the user
27
+ */
28
+ const Avatar: FC<IAvatarProps>;
29
+ export default Avatar;
30
+
31
+ }
32
+ declare module '@agility/plenum-ui/stories/atoms/Avatar/index' {
33
+ import Avatar, { IAvatarProps } from "@agility/plenum-ui/stories/atoms/Avatar/Avatar";
34
+ export default Avatar;
35
+ export type { IAvatarProps };
36
+
37
+ }
38
+ declare module '@agility/plenum-ui/stories/atoms/badges/Badge' {
39
+ import React from "react";
40
+ export interface IBadgeProps {
41
+ /** The content scheme of the badge */
42
+ color: "primary" | "secondary" | "danger" | "warning" | "success" | "info" | "basic" | "pink";
43
+ /** Render with slightly rounded corners or as a pill shape */
44
+ variant: "rounded" | "pill";
45
+ /** The text content of the badge */
46
+ label: string;
47
+ /** The size of the badge */
48
+ size?: "sm" | "lg";
49
+ /** Render a loader inside the badge */
50
+ loading?: boolean;
51
+ /** Render with a small circle in a darker shade of the color chosen*/
52
+ statusDot?: boolean;
53
+ /** Render with a button to remove the badge */
54
+ removeButton?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
55
+ /** Render the badge as a clickable button */
56
+ actionButton?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
57
+ }
58
+ const Badge: React.FC<IBadgeProps>;
59
+ export default Badge;
60
+
61
+ }
62
+ declare module '@agility/plenum-ui/stories/atoms/badges/index' {
63
+ import Badge, { IBadgeProps } from "@agility/plenum-ui/stories/atoms/badges/Badge";
64
+ export default Badge;
65
+ export type { IBadgeProps };
66
+
67
+ }
68
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Alternative/Alternative.stories' {
69
+ import type { Meta, StoryObj } from "@storybook/react";
70
+ import Button from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
71
+ const meta: Meta<typeof Button>;
72
+ export default meta;
73
+ type Story = StoryObj<typeof Button>;
74
+ export const Alternative: Story;
75
+ export const AlternativeTrailingIcon: Story;
76
+ export const AlternativeLeadingIcon: Story;
77
+ export const AlternativeExtraSmall: Story;
78
+ export const AlternativeSimpleIconName: Story;
79
+ export const AlternativeSmall: Story;
80
+ export const AlternativeMedium: Story;
81
+ export const AlternativeLarge: Story;
82
+ export const AlternativeExtraLarge: Story;
83
+
84
+ }
85
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Button' {
86
+ import { HTMLAttributeAnchorTarget } from "react";
87
+ import { UnifiedIconName, IDynamicIconProps } from "@agility/plenum-ui/stories/atoms/icons/index";
88
+ export type BTNActionType = "primary" | "secondary" | "alternative" | "danger";
89
+ export interface IButtonProps extends React.ComponentPropsWithoutRef<"button"> {
90
+ /** Is the button a Primary CTA, alternative or danger button? */
91
+ actionType?: BTNActionType;
92
+ /** How lg should the button be? - Defaults to 'base'. */
93
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
94
+ /** The Button's text content. */
95
+ label: string;
96
+ /** The Icon to be displayed inside the button. */
97
+ icon?: IDynamicIconProps | UnifiedIconName;
98
+ /** Does the button width grow to fill it's container? */
99
+ fullWidth?: boolean;
100
+ /** Optionally render as anchor tag */
101
+ asLink?: {
102
+ href: string;
103
+ target: HTMLAttributeAnchorTarget;
104
+ title?: string;
105
+ };
106
+ /** The placement of the icon relative to the text content. */
107
+ iconPosition?: "trailing" | "leading";
108
+ /** Use an custom svg element */
109
+ CustomSVGIcon?: JSX.Element;
110
+ /** Is the associated content loading? */
111
+ isLoading?: boolean;
112
+ className?: string;
113
+ iconObj?: React.ReactNode;
114
+ ref?: React.LegacyRef<HTMLButtonElement>;
115
+ }
116
+ /**
117
+ * Primary UI component for user interaction
118
+ */
119
+ const Button: ({ actionType, size, label, icon, iconObj, CustomSVGIcon, fullWidth, iconPosition, asLink, isLoading, className, ref, ...props }: IButtonProps) => import("react/jsx-runtime").JSX.Element;
120
+ export default Button;
121
+
122
+ }
123
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Danger/Danger.stories' {
124
+ import type { Meta, StoryObj } from "@storybook/react";
125
+ import Button from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
126
+ const meta: Meta<typeof Button>;
127
+ export default meta;
128
+ type Story = StoryObj<typeof Button>;
129
+ export const Danger: Story;
130
+ export const DangerTrailingIcon: Story;
131
+ export const DangerLeadingIcon: Story;
132
+ export const DangerSimpleIconName: Story;
133
+ export const DangerExtraSmall: Story;
134
+ export const DangerSmall: Story;
135
+ export const DangerMedium: Story;
136
+ export const DangerLarge: Story;
137
+ export const DangerExtraLarge: Story;
138
+
139
+ }
140
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Primary/Primary.stories' {
141
+ import type { Meta, StoryObj } from "@storybook/react";
142
+ import Button from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
143
+ const meta: Meta<typeof Button>;
144
+ export default meta;
145
+ type Story = StoryObj<typeof Button>;
146
+ export const Primary: Story;
147
+ export const PrimaryLeadingIcon: Story;
148
+ export const PrimarySimpleIconName: Story;
149
+ export const PrimaryTrailingIcon: Story;
150
+ export const PrimaryExtraSmall: Story;
151
+ export const PrimarySmall: Story;
152
+ export const PrimaryMedium: Story;
153
+ export const PrimaryLarge: Story;
154
+ export const PrimaryExtraLarge: Story;
155
+
156
+ }
157
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Secondary/Secondary.stories' {
158
+ import type { Meta, StoryObj } from "@storybook/react";
159
+ import Button from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
160
+ const meta: Meta<typeof Button>;
161
+ export default meta;
162
+ type Story = StoryObj<typeof Button>;
163
+ export const Secondary: Story;
164
+ export const SecondaryTrailingIcon: Story;
165
+ export const SecondaryLeadingIcon: Story;
166
+ export const SecondarySimpleIconName: Story;
167
+ export const SecondaryExtraSmall: Story;
168
+ export const SecondarySmall: Story;
169
+ export const SecondaryMedium: Story;
170
+ export const SecondaryLarge: Story;
171
+ export const SecondaryExtraLarge: Story;
172
+
173
+ }
174
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/defaultArgs' {
175
+ import { IDynamicIconProps } from "@agility/plenum-ui/stories/atoms/icons/index";
176
+ const defaultIcon: IDynamicIconProps;
177
+ export { defaultIcon };
178
+
179
+ }
180
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/index' {
181
+ import Button, { IButtonProps, BTNActionType } from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
182
+ export type { IButtonProps, BTNActionType };
183
+ export default Button;
184
+
185
+ }
186
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/Alternative/Alternative.stories' {
187
+ import type { Meta, StoryObj } from "@storybook/react";
188
+ import Capsule from "@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule";
189
+ const meta: Meta<typeof Capsule>;
190
+ export default meta;
191
+ type Story = StoryObj<typeof Capsule>;
192
+ export const Alternative: Story;
193
+
194
+ }
195
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule' {
196
+ import { HTMLAttributeAnchorTarget } from "react";
197
+ import { BTNActionType } from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
198
+ /**
199
+ * Capsule Style Button
200
+ */
201
+ export interface ICapsuleProps extends React.ComponentPropsWithoutRef<"button"> {
202
+ /** Is the button a Primary CTA, alternative or danger button? */
203
+ actionType: BTNActionType;
204
+ /** How lg should the button be? - Defaults to 'base'. */
205
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
206
+ /** The Button's text content. */
207
+ label: string;
208
+ /** Does the button width grow to fill it's container? */
209
+ fullWidth?: boolean;
210
+ /** Optionally render as anchor tag */
211
+ asLink?: {
212
+ href: string;
213
+ target: HTMLAttributeAnchorTarget;
214
+ title?: string;
215
+ };
216
+ /** Is the associated content loading? */
217
+ isLoading?: boolean;
218
+ /**Optional Classname String*/
219
+ className?: string;
220
+ }
221
+ const Capsule: ({ actionType, size, label, fullWidth, asLink, isLoading, className, ...props }: ICapsuleProps) => import("react/jsx-runtime").JSX.Element;
222
+ export default Capsule;
223
+
224
+ }
225
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/Danger/Danger.stories' {
226
+ import type { Meta, StoryObj } from "@storybook/react";
227
+ import Capsule from "@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule";
228
+ const meta: Meta<typeof Capsule>;
229
+ export default meta;
230
+ type Story = StoryObj<typeof Capsule>;
231
+ export const Danger: Story;
232
+
233
+ }
234
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/Primary/Primary.stories' {
235
+ import type { Meta, StoryObj } from "@storybook/react";
236
+ import Capsule from "@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule";
237
+ const meta: Meta<typeof Capsule>;
238
+ export default meta;
239
+ type Story = StoryObj<typeof Capsule>;
240
+ export const Primary: Story;
241
+
242
+ }
243
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/Secondary/Secondary.stories' {
244
+ import type { Meta, StoryObj } from "@storybook/react";
245
+ import Capsule from "@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule";
246
+ const meta: Meta<typeof Capsule>;
247
+ export default meta;
248
+ type Story = StoryObj<typeof Capsule>;
249
+ export const Secondary: Story;
250
+
251
+ }
252
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/index' {
253
+ import Capsule, { ICapsuleProps } from "@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule";
254
+ export default Capsule;
255
+ export type { ICapsuleProps };
256
+
257
+ }
258
+ declare module '@agility/plenum-ui/stories/atoms/buttons/index' {
259
+ import Button, { BTNActionType, IButtonProps } from "@agility/plenum-ui/stories/atoms/buttons/Button/index";
260
+ import Capsule, { ICapsuleProps } from "@agility/plenum-ui/stories/atoms/buttons/Capsule/index";
261
+ export type { IButtonProps, BTNActionType, ICapsuleProps };
262
+ export { Button, Capsule };
263
+
264
+ }
265
+ declare module '@agility/plenum-ui/stories/atoms/icons/DynamicIcon' {
266
+ import React from "react";
267
+ import * as SolidIcons from "@heroicons/react/solid";
268
+ import * as OutlineIcons from "@heroicons/react/outline";
269
+ import * as FA from "react-icons/fa";
270
+ import { TablerIconName } from "@agility/plenum-ui/stories/atoms/icons/tablerIconNames";
271
+ import { ClassNameWithAutocomplete } from "@/utils/types";
272
+ export type IconName = keyof typeof SolidIcons | keyof typeof OutlineIcons;
273
+ export type FAIconName = keyof typeof FA;
274
+ export type UnifiedIconName = IconName | TablerIconName | FAIconName;
275
+ export function isHeroIcon(name: UnifiedIconName): name is keyof typeof SolidIcons | keyof typeof OutlineIcons;
276
+ export function isTablerIcon(name: UnifiedIconName): name is TablerIconName;
277
+ export function isFAIcon(name: UnifiedIconName): name is keyof typeof FA;
278
+ export function isUnifiedIconName(name: UnifiedIconName): name is UnifiedIconName;
279
+ export interface IDynamicIconProps extends React.ComponentProps<"i"> {
280
+ icon: UnifiedIconName;
281
+ className?: ClassNameWithAutocomplete;
282
+ outline?: boolean;
283
+ CustomSVG?: React.ReactNode;
284
+ }
285
+ export const DynamicIcon: ({ icon, className, outline, CustomSVG, ...props }: IDynamicIconProps) => JSX.Element;
286
+
287
+ }
288
+ declare module '@agility/plenum-ui/stories/atoms/icons/DynamicIcon.stories' {
289
+ import type { Meta, StoryObj } from "@storybook/react";
290
+ import { DynamicIcon } from "@agility/plenum-ui/stories/atoms/icons/DynamicIcon";
291
+ const meta: Meta<typeof DynamicIcon>;
292
+ type Story = StoryObj<typeof DynamicIcon>;
293
+ export const HeroIconSolid: Story;
294
+ export const HeroIconOutline: Story;
295
+ export const TablerIconSolid: Story;
296
+ export const TablerIconOutline: Story;
297
+ export const FAIcon: Story;
298
+ export default meta;
299
+
300
+ }
301
+ declare module '@agility/plenum-ui/stories/atoms/icons/IconWithShadow' {
302
+ /// <reference types="react" />
303
+ import { IDynamicIconProps } from "@agility/plenum-ui/stories/atoms/icons/DynamicIcon";
304
+ export interface IIconWithShadowProps extends IDynamicIconProps {
305
+ }
306
+ const IconWithShadow: React.FC<IIconWithShadowProps>;
307
+ export default IconWithShadow;
308
+
309
+ }
310
+ declare module '@agility/plenum-ui/stories/atoms/icons/IconWithShadow.stories' {
311
+ import type { Meta, StoryObj } from "@storybook/react";
312
+ import IconWithShadow from "@agility/plenum-ui/stories/atoms/icons/IconWithShadow";
313
+ const meta: Meta<typeof IconWithShadow>;
314
+ type Story = StoryObj<typeof IconWithShadow>;
315
+ export const HeroIconSolid: Story;
316
+ export const HeroIconOutline: Story;
317
+ export const TablerIconSolid: Story;
318
+ export const TablerIconOutline: Story;
319
+ export const FAIcon: Story;
320
+ export default meta;
321
+
322
+ }
323
+ declare module '@agility/plenum-ui/stories/atoms/icons/TablerIcon' {
324
+ import React from "react";
325
+ import { TablerIconName } from "@agility/plenum-ui/stories/atoms/icons/tablerIconNames";
326
+ import { ClassNameWithAutocomplete } from "@/utils/types";
327
+ export interface ITablerIconProps extends React.ComponentProps<"i"> {
328
+ icon: TablerIconName;
329
+ className?: ClassNameWithAutocomplete;
330
+ }
331
+ const TablerIcon: React.FC<ITablerIconProps>;
332
+ export default TablerIcon;
333
+
334
+ }
335
+ declare module '@agility/plenum-ui/stories/atoms/icons/index' {
336
+ import { DynamicIcon, FAIconName, IDynamicIconProps, IconName, UnifiedIconName, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName } from "@agility/plenum-ui/stories/atoms/icons/DynamicIcon";
337
+ import IconWithShadow, { IIconWithShadowProps } from "@agility/plenum-ui/stories/atoms/icons/IconWithShadow";
338
+ export { DynamicIcon, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName, IconWithShadow };
339
+ export type { FAIconName, IDynamicIconProps, IconName, UnifiedIconName, IIconWithShadowProps };
340
+
341
+ }
342
+ declare module '@agility/plenum-ui/stories/atoms/icons/tablerIconNames' {
343
+ export const tablerIconNames: readonly ["Icon123", "Icon24Hours", "Icon2fa", "Icon360View", "Icon360", "Icon3dCubeSphereOff", "Icon3dCubeSphere", "Icon3dRotate", "IconAB2", "IconABOff", "IconAB", "IconAbacusOff", "IconAbacus", "IconAbc", "IconAccessPointOff", "IconAccessPoint", "IconAccessibleOffFilled", "IconAccessibleOff", "IconAccessible", "IconActivityHeartbeat", "IconActivity", "IconAd2", "IconAdCircleFilled", "IconAdCircleOff", "IconAdCircle", "IconAdFilled", "IconAdOff", "IconAd", "IconAddressBookOff", "IconAddressBook", "IconAdjustmentsAlt", "IconAdjustmentsBolt", "IconAdjustmentsCancel", "IconAdjustmentsCheck", "IconAdjustmentsCode", "IconAdjustmentsCog", "IconAdjustmentsDollar", "IconAdjustmentsDown", "IconAdjustmentsExclamation", "IconAdjustmentsFilled", "IconAdjustmentsHeart", "IconAdjustmentsHorizontal", "IconAdjustmentsMinus", "IconAdjustmentsOff", "IconAdjustmentsPause", "IconAdjustmentsPin", "IconAdjustmentsPlus", "IconAdjustmentsQuestion", "IconAdjustmentsSearch", "IconAdjustmentsShare", "IconAdjustmentsStar", "IconAdjustmentsUp", "IconAdjustmentsX", "IconAdjustments", "IconAerialLift", "IconAffiliateFilled", "IconAffiliate", "IconAirBalloon", "IconAirConditioningDisabled", "IconAirConditioning", "IconAirTrafficControl", "IconAlarmFilled", "IconAlarmMinusFilled", "IconAlarmMinus", "IconAlarmOff", "IconAlarmPlusFilled", "IconAlarmPlus", "IconAlarmSnoozeFilled", "IconAlarmSnooze", "IconAlarm", "IconAlbumOff", "IconAlbum", "IconAlertCircleFilled", "IconAlertCircle", "IconAlertHexagonFilled", "IconAlertHexagon", "IconAlertOctagonFilled", "IconAlertOctagon", "IconAlertSmall", "IconAlertSquareFilled", "IconAlertSquareRoundedFilled", "IconAlertSquareRounded", "IconAlertSquare", "IconAlertTriangleFilled", "IconAlertTriangle", "IconAlienFilled", "IconAlien", "IconAlignBoxBottomCenterFilled", "IconAlignBoxBottomCenter", "IconAlignBoxBottomLeftFilled", "IconAlignBoxBottomLeft", "IconAlignBoxBottomRightFilled", "IconAlignBoxBottomRight", "IconAlignBoxCenterBottom", "IconAlignBoxCenterMiddleFilled", "IconAlignBoxCenterMiddle", "IconAlignBoxCenterStretch", "IconAlignBoxCenterTop", "IconAlignBoxLeftBottomFilled", "IconAlignBoxLeftBottom", "IconAlignBoxLeftMiddleFilled", "IconAlignBoxLeftMiddle", "IconAlignBoxLeftStretch", "IconAlignBoxLeftTopFilled", "IconAlignBoxLeftTop", "IconAlignBoxRightBottomFilled", "IconAlignBoxRightBottom", "IconAlignBoxRightMiddleFilled", "IconAlignBoxRightMiddle", "IconAlignBoxRightStretch", "IconAlignBoxRightTopFilled", "IconAlignBoxRightTop", "IconAlignBoxTopCenterFilled", "IconAlignBoxTopCenter", "IconAlignBoxTopLeftFilled", "IconAlignBoxTopLeft", "IconAlignBoxTopRightFilled", "IconAlignBoxTopRight", "IconAlignCenter", "IconAlignJustified", "IconAlignLeft", "IconAlignRight", "IconAlpha", "IconAlphabetCyrillic", "IconAlphabetGreek", "IconAlphabetLatin", "IconAmbulance", "IconAmpersand", "IconAnalyzeFilled", "IconAnalyzeOff", "IconAnalyze", "IconAnchorOff", "IconAnchor", "IconAngle", "IconAnkh", "IconAntennaBars1", "IconAntennaBars2", "IconAntennaBars3", "IconAntennaBars4", "IconAntennaBars5", "IconAntennaBarsOff", "IconAntennaOff", "IconAntenna", "IconApertureOff", "IconAperture", "IconApiAppOff", "IconApiApp", "IconApiOff", "IconApi", "IconAppWindowFilled", "IconAppWindow", "IconApple", "IconAppsFilled", "IconAppsOff", "IconApps", "IconArchiveFilled", "IconArchiveOff", "IconArchive", "IconArmchair2Off", "IconArmchair2", "IconArmchairOff", "IconArmchair", "IconArrowAutofitContentFilled", "IconArrowAutofitContent", "IconArrowAutofitDown", "IconArrowAutofitHeight", "IconArrowAutofitLeft", "IconArrowAutofitRight", "IconArrowAutofitUp", "IconArrowAutofitWidth", "IconArrowBackUpDouble", "IconArrowBackUp", "IconArrowBack", "IconArrowBadgeDownFilled", "IconArrowBadgeDown", "IconArrowBadgeLeftFilled", "IconArrowBadgeLeft", "IconArrowBadgeRightFilled", "IconArrowBadgeRight", "IconArrowBadgeUpFilled", "IconArrowBadgeUp", "IconArrowBarBoth", "IconArrowBarDown", "IconArrowBarLeft", "IconArrowBarRight", "IconArrowBarToDown", "IconArrowBarToLeft", "IconArrowBarToRight", "IconArrowBarToUp", "IconArrowBarUp", "IconArrowBearLeft2", "IconArrowBearLeft", "IconArrowBearRight2", "IconArrowBearRight", "IconArrowBigDownFilled", "IconArrowBigDownLineFilled", "IconArrowBigDownLine", "IconArrowBigDownLinesFilled", "IconArrowBigDownLines", "IconArrowBigDown", "IconArrowBigLeftFilled", "IconArrowBigLeftLineFilled", "IconArrowBigLeftLine", "IconArrowBigLeftLinesFilled", "IconArrowBigLeftLines", "IconArrowBigLeft", "IconArrowBigRightFilled", "IconArrowBigRightLineFilled", "IconArrowBigRightLine", "IconArrowBigRightLinesFilled", "IconArrowBigRightLines", "IconArrowBigRight", "IconArrowBigUpFilled", "IconArrowBigUpLineFilled", "IconArrowBigUpLine", "IconArrowBigUpLinesFilled", "IconArrowBigUpLines", "IconArrowBigUp", "IconArrowBounce", "IconArrowCapsule", "IconArrowCurveLeft", "IconArrowCurveRight", "IconArrowDownBar", "IconArrowDownCircle", "IconArrowDownLeftCircle", "IconArrowDownLeft", "IconArrowDownRhombus", "IconArrowDownRightCircle", "IconArrowDownRight", "IconArrowDownSquare", "IconArrowDownTail", "IconArrowDown", "IconArrowElbowLeft", "IconArrowElbowRight", "IconArrowFork", "IconArrowForwardUpDouble", "IconArrowForwardUp", "IconArrowForward", "IconArrowGuide", "IconArrowIteration", "IconArrowLeftBar", "IconArrowLeftCircle", "IconArrowLeftRhombus", "IconArrowLeftRight", "IconArrowLeftSquare", "IconArrowLeftTail", "IconArrowLeft", "IconArrowLoopLeft2", "IconArrowLoopLeft", "IconArrowLoopRight2", "IconArrowLoopRight", "IconArrowMergeBoth", "IconArrowMergeLeft", "IconArrowMergeRight", "IconArrowMerge", "IconArrowMoveDown", "IconArrowMoveLeft", "IconArrowMoveRight", "IconArrowMoveUp", "IconArrowNarrowDown", "IconArrowNarrowLeft", "IconArrowNarrowRight", "IconArrowNarrowUp", "IconArrowRampLeft2", "IconArrowRampLeft3", "IconArrowRampLeft", "IconArrowRampRight2", "IconArrowRampRight3", "IconArrowRampRight", "IconArrowRightBar", "IconArrowRightCircle", "IconArrowRightRhombus", "IconArrowRightSquare", "IconArrowRightTail", "IconArrowRight", "IconArrowRotaryFirstLeft", "IconArrowRotaryFirstRight", "IconArrowRotaryLastLeft", "IconArrowRotaryLastRight", "IconArrowRotaryLeft", "IconArrowRotaryRight", "IconArrowRotaryStraight", "IconArrowRoundaboutLeft", "IconArrowRoundaboutRight", "IconArrowSharpTurnLeft", "IconArrowSharpTurnRight", "IconArrowUpBar", "IconArrowUpCircle", "IconArrowUpLeftCircle", "IconArrowUpLeft", "IconArrowUpRhombus", "IconArrowUpRightCircle", "IconArrowUpRight", "IconArrowUpSquare", "IconArrowUpTail", "IconArrowUp", "IconArrowWaveLeftDown", "IconArrowWaveLeftUp", "IconArrowWaveRightDown", "IconArrowWaveRightUp", "IconArrowZigZag", "IconArrowsCross", "IconArrowsDiagonal2", "IconArrowsDiagonalMinimize2", "IconArrowsDiagonalMinimize", "IconArrowsDiagonal", "IconArrowsDiff", "IconArrowsDoubleNeSw", "IconArrowsDoubleNwSe", "IconArrowsDoubleSeNw", "IconArrowsDoubleSwNe", "IconArrowsDownUp", "IconArrowsDown", "IconArrowsExchange2", "IconArrowsExchange", "IconArrowsHorizontal", "IconArrowsJoin2", "IconArrowsJoin", "IconArrowsLeftDown", "IconArrowsLeftRight", "IconArrowsLeft", "IconArrowsMaximize", "IconArrowsMinimize", "IconArrowsMoveHorizontal", "IconArrowsMoveVertical", "IconArrowsMove", "IconArrowsRandom", "IconArrowsRightDown", "IconArrowsRightLeft", "IconArrowsRight", "IconArrowsShuffle2", "IconArrowsShuffle", "IconArrowsSort", "IconArrowsSplit2", "IconArrowsSplit", "IconArrowsTransferDown", "IconArrowsTransferUp", "IconArrowsUpDown", "IconArrowsUpLeft", "IconArrowsUpRight", "IconArrowsUp", "IconArrowsVertical", "IconArtboardFilled", "IconArtboardOff", "IconArtboard", "IconArticleFilledFilled", "IconArticleOff", "IconArticle", "IconAspectRatioFilled", "IconAspectRatioOff", "IconAspectRatio", "IconAssemblyOff", "IconAssembly", "IconAsset", "IconAsteriskSimple", "IconAsterisk", "IconAtOff", "IconAt", "IconAtom2Filled", "IconAtom2", "IconAtomOff", "IconAtom", "IconAugmentedReality2", "IconAugmentedRealityOff", "IconAugmentedReality", "IconAwardFilled", "IconAwardOff", "IconAward", "IconAxe", "IconAxisX", "IconAxisY", "IconBabyBottle", "IconBabyCarriage", "IconBackhoe", "IconBackpackOff", "IconBackpack", "IconBackslash", "IconBackspaceFilled", "IconBackspace", "IconBadge3d", "IconBadge4k", "IconBadge8k", "IconBadgeAd", "IconBadgeAr", "IconBadgeCc", "IconBadgeFilled", "IconBadgeHd", "IconBadgeOff", "IconBadgeSd", "IconBadgeTm", "IconBadgeVo", "IconBadgeVr", "IconBadgeWc", "IconBadge", "IconBadgesFilled", "IconBadgesOff", "IconBadges", "IconBaguette", "IconBallAmericanFootballOff", "IconBallAmericanFootball", "IconBallBaseball", "IconBallBasketball", "IconBallBowling", "IconBallFootballOff", "IconBallFootball", "IconBallTennis", "IconBallVolleyball", "IconBalloonFilled", "IconBalloonOff", "IconBalloon", "IconBallpenFilled", "IconBallpenOff", "IconBallpen", "IconBan", "IconBandageFilled", "IconBandageOff", "IconBandage", "IconBarbellOff", "IconBarbell", "IconBarcodeOff", "IconBarcode", "IconBarrelOff", "IconBarrel", "IconBarrierBlockOff", "IconBarrierBlock", "IconBaselineDensityLarge", "IconBaselineDensityMedium", "IconBaselineDensitySmall", "IconBaseline", "IconBasketFilled", "IconBasketOff", "IconBasket", "IconBat", "IconBathFilled", "IconBathOff", "IconBath", "IconBattery1Filled", "IconBattery1", "IconBattery2Filled", "IconBattery2", "IconBattery3Filled", "IconBattery3", "IconBattery4Filled", "IconBattery4", "IconBatteryAutomotive", "IconBatteryCharging2", "IconBatteryCharging", "IconBatteryEco", "IconBatteryFilled", "IconBatteryOff", "IconBattery", "IconBeachOff", "IconBeach", "IconBedFilled", "IconBedOff", "IconBed", "IconBeerFilled", "IconBeerOff", "IconBeer", "IconBellBolt", "IconBellCancel", "IconBellCheck", "IconBellCode", "IconBellCog", "IconBellDollar", "IconBellDown", "IconBellExclamation", "IconBellFilled", "IconBellHeart", "IconBellMinusFilled", "IconBellMinus", "IconBellOff", "IconBellPause", "IconBellPin", "IconBellPlusFilled", "IconBellPlus", "IconBellQuestion", "IconBellRinging2Filled", "IconBellRinging2", "IconBellRingingFilled", "IconBellRinging", "IconBellSchool", "IconBellSearch", "IconBellShare", "IconBellStar", "IconBellUp", "IconBellXFilled", "IconBellX", "IconBellZFilled", "IconBellZ", "IconBell", "IconBeta", "IconBible", "IconBikeOff", "IconBike", "IconBinaryOff", "IconBinaryTree2", "IconBinaryTree", "IconBinary", "IconBiohazardOff", "IconBiohazard", "IconBladeFilled", "IconBlade", "IconBleachChlorine", "IconBleachNoChlorine", "IconBleachOff", "IconBleach", "IconBlockquote", "IconBluetoothConnected", "IconBluetoothOff", "IconBluetoothX", "IconBluetooth", "IconBlurOff", "IconBlur", "IconBmp", "IconBoldOff", "IconBold", "IconBoltOff", "IconBolt", "IconBombFilled", "IconBomb", "IconBoneOff", "IconBone", "IconBongOff", "IconBong", "IconBook2", "IconBookDownload", "IconBookFilled", "IconBookOff", "IconBookUpload", "IconBook", "IconBookmarkEdit", "IconBookmarkFilled", "IconBookmarkMinus", "IconBookmarkOff", "IconBookmarkPlus", "IconBookmarkQuestion", "IconBookmark", "IconBookmarksFilled", "IconBookmarksOff", "IconBookmarks", "IconBooksOff", "IconBooks", "IconBorderAll", "IconBorderBottom", "IconBorderCorners", "IconBorderHorizontal", "IconBorderInner", "IconBorderLeft", "IconBorderNone", "IconBorderOuter", "IconBorderRadius", "IconBorderRight", "IconBorderSides", "IconBorderStyle2", "IconBorderStyle", "IconBorderTop", "IconBorderVertical", "IconBottleFilled", "IconBottleOff", "IconBottle", "IconBounceLeftFilled", "IconBounceLeft", "IconBounceRightFilled", "IconBounceRight", "IconBow", "IconBowlFilled", "IconBowl", "IconBoxAlignBottomFilled", "IconBoxAlignBottomLeftFilled", "IconBoxAlignBottomLeft", "IconBoxAlignBottomRightFilled", "IconBoxAlignBottomRight", "IconBoxAlignBottom", "IconBoxAlignLeftFilled", "IconBoxAlignLeft", "IconBoxAlignRightFilled", "IconBoxAlignRight", "IconBoxAlignTopFilled", "IconBoxAlignTopLeftFilled", "IconBoxAlignTopLeft", "IconBoxAlignTopRightFilled", "IconBoxAlignTopRight", "IconBoxAlignTop", "IconBoxMargin", "IconBoxModel2Off", "IconBoxModel2", "IconBoxModelOff", "IconBoxModel", "IconBoxMultiple0", "IconBoxMultiple1", "IconBoxMultiple2", "IconBoxMultiple3", "IconBoxMultiple4", "IconBoxMultiple5", "IconBoxMultiple6", "IconBoxMultiple7", "IconBoxMultiple8", "IconBoxMultiple9", "IconBoxMultiple", "IconBoxOff", "IconBoxPadding", "IconBoxSeam", "IconBox", "IconBracesOff", "IconBraces", "IconBracketsContainEnd", "IconBracketsContainStart", "IconBracketsContain", "IconBracketsOff", "IconBrackets", "IconBraille", "IconBrain", "IconBrand4chan", "IconBrandAbstract", "IconBrandAdobe", "IconBrandAdonisJs", "IconBrandAirbnb", "IconBrandAirtable", "IconBrandAlgolia", "IconBrandAlipay", "IconBrandAlpineJs", "IconBrandAmazon", "IconBrandAmd", "IconBrandAmigo", "IconBrandAmongUs", "IconBrandAndroid", "IconBrandAngular", "IconBrandAnsible", "IconBrandAo3", "IconBrandAppgallery", "IconBrandAppleArcade", "IconBrandApplePodcast", "IconBrandApple", "IconBrandAppstore", "IconBrandAsana", "IconBrandAws", "IconBrandAzure", "IconBrandBackbone", "IconBrandBadoo", "IconBrandBaidu", "IconBrandBandcamp", "IconBrandBandlab", "IconBrandBeats", "IconBrandBehance", "IconBrandBilibili", "IconBrandBinance", "IconBrandBing", "IconBrandBitbucket", "IconBrandBlackberry", "IconBrandBlender", "IconBrandBlogger", "IconBrandBooking", "IconBrandBootstrap", "IconBrandBulma", "IconBrandBumble", "IconBrandBunpo", "IconBrandCSharp", "IconBrandCake", "IconBrandCakephp", "IconBrandCampaignmonitor", "IconBrandCarbon", "IconBrandCashapp", "IconBrandChrome", "IconBrandCinema4d", "IconBrandCitymapper", "IconBrandCloudflare", "IconBrandCodecov", "IconBrandCodepen", "IconBrandCodesandbox", "IconBrandCohost", "IconBrandCoinbase", "IconBrandComedyCentral", "IconBrandCoreos", "IconBrandCouchdb", "IconBrandCouchsurfing", "IconBrandCpp", "IconBrandCraft", "IconBrandCrunchbase", "IconBrandCss3", "IconBrandCtemplar", "IconBrandCucumber", "IconBrandCupra", "IconBrandCypress", "IconBrandD3", "IconBrandDaysCounter", "IconBrandDcos", "IconBrandDebian", "IconBrandDeezer", "IconBrandDeliveroo", "IconBrandDeno", "IconBrandDenodo", "IconBrandDeviantart", "IconBrandDigg", "IconBrandDingtalk", "IconBrandDiscordFilled", "IconBrandDiscord", "IconBrandDisney", "IconBrandDisqus", "IconBrandDjango", "IconBrandDocker", "IconBrandDoctrine", "IconBrandDolbyDigital", "IconBrandDouban", "IconBrandDribbbleFilled", "IconBrandDribbble", "IconBrandDrops", "IconBrandDrupal", "IconBrandEdge", "IconBrandElastic", "IconBrandElectronicArts", "IconBrandEmber", "IconBrandEnvato", "IconBrandEtsy", "IconBrandEvernote", "IconBrandFacebookFilled", "IconBrandFacebook", "IconBrandFeedly", "IconBrandFigma", "IconBrandFilezilla", "IconBrandFinder", "IconBrandFirebase", "IconBrandFirefox", "IconBrandFiverr", "IconBrandFlickr", "IconBrandFlightradar24", "IconBrandFlipboard", "IconBrandFlutter", "IconBrandFortnite", "IconBrandFoursquare", "IconBrandFramerMotion", "IconBrandFramer", "IconBrandFunimation", "IconBrandGatsby", "IconBrandGit", "IconBrandGithubCopilot", "IconBrandGithubFilled", "IconBrandGithub", "IconBrandGitlab", "IconBrandGmail", "IconBrandGolang", "IconBrandGoogleAnalytics", "IconBrandGoogleBigQuery", "IconBrandGoogleDrive", "IconBrandGoogleFit", "IconBrandGoogleHome", "IconBrandGoogleMaps", "IconBrandGoogleOne", "IconBrandGooglePhotos", "IconBrandGooglePlay", "IconBrandGooglePodcasts", "IconBrandGoogle", "IconBrandGrammarly", "IconBrandGraphql", "IconBrandGravatar", "IconBrandGrindr", "IconBrandGuardian", "IconBrandGumroad", "IconBrandHbo", "IconBrandHeadlessui", "IconBrandHexo", "IconBrandHipchat", "IconBrandHtml5", "IconBrandInertia", "IconBrandInstagram", "IconBrandIntercom", "IconBrandItch", "IconBrandJavascript", "IconBrandJuejin", "IconBrandKbin", "IconBrandKick", "IconBrandKickstarter", "IconBrandKotlin", "IconBrandLaravel", "IconBrandLastfm", "IconBrandLeetcode", "IconBrandLetterboxd", "IconBrandLine", "IconBrandLinkedin", "IconBrandLinktree", "IconBrandLinqpad", "IconBrandLoom", "IconBrandMailgun", "IconBrandMantine", "IconBrandMastercard", "IconBrandMastodon", "IconBrandMatrix", "IconBrandMcdonalds", "IconBrandMedium", "IconBrandMercedes", "IconBrandMessenger", "IconBrandMeta", "IconBrandMicrosoftTeams", "IconBrandMinecraft", "IconBrandMiniprogram", "IconBrandMixpanel", "IconBrandMonday", "IconBrandMongodb", "IconBrandMyOppo", "IconBrandMysql", "IconBrandNationalGeographic", "IconBrandNem", "IconBrandNetbeans", "IconBrandNeteaseMusic", "IconBrandNetflix", "IconBrandNexo", "IconBrandNextcloud", "IconBrandNextjs", "IconBrandNodejs", "IconBrandNordVpn", "IconBrandNotion", "IconBrandNpm", "IconBrandNuxt", "IconBrandNytimes", "IconBrandOauth", "IconBrandOffice", "IconBrandOkRu", "IconBrandOnedrive", "IconBrandOnlyfans", "IconBrandOpenSource", "IconBrandOpenai", "IconBrandOpenvpn", "IconBrandOpera", "IconBrandPagekit", "IconBrandPatreon", "IconBrandPaypalFilled", "IconBrandPaypal", "IconBrandPaypay", "IconBrandPeanut", "IconBrandPepsi", "IconBrandPhp", "IconBrandPicsart", "IconBrandPinterest", "IconBrandPlanetscale", "IconBrandPocket", "IconBrandPolymer", "IconBrandPowershell", "IconBrandPrisma", "IconBrandProducthunt", "IconBrandPushbullet", "IconBrandPushover", "IconBrandPython", "IconBrandQq", "IconBrandRadixUi", "IconBrandReactNative", "IconBrandReact", "IconBrandReason", "IconBrandReddit", "IconBrandRedhat", "IconBrandRedux", "IconBrandRevolut", "IconBrandRumble", "IconBrandRust", "IconBrandSafari", "IconBrandSamsungpass", "IconBrandSass", "IconBrandSentry", "IconBrandSharik", "IconBrandShazam", "IconBrandShopee", "IconBrandSketch", "IconBrandSkype", "IconBrandSlack", "IconBrandSnapchat", "IconBrandSnapseed", "IconBrandSnowflake", "IconBrandSocketIo", "IconBrandSolidjs", "IconBrandSoundcloud", "IconBrandSpacehey", "IconBrandSpeedtest", "IconBrandSpotify", "IconBrandStackoverflow", "IconBrandStackshare", "IconBrandSteam", "IconBrandStorj", "IconBrandStorybook", "IconBrandStorytel", "IconBrandStrava", "IconBrandStripe", "IconBrandSublimeText", "IconBrandSugarizer", "IconBrandSupabase", "IconBrandSuperhuman", "IconBrandSupernova", "IconBrandSurfshark", "IconBrandSvelte", "IconBrandSwift", "IconBrandSymfony", "IconBrandTabler", "IconBrandTailwind", "IconBrandTaobao", "IconBrandTed", "IconBrandTelegram", "IconBrandTerraform", "IconBrandTether", "IconBrandThreads", "IconBrandThreejs", "IconBrandTidal", "IconBrandTiktoFilled", "IconBrandTiktok", "IconBrandTinder", "IconBrandTopbuzz", "IconBrandTorchain", "IconBrandToyota", "IconBrandTrello", "IconBrandTripadvisor", "IconBrandTumblr", "IconBrandTwilio", "IconBrandTwitch", "IconBrandTwitterFilled", "IconBrandTwitter", "IconBrandTypescript", "IconBrandUber", "IconBrandUbuntu", "IconBrandUnity", "IconBrandUnsplash", "IconBrandUpwork", "IconBrandValorant", "IconBrandVercel", "IconBrandVimeo", "IconBrandVinted", "IconBrandVisa", "IconBrandVisualStudio", "IconBrandVite", "IconBrandVivaldi", "IconBrandVk", "IconBrandVlc", "IconBrandVolkswagen", "IconBrandVsco", "IconBrandVscode", "IconBrandVue", "IconBrandWalmart", "IconBrandWaze", "IconBrandWebflow", "IconBrandWechat", "IconBrandWeibo", "IconBrandWhatsapp", "IconBrandWikipedia", "IconBrandWindows", "IconBrandWindy", "IconBrandWish", "IconBrandWix", "IconBrandWordpress", "IconBrandXamarin", "IconBrandXbox", "IconBrandXing", "IconBrandYahoo", "IconBrandYandex", "IconBrandYatse", "IconBrandYcombinator", "IconBrandYoutubeKids", "IconBrandYoutube", "IconBrandZalando", "IconBrandZapier", "IconBrandZeit", "IconBrandZhihu", "IconBrandZoom", "IconBrandZulip", "IconBrandZwift", "IconBreadOff", "IconBread", "IconBriefcase2", "IconBriefcaseOff", "IconBriefcase", "IconBrightness2", "IconBrightnessDownFilled", "IconBrightnessDown", "IconBrightnessHalf", "IconBrightnessOff", "IconBrightnessUpFilled", "IconBrightnessUp", "IconBrightness", "IconBroadcastOff", "IconBroadcast", "IconBrowserCheck", "IconBrowserOff", "IconBrowserPlus", "IconBrowserX", "IconBrowser", "IconBrushOff", "IconBrush", "IconBucketDroplet", "IconBucketOff", "IconBucket", "IconBugOff", "IconBug", "IconBuildingArch", "IconBuildingBank", "IconBuildingBridge2", "IconBuildingBridge", "IconBuildingBroadcastTower", "IconBuildingCarousel", "IconBuildingCastle", "IconBuildingChurch", "IconBuildingCircus", "IconBuildingCommunity", "IconBuildingCottage", "IconBuildingEstate", "IconBuildingFactory2", "IconBuildingFactory", "IconBuildingFortress", "IconBuildingHospital", "IconBuildingLighthouse", "IconBuildingMonument", "IconBuildingMosque", "IconBuildingPavilion", "IconBuildingSkyscraper", "IconBuildingStadium", "IconBuildingStore", "IconBuildingTunnel", "IconBuildingWarehouse", "IconBuildingWindTurbine", "IconBuilding", "IconBulbFilled", "IconBulbOff", "IconBulb", "IconBulldozer", "IconBusOff", "IconBusStop", "IconBus", "IconBusinessplan", "IconButterfly", "IconCactusFilled", "IconCactusOff", "IconCactus", "IconCakeOff", "IconCake", "IconCalculatorFilled", "IconCalculatorOff", "IconCalculator", "IconCalendarBolt", "IconCalendarCancel", "IconCalendarCheck", "IconCalendarCode", "IconCalendarCog", "IconCalendarDollar", "IconCalendarDown", "IconCalendarDue", "IconCalendarEvent", "IconCalendarExclamation", "IconCalendarFilled", "IconCalendarHeart", "IconCalendarMinus", "IconCalendarOff", "IconCalendarPause", "IconCalendarPin", "IconCalendarPlus", "IconCalendarQuestion", "IconCalendarRepeat", "IconCalendarSearch", "IconCalendarShare", "IconCalendarStar", "IconCalendarStats", "IconCalendarTime", "IconCalendarUp", "IconCalendarX", "IconCalendar", "IconCameraBolt", "IconCameraCancel", "IconCameraCheck", "IconCameraCode", "IconCameraCog", "IconCameraDollar", "IconCameraDown", "IconCameraExclamation", "IconCameraFilled", "IconCameraHeart", "IconCameraMinus", "IconCameraOff", "IconCameraPause", "IconCameraPin", "IconCameraPlus", "IconCameraQuestion", "IconCameraRotate", "IconCameraSearch", "IconCameraSelfie", "IconCameraShare", "IconCameraStar", "IconCameraUp", "IconCameraX", "IconCamera", "IconCamper", "IconCampfireFilled", "IconCampfire", "IconCandle", "IconCandyOff", "IconCandy", "IconCane", "IconCannabis", "IconCapsuleHorizontal", "IconCapsule", "IconCaptureFilled", "IconCaptureOff", "IconCapture", "IconCarCrane", "IconCarCrash", "IconCarOff", "IconCarTurbine", "IconCar", "IconCaravan", "IconCardboardsOff", "IconCardboards", "IconCards", "IconCaretDownFilled", "IconCaretDown", "IconCaretLeftFilled", "IconCaretLeft", "IconCaretRightFilled", "IconCaretRight", "IconCaretUpFilled", "IconCaretUp", "IconCarouselHorizontalFilled", "IconCarouselHorizontal", "IconCarouselVerticalFilled", "IconCarouselVertical", "IconCarrotOff", "IconCarrot", "IconCashBanknoteOff", "IconCashBanknote", "IconCashOff", "IconCash", "IconCastOff", "IconCast", "IconCat", "IconCategory2", "IconCategoryFilled", "IconCategory", "IconCeOff", "IconCe", "IconCellSignal1", "IconCellSignal2", "IconCellSignal3", "IconCellSignal4", "IconCellSignal5", "IconCellSignalOff", "IconCell", "IconCertificate2Off", "IconCertificate2", "IconCertificateOff", "IconCertificate", "IconChairDirector", "IconChalkboardOff", "IconChalkboard", "IconChargingPile", "IconChartArcs3", "IconChartArcs", "IconChartAreaFilled", "IconChartAreaLineFilled", "IconChartAreaLine", "IconChartArea", "IconChartArrowsVertical", "IconChartArrows", "IconChartBarOff", "IconChartBar", "IconChartBubbleFilled", "IconChartBubble", "IconChartCandleFilled", "IconChartCandle", "IconChartCircles", "IconChartDonut2", "IconChartDonut3", "IconChartDonut4", "IconChartDonutFilled", "IconChartDonut", "IconChartDots2", "IconChartDots3", "IconChartDots", "IconChartGridDots", "IconChartHistogram", "IconChartInfographic", "IconChartLine", "IconChartPie2", "IconChartPie3", "IconChartPie4", "IconChartPieFilled", "IconChartPieOff", "IconChartPie", "IconChartPpf", "IconChartRadar", "IconChartSankey", "IconChartTreemap", "IconCheck", "IconCheckbox", "IconChecklist", "IconChecks", "IconCheckupList", "IconCheese", "IconChefHatOff", "IconChefHat", "IconCherryFilled", "IconCherry", "IconChessBishopFilled", "IconChessBishop", "IconChessFilled", "IconChessKingFilled", "IconChessKing", "IconChessKnightFilled", "IconChessKnight", "IconChessQueenFilled", "IconChessQueen", "IconChessRookFilled", "IconChessRook", "IconChess", "IconChevronCompactDown", "IconChevronCompactLeft", "IconChevronCompactRight", "IconChevronCompactUp", "IconChevronDownLeft", "IconChevronDownRight", "IconChevronDown", "IconChevronLeftPipe", "IconChevronLeft", "IconChevronRightPipe", "IconChevronRight", "IconChevronUpLeft", "IconChevronUpRight", "IconChevronUp", "IconChevronsDownLeft", "IconChevronsDownRight", "IconChevronsDown", "IconChevronsLeft", "IconChevronsRight", "IconChevronsUpLeft", "IconChevronsUpRight", "IconChevronsUp", "IconChisel", "IconChristmasTreeOff", "IconChristmasTree", "IconCircle0Filled", "IconCircle1Filled", "IconCircle2Filled", "IconCircle3Filled", "IconCircle4Filled", "IconCircle5Filled", "IconCircle6Filled", "IconCircle7Filled", "IconCircle8Filled", "IconCircle9Filled", "IconCircleArrowDownFilled", "IconCircleArrowDownLeftFilled", "IconCircleArrowDownLeft", "IconCircleArrowDownRightFilled", "IconCircleArrowDownRight", "IconCircleArrowDown", "IconCircleArrowLeftFilled", "IconCircleArrowLeft", "IconCircleArrowRightFilled", "IconCircleArrowRight", "IconCircleArrowUpFilled", "IconCircleArrowUpLeftFilled", "IconCircleArrowUpLeft", "IconCircleArrowUpRightFilled", "IconCircleArrowUpRight", "IconCircleArrowUp", "IconCircleCaretDown", "IconCircleCaretLeft", "IconCircleCaretRight", "IconCircleCaretUp", "IconCircleCheckFilled", "IconCircleCheck", "IconCircleChevronDown", "IconCircleChevronLeft", "IconCircleChevronRight", "IconCircleChevronUp", "IconCircleChevronsDown", "IconCircleChevronsLeft", "IconCircleChevronsRight", "IconCircleChevronsUp", "IconCircleDashed", "IconCircleDotFilled", "IconCircleDot", "IconCircleDotted", "IconCircleFilled", "IconCircleHalf2", "IconCircleHalfVertical", "IconCircleHalf", "IconCircleKeyFilled", "IconCircleKey", "IconCircleLetterA", "IconCircleLetterB", "IconCircleLetterC", "IconCircleLetterD", "IconCircleLetterE", "IconCircleLetterF", "IconCircleLetterG", "IconCircleLetterH", "IconCircleLetterI", "IconCircleLetterJ", "IconCircleLetterK", "IconCircleLetterL", "IconCircleLetterM", "IconCircleLetterN", "IconCircleLetterO", "IconCircleLetterP", "IconCircleLetterQ", "IconCircleLetterR", "IconCircleLetterS", "IconCircleLetterT", "IconCircleLetterU", "IconCircleLetterV", "IconCircleLetterW", "IconCircleLetterX", "IconCircleLetterY", "IconCircleLetterZ", "IconCircleMinus", "IconCircleNumber0", "IconCircleNumber1", "IconCircleNumber2", "IconCircleNumber3", "IconCircleNumber4", "IconCircleNumber5", "IconCircleNumber6", "IconCircleNumber7", "IconCircleNumber8", "IconCircleNumber9", "IconCircleOff", "IconCirclePlus", "IconCircleRectangleOff", "IconCircleRectangle", "IconCircleSquare", "IconCircleTriangle", "IconCircleXFilled", "IconCircleX", "IconCircle", "IconCirclesFilled", "IconCirclesRelation", "IconCircles", "IconCircuitAmmeter", "IconCircuitBattery", "IconCircuitBulb", "IconCircuitCapacitorPolarized", "IconCircuitCapacitor", "IconCircuitCellPlus", "IconCircuitCell", "IconCircuitChangeover", "IconCircuitDiodeZener", "IconCircuitDiode", "IconCircuitGroundDigital", "IconCircuitGround", "IconCircuitInductor", "IconCircuitMotor", "IconCircuitPushbutton", "IconCircuitResistor", "IconCircuitSwitchClosed", "IconCircuitSwitchOpen", "IconCircuitVoltmeter", "IconClearAll", "IconClearFormatting", "IconClick", "IconClipboardCheck", "IconClipboardCopy", "IconClipboardData", "IconClipboardHeart", "IconClipboardList", "IconClipboardOff", "IconClipboardPlus", "IconClipboardText", "IconClipboardTypography", "IconClipboardX", "IconClipboard", "IconClock2", "IconClockBolt", "IconClockCancel", "IconClockCheck", "IconClockCode", "IconClockCog", "IconClockDollar", "IconClockDown", "IconClockEdit", "IconClockExclamation", "IconClockFilled", "IconClockHeart", "IconClockHour1", "IconClockHour10", "IconClockHour11", "IconClockHour12", "IconClockHour2", "IconClockHour3", "IconClockHour4", "IconClockHour5", "IconClockHour6", "IconClockHour7", "IconClockHour8", "IconClockHour9", "IconClockMinus", "IconClockOff", "IconClockPause", "IconClockPin", "IconClockPlay", "IconClockPlus", "IconClockQuestion", "IconClockRecord", "IconClockSearch", "IconClockShare", "IconClockShield", "IconClockStar", "IconClockStop", "IconClockUp", "IconClockX", "IconClock", "IconClothesRackOff", "IconClothesRack", "IconCloudBolt", "IconCloudCancel", "IconCloudCheck", "IconCloudCode", "IconCloudCog", "IconCloudComputing", "IconCloudDataConnection", "IconCloudDollar", "IconCloudDown", "IconCloudDownload", "IconCloudExclamation", "IconCloudFilled", "IconCloudFog", "IconCloudHeart", "IconCloudLockOpen", "IconCloudLock", "IconCloudMinus", "IconCloudOff", "IconCloudPause", "IconCloudPin", "IconCloudPlus", "IconCloudQuestion", "IconCloudRain", "IconCloudSearch", "IconCloudShare", "IconCloudSnow", "IconCloudStar", "IconCloudStorm", "IconCloudUp", "IconCloudUpload", "IconCloudX", "IconCloud", "IconClover2", "IconClover", "IconClubsFilled", "IconClubs", "IconCodeAsterix", "IconCodeCircle2", "IconCodeCircle", "IconCodeDots", "IconCodeMinus", "IconCodeOff", "IconCodePlus", "IconCode", "IconCoffeeOff", "IconCoffee", "IconCoffin", "IconCoinBitcoin", "IconCoinEuro", "IconCoinMonero", "IconCoinOff", "IconCoinPound", "IconCoinRupee", "IconCoinYen", "IconCoinYuan", "IconCoin", "IconCoins", "IconColorFilter", "IconColorPickerOff", "IconColorPicker", "IconColorSwatchOff", "IconColorSwatch", "IconColumnInsertLeft", "IconColumnInsertRight", "IconColumnRemove", "IconColumns1", "IconColumns2", "IconColumns3", "IconColumnsOff", "IconColumns", "IconComet", "IconCommandOff", "IconCommand", "IconCompassOff", "IconCompass", "IconComponentsOff", "IconComponents", "IconCone2", "IconConeOff", "IconConePlus", "IconCone", "IconConfettiOff", "IconConfetti", "IconConfucius", "IconContainerOff", "IconContainer", "IconContrast2Off", "IconContrast2", "IconContrastOff", "IconContrast", "IconCooker", "IconCookieMan", "IconCookieOff", "IconCookie", "IconCopyOff", "IconCopy", "IconCopyleftFilled", "IconCopyleftOff", "IconCopyleft", "IconCopyrightFilled", "IconCopyrightOff", "IconCopyright", "IconCornerDownLeftDouble", "IconCornerDownLeft", "IconCornerDownRightDouble", "IconCornerDownRight", "IconCornerLeftDownDouble", "IconCornerLeftDown", "IconCornerLeftUpDouble", "IconCornerLeftUp", "IconCornerRightDownDouble", "IconCornerRightDown", "IconCornerRightUpDouble", "IconCornerRightUp", "IconCornerUpLeftDouble", "IconCornerUpLeft", "IconCornerUpRightDouble", "IconCornerUpRight", "IconCpu2", "IconCpuOff", "IconCpu", "IconCraneOff", "IconCrane", "IconCreativeCommonsBy", "IconCreativeCommonsNc", "IconCreativeCommonsNd", "IconCreativeCommonsOff", "IconCreativeCommonsSa", "IconCreativeCommonsZero", "IconCreativeCommons", "IconCreditCardOff", "IconCreditCard", "IconCricket", "IconCrop", "IconCrossFilled", "IconCrossOff", "IconCross", "IconCrosshair", "IconCrownOff", "IconCrown", "IconCrutchesOff", "IconCrutches", "IconCrystalBall", "IconCsv", "IconCubeOff", "IconCubePlus", "IconCubeSend", "IconCubeUnfolded", "IconCube", "IconCupOff", "IconCup", "IconCurling", "IconCurlyLoop", "IconCurrencyAfghani", "IconCurrencyBahraini", "IconCurrencyBaht", "IconCurrencyBitcoin", "IconCurrencyCent", "IconCurrencyDinar", "IconCurrencyDirham", "IconCurrencyDogecoin", "IconCurrencyDollarAustralian", "IconCurrencyDollarBrunei", "IconCurrencyDollarCanadian", "IconCurrencyDollarGuyanese", "IconCurrencyDollarOff", "IconCurrencyDollarSingapore", "IconCurrencyDollarZimbabwean", "IconCurrencyDollar", "IconCurrencyDong", "IconCurrencyDram", "IconCurrencyEthereum", "IconCurrencyEuroOff", "IconCurrencyEuro", "IconCurrencyFlorin", "IconCurrencyForint", "IconCurrencyFrank", "IconCurrencyGuarani", "IconCurrencyHryvnia", "IconCurrencyIranianRial", "IconCurrencyKip", "IconCurrencyKroneCzech", "IconCurrencyKroneDanish", "IconCurrencyKroneSwedish", "IconCurrencyLari", "IconCurrencyLeu", "IconCurrencyLira", "IconCurrencyLitecoin", "IconCurrencyLyd", "IconCurrencyManat", "IconCurrencyMonero", "IconCurrencyNaira", "IconCurrencyNano", "IconCurrencyOff", "IconCurrencyPaanga", "IconCurrencyPeso", "IconCurrencyPoundOff", "IconCurrencyPound", "IconCurrencyQuetzal", "IconCurrencyReal", "IconCurrencyRenminbi", "IconCurrencyRipple", "IconCurrencyRiyal", "IconCurrencyRubel", "IconCurrencyRufiyaa", "IconCurrencyRupeeNepalese", "IconCurrencyRupee", "IconCurrencyShekel", "IconCurrencySolana", "IconCurrencySom", "IconCurrencyTaka", "IconCurrencyTenge", "IconCurrencyTugrik", "IconCurrencyWon", "IconCurrencyYenOff", "IconCurrencyYen", "IconCurrencyYuan", "IconCurrencyZloty", "IconCurrency", "IconCurrentLocationOff", "IconCurrentLocation", "IconCursorOff", "IconCursorText", "IconCut", "IconCylinderOff", "IconCylinderPlus", "IconCylinder", "IconDashboardOff", "IconDashboard", "IconDatabaseCog", "IconDatabaseDollar", "IconDatabaseEdit", "IconDatabaseExclamation", "IconDatabaseExport", "IconDatabaseHeart", "IconDatabaseImport", "IconDatabaseLeak", "IconDatabaseMinus", "IconDatabaseOff", "IconDatabasePlus", "IconDatabaseSearch", "IconDatabaseShare", "IconDatabaseStar", "IconDatabaseX", "IconDatabase", "IconDecimal", "IconDeer", "IconDelta", "IconDentalBroken", "IconDentalOff", "IconDental", "IconDeselect", "IconDetailsOff", "IconDetails", "IconDeviceAirpodsCase", "IconDeviceAirpods", "IconDeviceAirtag", "IconDeviceAnalytics", "IconDeviceAudioTape", "IconDeviceCameraPhone", "IconDeviceCctvOff", "IconDeviceCctv", "IconDeviceComputerCameraOff", "IconDeviceComputerCamera", "IconDeviceDesktopAnalytics", "IconDeviceDesktopBolt", "IconDeviceDesktopCancel", "IconDeviceDesktopCheck", "IconDeviceDesktopCode", "IconDeviceDesktopCog", "IconDeviceDesktopDollar", "IconDeviceDesktopDown", "IconDeviceDesktopExclamation", "IconDeviceDesktopHeart", "IconDeviceDesktopMinus", "IconDeviceDesktopOff", "IconDeviceDesktopPause", "IconDeviceDesktopPin", "IconDeviceDesktopPlus", "IconDeviceDesktopQuestion", "IconDeviceDesktopSearch", "IconDeviceDesktopShare", "IconDeviceDesktopStar", "IconDeviceDesktopUp", "IconDeviceDesktopX", "IconDeviceDesktop", "IconDeviceFloppy", "IconDeviceGamepad2", "IconDeviceGamepad", "IconDeviceHeartMonitorFilled", "IconDeviceHeartMonitor", "IconDeviceImacBolt", "IconDeviceImacCancel", "IconDeviceImacCheck", "IconDeviceImacCode", "IconDeviceImacCog", "IconDeviceImacDollar", "IconDeviceImacDown", "IconDeviceImacExclamation", "IconDeviceImacHeart", "IconDeviceImacMinus", "IconDeviceImacOff", "IconDeviceImacPause", "IconDeviceImacPin", "IconDeviceImacPlus", "IconDeviceImacQuestion", "IconDeviceImacSearch", "IconDeviceImacShare", "IconDeviceImacStar", "IconDeviceImacUp", "IconDeviceImacX", "IconDeviceImac", "IconDeviceIpadBolt", "IconDeviceIpadCancel", "IconDeviceIpadCheck", "IconDeviceIpadCode", "IconDeviceIpadCog", "IconDeviceIpadDollar", "IconDeviceIpadDown", "IconDeviceIpadExclamation", "IconDeviceIpadHeart", "IconDeviceIpadHorizontalBolt", "IconDeviceIpadHorizontalCancel", "IconDeviceIpadHorizontalCheck", "IconDeviceIpadHorizontalCode", "IconDeviceIpadHorizontalCog", "IconDeviceIpadHorizontalDollar", "IconDeviceIpadHorizontalDown", "IconDeviceIpadHorizontalExclamation", "IconDeviceIpadHorizontalHeart", "IconDeviceIpadHorizontalMinus", "IconDeviceIpadHorizontalOff", "IconDeviceIpadHorizontalPause", "IconDeviceIpadHorizontalPin", "IconDeviceIpadHorizontalPlus", "IconDeviceIpadHorizontalQuestion", "IconDeviceIpadHorizontalSearch", "IconDeviceIpadHorizontalShare", "IconDeviceIpadHorizontalStar", "IconDeviceIpadHorizontalUp", "IconDeviceIpadHorizontalX", "IconDeviceIpadHorizontal", "IconDeviceIpadMinus", "IconDeviceIpadOff", "IconDeviceIpadPause", "IconDeviceIpadPin", "IconDeviceIpadPlus", "IconDeviceIpadQuestion", "IconDeviceIpadSearch", "IconDeviceIpadShare", "IconDeviceIpadStar", "IconDeviceIpadUp", "IconDeviceIpadX", "IconDeviceIpad", "IconDeviceLandlinePhone", "IconDeviceLaptopOff", "IconDeviceLaptop", "IconDeviceMobileBolt", "IconDeviceMobileCancel", "IconDeviceMobileCharging", "IconDeviceMobileCheck", "IconDeviceMobileCode", "IconDeviceMobileCog", "IconDeviceMobileDollar", "IconDeviceMobileDown", "IconDeviceMobileExclamation", "IconDeviceMobileFilled", "IconDeviceMobileHeart", "IconDeviceMobileMessage", "IconDeviceMobileMinus", "IconDeviceMobileOff", "IconDeviceMobilePause", "IconDeviceMobilePin", "IconDeviceMobilePlus", "IconDeviceMobileQuestion", "IconDeviceMobileRotated", "IconDeviceMobileSearch", "IconDeviceMobileShare", "IconDeviceMobileStar", "IconDeviceMobileUp", "IconDeviceMobileVibration", "IconDeviceMobileX", "IconDeviceMobile", "IconDeviceNintendoOff", "IconDeviceNintendo", "IconDeviceRemote", "IconDeviceSdCard", "IconDeviceSim1", "IconDeviceSim2", "IconDeviceSim3", "IconDeviceSim", "IconDeviceSpeakerOff", "IconDeviceSpeaker", "IconDeviceTabletBolt", "IconDeviceTabletCancel", "IconDeviceTabletCheck", "IconDeviceTabletCode", "IconDeviceTabletCog", "IconDeviceTabletDollar", "IconDeviceTabletDown", "IconDeviceTabletExclamation", "IconDeviceTabletFilled", "IconDeviceTabletHeart", "IconDeviceTabletMinus", "IconDeviceTabletOff", "IconDeviceTabletPause", "IconDeviceTabletPin", "IconDeviceTabletPlus", "IconDeviceTabletQuestion", "IconDeviceTabletSearch", "IconDeviceTabletShare", "IconDeviceTabletStar", "IconDeviceTabletUp", "IconDeviceTabletX", "IconDeviceTablet", "IconDeviceTvOff", "IconDeviceTvOld", "IconDeviceTv", "IconDeviceVisionPro", "IconDeviceWatchBolt", "IconDeviceWatchCancel", "IconDeviceWatchCheck", "IconDeviceWatchCode", "IconDeviceWatchCog", "IconDeviceWatchDollar", "IconDeviceWatchDown", "IconDeviceWatchExclamation", "IconDeviceWatchHeart", "IconDeviceWatchMinus", "IconDeviceWatchOff", "IconDeviceWatchPause", "IconDeviceWatchPin", "IconDeviceWatchPlus", "IconDeviceWatchQuestion", "IconDeviceWatchSearch", "IconDeviceWatchShare", "IconDeviceWatchStar", "IconDeviceWatchStats2", "IconDeviceWatchStats", "IconDeviceWatchUp", "IconDeviceWatchX", "IconDeviceWatch", "IconDevices2", "IconDevicesBolt", "IconDevicesCancel", "IconDevicesCheck", "IconDevicesCode", "IconDevicesCog", "IconDevicesDollar", "IconDevicesDown", "IconDevicesExclamation", "IconDevicesHeart", "IconDevicesMinus", "IconDevicesOff", "IconDevicesPause", "IconDevicesPcOff", "IconDevicesPc", "IconDevicesPin", "IconDevicesPlus", "IconDevicesQuestion", "IconDevicesSearch", "IconDevicesShare", "IconDevicesStar", "IconDevicesUp", "IconDevicesX", "IconDevices", "IconDiaboloOff", "IconDiaboloPlus", "IconDiabolo", "IconDialpadFilled", "IconDialpadOff", "IconDialpad", "IconDiamondFilled", "IconDiamondOff", "IconDiamond", "IconDiamondsFilled", "IconDiamonds", "IconDice1Filled", "IconDice1", "IconDice2Filled", "IconDice2", "IconDice3Filled", "IconDice3", "IconDice4Filled", "IconDice4", "IconDice5Filled", "IconDice5", "IconDice6Filled", "IconDice6", "IconDiceFilled", "IconDice", "IconDimensions", "IconDirectionHorizontal", "IconDirectionSignFilled", "IconDirectionSignOff", "IconDirectionSign", "IconDirection", "IconDirectionsOff", "IconDirections", "IconDisabled2", "IconDisabledOff", "IconDisabled", "IconDiscGolf", "IconDiscOff", "IconDisc", "IconDiscount2Off", "IconDiscount2", "IconDiscountCheckFilled", "IconDiscountCheck", "IconDiscountOff", "IconDiscount", "IconDivide", "IconDna2Off", "IconDna2", "IconDnaOff", "IconDna", "IconDogBowl", "IconDog", "IconDoorEnter", "IconDoorExit", "IconDoorOff", "IconDoor", "IconDotsCircleHorizontal", "IconDotsDiagonal2", "IconDotsDiagonal", "IconDotsVertical", "IconDots", "IconDownloadOff", "IconDownload", "IconDragDrop2", "IconDragDrop", "IconDroneOff", "IconDrone", "IconDropCircle", "IconDropletBolt", "IconDropletCancel", "IconDropletCheck", "IconDropletCode", "IconDropletCog", "IconDropletDollar", "IconDropletDown", "IconDropletExclamation", "IconDropletFilled", "IconDropletHalf2", "IconDropletHalfFilled", "IconDropletHalf", "IconDropletHeart", "IconDropletMinus", "IconDropletOff", "IconDropletPause", "IconDropletPin", "IconDropletPlus", "IconDropletQuestion", "IconDropletSearch", "IconDropletShare", "IconDropletStar", "IconDropletUp", "IconDropletX", "IconDroplet", "IconDualScreen", "IconEPassport", "IconEarOff", "IconEar", "IconEaseInControlPoint", "IconEaseInOutControlPoints", "IconEaseInOut", "IconEaseIn", "IconEaseOutControlPoint", "IconEaseOut", "IconEditCircleOff", "IconEditCircle", "IconEditOff", "IconEdit", "IconEggCracked", "IconEggFilled", "IconEggFried", "IconEggOff", "IconEgg", "IconEggs", "IconElevatorOff", "IconElevator", "IconEmergencyBed", "IconEmpathizeOff", "IconEmpathize", "IconEmphasis", "IconEngineOff", "IconEngine", "IconEqualDouble", "IconEqualNot", "IconEqual", "IconEraserOff", "IconEraser", "IconError404Off", "IconError404", "IconEscalatorDown", "IconEscalatorUp", "IconEscalator", "IconExchangeOff", "IconExchange", "IconExclamationCircle", "IconExclamationMarkOff", "IconExclamationMark", "IconExplicitOff", "IconExplicit", "IconExposure0", "IconExposureMinus1", "IconExposureMinus2", "IconExposureOff", "IconExposurePlus1", "IconExposurePlus2", "IconExposure", "IconExternalLinkOff", "IconExternalLink", "IconEyeCheck", "IconEyeClosed", "IconEyeCog", "IconEyeEdit", "IconEyeExclamation", "IconEyeFilled", "IconEyeHeart", "IconEyeOff", "IconEyeTable", "IconEyeX", "IconEye", "IconEyeglass2", "IconEyeglassOff", "IconEyeglass", "IconFaceIdError", "IconFaceId", "IconFaceMaskOff", "IconFaceMask", "IconFall", "IconFeatherOff", "IconFeather", "IconFenceOff", "IconFence", "IconFidgetSpinner", "IconFile3d", "IconFileAlert", "IconFileAnalytics", "IconFileArrowLeft", "IconFileArrowRight", "IconFileBarcode", "IconFileBroken", "IconFileCertificate", "IconFileChart", "IconFileCheck", "IconFileCode2", "IconFileCode", "IconFileCv", "IconFileDatabase", "IconFileDelta", "IconFileDescription", "IconFileDiff", "IconFileDigit", "IconFileDislike", "IconFileDollar", "IconFileDots", "IconFileDownload", "IconFileEuro", "IconFileExport", "IconFileFilled", "IconFileFunction", "IconFileHorizontal", "IconFileImport", "IconFileInfinity", "IconFileInfo", "IconFileInvoice", "IconFileLambda", "IconFileLike", "IconFileMinus", "IconFileMusic", "IconFileOff", "IconFileOrientation", "IconFilePencil", "IconFilePercent", "IconFilePhone", "IconFilePlus", "IconFilePower", "IconFileReport", "IconFileRss", "IconFileScissors", "IconFileSearch", "IconFileSettings", "IconFileShredder", "IconFileSignal", "IconFileSpreadsheet", "IconFileStack", "IconFileStar", "IconFileSymlink", "IconFileTextAi", "IconFileText", "IconFileTime", "IconFileTypeBmp", "IconFileTypeCss", "IconFileTypeCsv", "IconFileTypeDoc", "IconFileTypeDocx", "IconFileTypeHtml", "IconFileTypeJpg", "IconFileTypeJs", "IconFileTypeJsx", "IconFileTypePdf", "IconFileTypePhp", "IconFileTypePng", "IconFileTypePpt", "IconFileTypeRs", "IconFileTypeSql", "IconFileTypeSvg", "IconFileTypeTs", "IconFileTypeTsx", "IconFileTypeTxt", "IconFileTypeVue", "IconFileTypeXls", "IconFileTypeXml", "IconFileTypeZip", "IconFileTypography", "IconFileUnknown", "IconFileUpload", "IconFileVector", "IconFileXFilled", "IconFileX", "IconFileZip", "IconFile", "IconFilesOff", "IconFiles", "IconFilterCog", "IconFilterDollar", "IconFilterEdit", "IconFilterMinus", "IconFilterOff", "IconFilterPlus", "IconFilterStar", "IconFilterX", "IconFilter", "IconFilters", "IconFingerprintOff", "IconFingerprint", "IconFireExtinguisher", "IconFireHydrantOff", "IconFireHydrant", "IconFiretruck", "IconFirstAidKitOff", "IconFirstAidKit", "IconFishBone", "IconFishChristianity", "IconFishHookOff", "IconFishHook", "IconFishOff", "IconFish", "IconFlag2Filled", "IconFlag2Off", "IconFlag2", "IconFlag3Filled", "IconFlag3", "IconFlagFilled", "IconFlagOff", "IconFlag", "IconFlameOff", "IconFlame", "IconFlare", "IconFlask2Off", "IconFlask2", "IconFlaskOff", "IconFlask", "IconFlipFlops", "IconFlipHorizontal", "IconFlipVertical", "IconFloatCenter", "IconFloatLeft", "IconFloatNone", "IconFloatRight", "IconFlowerOff", "IconFlower", "IconFocus2", "IconFocusAuto", "IconFocusCentered", "IconFocus", "IconFoldDown", "IconFoldUp", "IconFold", "IconFolderBolt", "IconFolderCancel", "IconFolderCheck", "IconFolderCode", "IconFolderCog", "IconFolderDollar", "IconFolderDown", "IconFolderExclamation", "IconFolderFilled", "IconFolderHeart", "IconFolderMinus", "IconFolderOff", "IconFolderOpen", "IconFolderPause", "IconFolderPin", "IconFolderPlus", "IconFolderQuestion", "IconFolderSearch", "IconFolderShare", "IconFolderStar", "IconFolderSymlink", "IconFolderUp", "IconFolderX", "IconFolder", "IconFoldersOff", "IconFolders", "IconForbid2", "IconForbid", "IconForklift", "IconForms", "IconFountainOff", "IconFountain", "IconFrameOff", "IconFrame", "IconFreeRights", "IconFreezeColumn", "IconFreezeRowColumn", "IconFreezeRow", "IconFridgeOff", "IconFridge", "IconFriendsOff", "IconFriends", "IconFrustumOff", "IconFrustumPlus", "IconFrustum", "IconFunctionOff", "IconFunction", "IconGardenCartOff", "IconGardenCart", "IconGasStationOff", "IconGasStation", "IconGaugeOff", "IconGauge", "IconGavel", "IconGenderAgender", "IconGenderAndrogyne", "IconGenderBigender", "IconGenderDemiboy", "IconGenderDemigirl", "IconGenderEpicene", "IconGenderFemale", "IconGenderFemme", "IconGenderGenderfluid", "IconGenderGenderless", "IconGenderGenderqueer", "IconGenderHermaphrodite", "IconGenderIntergender", "IconGenderMale", "IconGenderNeutrois", "IconGenderThird", "IconGenderTransgender", "IconGenderTrasvesti", "IconGeometry", "IconGhost2Filled", "IconGhost2", "IconGhostFilled", "IconGhostOff", "IconGhost", "IconGif", "IconGiftCard", "IconGiftOff", "IconGift", "IconGitBranchDeleted", "IconGitBranch", "IconGitCherryPick", "IconGitCommit", "IconGitCompare", "IconGitFork", "IconGitMerge", "IconGitPullRequestClosed", "IconGitPullRequestDraft", "IconGitPullRequest", "IconGizmo", "IconGlassFull", "IconGlassOff", "IconGlass", "IconGlobeOff", "IconGlobe", "IconGoGame", "IconGolfOff", "IconGolf", "IconGps", "IconGradienter", "IconGrain", "IconGraphOff", "IconGraph", "IconGrave2", "IconGrave", "IconGridDots", "IconGridPattern", "IconGrillFork", "IconGrillOff", "IconGrillSpatula", "IconGrill", "IconGripHorizontal", "IconGripVertical", "IconGrowth", "IconGuitarPickFilled", "IconGuitarPick", "IconH1", "IconH2", "IconH3", "IconH4", "IconH5", "IconH6", "IconHammerOff", "IconHammer", "IconHandClick", "IconHandFingerOff", "IconHandFinger", "IconHandGrab", "IconHandLittleFinger", "IconHandMiddleFinger", "IconHandMove", "IconHandOff", "IconHandRingFinger", "IconHandRock", "IconHandSanitizer", "IconHandStop", "IconHandThreeFingers", "IconHandTwoFingers", "IconHanger2", "IconHangerOff", "IconHanger", "IconHash", "IconHazeMoon", "IconHaze", "IconHdr", "IconHeadingOff", "IconHeading", "IconHeadphonesFilled", "IconHeadphonesOff", "IconHeadphones", "IconHeadsetOff", "IconHeadset", "IconHealthRecognition", "IconHeartBroken", "IconHeartFilled", "IconHeartHandshake", "IconHeartMinus", "IconHeartOff", "IconHeartPlus", "IconHeartRateMonitor", "IconHeart", "IconHeartbeat", "IconHeartsOff", "IconHearts", "IconHelicopterLanding", "IconHelicopter", "IconHelmetOff", "IconHelmet", "IconHelpCircleFilled", "IconHelpCircle", "IconHelpHexagonFilled", "IconHelpHexagon", "IconHelpOctagonFilled", "IconHelpOctagon", "IconHelpOff", "IconHelpSmall", "IconHelpSquareFilled", "IconHelpSquareRoundedFilled", "IconHelpSquareRounded", "IconHelpSquare", "IconHelpTriangleFilled", "IconHelpTriangle", "IconHelp", "IconHemisphereOff", "IconHemispherePlus", "IconHemisphere", "IconHexagon0Filled", "IconHexagon1Filled", "IconHexagon2Filled", "IconHexagon3Filled", "IconHexagon3d", "IconHexagon4Filled", "IconHexagon5Filled", "IconHexagon6Filled", "IconHexagon7Filled", "IconHexagon8Filled", "IconHexagon9Filled", "IconHexagonFilled", "IconHexagonLetterA", "IconHexagonLetterB", "IconHexagonLetterC", "IconHexagonLetterD", "IconHexagonLetterE", "IconHexagonLetterF", "IconHexagonLetterG", "IconHexagonLetterH", "IconHexagonLetterI", "IconHexagonLetterJ", "IconHexagonLetterK", "IconHexagonLetterL", "IconHexagonLetterM", "IconHexagonLetterN", "IconHexagonLetterO", "IconHexagonLetterP", "IconHexagonLetterQ", "IconHexagonLetterR", "IconHexagonLetterS", "IconHexagonLetterT", "IconHexagonLetterU", "IconHexagonLetterV", "IconHexagonLetterW", "IconHexagonLetterX", "IconHexagonLetterY", "IconHexagonLetterZ", "IconHexagonNumber0", "IconHexagonNumber1", "IconHexagonNumber2", "IconHexagonNumber3", "IconHexagonNumber4", "IconHexagonNumber5", "IconHexagonNumber6", "IconHexagonNumber7", "IconHexagonNumber8", "IconHexagonNumber9", "IconHexagonOff", "IconHexagon", "IconHexagonalPrismOff", "IconHexagonalPrismPlus", "IconHexagonalPrism", "IconHexagonalPyramidOff", "IconHexagonalPyramidPlus", "IconHexagonalPyramid", "IconHexagonsOff", "IconHexagons", "IconHierarchy2", "IconHierarchy3", "IconHierarchyOff", "IconHierarchy", "IconHighlightOff", "IconHighlight", "IconHistoryOff", "IconHistoryToggle", "IconHistory", "IconHome2", "IconHomeBolt", "IconHomeCancel", "IconHomeCheck", "IconHomeCog", "IconHomeDollar", "IconHomeDot", "IconHomeDown", "IconHomeEco", "IconHomeEdit", "IconHomeExclamation", "IconHomeHand", "IconHomeHeart", "IconHomeInfinity", "IconHomeLink", "IconHomeMinus", "IconHomeMove", "IconHomeOff", "IconHomePlus", "IconHomeQuestion", "IconHomeRibbon", "IconHomeSearch", "IconHomeShare", "IconHomeShield", "IconHomeSignal", "IconHomeStar", "IconHomeStats", "IconHomeUp", "IconHomeX", "IconHome", "IconHorseToy", "IconHotelService", "IconHourglassEmpty", "IconHourglassFilled", "IconHourglassHigh", "IconHourglassLow", "IconHourglassOff", "IconHourglass", "IconHtml", "IconHttpConnect", "IconHttpDelete", "IconHttpGet", "IconHttpHead", "IconHttpOptions", "IconHttpPatch", "IconHttpPost", "IconHttpPut", "IconHttpQue", "IconHttpTrace", "IconIceCream2", "IconIceCreamOff", "IconIceCream", "IconIceSkating", "IconIconsOff", "IconIcons", "IconIdBadge2", "IconIdBadgeOff", "IconIdBadge", "IconIdOff", "IconId", "IconInboxOff", "IconInbox", "IconIndentDecrease", "IconIndentIncrease", "IconInfinityOff", "IconInfinity", "IconInfoCircleFilled", "IconInfoCircle", "IconInfoHexagonFilled", "IconInfoHexagon", "IconInfoOctagonFilled", "IconInfoOctagon", "IconInfoSmall", "IconInfoSquareFilled", "IconInfoSquareRoundedFilled", "IconInfoSquareRounded", "IconInfoSquare", "IconInfoTriangleFilled", "IconInfoTriangle", "IconInnerShadowBottomFilled", "IconInnerShadowBottomLeftFilled", "IconInnerShadowBottomLeft", "IconInnerShadowBottomRightFilled", "IconInnerShadowBottomRight", "IconInnerShadowBottom", "IconInnerShadowLeftFilled", "IconInnerShadowLeft", "IconInnerShadowRightFilled", "IconInnerShadowRight", "IconInnerShadowTopFilled", "IconInnerShadowTopLeftFilled", "IconInnerShadowTopLeft", "IconInnerShadowTopRightFilled", "IconInnerShadowTopRight", "IconInnerShadowTop", "IconInputSearch", "IconIroning1", "IconIroning2", "IconIroning3", "IconIroningOff", "IconIroningSteamOff", "IconIroningSteam", "IconIroning", "IconIrregularPolyhedronOff", "IconIrregularPolyhedronPlus", "IconIrregularPolyhedron", "IconItalic", "IconJacket", "IconJetpack", "IconJewishStarFilled", "IconJewishStar", "IconJpg", "IconJson", "IconJumpRope", "IconKarate", "IconKayak", "IconKering", "IconKeyOff", "IconKey", "IconKeyboardHide", "IconKeyboardOff", "IconKeyboardShow", "IconKeyboard", "IconKeyframeAlignCenter", "IconKeyframeAlignHorizontal", "IconKeyframeAlignVertical", "IconKeyframe", "IconKeyframes", "IconLadderOff", "IconLadder", "IconLambda", "IconLamp2", "IconLampOff", "IconLamp", "IconLane", "IconLanguageHiragana", "IconLanguageKatakana", "IconLanguageOff", "IconLanguage", "IconLassoOff", "IconLassoPolygon", "IconLasso", "IconLayersDifference", "IconLayersIntersect2", "IconLayersIntersect", "IconLayersLinked", "IconLayersOff", "IconLayersSubtract", "IconLayersUnion", "IconLayout2", "IconLayoutAlignBottom", "IconLayoutAlignCenter", "IconLayoutAlignLeft", "IconLayoutAlignMiddle", "IconLayoutAlignRight", "IconLayoutAlignTop", "IconLayoutBoardSplit", "IconLayoutBoard", "IconLayoutBottombarCollapse", "IconLayoutBottombarExpand", "IconLayoutBottombar", "IconLayoutCards", "IconLayoutCollage", "IconLayoutColumns", "IconLayoutDashboard", "IconLayoutDistributeHorizontal", "IconLayoutDistributeVertical", "IconLayoutGridAdd", "IconLayoutGridRemove", "IconLayoutGrid", "IconLayoutKanban", "IconLayoutList", "IconLayoutNavbarCollapse", "IconLayoutNavbarExpand", "IconLayoutNavbar", "IconLayoutOff", "IconLayoutRows", "IconLayoutSidebarLeftCollapse", "IconLayoutSidebarLeftExpand", "IconLayoutSidebarRightCollapse", "IconLayoutSidebarRightExpand", "IconLayoutSidebarRight", "IconLayoutSidebar", "IconLayout", "IconLeafOff", "IconLeaf", "IconLegoOff", "IconLego", "IconLemon2", "IconLemon", "IconLetterA", "IconLetterB", "IconLetterC", "IconLetterCaseLower", "IconLetterCaseToggle", "IconLetterCaseUpper", "IconLetterCase", "IconLetterD", "IconLetterE", "IconLetterF", "IconLetterG", "IconLetterH", "IconLetterI", "IconLetterJ", "IconLetterK", "IconLetterL", "IconLetterM", "IconLetterN", "IconLetterO", "IconLetterP", "IconLetterQ", "IconLetterR", "IconLetterS", "IconLetterSpacing", "IconLetterT", "IconLetterU", "IconLetterV", "IconLetterW", "IconLetterX", "IconLetterY", "IconLetterZ", "IconLicenseOff", "IconLicense", "IconLifebuoyOff", "IconLifebuoy", "IconLighter", "IconLineDashed", "IconLineDotted", "IconLineHeight", "IconLine", "IconLinkOff", "IconLink", "IconListCheck", "IconListDetails", "IconListNumbers", "IconListSearch", "IconListTree", "IconList", "IconLivePhotoOff", "IconLivePhoto", "IconLiveView", "IconLoadBalancer", "IconLoader2", "IconLoader3", "IconLoaderQuarter", "IconLoader", "IconLocationBroken", "IconLocationFilled", "IconLocationOff", "IconLocation", "IconLockAccessOff", "IconLockAccess", "IconLockBolt", "IconLockCancel", "IconLockCheck", "IconLockCode", "IconLockCog", "IconLockDollar", "IconLockDown", "IconLockExclamation", "IconLockHeart", "IconLockMinus", "IconLockOff", "IconLockOpenOff", "IconLockOpen", "IconLockPause", "IconLockPin", "IconLockPlus", "IconLockQuestion", "IconLockSearch", "IconLockShare", "IconLockSquareRoundedFilled", "IconLockSquareRounded", "IconLockSquare", "IconLockStar", "IconLockUp", "IconLockX", "IconLock", "IconLogicAnd", "IconLogicBuffer", "IconLogicNand", "IconLogicNor", "IconLogicNot", "IconLogicOr", "IconLogicXnor", "IconLogicXor", "IconLogin", "IconLogout2", "IconLogout", "IconLollipopOff", "IconLollipop", "IconLuggageOff", "IconLuggage", "IconLungsOff", "IconLungs", "IconMacroOff", "IconMacro", "IconMagnetOff", "IconMagnet", "IconMailAi", "IconMailBolt", "IconMailCancel", "IconMailCheck", "IconMailCode", "IconMailCog", "IconMailDollar", "IconMailDown", "IconMailExclamation", "IconMailFast", "IconMailFilled", "IconMailForward", "IconMailHeart", "IconMailMinus", "IconMailOff", "IconMailOpenedFilled", "IconMailOpened", "IconMailPause", "IconMailPin", "IconMailPlus", "IconMailQuestion", "IconMailSearch", "IconMailShare", "IconMailStar", "IconMailUp", "IconMailX", "IconMail", "IconMailboxOff", "IconMailbox", "IconMan", "IconManualGearbox", "IconMap2", "IconMapOff", "IconMapPinBolt", "IconMapPinCancel", "IconMapPinCheck", "IconMapPinCode", "IconMapPinCog", "IconMapPinDollar", "IconMapPinDown", "IconMapPinExclamation", "IconMapPinFilled", "IconMapPinHeart", "IconMapPinMinus", "IconMapPinOff", "IconMapPinPause", "IconMapPinPin", "IconMapPinPlus", "IconMapPinQuestion", "IconMapPinSearch", "IconMapPinShare", "IconMapPinStar", "IconMapPinUp", "IconMapPinX", "IconMapPin", "IconMapPins", "IconMapSearch", "IconMap", "IconMarkdownOff", "IconMarkdown", "IconMarquee2", "IconMarqueeOff", "IconMarquee", "IconMars", "IconMaskOff", "IconMask", "IconMasksTheaterOff", "IconMasksTheater", "IconMassage", "IconMatchstick", "IconMath1Divide2", "IconMath1Divide3", "IconMathAvg", "IconMathEqualGreater", "IconMathEqualLower", "IconMathFunctionOff", "IconMathFunctionY", "IconMathFunction", "IconMathGreater", "IconMathIntegralX", "IconMathIntegral", "IconMathIntegrals", "IconMathLower", "IconMathMax", "IconMathMin", "IconMathNot", "IconMathOff", "IconMathPiDivide2", "IconMathPi", "IconMathSymbols", "IconMathXDivide2", "IconMathXDivideY2", "IconMathXDivideY", "IconMathXMinusX", "IconMathXMinusY", "IconMathXPlusX", "IconMathXPlusY", "IconMathXy", "IconMathYMinusY", "IconMathYPlusY", "IconMath", "IconMaximizeOff", "IconMaximize", "IconMeatOff", "IconMeat", "IconMedal2", "IconMedal", "IconMedicalCrossCircle", "IconMedicalCrossFilled", "IconMedicalCrossOff", "IconMedicalCross", "IconMedicineSyrup", "IconMeeple", "IconMenorah", "IconMenu2", "IconMenuDeep", "IconMenuOrder", "IconMenu", "IconMessage2Bolt", "IconMessage2Cancel", "IconMessage2Check", "IconMessage2Code", "IconMessage2Cog", "IconMessage2Dollar", "IconMessage2Down", "IconMessage2Exclamation", "IconMessage2Heart", "IconMessage2Minus", "IconMessage2Off", "IconMessage2Pause", "IconMessage2Pin", "IconMessage2Plus", "IconMessage2Question", "IconMessage2Search", "IconMessage2Share", "IconMessage2Star", "IconMessage2Up", "IconMessage2X", "IconMessage2", "IconMessageBolt", "IconMessageCancel", "IconMessageChatbot", "IconMessageCheck", "IconMessageCircle2Filled", "IconMessageCircle2", "IconMessageCircleBolt", "IconMessageCircleCancel", "IconMessageCircleCheck", "IconMessageCircleCode", "IconMessageCircleCog", "IconMessageCircleDollar", "IconMessageCircleDown", "IconMessageCircleExclamation", "IconMessageCircleHeart", "IconMessageCircleMinus", "IconMessageCircleOff", "IconMessageCirclePause", "IconMessageCirclePin", "IconMessageCirclePlus", "IconMessageCircleQuestion", "IconMessageCircleSearch", "IconMessageCircleShare", "IconMessageCircleStar", "IconMessageCircleUp", "IconMessageCircleX", "IconMessageCircle", "IconMessageCode", "IconMessageCog", "IconMessageDollar", "IconMessageDots", "IconMessageDown", "IconMessageExclamation", "IconMessageForward", "IconMessageHeart", "IconMessageLanguage", "IconMessageMinus", "IconMessageOff", "IconMessagePause", "IconMessagePin", "IconMessagePlus", "IconMessageQuestion", "IconMessageReport", "IconMessageSearch", "IconMessageShare", "IconMessageStar", "IconMessageUp", "IconMessageX", "IconMessage", "IconMessagesOff", "IconMessages", "IconMeteorOff", "IconMeteor", "IconMichelinBibGourmand", "IconMichelinStarGreen", "IconMichelinStar", "IconMickeyFilled", "IconMickey", "IconMicrophone2Off", "IconMicrophone2", "IconMicrophoneOff", "IconMicrophone", "IconMicroscopeOff", "IconMicroscope", "IconMicrowaveOff", "IconMicrowave", "IconMilitaryAward", "IconMilitaryRank", "IconMilkOff", "IconMilk", "IconMilkshake", "IconMinimize", "IconMinusVertical", "IconMinus", "IconMistOff", "IconMist", "IconMobiledataOff", "IconMobiledata", "IconMoneybag", "IconMoodAngry", "IconMoodAnnoyed2", "IconMoodAnnoyed", "IconMoodBoy", "IconMoodCheck", "IconMoodCog", "IconMoodConfuzedFilled", "IconMoodConfuzed", "IconMoodCrazyHappy", "IconMoodCry", "IconMoodDollar", "IconMoodEdit", "IconMoodEmptyFilled", "IconMoodEmpty", "IconMoodHappyFilled", "IconMoodHappy", "IconMoodHeart", "IconMoodKidFilled", "IconMoodKid", "IconMoodLookLeft", "IconMoodLookRight", "IconMoodMinus", "IconMoodNerd", "IconMoodNervous", "IconMoodNeutralFilled", "IconMoodNeutral", "IconMoodOff", "IconMoodPin", "IconMoodPlus", "IconMoodSad2", "IconMoodSadDizzy", "IconMoodSadFilled", "IconMoodSadSquint", "IconMoodSad", "IconMoodSearch", "IconMoodShare", "IconMoodSick", "IconMoodSilence", "IconMoodSing", "IconMoodSmileBeam", "IconMoodSmileDizzy", "IconMoodSmileFilled", "IconMoodSmile", "IconMoodSuprised", "IconMoodTongueWink2", "IconMoodTongueWink", "IconMoodTongue", "IconMoodUnamused", "IconMoodUp", "IconMoodWink2", "IconMoodWink", "IconMoodWrrr", "IconMoodX", "IconMoodXd", "IconMoon2", "IconMoonFilled", "IconMoonOff", "IconMoonStars", "IconMoon", "IconMoped", "IconMotorbike", "IconMountainOff", "IconMountain", "IconMouse2", "IconMouseFilled", "IconMouseOff", "IconMouse", "IconMoustache", "IconMovieOff", "IconMovie", "IconMugOff", "IconMug", "IconMultiplier05x", "IconMultiplier15x", "IconMultiplier1x", "IconMultiplier2x", "IconMushroomFilled", "IconMushroomOff", "IconMushroom", "IconMusicOff", "IconMusic", "IconNavigationFilled", "IconNavigationNorth", "IconNavigationOff", "IconNavigation", "IconNeedleThread", "IconNeedle", "IconNetworkOff", "IconNetwork", "IconNewSection", "IconNewsOff", "IconNews", "IconNfcOff", "IconNfc", "IconNoCopyright", "IconNoCreativeCommons", "IconNoDerivatives", "IconNorthStar", "IconNoteOff", "IconNote", "IconNotebookOff", "IconNotebook", "IconNotesOff", "IconNotes", "IconNotificationOff", "IconNotification", "IconNumber0", "IconNumber1", "IconNumber2", "IconNumber3", "IconNumber4", "IconNumber5", "IconNumber6", "IconNumber7", "IconNumber8", "IconNumber9", "IconNumber", "IconNumbers", "IconNurse", "IconOctagonFilled", "IconOctagonOff", "IconOctagon", "IconOctahedronOff", "IconOctahedronPlus", "IconOctahedron", "IconOld", "IconOlympicsOff", "IconOlympics", "IconOm", "IconOmega", "IconOutbound", "IconOutlet", "IconOvalFilled", "IconOvalVerticalFilled", "IconOvalVertical", "IconOval", "IconOverline", "IconPackageExport", "IconPackageImport", "IconPackageOff", "IconPackage", "IconPackages", "IconPacman", "IconPageBreak", "IconPaintFilled", "IconPaintOff", "IconPaint", "IconPaletteOff", "IconPalette", "IconPanoramaHorizontalOff", "IconPanoramaHorizontal", "IconPanoramaVerticalOff", "IconPanoramaVertical", "IconPaperBagOff", "IconPaperBag", "IconPaperclip", "IconParachuteOff", "IconParachute", "IconParenthesesOff", "IconParentheses", "IconParkingOff", "IconParking", "IconPassword", "IconPawFilled", "IconPawOff", "IconPaw", "IconPdf", "IconPeace", "IconPencilMinus", "IconPencilOff", "IconPencilPlus", "IconPencil", "IconPennant2Filled", "IconPennant2", "IconPennantFilled", "IconPennantOff", "IconPennant", "IconPentagonFilled", "IconPentagonOff", "IconPentagon", "IconPentagram", "IconPepperOff", "IconPepper", "IconPercentage", "IconPerfume", "IconPerspectiveOff", "IconPerspective", "IconPhoneCall", "IconPhoneCalling", "IconPhoneCheck", "IconPhoneFilled", "IconPhoneIncoming", "IconPhoneOff", "IconPhoneOutgoing", "IconPhonePause", "IconPhonePlus", "IconPhoneX", "IconPhone", "IconPhotoAi", "IconPhotoBolt", "IconPhotoCancel", "IconPhotoCheck", "IconPhotoCode", "IconPhotoCog", "IconPhotoDollar", "IconPhotoDown", "IconPhotoEdit", "IconPhotoExclamation", "IconPhotoFilled", "IconPhotoHeart", "IconPhotoMinus", "IconPhotoOff", "IconPhotoPause", "IconPhotoPin", "IconPhotoPlus", "IconPhotoQuestion", "IconPhotoSearch", "IconPhotoSensor2", "IconPhotoSensor3", "IconPhotoSensor", "IconPhotoShare", "IconPhotoShield", "IconPhotoStar", "IconPhotoUp", "IconPhotoX", "IconPhoto", "IconPhysotherapist", "IconPiano", "IconPick", "IconPictureInPictureOff", "IconPictureInPictureOn", "IconPictureInPictureTop", "IconPictureInPicture", "IconPigMoney", "IconPigOff", "IconPig", "IconPilcrow", "IconPillOff", "IconPill", "IconPills", "IconPinFilled", "IconPin", "IconPingPong", "IconPinnedFilled", "IconPinnedOff", "IconPinned", "IconPizzaOff", "IconPizza", "IconPlaceholder", "IconPlaneArrival", "IconPlaneDeparture", "IconPlaneInflight", "IconPlaneOff", "IconPlaneTilt", "IconPlane", "IconPlanetOff", "IconPlanet", "IconPlant2Off", "IconPlant2", "IconPlantOff", "IconPlant", "IconPlayBasketball", "IconPlayCardOff", "IconPlayCard", "IconPlayFootball", "IconPlayHandball", "IconPlayVolleyball", "IconPlayerEjectFilled", "IconPlayerEject", "IconPlayerPauseFilled", "IconPlayerPause", "IconPlayerPlayFilled", "IconPlayerPlay", "IconPlayerRecordFilled", "IconPlayerRecord", "IconPlayerSkipBackFilled", "IconPlayerSkipBack", "IconPlayerSkipForwardFilled", "IconPlayerSkipForward", "IconPlayerStopFilled", "IconPlayerStop", "IconPlayerTrackNextFilled", "IconPlayerTrackNext", "IconPlayerTrackPrevFilled", "IconPlayerTrackPrev", "IconPlaylistAdd", "IconPlaylistOff", "IconPlaylistX", "IconPlaylist", "IconPlaystationCircle", "IconPlaystationSquare", "IconPlaystationTriangle", "IconPlaystationX", "IconPlugConnectedX", "IconPlugConnected", "IconPlugOff", "IconPlugX", "IconPlug", "IconPlusEqual", "IconPlusMinus", "IconPlus", "IconPng", "IconPodiumOff", "IconPodium", "IconPointFilled", "IconPointOff", "IconPoint", "IconPointerBolt", "IconPointerCancel", "IconPointerCheck", "IconPointerCode", "IconPointerCog", "IconPointerDollar", "IconPointerDown", "IconPointerExclamation", "IconPointerFilled", "IconPointerHeart", "IconPointerMinus", "IconPointerOff", "IconPointerPause", "IconPointerPin", "IconPointerPlus", "IconPointerQuestion", "IconPointerSearch", "IconPointerShare", "IconPointerStar", "IconPointerUp", "IconPointerX", "IconPointer", "IconPokeballOff", "IconPokeball", "IconPokerChip", "IconPolaroidFilled", "IconPolaroid", "IconPolygonOff", "IconPolygon", "IconPoo", "IconPoolOff", "IconPool", "IconPower", "IconPray", "IconPremiumRights", "IconPrescription", "IconPresentationAnalytics", "IconPresentationOff", "IconPresentation", "IconPrinterOff", "IconPrinter", "IconPrismOff", "IconPrismPlus", "IconPrism", "IconPrison", "IconProgressAlert", "IconProgressBolt", "IconProgressCheck", "IconProgressDown", "IconProgressHelp", "IconProgressX", "IconProgress", "IconPrompt", "IconPropellerOff", "IconPropeller", "IconPumpkinScary", "IconPuzzle2", "IconPuzzleFilled", "IconPuzzleOff", "IconPuzzle", "IconPyramidOff", "IconPyramidPlus", "IconPyramid", "IconQrcodeOff", "IconQrcode", "IconQuestionMark", "IconQuoteOff", "IconQuote", "IconQuotes", "IconRadar2", "IconRadarOff", "IconRadar", "IconRadioOff", "IconRadio", "IconRadioactiveFilled", "IconRadioactiveOff", "IconRadioactive", "IconRadiusBottomLeft", "IconRadiusBottomRight", "IconRadiusTopLeft", "IconRadiusTopRight", "IconRainbowOff", "IconRainbow", "IconRating12Plus", "IconRating14Plus", "IconRating16Plus", "IconRating18Plus", "IconRating21Plus", "IconRazorElectric", "IconRazor", "IconReceipt2", "IconReceiptOff", "IconReceiptRefund", "IconReceiptTax", "IconReceipt", "IconRecharging", "IconRecordMailOff", "IconRecordMail", "IconRectangleFilled", "IconRectangleRoundedBottom", "IconRectangleRoundedTop", "IconRectangleVerticalFilled", "IconRectangleVertical", "IconRectangle", "IconRectangularPrismOff", "IconRectangularPrismPlus", "IconRectangularPrism", "IconRecycleOff", "IconRecycle", "IconRefreshAlert", "IconRefreshDot", "IconRefreshOff", "IconRefresh", "IconRegexOff", "IconRegex", "IconRegistered", "IconRelationManyToMany", "IconRelationOneToMany", "IconRelationOneToOne", "IconReload", "IconRepeatOff", "IconRepeatOnce", "IconRepeat", "IconReplaceFilled", "IconReplaceOff", "IconReplace", "IconReportAnalytics", "IconReportMedical", "IconReportMoney", "IconReportOff", "IconReportSearch", "IconReport", "IconReservedLine", "IconResize", "IconRestore", "IconRewindBackward10", "IconRewindBackward15", "IconRewindBackward20", "IconRewindBackward30", "IconRewindBackward40", "IconRewindBackward5", "IconRewindBackward50", "IconRewindBackward60", "IconRewindForward10", "IconRewindForward15", "IconRewindForward20", "IconRewindForward30", "IconRewindForward40", "IconRewindForward5", "IconRewindForward50", "IconRewindForward60", "IconRibbonHealth", "IconRings", "IconRippleOff", "IconRipple", "IconRoadOff", "IconRoadSign", "IconRoad", "IconRobotOff", "IconRobot", "IconRocketOff", "IconRocket", "IconRollerSkating", "IconRollercoasterOff", "IconRollercoaster", "IconRosetteFilled", "IconRosetteNumber0", "IconRosetteNumber1", "IconRosetteNumber2", "IconRosetteNumber3", "IconRosetteNumber4", "IconRosetteNumber5", "IconRosetteNumber6", "IconRosetteNumber7", "IconRosetteNumber8", "IconRosetteNumber9", "IconRosette", "IconRotate2", "IconRotate360", "IconRotateClockwise2", "IconRotateClockwise", "IconRotateDot", "IconRotateRectangle", "IconRotate", "IconRoute2", "IconRouteOff", "IconRoute", "IconRouterOff", "IconRouter", "IconRowInsertBottom", "IconRowInsertTop", "IconRowRemove", "IconRss", "IconRubberStampOff", "IconRubberStamp", "IconRuler2Off", "IconRuler2", "IconRuler3", "IconRulerMeasure", "IconRulerOff", "IconRuler", "IconRun", "IconSTurnDown", "IconSTurnLeft", "IconSTurnRight", "IconSTurnUp", "IconSailboat2", "IconSailboatOff", "IconSailboat", "IconSalad", "IconSalt", "IconSatelliteOff", "IconSatellite", "IconSausage", "IconScaleOff", "IconScaleOutlineOff", "IconScaleOutline", "IconScale", "IconScanEye", "IconScan", "IconSchemaOff", "IconSchema", "IconSchoolBell", "IconSchoolOff", "IconSchool", "IconScissorsOff", "IconScissors", "IconScooterElectric", "IconScooter", "IconScoreboard", "IconScreenShareOff", "IconScreenShare", "IconScreenshot", "IconScribbleOff", "IconScribble", "IconScriptMinus", "IconScriptPlus", "IconScriptX", "IconScript", "IconScubaMaskOff", "IconScubaMask", "IconSdk", "IconSearchOff", "IconSearch", "IconSectionSign", "IconSection", "IconSeedingOff", "IconSeeding", "IconSelectAll", "IconSelect", "IconSelector", "IconSendOff", "IconSend", "IconSeo", "IconSeparatorHorizontal", "IconSeparatorVertical", "IconSeparator", "IconServer2", "IconServerBolt", "IconServerCog", "IconServerOff", "IconServer", "IconServicemark", "IconSettings2", "IconSettingsAutomation", "IconSettingsBolt", "IconSettingsCancel", "IconSettingsCheck", "IconSettingsCode", "IconSettingsCog", "IconSettingsDollar", "IconSettingsDown", "IconSettingsExclamation", "IconSettingsFilled", "IconSettingsHeart", "IconSettingsMinus", "IconSettingsOff", "IconSettingsPause", "IconSettingsPin", "IconSettingsPlus", "IconSettingsQuestion", "IconSettingsSearch", "IconSettingsShare", "IconSettingsStar", "IconSettingsUp", "IconSettingsX", "IconSettings", "IconShadowOff", "IconShadow", "IconShape2", "IconShape3", "IconShapeOff", "IconShape", "IconShare2", "IconShare3", "IconShareOff", "IconShare", "IconShiJumping", "IconShieldBolt", "IconShieldCancel", "IconShieldCheckFilled", "IconShieldCheck", "IconShieldCheckeredFilled", "IconShieldCheckered", "IconShieldChevron", "IconShieldCode", "IconShieldCog", "IconShieldDollar", "IconShieldDown", "IconShieldExclamation", "IconShieldFilled", "IconShieldHalfFilled", "IconShieldHalf", "IconShieldHeart", "IconShieldLockFilled", "IconShieldLock", "IconShieldMinus", "IconShieldOff", "IconShieldPause", "IconShieldPin", "IconShieldPlus", "IconShieldQuestion", "IconShieldSearch", "IconShieldShare", "IconShieldStar", "IconShieldUp", "IconShieldX", "IconShield", "IconShipOff", "IconShip", "IconShirtFilled", "IconShirtOff", "IconShirtSport", "IconShirt", "IconShoeOff", "IconShoe", "IconShoppingBag", "IconShoppingCartDiscount", "IconShoppingCartOff", "IconShoppingCartPlus", "IconShoppingCartX", "IconShoppingCart", "IconShovel", "IconShredder", "IconSignLeftFilled", "IconSignLeft", "IconSignRightFilled", "IconSignRight", "IconSignal2g", "IconSignal3g", "IconSignal4gPlus", "IconSignal4g", "IconSignal5g", "IconSignal6g", "IconSignalE", "IconSignalG", "IconSignalHPlus", "IconSignalH", "IconSignalLte", "IconSignatureOff", "IconSignature", "IconSitemapOff", "IconSitemap", "IconSkateboardOff", "IconSkateboard", "IconSkateboarding", "IconSkull", "IconSlash", "IconSlashes", "IconSleigh", "IconSlice", "IconSlideshow", "IconSmartHomeOff", "IconSmartHome", "IconSmokingNo", "IconSmoking", "IconSnowflakeOff", "IconSnowflake", "IconSnowman", "IconSoccerField", "IconSocialOff", "IconSocial", "IconSock", "IconSofaOff", "IconSofa", "IconSolarPanel2", "IconSolarPanel", "IconSort09", "IconSort90", "IconSortAZ", "IconSortAscending2", "IconSortAscendingLetters", "IconSortAscendingNumbers", "IconSortAscending", "IconSortDescending2", "IconSortDescendingLetters", "IconSortDescendingNumbers", "IconSortDescending", "IconSortZA", "IconSos", "IconSoupOff", "IconSoup", "IconSourceCode", "IconSpaceOff", "IconSpace", "IconSpacingHorizontal", "IconSpacingVertical", "IconSpadeFilled", "IconSpade", "IconSparkles", "IconSpeakerphone", "IconSpeedboat", "IconSphereOff", "IconSpherePlus", "IconSphere", "IconSpider", "IconSpiralOff", "IconSpiral", "IconSportBillard", "IconSpray", "IconSpyOff", "IconSpy", "IconSql", "IconSquare0Filled", "IconSquare1Filled", "IconSquare2Filled", "IconSquare3Filled", "IconSquare4Filled", "IconSquare5Filled", "IconSquare6Filled", "IconSquare7Filled", "IconSquare8Filled", "IconSquare9Filled", "IconSquareArrowDown", "IconSquareArrowLeft", "IconSquareArrowRight", "IconSquareArrowUp", "IconSquareAsterisk", "IconSquareCheckFilled", "IconSquareCheck", "IconSquareChevronDown", "IconSquareChevronLeft", "IconSquareChevronRight", "IconSquareChevronUp", "IconSquareChevronsDown", "IconSquareChevronsLeft", "IconSquareChevronsRight", "IconSquareChevronsUp", "IconSquareDot", "IconSquareF0Filled", "IconSquareF0", "IconSquareF1Filled", "IconSquareF1", "IconSquareF2Filled", "IconSquareF2", "IconSquareF3Filled", "IconSquareF3", "IconSquareF4Filled", "IconSquareF4", "IconSquareF5Filled", "IconSquareF5", "IconSquareF6Filled", "IconSquareF6", "IconSquareF7Filled", "IconSquareF7", "IconSquareF8Filled", "IconSquareF8", "IconSquareF9Filled", "IconSquareF9", "IconSquareForbid2", "IconSquareForbid", "IconSquareHalf", "IconSquareKey", "IconSquareLetterA", "IconSquareLetterB", "IconSquareLetterC", "IconSquareLetterD", "IconSquareLetterE", "IconSquareLetterF", "IconSquareLetterG", "IconSquareLetterH", "IconSquareLetterI", "IconSquareLetterJ", "IconSquareLetterK", "IconSquareLetterL", "IconSquareLetterM", "IconSquareLetterN", "IconSquareLetterO", "IconSquareLetterP", "IconSquareLetterQ", "IconSquareLetterR", "IconSquareLetterS", "IconSquareLetterT", "IconSquareLetterU", "IconSquareLetterV", "IconSquareLetterW", "IconSquareLetterX", "IconSquareLetterY", "IconSquareLetterZ", "IconSquareMinus", "IconSquareNumber0", "IconSquareNumber1", "IconSquareNumber2", "IconSquareNumber3", "IconSquareNumber4", "IconSquareNumber5", "IconSquareNumber6", "IconSquareNumber7", "IconSquareNumber8", "IconSquareNumber9", "IconSquareOff", "IconSquarePlus", "IconSquareRoot2", "IconSquareRoot", "IconSquareRotatedFilled", "IconSquareRotatedForbid2", "IconSquareRotatedForbid", "IconSquareRotatedOff", "IconSquareRotated", "IconSquareRoundedArrowDownFilled", "IconSquareRoundedArrowDown", "IconSquareRoundedArrowLeftFilled", "IconSquareRoundedArrowLeft", "IconSquareRoundedArrowRightFilled", "IconSquareRoundedArrowRight", "IconSquareRoundedArrowUpFilled", "IconSquareRoundedArrowUp", "IconSquareRoundedCheckFilled", "IconSquareRoundedCheck", "IconSquareRoundedChevronDownFilled", "IconSquareRoundedChevronDown", "IconSquareRoundedChevronLeftFilled", "IconSquareRoundedChevronLeft", "IconSquareRoundedChevronRightFilled", "IconSquareRoundedChevronRight", "IconSquareRoundedChevronUpFilled", "IconSquareRoundedChevronUp", "IconSquareRoundedChevronsDownFilled", "IconSquareRoundedChevronsDown", "IconSquareRoundedChevronsLeftFilled", "IconSquareRoundedChevronsLeft", "IconSquareRoundedChevronsRightFilled", "IconSquareRoundedChevronsRight", "IconSquareRoundedChevronsUpFilled", "IconSquareRoundedChevronsUp", "IconSquareRoundedFilled", "IconSquareRoundedLetterA", "IconSquareRoundedLetterB", "IconSquareRoundedLetterC", "IconSquareRoundedLetterD", "IconSquareRoundedLetterE", "IconSquareRoundedLetterF", "IconSquareRoundedLetterG", "IconSquareRoundedLetterH", "IconSquareRoundedLetterI", "IconSquareRoundedLetterJ", "IconSquareRoundedLetterK", "IconSquareRoundedLetterL", "IconSquareRoundedLetterM", "IconSquareRoundedLetterN", "IconSquareRoundedLetterO", "IconSquareRoundedLetterP", "IconSquareRoundedLetterQ", "IconSquareRoundedLetterR", "IconSquareRoundedLetterS", "IconSquareRoundedLetterT", "IconSquareRoundedLetterU", "IconSquareRoundedLetterV", "IconSquareRoundedLetterW", "IconSquareRoundedLetterX", "IconSquareRoundedLetterY", "IconSquareRoundedLetterZ", "IconSquareRoundedMinus", "IconSquareRoundedNumber0Filled", "IconSquareRoundedNumber0", "IconSquareRoundedNumber1Filled", "IconSquareRoundedNumber1", "IconSquareRoundedNumber2Filled", "IconSquareRoundedNumber2", "IconSquareRoundedNumber3Filled", "IconSquareRoundedNumber3", "IconSquareRoundedNumber4Filled", "IconSquareRoundedNumber4", "IconSquareRoundedNumber5Filled", "IconSquareRoundedNumber5", "IconSquareRoundedNumber6Filled", "IconSquareRoundedNumber6", "IconSquareRoundedNumber7Filled", "IconSquareRoundedNumber7", "IconSquareRoundedNumber8Filled", "IconSquareRoundedNumber8", "IconSquareRoundedNumber9Filled", "IconSquareRoundedNumber9", "IconSquareRoundedPlusFilled", "IconSquareRoundedPlus", "IconSquareRoundedXFilled", "IconSquareRoundedX", "IconSquareRounded", "IconSquareToggleHorizontal", "IconSquareToggle", "IconSquareX", "IconSquare", "IconSquaresDiagonal", "IconSquaresFilled", "IconStack2", "IconStack3", "IconStackPop", "IconStackPush", "IconStack", "IconStairsDown", "IconStairsUp", "IconStairs", "IconStarFilled", "IconStarHalfFilled", "IconStarHalf", "IconStarOff", "IconStar", "IconStarsFilled", "IconStarsOff", "IconStars", "IconStatusChange", "IconSteam", "IconSteeringWheelOff", "IconSteeringWheel", "IconStepInto", "IconStepOut", "IconStereoGlasses", "IconStethoscopeOff", "IconStethoscope", "IconSticker", "IconStormOff", "IconStorm", "IconStretching2", "IconStretching", "IconStrikethrough", "IconSubmarine", "IconSubscript", "IconSubtask", "IconSumOff", "IconSum", "IconSunFilled", "IconSunHigh", "IconSunLow", "IconSunMoon", "IconSunOff", "IconSunWind", "IconSun", "IconSunglasses", "IconSunrise", "IconSunset2", "IconSunset", "IconSuperscript", "IconSvg", "IconSwimming", "IconSwipe", "IconSwitch2", "IconSwitch3", "IconSwitchHorizontal", "IconSwitchVertical", "IconSwitch", "IconSwordOff", "IconSword", "IconSwords", "IconTableAlias", "IconTableColumn", "IconTableDown", "IconTableExport", "IconTableFilled", "IconTableHeart", "IconTableImport", "IconTableMinus", "IconTableOff", "IconTableOptions", "IconTablePlus", "IconTableRow", "IconTableShare", "IconTableShortcut", "IconTable", "IconTagOff", "IconTag", "IconTagsOff", "IconTags", "IconTallymark1", "IconTallymark2", "IconTallymark3", "IconTallymark4", "IconTallymarks", "IconTank", "IconTargetArrow", "IconTargetOff", "IconTarget", "IconTeapot", "IconTelescopeOff", "IconTelescope", "IconTemperatureCelsius", "IconTemperatureFahrenheit", "IconTemperatureMinus", "IconTemperatureOff", "IconTemperaturePlus", "IconTemperature", "IconTemplateOff", "IconTemplate", "IconTentOff", "IconTent", "IconTerminal2", "IconTerminal", "IconTestPipe2", "IconTestPipeOff", "IconTestPipe", "IconTex", "IconTextCaption", "IconTextColor", "IconTextDecrease", "IconTextDirectionLtr", "IconTextDirectionRtl", "IconTextIncrease", "IconTextOrientation", "IconTextPlus", "IconTextRecognition", "IconTextResize", "IconTextSize", "IconTextSpellcheck", "IconTextWrapDisabled", "IconTextWrap", "IconTexture", "IconTheater", "IconThermometer", "IconThumbDownFilled", "IconThumbDownOff", "IconThumbDown", "IconThumbUpFilled", "IconThumbUpOff", "IconThumbUp", "IconTicTac", "IconTicketOff", "IconTicket", "IconTie", "IconTilde", "IconTiltShiftOff", "IconTiltShift", "IconTimeDuration0", "IconTimeDuration10", "IconTimeDuration15", "IconTimeDuration30", "IconTimeDuration45", "IconTimeDuration5", "IconTimeDuration60", "IconTimeDuration90", "IconTimeDurationOff", "IconTimelineEventExclamation", "IconTimelineEventMinus", "IconTimelineEventPlus", "IconTimelineEventText", "IconTimelineEventX", "IconTimelineEvent", "IconTimeline", "IconTir", "IconToggleLeft", "IconToggleRight", "IconToiletPaperOff", "IconToiletPaper", "IconToml", "IconTool", "IconToolsKitchen2Off", "IconToolsKitchen2", "IconToolsKitchenOff", "IconToolsKitchen", "IconToolsOff", "IconTools", "IconTooltip", "IconTopologyBus", "IconTopologyComplex", "IconTopologyFullHierarchy", "IconTopologyFull", "IconTopologyRing2", "IconTopologyRing3", "IconTopologyRing", "IconTopologyStar2", "IconTopologyStar3", "IconTopologyStarRing2", "IconTopologyStarRing3", "IconTopologyStarRing", "IconTopologyStar", "IconTorii", "IconTornado", "IconTournament", "IconTowerOff", "IconTower", "IconTrack", "IconTractor", "IconTrademark", "IconTrafficConeOff", "IconTrafficCone", "IconTrafficLightsOff", "IconTrafficLights", "IconTrain", "IconTransferIn", "IconTransferOut", "IconTransformFilled", "IconTransform", "IconTransitionBottom", "IconTransitionLeft", "IconTransitionRight", "IconTransitionTop", "IconTrashFilled", "IconTrashOff", "IconTrashXFilled", "IconTrashX", "IconTrash", "IconTreadmill", "IconTree", "IconTrees", "IconTrekking", "IconTrendingDown2", "IconTrendingDown3", "IconTrendingDown", "IconTrendingUp2", "IconTrendingUp3", "IconTrendingUp", "IconTriangleFilled", "IconTriangleInvertedFilled", "IconTriangleInverted", "IconTriangleOff", "IconTriangleSquareCircle", "IconTriangle", "IconTriangles", "IconTrident", "IconTrolley", "IconTrophyFilled", "IconTrophyOff", "IconTrophy", "IconTrowel", "IconTruckDelivery", "IconTruckLoading", "IconTruckOff", "IconTruckReturn", "IconTruck", "IconTxt", "IconTypographyOff", "IconTypography", "IconUfoOff", "IconUfo", "IconUmbrellaFilled", "IconUmbrellaOff", "IconUmbrella", "IconUnderline", "IconUnlink", "IconUpload", "IconUrgent", "IconUsb", "IconUserBolt", "IconUserCancel", "IconUserCheck", "IconUserCircle", "IconUserCode", "IconUserCog", "IconUserDollar", "IconUserDown", "IconUserEdit", "IconUserExclamation", "IconUserHeart", "IconUserMinus", "IconUserOff", "IconUserPause", "IconUserPin", "IconUserPlus", "IconUserQuestion", "IconUserSearch", "IconUserShare", "IconUserShield", "IconUserStar", "IconUserUp", "IconUserX", "IconUser", "IconUsersGroup", "IconUsersMinus", "IconUsersPlus", "IconUsers", "IconUvIndex", "IconUxCircle", "IconVaccineBottleOff", "IconVaccineBottle", "IconVaccineOff", "IconVaccine", "IconVacuumCleaner", "IconVariableMinus", "IconVariableOff", "IconVariablePlus", "IconVariable", "IconVectorBezier2", "IconVectorBezierArc", "IconVectorBezierCircle", "IconVectorBezier", "IconVectorOff", "IconVectorSpline", "IconVectorTriangleOff", "IconVectorTriangle", "IconVector", "IconVenus", "IconVersionsFilled", "IconVersionsOff", "IconVersions", "IconVideoMinus", "IconVideoOff", "IconVideoPlus", "IconVideo", "IconView360Off", "IconView360", "IconViewfinderOff", "IconViewfinder", "IconViewportNarrow", "IconViewportWide", "IconVinyl", "IconVipOff", "IconVip", "IconVirusOff", "IconVirusSearch", "IconVirus", "IconVocabularyOff", "IconVocabulary", "IconVolcano", "IconVolume2", "IconVolume3", "IconVolumeOff", "IconVolume", "IconWalk", "IconWallOff", "IconWall", "IconWalletOff", "IconWallet", "IconWallpaperOff", "IconWallpaper", "IconWandOff", "IconWand", "IconWashDry1", "IconWashDry2", "IconWashDry3", "IconWashDryA", "IconWashDryDip", "IconWashDryF", "IconWashDryFlat", "IconWashDryHang", "IconWashDryOff", "IconWashDryP", "IconWashDryShade", "IconWashDryW", "IconWashDry", "IconWashDrycleanOff", "IconWashDryclean", "IconWashEco", "IconWashGentle", "IconWashHand", "IconWashMachine", "IconWashOff", "IconWashPress", "IconWashTemperature1", "IconWashTemperature2", "IconWashTemperature3", "IconWashTemperature4", "IconWashTemperature5", "IconWashTemperature6", "IconWashTumbleDry", "IconWashTumbleOff", "IconWash", "IconWaterpolo", "IconWaveSawTool", "IconWaveSine", "IconWaveSquare", "IconWebhookOff", "IconWebhook", "IconWeight", "IconWheelchairOff", "IconWheelchair", "IconWhirl", "IconWifi0", "IconWifi1", "IconWifi2", "IconWifiOff", "IconWifi", "IconWindOff", "IconWind", "IconWindmillFilled", "IconWindmillOff", "IconWindmill", "IconWindowMaximize", "IconWindowMinimize", "IconWindowOff", "IconWindow", "IconWindsock", "IconWiperWash", "IconWiper", "IconWoman", "IconWood", "IconWorldBolt", "IconWorldCancel", "IconWorldCheck", "IconWorldCode", "IconWorldCog", "IconWorldDollar", "IconWorldDown", "IconWorldDownload", "IconWorldExclamation", "IconWorldHeart", "IconWorldLatitude", "IconWorldLongitude", "IconWorldMinus", "IconWorldOff", "IconWorldPause", "IconWorldPin", "IconWorldPlus", "IconWorldQuestion", "IconWorldSearch", "IconWorldShare", "IconWorldStar", "IconWorldUp", "IconWorldUpload", "IconWorldWww", "IconWorldX", "IconWorld", "IconWreckingBall", "IconWritingOff", "IconWritingSignOff", "IconWritingSign", "IconWriting", "IconX", "IconXboxA", "IconXboxB", "IconXboxX", "IconXboxY", "IconXd", "IconYinYangFilled", "IconYinYang", "IconYoga", "IconZeppelinOff", "IconZeppelin", "IconZip", "IconZodiacAquarius", "IconZodiacAries", "IconZodiacCancer", "IconZodiacCapricorn", "IconZodiacGemini", "IconZodiacLeo", "IconZodiacLibra", "IconZodiacPisces", "IconZodiacSagittarius", "IconZodiacScorpio", "IconZodiacTaurus", "IconZodiacVirgo", "IconZoomCancel", "IconZoomCheckFilled", "IconZoomCheck", "IconZoomCode", "IconZoomExclamation", "IconZoomFilled", "IconZoomInAreaFilled", "IconZoomInArea", "IconZoomInFilled", "IconZoomIn", "IconZoomMoney", "IconZoomOutArea", "IconZoomOutFilled", "IconZoomOut", "IconZoomPan", "IconZoomQuestion", "IconZoomReplace", "IconZoomReset", "IconZzzOff", "IconZzz"];
344
+ export type TablerIconName = (typeof tablerIconNames)[number];
345
+
346
+ }
347
+ declare module '@agility/plenum-ui/stories/atoms/index' {
348
+ import Avatar, { IAvatarProps } from "@agility/plenum-ui/stories/atoms/Avatar/index";
349
+ import Badge, { IBadgeProps } from "@agility/plenum-ui/stories/atoms/badges/index";
350
+ import { Button, Capsule, BTNActionType, IButtonProps, ICapsuleProps } from "@agility/plenum-ui/stories/atoms/buttons/index";
351
+ import { DynamicIcon, FAIconName, IDynamicIconProps, IIconWithShadowProps, IconName, IconWithShadow, UnifiedIconName, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName } from "@agility/plenum-ui/stories/atoms/icons/index";
352
+ import { ILoaderProps, IRadialProgressProps, Loader, RadialProgress } from "@agility/plenum-ui/stories/atoms/loaders/index";
353
+ export type { IAvatarProps, IBadgeProps, IButtonProps, ICapsuleProps, IDynamicIconProps, IIconWithShadowProps, ILoaderProps, IRadialProgressProps, UnifiedIconName, IconName, FAIconName, BTNActionType };
354
+ export { Avatar, Badge, Button, Capsule, DynamicIcon, IconWithShadow, Loader, RadialProgress, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName };
355
+
356
+ }
357
+ declare module '@agility/plenum-ui/stories/atoms/loaders/Loader' {
358
+ import React from "react";
359
+ export interface ILoaderProps {
360
+ className?: string;
361
+ }
362
+ const Loader: React.FC<ILoaderProps>;
363
+ export default Loader;
364
+
365
+ }
366
+ declare module '@agility/plenum-ui/stories/atoms/loaders/Loader.stories' {
367
+ import type { Meta, StoryObj } from "@storybook/react";
368
+ import Loader from "@agility/plenum-ui/stories/atoms/loaders/Loader";
369
+ const meta: Meta<typeof Loader>;
370
+ type Story = StoryObj<typeof Loader>;
371
+ export const DefaultLoader: Story;
372
+ export default meta;
373
+
374
+ }
375
+ declare module '@agility/plenum-ui/stories/atoms/loaders/NProgress/RadialProgress' {
376
+ import React from "react";
377
+ export interface IRadialProgressProps extends React.PropsWithChildren {
378
+ /** Percentage value to display */
379
+ inputValue: number;
380
+ /** Radius for the circle - Max value of 100 */
381
+ radius: number;
382
+ /** Additional classnames */
383
+ className?: string;
384
+ }
385
+ const RadialProgress: React.FC<IRadialProgressProps>;
386
+ export default RadialProgress;
387
+
388
+ }
389
+ declare module '@agility/plenum-ui/stories/atoms/loaders/NProgress/index' {
390
+ import RadialProgress, { IRadialProgressProps } from "@agility/plenum-ui/stories/atoms/loaders/NProgress/RadialProgress";
391
+ export default RadialProgress;
392
+ export type { IRadialProgressProps };
393
+
394
+ }
395
+ declare module '@agility/plenum-ui/stories/atoms/loaders/index' {
396
+ import Loader, { ILoaderProps } from "@agility/plenum-ui/stories/atoms/loaders/Loader";
397
+ import RadialProgress, { IRadialProgressProps } from "@agility/plenum-ui/stories/atoms/loaders/NProgress/index";
398
+ export { Loader, RadialProgress };
399
+ export type { ILoaderProps, IRadialProgressProps };
400
+
401
+ }
402
+ declare module '@agility/plenum-ui/stories/index' {
403
+ import { IAvatarProps, IBadgeProps, IButtonProps, ICapsuleProps, IDynamicIconProps, IIconWithShadowProps, ILoaderProps, IRadialProgressProps, UnifiedIconName, IconName, FAIconName, BTNActionType, Avatar, Badge, Button, Capsule, DynamicIcon, IconWithShadow, Loader, RadialProgress, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName } from "@agility/plenum-ui/stories/atoms/index";
404
+ import { ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ITextareaProps, IToggleSwitchProps, AcceptedInputTypes, Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, Textarea, ToggleSwitch, TextInput, ITextInputProps, ISimpleSelectOptions } from "@agility/plenum-ui/stories/molecules/index";
405
+ import { IAnimatedLabelInputProps, IButtonDropdownProps, IDropdownClassnames, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps, AnimatedLabelInput, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons, TextInputSelect, ITextInputSelectProps } from "@agility/plenum-ui/stories/organisms/index";
406
+ export type { IAvatarProps, IBadgeProps, IButtonProps, ICapsuleProps, ITextInputSelectProps, IDynamicIconProps, IIconWithShadowProps, ILoaderProps, IRadialProgressProps, ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ITextareaProps, IToggleSwitchProps, AcceptedInputTypes, IAnimatedLabelInputProps, IButtonDropdownProps, IDropdownClassnames, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps, UnifiedIconName, IconName, FAIconName, BTNActionType, ITextInputProps, ISimpleSelectOptions };
407
+ export { Avatar, Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, Textarea, ToggleSwitch, AnimatedLabelInput, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons, Badge, Button, Capsule, DynamicIcon, IconWithShadow, Loader, RadialProgress, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName, TextInput, TextInputSelect };
408
+
409
+ }
410
+ declare module '@agility/plenum-ui/stories/layouts/index' {
411
+
412
+ }
413
+ declare module '@agility/plenum-ui/stories/molecules/index' {
414
+ import { ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ISimpleSelectOptions, ITextareaProps, IToggleSwitchProps, AcceptedInputTypes, Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, Textarea, ToggleSwitch, ITextInputProps, TextInput } from "@agility/plenum-ui/stories/molecules/inputs/index";
415
+ export type { ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ISimpleSelectOptions, ITextareaProps, IToggleSwitchProps, AcceptedInputTypes, ITextInputProps };
416
+ export { Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, Textarea, ToggleSwitch, TextInput };
417
+
418
+ }
419
+ declare module '@agility/plenum-ui/stories/molecules/inputs/InputCounter/InputCounter' {
420
+ import { FC } from "react";
421
+ export interface IInputCounterProps {
422
+ /** Counter limit */
423
+ limit: number | undefined;
424
+ /** Counter current number */
425
+ current: number;
426
+ }
427
+ /** Primary UI component for user interaction */
428
+ const InputCounter: FC<IInputCounterProps>;
429
+ export default InputCounter;
430
+
431
+ }
432
+ declare module '@agility/plenum-ui/stories/molecules/inputs/InputCounter/index' {
433
+ export { default } from '@agility/plenum-ui/stories/molecules/inputs/InputCounter/InputCounter';
434
+ export * from '@agility/plenum-ui/stories/molecules/inputs/InputCounter/InputCounter';
435
+
436
+ }
437
+ declare module '@agility/plenum-ui/stories/molecules/inputs/InputField/InputField' {
438
+ import React from "react";
439
+ export type AcceptedInputTypes = "date" | "datetime-local" | "email" | "month" | "number" | "password" | "search" | "submit" | "tel" | "text" | "url" | "currency";
440
+ export interface IInputFieldProps extends React.ComponentPropsWithoutRef<"input"> {
441
+ /** Callback on change */
442
+ handleChange: (value: string) => void;
443
+ /** Input ID*/
444
+ id: string;
445
+ /** Input Name */
446
+ name: string;
447
+ /** Force the focus state on the input */
448
+ isFocused?: boolean;
449
+ /** Error condition */
450
+ isError?: boolean;
451
+ /** Disabled state */
452
+ isDisabled?: boolean;
453
+ /** Readonly state */
454
+ isReadonly?: boolean;
455
+ /** Input value */
456
+ value: string;
457
+ /** Type of Text Input to Render eg. "text", "email" */
458
+ type: AcceptedInputTypes;
459
+ /** If field is required */
460
+ required?: boolean;
461
+ /** use input psuedo classes for :valid and :invalid styles. on by default */
462
+ clientSideCheck?: boolean;
463
+ /**ref for input */
464
+ ref?: React.Ref<HTMLInputElement>;
465
+ }
466
+ const InputField: React.FC<IInputFieldProps>;
467
+ export default InputField;
468
+
469
+ }
470
+ declare module '@agility/plenum-ui/stories/molecules/inputs/InputField/index' {
471
+ import InputField, { AcceptedInputTypes, IInputFieldProps } from "@agility/plenum-ui/stories/molecules/inputs/InputField/InputField";
472
+ export type { AcceptedInputTypes, IInputFieldProps };
473
+ export default InputField;
474
+
475
+ }
476
+ declare module '@agility/plenum-ui/stories/molecules/inputs/InputLabel/InputLabel' {
477
+ import { FC } from "react";
478
+ export interface IInputLabelProps {
479
+ /** Prop comment */
480
+ isPlaceholder?: boolean;
481
+ id: string;
482
+ isRequired?: boolean;
483
+ isDisabled?: boolean;
484
+ isError?: boolean;
485
+ isActive?: boolean;
486
+ isFocused?: boolean;
487
+ label?: string;
488
+ }
489
+ /** Comment */
490
+ const InputLabel: FC<IInputLabelProps>;
491
+ export default InputLabel;
492
+
493
+ }
494
+ declare module '@agility/plenum-ui/stories/molecules/inputs/InputLabel/index' {
495
+ import InputLabel, { IInputLabelProps } from "@agility/plenum-ui/stories/molecules/inputs/InputLabel/InputLabel";
496
+ export type { IInputLabelProps };
497
+ export default InputLabel;
498
+
499
+ }
500
+ declare module '@agility/plenum-ui/stories/molecules/inputs/NestedInputButton/NestedInputButton' {
501
+ import React from "react";
502
+ import { IDynamicIconProps } from "@/stories/atoms/icons";
503
+ export interface INestedInputButtonProps {
504
+ /** Icon to be included*/
505
+ icon?: IDynamicIconProps;
506
+ /** CTA label */
507
+ ctaLabel?: string;
508
+ /** Alignment */
509
+ align: "left" | "right";
510
+ /** Show the CTA without Background color and a border seperator */
511
+ isClear?: boolean;
512
+ /** Onclick callback */
513
+ onClickHandler?(): void;
514
+ buttonProps?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
515
+ }
516
+ const NestedInputButton: React.FC<INestedInputButtonProps>;
517
+ export default NestedInputButton;
518
+
519
+ }
520
+ declare module '@agility/plenum-ui/stories/molecules/inputs/NestedInputButton/index' {
521
+ import NestedInputButton, { INestedInputButtonProps } from "@agility/plenum-ui/stories/molecules/inputs/NestedInputButton/NestedInputButton";
522
+ export type { INestedInputButtonProps };
523
+ export default NestedInputButton;
524
+
525
+ }
526
+ declare module '@agility/plenum-ui/stories/molecules/inputs/TextInput/TextInput' {
527
+ import React from "react";
528
+ import { AcceptedInputTypes } from "@agility/plenum-ui/stories/molecules/inputs/InputField/index";
529
+ export interface ITextInputProps {
530
+ /** Input type*/
531
+ type: AcceptedInputTypes;
532
+ /** Input ID */
533
+ id?: string;
534
+ /** Input Name */
535
+ name?: string;
536
+ /** Label for the input */
537
+ label?: string;
538
+ /** Force the focus state on the input */
539
+ isFocused?: boolean;
540
+ /** Error state */
541
+ isError?: boolean;
542
+ /** If field is required */
543
+ isRequired?: boolean;
544
+ /** Disabled state */
545
+ isDisabled?: boolean;
546
+ /** Readonly state */
547
+ isReadonly?: boolean;
548
+ /** Set default value */
549
+ defaultValue?: string;
550
+ /** Message shown under the text field */
551
+ message?: string;
552
+ /** Input character counter */
553
+ isShowCounter?: boolean;
554
+ /** Max length of input character */
555
+ maxLength?: number;
556
+ /** Callback on change */
557
+ onChange(value: string): void;
558
+ /** input value */
559
+ value: string;
560
+ /**Placeholder input text*/
561
+ placeholder?: string;
562
+ className?: string;
563
+ }
564
+ const _TextInput: React.ForwardRefExoticComponent<ITextInputProps & React.RefAttributes<HTMLInputElement>>;
565
+ export default _TextInput;
566
+
567
+ }
568
+ declare module '@agility/plenum-ui/stories/molecules/inputs/TextInput/index' {
569
+ import TextInput from "@agility/plenum-ui/stories/molecules/inputs/TextInput/TextInput";
570
+ import { ITextInputProps } from "@agility/plenum-ui/stories/molecules/inputs/TextInput/TextInput";
571
+ export type { ITextInputProps };
572
+ export default TextInput;
573
+
574
+ }
575
+ declare module '@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox' {
576
+ import { FC } from "react";
577
+ export interface ICheckboxProps {
578
+ /** Checkbox label */
579
+ label: string;
580
+ /** Checkbox ID */
581
+ id?: string;
582
+ /** Disabled state */
583
+ isDisabled?: boolean;
584
+ /** value */
585
+ value?: string;
586
+ /** Check state */
587
+ isChecked?: boolean;
588
+ /** If field is required */
589
+ isRequired?: boolean;
590
+ /** Error state */
591
+ isError?: boolean;
592
+ /** Message or description */
593
+ message?: string;
594
+ /** Callback on input change */
595
+ onChange?(value: string, isChecked: boolean): void;
596
+ /** Has a border around the checkbox and label */
597
+ hasBorder?: boolean;
598
+ /** any arbitrary classNames to add to the wrapper */
599
+ className?: string;
600
+ }
601
+ /** Comment */
602
+ const Checkbox: FC<ICheckboxProps>;
603
+ export default Checkbox;
604
+
605
+ }
606
+ declare module '@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox.stories' {
607
+ import type { Meta, StoryObj } from "@storybook/react";
608
+ import Checkbox from "@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox";
609
+ const meta: Meta<typeof Checkbox>;
610
+ type Story = StoryObj<typeof Checkbox>;
611
+ export const DefaultCheckbox: Story;
612
+ export default meta;
613
+
614
+ }
615
+ declare module '@agility/plenum-ui/stories/molecules/inputs/checkbox/index' {
616
+ import Checkbox, { ICheckboxProps } from "@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox";
617
+ export type { ICheckboxProps };
618
+ export default Checkbox;
619
+
620
+ }
621
+ declare module '@agility/plenum-ui/stories/molecules/inputs/combobox/ComboBox' {
622
+ export interface IComboboxProps<T extends Record<string, unknown>> {
623
+ /** Label */
624
+ label?: string;
625
+ /** ID */
626
+ id: string;
627
+ /** Array of items to display */
628
+ items: T[];
629
+ /** the item property to use as the key */
630
+ keyProperty: string;
631
+ /** the item property to use as the display */
632
+ displayProperty: string;
633
+ /** Placeholder */
634
+ placeholder?: string;
635
+ /** Callback to trigger on change */
636
+ onChange?(value: T | undefined): void;
637
+ /** Select disabled state */
638
+ isDisabled?: boolean;
639
+ /** Select error state */
640
+ isError?: boolean;
641
+ /** Select required state */
642
+ isRequired?: boolean;
643
+ /** Message shown under field */
644
+ message?: string;
645
+ displayValue?: string;
646
+ /**
647
+ * Whether this item is nullable or not.
648
+ *
649
+ * @type {boolean}
650
+ * @memberof ComboboxProps
651
+ */
652
+ nullable?: boolean;
653
+ }
654
+ const Combobox: <T extends Record<string, unknown>>({ label, items, displayProperty, displayValue, keyProperty, onChange, placeholder, message, isDisabled, isError, isRequired, id, nullable }: IComboboxProps<T>) => import("react/jsx-runtime").JSX.Element;
655
+ export default Combobox;
656
+
657
+ }
658
+ declare module '@agility/plenum-ui/stories/molecules/inputs/combobox/ComboBox.stories' {
659
+ import type { Meta, StoryObj } from "@storybook/react";
660
+ import Combobox from "@agility/plenum-ui/stories/molecules/inputs/combobox/ComboBox";
661
+ const meta: Meta<typeof Combobox>;
662
+ type Story = StoryObj<typeof Combobox>;
663
+ export const DefaultComboBox: Story;
664
+ export default meta;
665
+
666
+ }
667
+ declare module '@agility/plenum-ui/stories/molecules/inputs/combobox/index' {
668
+ import Combobox, { IComboboxProps } from "@agility/plenum-ui/stories/molecules/inputs/combobox/ComboBox";
669
+ export type { IComboboxProps };
670
+ export default Combobox;
671
+
672
+ }
673
+ declare module '@agility/plenum-ui/stories/molecules/inputs/index' {
674
+ import Checkbox, { ICheckboxProps } from "@agility/plenum-ui/stories/molecules/inputs/checkbox/index";
675
+ import Combobox, { IComboboxProps } from "@agility/plenum-ui/stories/molecules/inputs/combobox/index";
676
+ import InputField, { AcceptedInputTypes, IInputFieldProps } from "@agility/plenum-ui/stories/molecules/inputs/InputField/index";
677
+ import InputLabel, { IInputLabelProps } from "@agility/plenum-ui/stories/molecules/inputs/InputLabel/index";
678
+ import NestedInputButton, { INestedInputButtonProps } from "@agility/plenum-ui/stories/molecules/inputs/NestedInputButton/index";
679
+ import Radio, { IRadioProps } from "@agility/plenum-ui/stories/molecules/inputs/radio/index";
680
+ import Select, { ISelectProps, ISimpleSelectOptions } from "@agility/plenum-ui/stories/molecules/inputs/select/index";
681
+ import Textarea, { ITextareaProps } from "@agility/plenum-ui/stories/molecules/inputs/textArea/index";
682
+ import TextInput, { ITextInputProps } from "@agility/plenum-ui/stories/molecules/inputs/TextInput/index";
683
+ import ToggleSwitch, { IToggleSwitchProps } from "@agility/plenum-ui/stories/molecules/inputs/toggleSwitch/index";
684
+ export type { ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ISimpleSelectOptions, ITextareaProps, ITextInputProps, IToggleSwitchProps, AcceptedInputTypes };
685
+ export { Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, Textarea, ToggleSwitch, TextInput };
686
+
687
+ }
688
+ declare module '@agility/plenum-ui/stories/molecules/inputs/radio/Radio' {
689
+ import React from "react";
690
+ export interface IRadioProps {
691
+ /** group name */
692
+ name?: string;
693
+ /** Radio label */
694
+ label: string;
695
+ /** Radio ID */
696
+ id?: string;
697
+ /** Disabled state */
698
+ isDisabled?: boolean;
699
+ /** Check state */
700
+ isChecked?: boolean;
701
+ /** If field is required */
702
+ isRequired?: boolean;
703
+ /** Error state */
704
+ isError?: boolean;
705
+ /** Message or description */
706
+ message?: string;
707
+ /** value */
708
+ value?: string;
709
+ /** Callback on input change */
710
+ onChange?(value: string, isChecked: boolean): void;
711
+ /** Callback on click */
712
+ onClick?(value: string, isChecked: boolean): void;
713
+ }
714
+ const Radio: React.FC<IRadioProps>;
715
+ export default Radio;
716
+
717
+ }
718
+ declare module '@agility/plenum-ui/stories/molecules/inputs/radio/Radio.stories' {
719
+ import type { Meta, StoryObj } from "@storybook/react";
720
+ import Radio from "@agility/plenum-ui/stories/molecules/inputs/radio/Radio";
721
+ const meta: Meta<typeof Radio>;
722
+ type Story = StoryObj<typeof Radio>;
723
+ export const DefaultRadio: Story;
724
+ export default meta;
725
+
726
+ }
727
+ declare module '@agility/plenum-ui/stories/molecules/inputs/radio/index' {
728
+ import Radio, { IRadioProps } from "@agility/plenum-ui/stories/molecules/inputs/radio/Radio";
729
+ export type { IRadioProps };
730
+ export default Radio;
731
+
732
+ }
733
+ declare module '@agility/plenum-ui/stories/molecules/inputs/select/Select' {
734
+ import React from "react";
735
+ export interface ISimpleSelectOptions {
736
+ label: string;
737
+ value: string;
738
+ }
739
+ export interface ISelectProps {
740
+ /** Label */
741
+ label?: string;
742
+ /** Select ID prop */
743
+ id?: string;
744
+ /** Select name prop */
745
+ name?: string;
746
+ /** List of options to display in the select menu */
747
+ options: ISimpleSelectOptions[];
748
+ /** Select name prop */
749
+ onChange?(value: string): void;
750
+ /** Select disabled state */
751
+ isDisabled?: boolean;
752
+ /** Select error state */
753
+ isError?: boolean;
754
+ /** Select required state */
755
+ isRequired?: boolean;
756
+ value?: string;
757
+ className?: string;
758
+ }
759
+ const Select: React.FC<ISelectProps>;
760
+ export default Select;
761
+
762
+ }
763
+ declare module '@agility/plenum-ui/stories/molecules/inputs/select/Select.stories' {
764
+ import type { Meta, StoryObj } from "@storybook/react";
765
+ import Select from "@agility/plenum-ui/stories/molecules/inputs/select/Select";
766
+ const meta: Meta<typeof Select>;
767
+ type Story = StoryObj<typeof Select>;
768
+ export const DefaultSelect: Story;
769
+ export default meta;
770
+
771
+ }
772
+ declare module '@agility/plenum-ui/stories/molecules/inputs/select/index' {
773
+ import Select, { ISelectProps, ISimpleSelectOptions } from "@agility/plenum-ui/stories/molecules/inputs/select/Select";
774
+ export type { ISelectProps, ISimpleSelectOptions };
775
+ export default Select;
776
+
777
+ }
778
+ declare module '@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea' {
779
+ import React from "react";
780
+ export interface ITextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "onChange"> {
781
+ /** Input ID */
782
+ id?: string;
783
+ /** Input Name */
784
+ name?: string;
785
+ /** Label for the input */
786
+ label?: string;
787
+ /** Error state */
788
+ isError?: boolean;
789
+ /** If field is required */
790
+ isRequired?: boolean;
791
+ /** Disabled state */
792
+ isDisabled?: boolean;
793
+ /** Set default value */
794
+ defaultValue?: string;
795
+ value?: string;
796
+ /** Message shown under the text field */
797
+ message?: string;
798
+ /** Input character counter */
799
+ isShowCounter?: boolean;
800
+ /** Max length of input character */
801
+ maxLength?: number;
802
+ /** Callback on change */
803
+ onChange?(value: string): void;
804
+ /** Number of rows */
805
+ rows?: number;
806
+ /** Number of cols */
807
+ cols?: number;
808
+ placeholder?: string;
809
+ className?: string;
810
+ ref?: React.LegacyRef<HTMLTextAreaElement>;
811
+ }
812
+ const Textarea: React.FC<ITextareaProps>;
813
+ export default Textarea;
814
+
815
+ }
816
+ declare module '@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea.stories' {
817
+ import type { Meta, StoryObj } from "@storybook/react";
818
+ import Textarea from "@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea";
819
+ const meta: Meta<typeof Textarea>;
820
+ type Story = StoryObj<typeof Textarea>;
821
+ export const DefaultTextarea: Story;
822
+ export default meta;
823
+
824
+ }
825
+ declare module '@agility/plenum-ui/stories/molecules/inputs/textArea/index' {
826
+ import TextArea, { ITextareaProps } from "@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea";
827
+ export type { ITextareaProps };
828
+ export default TextArea;
829
+
830
+ }
831
+ declare module '@agility/plenum-ui/stories/molecules/inputs/toggleSwitch/ToggleSwitch' {
832
+ import React from "react";
833
+ import { IDynamicIconProps } from "@/stories/atoms";
834
+ export interface IToggleSwitchProps {
835
+ isChecked: boolean;
836
+ onChange: (isChecked: boolean) => void;
837
+ label?: {
838
+ text: string | JSX.Element;
839
+ className?: string;
840
+ xPosition?: "left" | "right";
841
+ };
842
+ screenReaderLabel: string;
843
+ name: string;
844
+ id: string;
845
+ variant: "base" | "short";
846
+ withIcon?: IDynamicIconProps;
847
+ }
848
+ const ToggleSwitch: React.FC<IToggleSwitchProps>;
849
+ export default ToggleSwitch;
850
+
851
+ }
852
+ declare module '@agility/plenum-ui/stories/molecules/inputs/toggleSwitch/index' {
853
+ import ToggleSwitch, { IToggleSwitchProps } from "@agility/plenum-ui/stories/molecules/inputs/toggleSwitch/ToggleSwitch";
854
+ export type { IToggleSwitchProps };
855
+ export default ToggleSwitch;
856
+
857
+ }
858
+ declare module '@agility/plenum-ui/stories/organisms/AnimatedLabelInput/AnimatedLabelInput' {
859
+ import React from "react";
860
+ import { IInputFieldProps } from "@/stories/molecules/inputs/InputField";
861
+ import { ITextareaProps } from "@/stories/molecules/inputs/textArea/TextArea";
862
+ interface ILabelProps extends React.ComponentPropsWithoutRef<"label"> {
863
+ display: string;
864
+ }
865
+ export interface IAnimatedLabelInputProps {
866
+ id: string;
867
+ containerStyles?: string;
868
+ message?: string;
869
+ input?: IInputFieldProps;
870
+ textarea?: ITextareaProps;
871
+ required?: boolean;
872
+ isError?: boolean;
873
+ label: ILabelProps;
874
+ }
875
+ const AnimatedLabelInput: React.FC<IAnimatedLabelInputProps>;
876
+ export default AnimatedLabelInput;
877
+
878
+ }
879
+ declare module '@agility/plenum-ui/stories/organisms/AnimatedLabelInput/index' {
880
+ import AnimatedLabelInput, { IAnimatedLabelInputProps } from "@agility/plenum-ui/stories/organisms/AnimatedLabelInput/AnimatedLabelInput";
881
+ export default AnimatedLabelInput;
882
+ export type { IAnimatedLabelInputProps };
883
+
884
+ }
885
+ declare module '@agility/plenum-ui/stories/organisms/ButtonDropdown/ButtonDropdown' {
886
+ import { FC } from "react";
887
+ import { IButtonProps } from "@/stories/atoms/buttons/Button";
888
+ import { IDropdownProps } from "@agility/plenum-ui/stories/organisms/DropdownComponent/index";
889
+ export interface IButtonDropdownProps {
890
+ button: IButtonProps;
891
+ dropDown: IDropdownProps;
892
+ placement?: IDropdownProps["placement"];
893
+ offsetOptions?: IDropdownProps["offsetOptions"];
894
+ }
895
+ /**
896
+ * Primary UI component for user interaction
897
+ */
898
+ const ButtonDropdown: FC<IButtonDropdownProps>;
899
+ export default ButtonDropdown;
900
+
901
+ }
902
+ declare module '@agility/plenum-ui/stories/organisms/ButtonDropdown/index' {
903
+ import ButtonDropdown, { IButtonDropdownProps } from "@agility/plenum-ui/stories/organisms/ButtonDropdown/ButtonDropdown";
904
+ export type { IButtonDropdownProps };
905
+ export default ButtonDropdown;
906
+
907
+ }
908
+ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownComponent' {
909
+ import React, { HTMLAttributes } from "react";
910
+ import { Placement } from "@floating-ui/react";
911
+ import { ClassNameWithAutocomplete } from "utils/types";
912
+ import { IDynamicIconProps, UnifiedIconName } from "@/stories/atoms/icons";
913
+ export interface IItemProp extends HTMLAttributes<HTMLButtonElement> {
914
+ icon?: IDynamicIconProps | UnifiedIconName;
915
+ iconPosition?: "trailing" | "leading";
916
+ label: string;
917
+ onClick?(): void;
918
+ isEmphasized?: boolean;
919
+ key: React.Key;
920
+ }
921
+ export interface IDropdownClassnames {
922
+ groupClassname?: ClassNameWithAutocomplete;
923
+ itemsClassname?: ClassNameWithAutocomplete;
924
+ itemClassname?: ClassNameWithAutocomplete;
925
+ activeItemClassname?: ClassNameWithAutocomplete;
926
+ buttonClassname?: ClassNameWithAutocomplete;
927
+ }
928
+ export interface IDropdownProps extends HTMLAttributes<HTMLDivElement> {
929
+ items: IItemProp[][];
930
+ label: string;
931
+ CustomDropdownTrigger?: React.ReactNode;
932
+ id: string;
933
+ classNames?: IDropdownClassnames;
934
+ placement?: Placement;
935
+ offsetOptions?: Partial<{
936
+ mainAxis: number;
937
+ crossAxis: number;
938
+ alignmentAxis: number | null;
939
+ }>;
940
+ }
941
+ export const defaultClassNames: IDropdownClassnames;
942
+ /** Comment */
943
+ const Dropdown: React.FC<IDropdownProps>;
944
+ export default Dropdown;
945
+
946
+ }
947
+ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/dropdownItems' {
948
+ import { IItemProp } from "@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownComponent";
949
+ export const dropdownDataBase: IItemProp[][];
950
+ export const dropdownDataWithIcons: IItemProp[][];
951
+
952
+ }
953
+ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/index' {
954
+ import Dropdown, { IItemProp, IDropdownClassnames, IDropdownProps, defaultClassNames } from "@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownComponent";
955
+ export type { IItemProp, IDropdownClassnames, IDropdownProps };
956
+ export { defaultClassNames };
957
+ export default Dropdown;
958
+
959
+ }
960
+ declare module '@agility/plenum-ui/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder' {
961
+ import React from "react";
962
+ import { IButtonProps } from "@/stories/atoms/buttons/Button";
963
+ import { IDynamicIconProps } from "@/stories/atoms/icons";
964
+ export interface IEmptySectionPlaceholderProps {
965
+ /** the primary icon to display at top of component */
966
+ icon: IDynamicIconProps;
967
+ /** the muted text to display below the icon */
968
+ mutedText?: string;
969
+ /** the primary message to display below the muted text */
970
+ primaryMessage: string;
971
+ /** the call to action component that if provided will be used instead of primaryMessage */
972
+ CallToActionComponent?: React.ReactNode;
973
+ /** the actions to display below the primary call to action or message */
974
+ actions: IButtonProps[];
975
+ /** whether to display the component in a wide or narrow format */
976
+ isWide?: boolean;
977
+ }
978
+ const EmptySectionPlaceholder: React.FC<IEmptySectionPlaceholderProps>;
979
+ export default EmptySectionPlaceholder;
980
+
981
+ }
982
+ declare module '@agility/plenum-ui/stories/organisms/EmptySectionPlaceholder/index' {
983
+ import EmptySectionPlaceholder, { IEmptySectionPlaceholderProps } from "@agility/plenum-ui/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder";
984
+ export default EmptySectionPlaceholder;
985
+ export type { IEmptySectionPlaceholderProps };
986
+
987
+ }
988
+ declare module '@agility/plenum-ui/stories/organisms/FormInputWithAddons/FormInputWithAddons' {
989
+ import { IDynamicIconProps } from "@/stories/atoms/icons";
990
+ import React from "react";
991
+ import { IInputFieldProps, AcceptedInputTypes } from "@/stories/molecules/inputs/InputField";
992
+ export interface IFormInputWithAddonsProps extends Omit<IInputFieldProps, "type"> {
993
+ leadIcon?: IDynamicIconProps;
994
+ leadLabel?: string;
995
+ trailIcon?: IDynamicIconProps;
996
+ trailLabel?: string;
997
+ iconOutlined?: boolean;
998
+ /** @param addonOffset An extra buffer zone in pixels between the trailing/leading icon or label and search input -- Default is 24 */
999
+ addonOffset?: number;
1000
+ topLabel?: string;
1001
+ labelClass?: string;
1002
+ containerClassName?: string;
1003
+ description?: string;
1004
+ leadIconClassNames?: string;
1005
+ customIconClass?: string;
1006
+ type: AcceptedInputTypes;
1007
+ }
1008
+ const FormInputWithAddons: React.FC<IFormInputWithAddonsProps>;
1009
+ export default FormInputWithAddons;
1010
+
1011
+ }
1012
+ declare module '@agility/plenum-ui/stories/organisms/FormInputWithAddons/index' {
1013
+ import FormInputWithAddons, { IFormInputWithAddonsProps } from "@agility/plenum-ui/stories/organisms/FormInputWithAddons/FormInputWithAddons";
1014
+ export type { IFormInputWithAddonsProps };
1015
+ export default FormInputWithAddons;
1016
+
1017
+ }
1018
+ declare module '@agility/plenum-ui/stories/organisms/TextInputSelect/InputSelect' {
1019
+ import { FC } from "react";
1020
+ export type SelectOptions = {
1021
+ label: string;
1022
+ value: string;
1023
+ };
1024
+ export interface InputSelectProps {
1025
+ align: "left" | "right";
1026
+ /** Show the CTA without Background color and a border seperator */
1027
+ inputOptions: SelectOptions[];
1028
+ /** Onclick callback */
1029
+ onSelectOption?(value: string): void;
1030
+ className?: string;
1031
+ isDisabled?: boolean;
1032
+ }
1033
+ /** Comment */
1034
+ export const InputSelect: FC<InputSelectProps>;
1035
+
1036
+ }
1037
+ declare module '@agility/plenum-ui/stories/organisms/TextInputSelect/TextInputSelect' {
1038
+ import { FC } from "react";
1039
+ import { AcceptedInputTypes } from "@/stories/molecules";
1040
+ export type SelectOptions = {
1041
+ label: string;
1042
+ value: string;
1043
+ };
1044
+ export interface ITextInputSelectProps {
1045
+ /** Input type*/
1046
+ type: AcceptedInputTypes;
1047
+ /** Input ID */
1048
+ id?: string;
1049
+ /** Input Name */
1050
+ name?: string;
1051
+ /** Label for the input */
1052
+ label?: string;
1053
+ /** placeholder for the input */
1054
+ placeholder?: string;
1055
+ /** Force the focus state on the input */
1056
+ isFocused?: boolean;
1057
+ /** Error state */
1058
+ isError?: boolean;
1059
+ /** If field is required */
1060
+ isRequired?: boolean;
1061
+ /** Disabled state */
1062
+ isDisabled?: boolean;
1063
+ /** Set default value */
1064
+ defaultValue?: string;
1065
+ /** Set value */
1066
+ value: string;
1067
+ /** Message shown under the text field */
1068
+ message?: string;
1069
+ /** Input character counter */
1070
+ isShowCounter?: boolean;
1071
+ /** Max length of input character */
1072
+ maxLength?: number;
1073
+ /** Select input location */
1074
+ selectLocation?: "left" | "right";
1075
+ /** Prefix */
1076
+ prefix?: string;
1077
+ /** List of options to show on the select field */
1078
+ inputOptions?: SelectOptions[];
1079
+ /** Callback on base input */
1080
+ onChange?(value: string): void;
1081
+ /** Callback on input select field */
1082
+ onSelectOption?(value: string): void;
1083
+ }
1084
+ const TextInputSelect: FC<ITextInputSelectProps>;
1085
+ export default TextInputSelect;
1086
+
1087
+ }
1088
+ declare module '@agility/plenum-ui/stories/organisms/TextInputSelect/index' {
1089
+ import TextInputSelect, { ITextInputSelectProps } from "@agility/plenum-ui/stories/organisms/TextInputSelect/TextInputSelect";
1090
+ export type { ITextInputSelectProps };
1091
+ export default TextInputSelect;
1092
+
1093
+ }
1094
+ declare module '@agility/plenum-ui/stories/organisms/index' {
1095
+ import AnimatedLabelInput, { IAnimatedLabelInputProps } from "@agility/plenum-ui/stories/organisms/AnimatedLabelInput/index";
1096
+ import ButtonDropdown, { IButtonDropdownProps } from "@agility/plenum-ui/stories/organisms/ButtonDropdown/index";
1097
+ import Dropdown, { IDropdownClassnames, IDropdownProps, IItemProp } from "@agility/plenum-ui/stories/organisms/DropdownComponent/index";
1098
+ import EmptySectionPlaceholder, { IEmptySectionPlaceholderProps } from "@agility/plenum-ui/stories/organisms/EmptySectionPlaceholder/index";
1099
+ import FormInputWithAddons, { IFormInputWithAddonsProps } from "@agility/plenum-ui/stories/organisms/FormInputWithAddons/index";
1100
+ import TextInputSelect, { ITextInputSelectProps } from "@agility/plenum-ui/stories/organisms/TextInputSelect/index";
1101
+ export type { IAnimatedLabelInputProps, IButtonDropdownProps, IDropdownClassnames, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps, ITextInputSelectProps };
1102
+ export { AnimatedLabelInput, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons, TextInputSelect };
1103
+
1104
+ }
1105
+ declare module '@agility/plenum-ui/utils/types' {
1106
+ import React from "react";
1107
+ export type ClassNameWithAutocomplete = React.ComponentPropsWithoutRef<"div">["className"];
1108
+
1109
+ }
1110
+ declare module '@agility/plenum-ui/utils/useId' {
1111
+ export const useId: () => string;
1112
+
1113
+ }
1114
+ declare module '@agility/plenum-ui' {
1115
+ import main = require('@agility/plenum-ui/stories/index');
1116
+ export = main;
1117
+ }