@amboss/design-system 1.15.2 → 1.15.3

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 (344) hide show
  1. package/build/cjs/build-tokens/_breakpoints.json.js +10 -0
  2. package/build/cjs/build-tokens/_icon_sizes_map.json.js +5 -0
  3. package/build/cjs/build-tokens/_zindex.json.js +10 -0
  4. package/build/cjs/build-tokens/assets/icons.json.js +82 -0
  5. package/build/cjs/build-tokens/assets/icons16.json.js +87 -0
  6. package/build/cjs/build-tokens/assets/logo.json.js +7 -0
  7. package/build/cjs/build-tokens/visualConfig.js +1329 -0
  8. package/build/cjs/scss/themes/dark.scss +111 -0
  9. package/build/cjs/scss/themes/light.scss +111 -0
  10. package/build/cjs/src/components/Badge/Badge.js +63 -0
  11. package/build/cjs/src/components/Box/Box.js +89 -0
  12. package/build/cjs/src/components/Button/Button.js +290 -0
  13. package/build/cjs/src/components/Callout/Callout.js +102 -0
  14. package/build/cjs/src/components/Card/Card.js +69 -0
  15. package/build/cjs/src/components/Card/CardBox.js +23 -0
  16. package/build/cjs/src/components/Card/CardHeader/CardHeader.js +59 -0
  17. package/build/cjs/src/components/Collapsible/Collapsible.js +117 -0
  18. package/build/cjs/src/components/Column/Columns.js +147 -0
  19. package/build/cjs/src/components/Container/Container.js +63 -0
  20. package/build/cjs/src/components/DataTable/DataTable.js +187 -0
  21. package/build/cjs/src/components/DataTable/TableBody.js +161 -0
  22. package/build/cjs/src/components/DataTable/TableCell.js +45 -0
  23. package/build/cjs/src/components/DataTable/TableHeader.js +194 -0
  24. package/build/cjs/src/components/DataTable/useDataTableSort.js +42 -0
  25. package/build/cjs/src/components/Divider/Divider.js +68 -0
  26. package/build/cjs/src/components/DropdownMenu/DropdownMenu.js +227 -0
  27. package/build/cjs/src/components/DropdownMenu/MenuItem.js +103 -0
  28. package/build/cjs/src/components/Form/Checkbox/Checkbox.js +147 -0
  29. package/build/cjs/src/components/Form/FormErrorMessages/FormErrorMessages.js +27 -0
  30. package/build/cjs/src/components/Form/FormField/FormField.js +58 -0
  31. package/build/cjs/src/components/Form/FormFieldGroup/FormFieldGroup.js +55 -0
  32. package/build/cjs/src/components/Form/FormLabelText/FormLabelText.js +42 -0
  33. package/build/cjs/src/components/Form/Input/Input.js +186 -0
  34. package/build/cjs/src/components/Form/PasswordInput/PasswordInput.js +226 -0
  35. package/build/cjs/src/components/Form/Radio/Radio.js +138 -0
  36. package/build/cjs/src/components/Form/RadioButton/RadioButton.js +124 -0
  37. package/build/cjs/src/components/Form/SegmentedControl/SegmentedControl.js +131 -0
  38. package/build/cjs/src/components/Form/SegmentedControl/SegmentedControlOption.js +216 -0
  39. package/build/cjs/src/components/Form/Select/Select.js +291 -0
  40. package/build/cjs/src/components/Form/Textarea/Textarea.js +93 -0
  41. package/build/cjs/src/components/Form/Toggle/Toggle.js +179 -0
  42. package/build/cjs/src/components/Form/ToggleButton/ToggleButton.js +143 -0
  43. package/build/cjs/src/components/Icon/Icon.js +110 -0
  44. package/build/cjs/src/components/Inline/Inline.js +113 -0
  45. package/build/cjs/src/components/Link/Link.js +77 -0
  46. package/build/cjs/src/components/LoadingSpinner/LoadingSpinner.js +84 -0
  47. package/build/cjs/src/components/Logo/Logo.js +44 -0
  48. package/build/cjs/src/components/MediaItem/MediaItem.js +120 -0
  49. package/build/cjs/src/components/MediaViewerBar/MediaViewerBar.js +73 -0
  50. package/build/cjs/src/components/Notification/Notification.js +108 -0
  51. package/build/cjs/src/components/Pagination/Pagination.js +91 -0
  52. package/build/cjs/src/components/Patterns/ButtonGroup/ButtonGroup.js +52 -0
  53. package/build/cjs/src/components/Patterns/Modal/Modal.js +221 -0
  54. package/build/cjs/src/components/PictogramButton/PictogramButton.js +150 -0
  55. package/build/cjs/src/components/Portal/Portal.js +22 -0
  56. package/build/cjs/src/components/ProgressBar/ProgressBar.js +38 -0
  57. package/build/cjs/src/components/RoundButton/RoundButton.js +140 -0
  58. package/build/cjs/src/components/SearchResult/SearchResult.js +184 -0
  59. package/build/cjs/src/components/SegmentedProgressBar/SegmentedProgressBar.js +110 -0
  60. package/build/cjs/src/components/SegmentedProgressBar/SegmentedProgressBarUtil.js +42 -0
  61. package/build/cjs/src/components/Stack/Stack.js +80 -0
  62. package/build/cjs/src/components/SubThemeProvider/SubThemeProvider.js +55 -0
  63. package/build/cjs/src/components/Tabs/Tabs.js +137 -0
  64. package/build/cjs/src/components/Tag/Tag.js +90 -0
  65. package/build/cjs/src/components/Tooltip/Tooltip.js +275 -0
  66. package/build/cjs/src/components/Tooltip/utils.js +81 -0
  67. package/build/cjs/src/components/Typography/Header/Header.js +132 -0
  68. package/build/cjs/src/components/Typography/StyledText/StyledText.js +168 -0
  69. package/build/cjs/src/components/Typography/Text/Text.js +71 -0
  70. package/build/cjs/src/components/Typography/TextClamped/TextClamped.js +54 -0
  71. package/build/cjs/src/components/VirtualScrollList/VirtualScrollList.js +116 -0
  72. package/build/cjs/src/components/VirtualScrollList/VirtualScrollListReducer.js +131 -0
  73. package/build/cjs/src/index.js +136 -0
  74. package/build/cjs/src/shared/ScreenReaderText.js +26 -0
  75. package/build/cjs/src/shared/flattenChildren.js +33 -0
  76. package/build/cjs/src/shared/informDeprecation.js +12 -0
  77. package/build/cjs/src/shared/mediaQueries.js +68 -0
  78. package/build/cjs/src/shared/useAutoPosition.js +42 -0
  79. package/build/cjs/src/shared/useDocument.js +7 -0
  80. package/build/cjs/src/shared/useHover.js +26 -0
  81. package/build/cjs/src/shared/useKeyboard.js +43 -0
  82. package/build/cjs/src/shared/useOnEscapePress.js +52 -0
  83. package/build/cjs/src/shared/useOutsideClick.js +33 -0
  84. package/build/cjs/src/shared/useWindow.js +7 -0
  85. package/build/esm/build-tokens/_breakpoints.json +17 -0
  86. package/build/esm/build-tokens/_breakpoints.json.js +4 -0
  87. package/build/esm/build-tokens/_breakpoints.json.js.map +1 -0
  88. package/build/esm/build-tokens/_colors.json +918 -0
  89. package/build/esm/build-tokens/_icon_sizes_map.json +7 -0
  90. package/build/esm/build-tokens/_icon_sizes_map.json.js +4 -0
  91. package/build/esm/build-tokens/_icon_sizes_map.json.js.map +1 -0
  92. package/build/esm/build-tokens/_sizes.json +782 -0
  93. package/build/esm/build-tokens/_subThemeType.d.ts +1 -0
  94. package/build/esm/build-tokens/_zindex.json +17 -0
  95. package/build/esm/build-tokens/_zindex.json.js +4 -0
  96. package/build/esm/build-tokens/_zindex.json.js.map +1 -0
  97. package/build/esm/build-tokens/assets/icons.json +141 -0
  98. package/build/esm/build-tokens/assets/icons.json.js +4 -0
  99. package/build/esm/build-tokens/assets/icons.json.js.map +1 -0
  100. package/build/esm/build-tokens/assets/icons16.json +153 -0
  101. package/build/esm/build-tokens/assets/icons16.json.js +4 -0
  102. package/build/esm/build-tokens/assets/icons16.json.js.map +1 -0
  103. package/build/esm/build-tokens/assets/logo.json +3 -0
  104. package/build/esm/build-tokens/assets/logo.json.js +4 -0
  105. package/build/esm/build-tokens/assets/logo.json.js.map +1 -0
  106. package/build/esm/build-tokens/visualConfig.d.ts +767 -0
  107. package/build/esm/build-tokens/visualConfig.js +1328 -0
  108. package/build/esm/build-tokens/visualConfig.js.map +1 -0
  109. package/build/esm/scss/themes/dark.scss +111 -0
  110. package/build/esm/scss/themes/light.scss +111 -0
  111. package/build/esm/src/components/Badge/Badge.d.ts +11 -0
  112. package/build/esm/src/components/Badge/Badge.js +57 -0
  113. package/build/esm/src/components/Badge/Badge.js.map +1 -0
  114. package/build/esm/src/components/Box/Box.d.ts +35 -0
  115. package/build/esm/src/components/Box/Box.js +82 -0
  116. package/build/esm/src/components/Box/Box.js.map +1 -0
  117. package/build/esm/src/components/Button/Button.d.ts +33 -0
  118. package/build/esm/src/components/Button/Button.js +282 -0
  119. package/build/esm/src/components/Button/Button.js.map +1 -0
  120. package/build/esm/src/components/Callout/Callout.d.ts +14 -0
  121. package/build/esm/src/components/Callout/Callout.js +96 -0
  122. package/build/esm/src/components/Callout/Callout.js.map +1 -0
  123. package/build/esm/src/components/Card/Card.d.ts +16 -0
  124. package/build/esm/src/components/Card/Card.js +63 -0
  125. package/build/esm/src/components/Card/Card.js.map +1 -0
  126. package/build/esm/src/components/Card/CardBox.d.ts +6 -0
  127. package/build/esm/src/components/Card/CardBox.js +18 -0
  128. package/build/esm/src/components/Card/CardBox.js.map +1 -0
  129. package/build/esm/src/components/Card/CardHeader/CardHeader.d.ts +12 -0
  130. package/build/esm/src/components/Card/CardHeader/CardHeader.js +52 -0
  131. package/build/esm/src/components/Card/CardHeader/CardHeader.js.map +1 -0
  132. package/build/esm/src/components/Collapsible/Collapsible.d.ts +15 -0
  133. package/build/esm/src/components/Collapsible/Collapsible.js +110 -0
  134. package/build/esm/src/components/Collapsible/Collapsible.js.map +1 -0
  135. package/build/esm/src/components/Column/Columns.d.ts +45 -0
  136. package/build/esm/src/components/Column/Columns.js +141 -0
  137. package/build/esm/src/components/Column/Columns.js.map +1 -0
  138. package/build/esm/src/components/Container/Container.d.ts +11 -0
  139. package/build/esm/src/components/Container/Container.js +57 -0
  140. package/build/esm/src/components/Container/Container.js.map +1 -0
  141. package/build/esm/src/components/DataTable/DataTable.d.ts +58 -0
  142. package/build/esm/src/components/DataTable/DataTable.js +180 -0
  143. package/build/esm/src/components/DataTable/DataTable.js.map +1 -0
  144. package/build/esm/src/components/DataTable/TableBody.d.ts +9 -0
  145. package/build/esm/src/components/DataTable/TableBody.js +153 -0
  146. package/build/esm/src/components/DataTable/TableBody.js.map +1 -0
  147. package/build/esm/src/components/DataTable/TableCell.d.ts +15 -0
  148. package/build/esm/src/components/DataTable/TableCell.js +38 -0
  149. package/build/esm/src/components/DataTable/TableCell.js.map +1 -0
  150. package/build/esm/src/components/DataTable/TableHeader.d.ts +9 -0
  151. package/build/esm/src/components/DataTable/TableHeader.js +185 -0
  152. package/build/esm/src/components/DataTable/TableHeader.js.map +1 -0
  153. package/build/esm/src/components/DataTable/index.d.ts +4 -0
  154. package/build/esm/src/components/DataTable/types.d.ts +15 -0
  155. package/build/esm/src/components/DataTable/useDataTableSort.d.ts +14 -0
  156. package/build/esm/src/components/DataTable/useDataTableSort.js +41 -0
  157. package/build/esm/src/components/DataTable/useDataTableSort.js.map +1 -0
  158. package/build/esm/src/components/Divider/Divider.d.ts +6 -0
  159. package/build/esm/src/components/Divider/Divider.js +62 -0
  160. package/build/esm/src/components/Divider/Divider.js.map +1 -0
  161. package/build/esm/src/components/DropdownMenu/DropdownMenu.d.ts +35 -0
  162. package/build/esm/src/components/DropdownMenu/DropdownMenu.js +221 -0
  163. package/build/esm/src/components/DropdownMenu/DropdownMenu.js.map +1 -0
  164. package/build/esm/src/components/DropdownMenu/MenuItem.d.ts +19 -0
  165. package/build/esm/src/components/DropdownMenu/MenuItem.js +97 -0
  166. package/build/esm/src/components/DropdownMenu/MenuItem.js.map +1 -0
  167. package/build/esm/src/components/Form/Checkbox/Checkbox.d.ts +15 -0
  168. package/build/esm/src/components/Form/Checkbox/Checkbox.js +140 -0
  169. package/build/esm/src/components/Form/Checkbox/Checkbox.js.map +1 -0
  170. package/build/esm/src/components/Form/FormErrorMessages/FormErrorMessages.d.ts +6 -0
  171. package/build/esm/src/components/Form/FormErrorMessages/FormErrorMessages.js +22 -0
  172. package/build/esm/src/components/Form/FormErrorMessages/FormErrorMessages.js.map +1 -0
  173. package/build/esm/src/components/Form/FormField/FormField.d.ts +15 -0
  174. package/build/esm/src/components/Form/FormField/FormField.js +52 -0
  175. package/build/esm/src/components/Form/FormField/FormField.js.map +1 -0
  176. package/build/esm/src/components/Form/FormFieldGroup/FormFieldGroup.d.ts +11 -0
  177. package/build/esm/src/components/Form/FormFieldGroup/FormFieldGroup.js +49 -0
  178. package/build/esm/src/components/Form/FormFieldGroup/FormFieldGroup.js.map +1 -0
  179. package/build/esm/src/components/Form/FormLabelText/FormLabelText.d.ts +7 -0
  180. package/build/esm/src/components/Form/FormLabelText/FormLabelText.js +36 -0
  181. package/build/esm/src/components/Form/FormLabelText/FormLabelText.js.map +1 -0
  182. package/build/esm/src/components/Form/Input/Input.d.ts +54 -0
  183. package/build/esm/src/components/Form/Input/Input.js +178 -0
  184. package/build/esm/src/components/Form/Input/Input.js.map +1 -0
  185. package/build/esm/src/components/Form/Input/index.d.ts +2 -0
  186. package/build/esm/src/components/Form/PasswordInput/PasswordInput.d.ts +53 -0
  187. package/build/esm/src/components/Form/PasswordInput/PasswordInput.js +218 -0
  188. package/build/esm/src/components/Form/PasswordInput/PasswordInput.js.map +1 -0
  189. package/build/esm/src/components/Form/PasswordInput/index.d.ts +2 -0
  190. package/build/esm/src/components/Form/Radio/Radio.d.ts +14 -0
  191. package/build/esm/src/components/Form/Radio/Radio.js +131 -0
  192. package/build/esm/src/components/Form/Radio/Radio.js.map +1 -0
  193. package/build/esm/src/components/Form/RadioButton/RadioButton.d.ts +17 -0
  194. package/build/esm/src/components/Form/RadioButton/RadioButton.js +117 -0
  195. package/build/esm/src/components/Form/RadioButton/RadioButton.js.map +1 -0
  196. package/build/esm/src/components/Form/SegmentedControl/SegmentedControl.d.ts +31 -0
  197. package/build/esm/src/components/Form/SegmentedControl/SegmentedControl.js +124 -0
  198. package/build/esm/src/components/Form/SegmentedControl/SegmentedControl.js.map +1 -0
  199. package/build/esm/src/components/Form/SegmentedControl/SegmentedControlOption.d.ts +8 -0
  200. package/build/esm/src/components/Form/SegmentedControl/SegmentedControlOption.js +210 -0
  201. package/build/esm/src/components/Form/SegmentedControl/SegmentedControlOption.js.map +1 -0
  202. package/build/esm/src/components/Form/Select/Select.d.ts +23 -0
  203. package/build/esm/src/components/Form/Select/Select.js +284 -0
  204. package/build/esm/src/components/Form/Select/Select.js.map +1 -0
  205. package/build/esm/src/components/Form/Textarea/Textarea.d.ts +26 -0
  206. package/build/esm/src/components/Form/Textarea/Textarea.js +86 -0
  207. package/build/esm/src/components/Form/Textarea/Textarea.js.map +1 -0
  208. package/build/esm/src/components/Form/Toggle/Toggle.d.ts +18 -0
  209. package/build/esm/src/components/Form/Toggle/Toggle.js +172 -0
  210. package/build/esm/src/components/Form/Toggle/Toggle.js.map +1 -0
  211. package/build/esm/src/components/Form/ToggleButton/ToggleButton.d.ts +15 -0
  212. package/build/esm/src/components/Form/ToggleButton/ToggleButton.js +136 -0
  213. package/build/esm/src/components/Form/ToggleButton/ToggleButton.js.map +1 -0
  214. package/build/esm/src/components/Icon/Icon.d.ts +22 -0
  215. package/build/esm/src/components/Icon/Icon.js +104 -0
  216. package/build/esm/src/components/Icon/Icon.js.map +1 -0
  217. package/build/esm/src/components/Inline/Inline.d.ts +30 -0
  218. package/build/esm/src/components/Inline/Inline.js +107 -0
  219. package/build/esm/src/components/Inline/Inline.js.map +1 -0
  220. package/build/esm/src/components/Link/Link.d.ts +14 -0
  221. package/build/esm/src/components/Link/Link.js +70 -0
  222. package/build/esm/src/components/Link/Link.js.map +1 -0
  223. package/build/esm/src/components/LoadingSpinner/LoadingSpinner.d.ts +11 -0
  224. package/build/esm/src/components/LoadingSpinner/LoadingSpinner.js +78 -0
  225. package/build/esm/src/components/LoadingSpinner/LoadingSpinner.js.map +1 -0
  226. package/build/esm/src/components/Logo/Logo.d.ts +8 -0
  227. package/build/esm/src/components/Logo/Logo.js +38 -0
  228. package/build/esm/src/components/Logo/Logo.js.map +1 -0
  229. package/build/esm/src/components/MediaItem/MediaItem.d.ts +14 -0
  230. package/build/esm/src/components/MediaItem/MediaItem.js +114 -0
  231. package/build/esm/src/components/MediaItem/MediaItem.js.map +1 -0
  232. package/build/esm/src/components/MediaViewerBar/MediaViewerBar.d.ts +7 -0
  233. package/build/esm/src/components/MediaViewerBar/MediaViewerBar.js +67 -0
  234. package/build/esm/src/components/MediaViewerBar/MediaViewerBar.js.map +1 -0
  235. package/build/esm/src/components/Notification/ExpandedContent.d.ts +2 -0
  236. package/build/esm/src/components/Notification/Notification.d.ts +16 -0
  237. package/build/esm/src/components/Notification/Notification.js +102 -0
  238. package/build/esm/src/components/Notification/Notification.js.map +1 -0
  239. package/build/esm/src/components/Pagination/Pagination.d.ts +17 -0
  240. package/build/esm/src/components/Pagination/Pagination.js +86 -0
  241. package/build/esm/src/components/Pagination/Pagination.js.map +1 -0
  242. package/build/esm/src/components/Patterns/ButtonGroup/ButtonGroup.d.ts +14 -0
  243. package/build/esm/src/components/Patterns/ButtonGroup/ButtonGroup.js +46 -0
  244. package/build/esm/src/components/Patterns/ButtonGroup/ButtonGroup.js.map +1 -0
  245. package/build/esm/src/components/Patterns/Modal/Modal.d.ts +28 -0
  246. package/build/esm/src/components/Patterns/Modal/Modal.js +214 -0
  247. package/build/esm/src/components/Patterns/Modal/Modal.js.map +1 -0
  248. package/build/esm/src/components/PictogramButton/PictogramButton.d.ts +15 -0
  249. package/build/esm/src/components/PictogramButton/PictogramButton.js +143 -0
  250. package/build/esm/src/components/PictogramButton/PictogramButton.js.map +1 -0
  251. package/build/esm/src/components/Portal/Portal.d.ts +7 -0
  252. package/build/esm/src/components/Portal/Portal.js +16 -0
  253. package/build/esm/src/components/Portal/Portal.js.map +1 -0
  254. package/build/esm/src/components/ProgressBar/ProgressBar.d.ts +15 -0
  255. package/build/esm/src/components/ProgressBar/ProgressBar.js +33 -0
  256. package/build/esm/src/components/ProgressBar/ProgressBar.js.map +1 -0
  257. package/build/esm/src/components/RoundButton/RoundButton.d.ts +12 -0
  258. package/build/esm/src/components/RoundButton/RoundButton.js +133 -0
  259. package/build/esm/src/components/RoundButton/RoundButton.js.map +1 -0
  260. package/build/esm/src/components/SearchResult/SearchResult.d.ts +43 -0
  261. package/build/esm/src/components/SearchResult/SearchResult.js +178 -0
  262. package/build/esm/src/components/SearchResult/SearchResult.js.map +1 -0
  263. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBar.d.ts +28 -0
  264. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBar.js +104 -0
  265. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBar.js.map +1 -0
  266. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBarUtil.d.ts +10 -0
  267. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBarUtil.js +40 -0
  268. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBarUtil.js.map +1 -0
  269. package/build/esm/src/components/ShadowWebComponent/ShadowWebComponent.d.ts +13 -0
  270. package/build/esm/src/components/Stack/Stack.d.ts +20 -0
  271. package/build/esm/src/components/Stack/Stack.js +74 -0
  272. package/build/esm/src/components/Stack/Stack.js.map +1 -0
  273. package/build/esm/src/components/SubThemeProvider/SubThemeProvider.d.ts +8 -0
  274. package/build/esm/src/components/SubThemeProvider/SubThemeProvider.js +50 -0
  275. package/build/esm/src/components/SubThemeProvider/SubThemeProvider.js.map +1 -0
  276. package/build/esm/src/components/Tabs/Tabs.d.ts +28 -0
  277. package/build/esm/src/components/Tabs/Tabs.js +130 -0
  278. package/build/esm/src/components/Tabs/Tabs.js.map +1 -0
  279. package/build/esm/src/components/Tag/Tag.d.ts +18 -0
  280. package/build/esm/src/components/Tag/Tag.js +84 -0
  281. package/build/esm/src/components/Tag/Tag.js.map +1 -0
  282. package/build/esm/src/components/Tooltip/Tooltip.d.ts +23 -0
  283. package/build/esm/src/components/Tooltip/Tooltip.js +269 -0
  284. package/build/esm/src/components/Tooltip/Tooltip.js.map +1 -0
  285. package/build/esm/src/components/Tooltip/utils.d.ts +11 -0
  286. package/build/esm/src/components/Tooltip/utils.js +75 -0
  287. package/build/esm/src/components/Tooltip/utils.js.map +1 -0
  288. package/build/esm/src/components/Typography/Header/Header.d.ts +34 -0
  289. package/build/esm/src/components/Typography/Header/Header.js +122 -0
  290. package/build/esm/src/components/Typography/Header/Header.js.map +1 -0
  291. package/build/esm/src/components/Typography/StyledText/StyledText.d.ts +11 -0
  292. package/build/esm/src/components/Typography/StyledText/StyledText.js +161 -0
  293. package/build/esm/src/components/Typography/StyledText/StyledText.js.map +1 -0
  294. package/build/esm/src/components/Typography/Text/Text.d.ts +21 -0
  295. package/build/esm/src/components/Typography/Text/Text.js +65 -0
  296. package/build/esm/src/components/Typography/Text/Text.js.map +1 -0
  297. package/build/esm/src/components/Typography/TextClamped/TextClamped.d.ts +10 -0
  298. package/build/esm/src/components/Typography/TextClamped/TextClamped.js +47 -0
  299. package/build/esm/src/components/Typography/TextClamped/TextClamped.js.map +1 -0
  300. package/build/esm/src/components/VirtualScrollList/VirtualScrollList.d.ts +11 -0
  301. package/build/esm/src/components/VirtualScrollList/VirtualScrollList.js +110 -0
  302. package/build/esm/src/components/VirtualScrollList/VirtualScrollList.js.map +1 -0
  303. package/build/esm/src/components/VirtualScrollList/VirtualScrollListReducer.d.ts +36 -0
  304. package/build/esm/src/components/VirtualScrollList/VirtualScrollListReducer.js +130 -0
  305. package/build/esm/src/components/VirtualScrollList/VirtualScrollListReducer.js.map +1 -0
  306. package/build/esm/src/index.d.ts +53 -0
  307. package/build/esm/src/index.js +60 -0
  308. package/build/esm/src/index.js.map +1 -0
  309. package/build/esm/src/shared/ScreenReaderText.d.ts +5 -0
  310. package/build/esm/src/shared/ScreenReaderText.js +21 -0
  311. package/build/esm/src/shared/ScreenReaderText.js.map +1 -0
  312. package/build/esm/src/shared/flattenChildren.d.ts +11 -0
  313. package/build/esm/src/shared/flattenChildren.js +32 -0
  314. package/build/esm/src/shared/flattenChildren.js.map +1 -0
  315. package/build/esm/src/shared/informDeprecation.d.ts +1 -0
  316. package/build/esm/src/shared/informDeprecation.js +11 -0
  317. package/build/esm/src/shared/informDeprecation.js.map +1 -0
  318. package/build/esm/src/shared/mediaQueries.d.ts +14 -0
  319. package/build/esm/src/shared/mediaQueries.js +66 -0
  320. package/build/esm/src/shared/mediaQueries.js.map +1 -0
  321. package/build/esm/src/shared/replaceDeprecated.d.ts +1 -0
  322. package/build/esm/src/shared/useAutoPosition.d.ts +5 -0
  323. package/build/esm/src/shared/useAutoPosition.js +41 -0
  324. package/build/esm/src/shared/useAutoPosition.js.map +1 -0
  325. package/build/esm/src/shared/useDocument.d.ts +1 -0
  326. package/build/esm/src/shared/useDocument.js +6 -0
  327. package/build/esm/src/shared/useDocument.js.map +1 -0
  328. package/build/esm/src/shared/useHover.d.ts +2 -0
  329. package/build/esm/src/shared/useHover.js +25 -0
  330. package/build/esm/src/shared/useHover.js.map +1 -0
  331. package/build/esm/src/shared/useKeyboard.d.ts +17 -0
  332. package/build/esm/src/shared/useKeyboard.js +42 -0
  333. package/build/esm/src/shared/useKeyboard.js.map +1 -0
  334. package/build/esm/src/shared/useOnEscapePress.d.ts +2 -0
  335. package/build/esm/src/shared/useOnEscapePress.js +51 -0
  336. package/build/esm/src/shared/useOnEscapePress.js.map +1 -0
  337. package/build/esm/src/shared/useOutsideClick.d.ts +11 -0
  338. package/build/esm/src/shared/useOutsideClick.js +32 -0
  339. package/build/esm/src/shared/useOutsideClick.js.map +1 -0
  340. package/build/esm/src/shared/useWindow.d.ts +1 -0
  341. package/build/esm/src/shared/useWindow.js +6 -0
  342. package/build/esm/src/shared/useWindow.js.map +1 -0
  343. package/build/esm/src/types/index.d.ts +57 -0
  344. package/package.json +2 -2
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icons.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
@@ -0,0 +1,153 @@
1
+ {
2
+ "alert-circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <circle cx=\"8\" cy=\"8\" r=\"7\" stroke=\"currentColor\" stroke-width=\"2\" />\n <circle cx=\"8\" cy=\"11\" r=\"1\" fill=\"currentColor\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M8 5v3\" />\n</svg>",
3
+ "alert-triangle": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M6.854 1.691L1.18 11.846c-.239.442-.24.986-.004 1.43.236.442.673.718 1.15.724h11.349a1.328 1.328 0 001.15-.725 1.526 1.526 0 00-.005-1.43L9.146 1.692C8.903 1.262 8.468 1 8 1s-.903.262-1.146.691z\"\n clip-rule=\"evenodd\" />\n <g fill=\"currentColor\">\n <path d=\"M9 6a1 1 0 00-2 0zM7 8a1 1 0 002 0zm0-2v2h2V6z\" />\n <rect width=\"2\" height=\"2\" x=\"7\" y=\"10\" rx=\"1\" />\n </g>\n</svg>",
4
+ "align-left": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\">\n <path d=\"M3 8h7M3 12h10M3 4h11\" />\n </g>\n</svg>",
5
+ "apple": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M11.166 0c.143.972-.253 1.924-.774 2.598-.559.722-1.52 1.28-2.453 1.252-.17-.93.265-1.89.796-2.534C9.316.605 10.313.06 11.165 0zm2.8 13.679c.481-.737.66-1.108 1.034-1.94-2.714-1.032-3.149-4.89-.463-6.37-.82-1.028-1.97-1.624-3.057-1.624-.783 0-1.32.205-1.807.39-.406.155-.779.297-1.232.297-.49 0-.923-.155-1.377-.318-.5-.18-1.023-.367-1.673-.367-1.22 0-2.517.745-3.34 2.02-1.157 1.793-.96 5.166.916 8.039.671 1.028 1.567 2.184 2.739 2.194.486.005.81-.14 1.16-.297.4-.18.836-.375 1.59-.38.758-.004 1.187.194 1.583.376.34.157.657.303 1.14.298 1.172-.01 2.117-1.29 2.788-2.318z\"\n clip-rule=\"evenodd\" />\n</svg>",
6
+ "arrow-down": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-down\"><line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"></line><polyline points=\"19 12 12 19 5 12\"></polyline></svg>",
7
+ "arrow-left": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\">\n <path stroke-linejoin=\"bevel\" d=\"M4 8h10\" />\n <path stroke-linejoin=\"round\" d=\"M6 12L2 8l4-4\" />\n </g>\n</svg>",
8
+ "arrow-right": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\">\n <path stroke-linejoin=\"bevel\" d=\"M2 8h10\" />\n <path stroke-linejoin=\"round\" d=\"M10 4l4 4-4 4\" />\n </g>\n</svg>",
9
+ "arrow-up": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-up\"><line x1=\"12\" y1=\"19\" x2=\"12\" y2=\"5\"></line><polyline points=\"5 12 12 5 19 12\"></polyline></svg>",
10
+ "article": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path d=\"M5 5h6M5 8h4M5 11h5\" />\n <rect width=\"12\" height=\"14\" x=\"2\" y=\"1\" rx=\"1\" />\n </g>\n</svg>",
11
+ "auditor": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <circle cx=\"4\" cy=\"5\" r=\"3\" stroke=\"currentColor\" stroke-width=\"2\" />\n <circle cx=\"12\" cy=\"5\" r=\"3\" stroke=\"currentColor\" stroke-width=\"2\" />\n <g fill=\"currentColor\">\n <path\n d=\"M7 6h2V4H7zM14.807 10.79A.667.667 0 0116 11.2c0 2.205-1.953 4.067-4.267 4.067-1.562 0-2.957-.758-3.734-1.943-.78 1.188-2.172 1.943-3.732 1.943C1.954 15.267 0 13.405 0 11.2a.667.667 0 011.193-.41c.19.244.719.81 1.54.81.688 0 1.337-.343 1.615-.853.424-.742 1.2-1.214 1.985-1.214A2.32 2.32 0 018 10.25a2.322 2.322 0 011.667-.716c.785 0 1.562.472 1.978 1.204.286.52.935.863 1.622.863.822 0 1.351-.566 1.54-.81z\" />\n </g>\n</svg>",
12
+ "bar-chart-2": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\"\n d=\"M5 10a1 1 0 00-2 0zm4-7a1 1 0 00-2 0zm4 4a1 1 0 10-2 0zm-8 7v-4H3v4zm4 0V3H7v11zm4 0V7h-2v7z\" />\n</svg>",
13
+ "bell": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M12 5.6c0-.955-.421-1.87-1.172-2.546C10.078 2.38 9.061 2 8 2s-2.078.38-2.828 1.054C4.422 3.73 4 4.645 4 5.6 4 9.8 2 11 2 11h12s-2-1.2-2-5.4zM9.153 14a1.333 1.333 0 01-2.306 0\" />\n </g>\n</svg>",
14
+ "bell-curve": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\"><path fill=\"#1A1C1C\" d=\"M0 12.333v2h.915v-.001a3.46 3.46 0 0 0 1.91-.605c.558-.386.967-.91 1.28-1.465.593-1.053.937-2.41 1.24-3.6l.02-.083c.327-1.29.616-2.394 1.066-3.191.216-.382.442-.639.677-.801.223-.153.5-.254.892-.254.391 0 .669.1.892.254.235.162.46.419.677.801.45.797.739 1.902 1.066 3.191l.02.083c.303 1.19.647 2.547 1.24 3.6.313.555.722 1.08 1.28 1.465a3.46 3.46 0 0 0 1.91.605v.001H16v-2h-.803c-.388 0-.664-.1-.886-.252-.234-.162-.458-.419-.674-.801-.449-.797-.736-1.903-1.064-3.193l-.018-.073c-.303-1.193-.648-2.554-1.245-3.61-.314-.556-.725-1.08-1.285-1.465-.573-.394-1.25-.606-2.025-.606-.775 0-1.452.212-2.025.606-.56.385-.97.91-1.285 1.465-.597 1.056-.942 2.417-1.245 3.61l-.018.073c-.328 1.29-.615 2.396-1.064 3.193-.216.382-.44.639-.674.8-.222.153-.498.253-.886.253H0Z\"/></svg>",
15
+ "book": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M2 12c0-.552.77-1 1.719-1H13\" />\n <path d=\"M3.875 1H14v14H3.875C2.839 15 2 14.217 2 13.25V2.75C2 1.783 2.84 1 3.875 1z\" clip-rule=\"evenodd\" />\n </g>\n</svg>",
16
+ "bookmark": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M13 14l-5-3.333L3 14V3.333C3 2.597 3.64 2 4.429 2h7.142C12.361 2 13 2.597 13 3.333V14z\" clip-rule=\"evenodd\" />\n</svg>",
17
+ "book-open": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M1 3h4.2c.743 0 1.455.28 1.98.781S8 4.959 8 5.667V15c0-.53-.221-1.04-.615-1.414A2.154 2.154 0 005.9 13H1zM15 3h-4.2c-.743 0-1.455.28-1.98.781S8 4.959 8 5.667V15c0-.53.221-1.04.615-1.414A2.154 2.154 0 0110.1 13H15z\" />\n </g>\n</svg>",
18
+ "box": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M8.623 1.136l5.6 2.6c.476.22.777.671.777 1.165v6.197c0 .493-.301.944-.777 1.163l-5.6 2.602a1.496 1.496 0 01-1.253 0l-5.6-2.601c-.475-.223-.774-.676-.77-1.17V4.9c0-.494.301-.945.777-1.164l5.6-2.601a1.496 1.496 0 011.246 0z\"\n clip-rule=\"evenodd\" />\n <path fill=\"currentColor\"\n d=\"M8 7.5l-.394.92a1 1 0 00.788 0zM.606 5.42l7 3 .788-1.84-7-3zm7.788 3l7-3-.788-1.84-7 3z\" />\n <path stroke=\"currentColor\" stroke-width=\"2\" d=\"M8 8v7\" />\n</svg>",
19
+ "bubble": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4 2a1 1 0 00-1 1v3.222L1.638 7.67c-.091.097-.236.17-.255.3a.206.206 0 000 .06c.02.13.164.203.255.3L3 9.778V13a1 1 0 001 1h10a1 1 0 001-1V3a1 1 0 00-1-1z\" />\n</svg>",
20
+ "bubble-check": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path d=\"M4 2a1 1 0 00-1 1v3.222L1.5 7.817a.2.2 0 000 .366L3 9.778V13a1 1 0 001 1h10a1 1 0 001-1V3a1 1 0 00-1-1z\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12 6l-4.125 4L6 8.182\" />\n </g>\n</svg>",
21
+ "bubble-image": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4 2a1 1 0 00-1 1v3.222L1.638 7.67c-.091.097-.236.17-.255.3a.206.206 0 000 .06c.02.13.164.203.255.3L3 9.778V13a1 1 0 001 1h10a1 1 0 001-1V3a1 1 0 00-1-1z\" />\n <circle cx=\"10.5\" cy=\"5.5\" r=\"1.5\" fill=\"currentColor\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 11l3-3 3 3 2-1.5 4 3.5\" />\n</svg>",
22
+ "bubble-pill": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-width=\"2\"\n d=\"M4 2a1 1 0 00-1 1v3.222L1.5 7.817a.2.2 0 000 .366L3 9.778V13a1 1 0 001 1h10a1 1 0 001-1V3a1 1 0 00-1-1z\" />\n <path stroke=\"currentColor\" stroke-width=\"2\"\n d=\"M11.488 5.568A1.737 1.737 0 0010.16 5c-.472.01-.937.197-1.306.528-.016.014-.022.032-.035.047-.013.01-.029.015-.041.027l-2.19 2.176c-.01.01-.014.023-.023.033-.01.009-.023.012-.033.021-.7.697-.71 1.838-.02 2.6A1.73 1.73 0 007.809 11c.466 0 .945-.176 1.34-.528.015-.014.022-.033.035-.048.013-.011.028-.015.04-.027l2.19-2.176c.01-.01.014-.023.022-.032.01-.01.023-.012.033-.022.701-.696.71-1.837.02-2.599z\" />\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M10.314 9.314L8 7l-.314-.314-1.1 1.092-.012.018a.086.086 0 01-.01.015.089.089 0 01-.015.01.078.078 0 00-.018.011c-.7.697-.71 1.838-.02 2.6A1.73 1.73 0 007.809 11c.466 0 .945-.176 1.34-.528a.13.13 0 00.02-.027l.015-.021a.116.116 0 01.018-.012c.008-.004.015-.008.022-.015z\"\n clip-rule=\"evenodd\" />\n</svg>",
23
+ "bubble-text": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\"\n d=\"M4 2a1 1 0 00-1 1v3.222L1.638 7.67c-.091.097-.236.17-.255.3a.206.206 0 000 .06c.02.13.164.203.255.3L3 9.778V13a1 1 0 001 1h10a1 1 0 001-1V3a1 1 0 00-1-1z\" />\n <g stroke-linecap=\"square\" stroke-linejoin=\"bevel\">\n <path d=\"M7 6h4M7 10h4\" />\n </g>\n </g>\n</svg>",
24
+ "bulb": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path\n d=\"M8 1a5 5 0 00-3.384 8.681c.232.213.384.504.384.819v2.086a1 1 0 00.293.707l1.414 1.414a1 1 0 00.707.293h1.172a1 1 0 00.707-.293l1.414-1.414a1 1 0 00.293-.707V10.5c0-.315.152-.606.384-.819A5 5 0 008 1z\" />\n <g stroke-linecap=\"round\" stroke-linejoin=\"round\">\n <path d=\"M6.5 6h3M8 7v4.5M5 12h6\" />\n </g>\n </g>\n</svg>",
25
+ "calculator": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-width=\"2\" d=\"M2 2a1 1 0 011-1h10a1 1 0 011 1v12a1 1 0 01-1 1H3a1 1 0 01-1-1z\" />\n <g fill=\"currentColor\">\n <path fill-rule=\"evenodd\"\n d=\"M4 6a1 1 0 112 0 1 1 0 01-2 0zm6 0a1 1 0 112 0 1 1 0 01-2 0zM8 8a1 1 0 100 2 1 1 0 000-2zm3 0a1 1 0 100 2 1 1 0 000-2zM8 5a1 1 0 100 2 1 1 0 000-2zM5 8a1 1 0 100 2 1 1 0 000-2zm5 4a1 1 0 112 0 1 1 0 01-2 0zm-5-1a1 1 0 100 2h3a1 1 0 100-2z\"\n clip-rule=\"evenodd\" />\n <path d=\"M2 1h12v3H2z\" />\n </g>\n</svg>",
26
+ "charts": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M2 7s.91.008 1 0a.5.5 0 00.414-.296l1.1-2.583a.5.5 0 01.933.052l2.051 4.478a.5.5 0 00.966-.048L10.528 2.4a.5.5 0 01.971-.035L12.5 6.5c.03.105 0 .5 1 .5h.5\" />\n <g fill=\"currentColor\">\n <path\n d=\"M3 13a1 1 0 10-2 0zm-2 0v2h2v-2zM9 13a1 1 0 10-2 0zm-2 0v2h2v-2zM15 13a1 1 0 10-2 0zm-2 0v2h2v-2zM6 11a1 1 0 10-2 0zm-2 0v4h2v-4zM12 11a1 1 0 10-2 0zm-2 0v4h2v-4z\" />\n </g>\n</svg>",
27
+ "check": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M14 4l-8.25 8L2 8.364\" />\n</svg>",
28
+ "check-circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M14 7.895V8.5a6.5 6.5 0 11-3.854-5.941\" />\n <path d=\"M14.667 2.667L7.333 10l-2-2\" />\n </g>\n</svg>",
29
+ "check-square": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path\n d=\"M7.5 10l-.707.707a1 1 0 001.46-.048zM4.293 8.207l2.5 2.5 1.414-1.414-2.5-2.5zm3.96 2.451l7-8-1.506-1.316-7 8zM13 8v4.667h2V8zm0 4.667c0 .184-.15.333-.333.333v2A2.333 2.333 0 0015 12.667zm-.333.333H3.333v2h9.334zm-9.334 0A.333.333 0 013 12.667H1A2.333 2.333 0 003.333 15zM3 12.667V3.333H1v9.334zm0-9.334C3 3.15 3.15 3 3.333 3V1A2.333 2.333 0 001 3.333zM3.333 3H10V1H3.333z\" />\n </g>\n</svg>",
30
+ "checkmark-circle-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M8 16A8 8 0 108 0a8 8 0 000 16zm4.737-10.324a1 1 0 00-1.474-1.352L6.5 9.52 4.737 7.597a1 1 0 00-1.474 1.351l2.5 2.728a1 1 0 001.474 0z\"\n clip-rule=\"evenodd\" />\n</svg>",
31
+ "chevron-down": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 6l4 4 4-4\" />\n</svg>",
32
+ "chevrons-down": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevrons-down\"><polyline points=\"7 13 12 18 17 13\"></polyline><polyline points=\"7 6 12 11 17 6\"></polyline></svg>",
33
+ "chevron-left": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10 12L6 8l4-4\" />\n</svg>",
34
+ "chevron-right": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 12l4-4-4-4\" />\n</svg>",
35
+ "chevron-up": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 10L8 6l-4 4\" />\n</svg>",
36
+ "chevrons-up": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevrons-up\"><polyline points=\"17 11 12 6 7 11\"></polyline><polyline points=\"17 18 12 13 7 18\"></polyline></svg>",
37
+ "circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <circle cx=\"8\" cy=\"8\" r=\"7\" stroke=\"currentColor\" stroke-width=\"2\" />\n</svg>",
38
+ "clipboard": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M10.5 2h1.25c.69 0 1.25.597 1.25 1.333v9.334c0 .736-.56 1.333-1.25 1.333h-7.5C3.56 14 3 13.403 3 12.667V3.333C3 2.597 3.56 2 4.25 2H5.5\" />\n <path stroke-linecap=\"round\" d=\"M6 2a1 1 0 011-1h2a1 1 0 011 1v1a1 1 0 01-1 1H7a1 1 0 01-1-1z\"\n clip-rule=\"evenodd\" />\n </g>\n</svg>",
39
+ "coffee": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M11 6h.8c.849 0 1.663.316 2.263.879.6.562.937 1.325.937 2.121s-.337 1.559-.937 2.121c-.6.563-1.414.879-2.263.879H11M1 6h10v6.23c0 .735-.263 1.44-.732 1.959-.47.52-1.105.811-1.768.811h-5c-.663 0-1.299-.292-1.768-.811S1 12.965 1 12.23zM3 1v2M6 1v2M9 1v2\" />\n </g>\n</svg>",
40
+ "collapse": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"bevel\" stroke-width=\"2\" d=\"M3 6h10M3 10h10\" />\n <g fill=\"currentColor\">\n <path d=\"M8 12l3 3H5zM8 4L5 1h6z\" />\n </g>\n</svg>",
41
+ "compass": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n clip-rule=\"evenodd\">\n <path d=\"M8 15A7 7 0 108 1a7 7 0 000 14z\" />\n <path d=\"M11 5L9.5 9.5 5 11l1.5-4.5z\" />\n </g>\n</svg>",
42
+ "copy": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path stroke-linecap=\"round\" d=\"M6 8a2 2 0 012-2h5a2 2 0 012 2v5a2 2 0 01-2 2H8a2 2 0 01-2-2z\"\n clip-rule=\"evenodd\" />\n <path d=\"M3.077 10h-.692C1.62 10 1 9.38 1 8.615v-6.23C1 1.62 1.62 1 2.385 1h6.23C9.38 1 10 1.62 10 2.385v.692\" />\n </g>\n</svg>",
43
+ "corner-down-left": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M7 14l-4-4 4-4\" />\n <path d=\"M13 3v4.333A2.667 2.667 0 0110.333 10H4\" />\n </g>\n</svg>",
44
+ "corner-down-right": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path\n d=\"M9.707 5.293a1 1 0 00-1.414 1.414zM13 10l.707.707a1 1 0 000-1.414zm-4.707 3.293a1 1 0 101.414 1.414zm0-6.586l4 4 1.414-1.414-4-4zm4 2.586l-4 4 1.414 1.414 4-4z\" />\n <path\n d=\"M2 3a1 1 0 112 0zm10 6a1 1 0 110 2zM4 3v4.333H2V3zm0 4.333C4 8.253 4.746 9 5.667 9v2A3.667 3.667 0 012 7.333zM5.667 9H12v2H5.667z\" />\n </g>\n</svg>",
45
+ "course": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8 2L1 5.5 8 9l7-3.5z\" clip-rule=\"evenodd\" />\n <path stroke-linejoin=\"round\" d=\"M4 7v5.511L8 14.5l4-1.988V7\" />\n <path stroke-linecap=\"round\" d=\"M15 5.5v5\" />\n </g>\n</svg>",
46
+ "dot": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <circle cx=\"8\" cy=\"8\" r=\"4\" fill=\"currentColor\" />\n</svg>",
47
+ "download": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path stroke-linejoin=\"round\" d=\"M2 8v3.6c0 .773.56 1.4 1.25 1.4h9.5c.69 0 1.25-.627 1.25-1.4V8\" />\n <path stroke-linejoin=\"bevel\" d=\"M8 8V1\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M11 6L8 9 5 6\" />\n </g>\n</svg>",
48
+ "edit-3": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 16 16\">\n <path stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 14h7\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M10.45 3.438a1.494 1.494 0 112.113 2.112l-7.746 7.746L2 14l.704-2.817 7.746-7.745z\" />\n</svg>",
49
+ "edit-3-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 14h7\" />\n <path\n d=\"M11.932 2c-.529 0-1.036.21-1.41.584L1.776 11.33a.5.5 0 00-.131.232l-.623 2.493a.7.7 0 00.848.85l2.494-.624a.5.5 0 00.232-.132l8.746-8.745A1.994 1.994 0 0011.932 2z\" />\n</svg>",
50
+ "edit": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path stroke-linecap=\"square\"\n d=\"M7 2H3.333A1.333 1.333 0 002 3.333v9.334A1.333 1.333 0 003.333 14h9.334A1.334 1.334 0 0014 12.667V9\" />\n <path stroke-linecap=\"round\" d=\"M12.692 1.396a1.352 1.352 0 011.912 1.912L8.549 9.363 6 10l.637-2.55z\" />\n </g>\n</svg>",
51
+ "edit-square": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M7.333 2.667H2.666A1.333 1.333 0 001.333 4v9.334a1.333 1.333 0 001.333 1.333H12a1.334 1.334 0 001.333-1.333V8.667\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M12.333 1.667a1.414 1.414 0 112 2L8 10.001l-2.667.666L6 8l6.333-6.333z\" />\n</svg>",
52
+ "education": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 16 16\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 2L1 5.5 8 9l7-3.5L8 2z\"\n clip-rule=\"evenodd\" />\n <path stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 7v5.511L8 14.5l4-1.989V7\" />\n <path stroke-linecap=\"round\" stroke-width=\"2\" d=\"M15 5.5v5\" />\n</svg>",
53
+ "expand": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"bevel\" stroke-width=\"2\" d=\"M3 6h10M3 10h10\" />\n <g fill=\"currentColor\">\n <path d=\"M8 16l-3-3h6zM8 0l3 3H5z\" />\n </g>\n</svg>",
54
+ "external-link": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M13 9v2.667c0 .736-.597 1.333-1.333 1.333H4.333A1.333 1.333 0 013 11.667V4.333C3 3.597 3.597 3 4.333 3H7\" />\n <g stroke-linecap=\"round\">\n <path d=\"M10 2h4v4M8 8l6-6\" />\n </g>\n </g>\n</svg>",
55
+ "eye": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n clip-rule=\"evenodd\">\n <path d=\"M1 8s2.545-5 7-5 7 5 7 5-2.546 5-7 5c-4.455 0-7-5-7-5z\" />\n <path d=\"M8 10a2 2 0 100-4 2 2 0 000 4z\" />\n </g>\n</svg>",
56
+ "eye-off": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M12.3 12.57l2.286 2.344L16 13.5 2.914.086 1.5 1.5l2.013 2.063c-.537.396-1.007.827-1.407 1.246a13.327 13.327 0 00-1.65 2.135 2 2 0 000 2.112c.053.084.111.176.176.275.332.505.826 1.18 1.474 1.86C3.387 12.531 5.381 14 8 14c1.707 0 3.148-.623 4.3-1.43zm-1.42-1.455l-.868-.89a3 3 0 01-4.187-4.292l-.899-.92c-.509.345-.968.753-1.373 1.177A11.328 11.328 0 002.155 8c.044.07.093.148.148.232.284.432.705 1.007 1.25 1.577C4.66 10.97 6.165 12 8 12c1.078 0 2.043-.355 2.88-.884zM7.225 7.368A1 1 0 008.613 8.79zm-.016-5.323l2.146 2.146c1.231.35 2.271 1.14 3.092 2A11.335 11.335 0 0113.845 8a10.71 10.71 0 01-.269.412l1.435 1.435a13.598 13.598 0 00.533-.791 2 2 0 000-2.112 13.314 13.314 0 00-1.65-2.135C12.613 3.467 10.619 2 8 2c-.27 0-.534.017-.79.046z\"\n clip-rule=\"evenodd\" />\n</svg>",
57
+ "facebook": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"#1877f2\"\n d=\"M16 8a8 8 0 10-9.25 7.903v-5.59H4.719V8H6.75V6.238c0-2.006 1.194-3.113 3.022-3.113.875 0 1.79.156 1.79.156V5.25h-1.008c-.994 0-1.304.617-1.304 1.25V8h2.219l-.355 2.313H9.25v5.59A8.002 8.002 0 0016 8z\" />\n <path fill=\"#fff\"\n d=\"M11.114 10.313L11.47 8H9.25V6.5c0-.633.31-1.25 1.304-1.25h1.009V3.281s-.916-.156-1.791-.156c-1.828 0-3.022 1.107-3.022 3.112V8H4.719v2.313H6.75v5.59c.828.13 1.672.13 2.5 0v-5.59z\" />\n</svg>",
58
+ "face-happy": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <circle cx=\"8\" cy=\"8\" r=\"7\" stroke=\"currentColor\" stroke-width=\"2\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"\n d=\"M11 9.75c-.85.788-1.885 1.25-3 1.25s-2.15-.462-3-1.25\" />\n <g fill=\"currentColor\">\n <circle cx=\"6\" cy=\"6\" r=\"1\" />\n <circle cx=\"10\" cy=\"6\" r=\"1\" />\n </g>\n</svg>",
59
+ "face-neutral": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <circle cx=\"8\" cy=\"8\" r=\"7\" stroke=\"currentColor\" stroke-width=\"2\" />\n <g fill=\"currentColor\">\n <circle cx=\"6\" cy=\"6\" r=\"1\" />\n <circle cx=\"10\" cy=\"6\" r=\"1\" />\n <path d=\"M5 9a1 1 0 000 2zm6 2a1 1 0 100-2zm-6 0h6V9H5z\" />\n </g>\n</svg>",
60
+ "face-sad": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <circle cx=\"8\" cy=\"8\" r=\"7\" stroke=\"currentColor\" stroke-width=\"2\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"\n d=\"M5 10.5c.85-.788 1.885-1.25 3-1.25s2.15.462 3 1.25\" />\n <g fill=\"currentColor\">\n <circle cx=\"6\" cy=\"6\" r=\"1\" />\n <circle cx=\"10\" cy=\"6\" r=\"1\" />\n </g>\n</svg>",
61
+ "file-text": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path\n d=\"M12 15H4a1 1 0 01-1-1V2a1 1 0 011-1h5.172a1 1 0 01.707.293l2.828 2.828a1 1 0 01.293.707V14a1 1 0 01-1 1z\" />\n <path stroke-linejoin=\"round\" d=\"M9 1v4h4\" />\n <path stroke-linecap=\"round\" d=\"M6 8h4M6 11h4\" />\n </g>\n <circle cx=\"6\" cy=\"5\" r=\"1\" fill=\"currentColor\" />\n</svg>",
62
+ "figma": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\"><path fill=\"#1ABCFE\" d=\"M8.003 8a2.667 2.667 0 1 1 5.334 0 2.667 2.667 0 0 1-5.334 0Z\"/><path fill=\"#0ACF83\" d=\"M2.67 13.333a2.667 2.667 0 0 1 2.667-2.666h2.666v2.666a2.667 2.667 0 1 1-5.333 0Z\"/><path fill=\"#FF7262\" d=\"M8.003 0v5.333h2.667a2.667 2.667 0 0 0 0-5.333H8.003Z\"/><path fill=\"#F24E1E\" d=\"M2.67 2.667a2.667 2.667 0 0 0 2.667 2.666h2.666V0H5.337A2.667 2.667 0 0 0 2.67 2.667Z\"/><path fill=\"#A259FF\" d=\"M2.67 8a2.667 2.667 0 0 0 2.667 2.667h2.666V5.333H5.337A2.667 2.667 0 0 0 2.67 8Z\"/></svg>",
63
+ "filled-dot": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" viewBox=\"0 0 16 16\">\n <circle cx=\"8\" cy=\"8\" r=\"4\" />\n</svg>",
64
+ "film": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M6 3h4v4H6zM4 7V6H3v1zm0-4v1H3V3zM3 9h1v1H3zm0 3v1h1v-1zm3-3h4v4H6zm6 0v1h1V9zm0 4v-1h1v1zm1-9V3h-1v1zm0 2h-1v1h1zM1 3a2 2 0 012-2h10a2 2 0 012 2v10a2 2 0 01-2 2H3a2 2 0 01-2-2z\"\n clip-rule=\"evenodd\" />\n</svg>",
65
+ "filter": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.728617 1.71943C0.837856 1.48398 1.07381 1.33334 1.33336 1.33334H14.6667C14.9262 1.33334 15.1622 1.48398 15.2714 1.71943C15.3807 1.95487 15.3433 2.23231 15.1757 2.43049L10 8.55078V14C10 14.2311 9.88039 14.4456 9.68385 14.5671C9.48731 14.6886 9.24188 14.6996 9.03522 14.5963L6.36855 13.263C6.1427 13.15 6.00003 12.9192 6.00003 12.6667V8.55078L0.824316 2.43049C0.656718 2.23231 0.619379 1.95487 0.728617 1.71943ZM2.77023 2.66668L7.17574 7.87619C7.27752 7.99654 7.33336 8.14906 7.33336 8.30668V12.2547L8.6667 12.9213V8.30668C8.6667 8.14906 8.72254 7.99654 8.82432 7.87619L13.2298 2.66668H2.77023Z\" fill=\"currentColor\"/>\n</svg>\n",
66
+ "flag": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M3 10.28s.625-.72 2.5-.72S8.625 11 10.5 11s2.5-.72 2.5-.72V2.72s-.625.72-2.5.72S7.375 2 5.5 2 3 2.72 3 2.72zM3 15v-5\" />\n </g>\n</svg>",
67
+ "flag-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path fill=\"currentColor\"\n d=\"M3 10.28s.625-.72 2.5-.72S8.625 11 10.5 11s2.5-.72 2.5-.72V2.72s-.625.72-2.5.72S7.375 2 5.5 2 3 2.72 3 2.72z\" />\n <path d=\"M3 15v-5\" />\n </g>\n</svg>",
68
+ "flask": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\".5\"\n d=\"M13.365 13.186a.298.298 0 01-.255.148H2.977a.295.295 0 01-.254-.148c-.026-.04-.1-.185-.034-.32l.879-1.532h8.953l.86 1.498a.367.367 0 01-.016.354zM7.09 5.199a.665.665 0 00.088-.332v-2.2H8.91v2.2c0 .116.03.231.089.332L11.755 10H4.333zm7.466 7.002L10.243 4.69V2.667h.134a.667.667 0 000-1.334H5.711a.666.666 0 100 1.334h.133v2.022l-4.33 7.546a1.689 1.689 0 00.074 1.652c.302.488.821.78 1.389.78H13.11c.568 0 1.087-.292 1.39-.78.31-.504.339-1.122.055-1.686z\" />\n</svg>",
69
+ "flowchart": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <g fill-rule=\"evenodd\" stroke-linecap=\"round\" stroke-linejoin=\"round\" clip-rule=\"evenodd\">\n <path\n d=\"M1 3a1 1 0 011-1h1a1 1 0 011 1v2a1 1 0 01-1 1H2a1 1 0 01-1-1zM12 3a1 1 0 011-1h1a1 1 0 011 1v2a1 1 0 01-1 1h-1a1 1 0 01-1-1zM12 11a1 1 0 011-1h1a1 1 0 011 1v2a1 1 0 01-1 1h-1a1 1 0 01-1-1z\" />\n </g>\n <path d=\"M12 4H8M4 4h4m4 8h-2a2 2 0 01-2-2V4\" />\n </g>\n</svg>",
70
+ "folder": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M7 2h7v11a2 2 0 002-2V2a2 2 0 00-2-2H7a2 2 0 00-2 2z\"\n clip-rule=\"evenodd\" />\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\"\n d=\"M12 13.788c0 .321-.129.63-.358.857s-.54.355-.864.355H2.222c-.324 0-.635-.128-.864-.355S1 14.109 1 13.788V6.212c0-.321.129-.63.358-.857.23-.227.54-.355.864-.355h2.903l1.222 2h4.43c.325 0 .636.128.865.355.23.227.358.536.358.857z\" />\n <path stroke-linecap=\"square\" d=\"M9 4h3\" />\n </g>\n</svg>",
71
+ "folder-check-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M14 12.667A1.334 1.334 0 0112.667 14H3.333A1.334 1.334 0 012 12.667V3.333A1.333 1.333 0 013.333 2H6.5l1.333 2h4.834A1.333 1.333 0 0114 5.333z\" />\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M13.61 13.61c.25-.25.39-.59.39-.943V5.333A1.334 1.334 0 0012.667 4H7.833L6.5 2H3.333A1.333 1.333 0 002 3.333v9.334A1.333 1.333 0 003.333 14h9.334c.353 0 .692-.14.943-.39zm-1.914-5.892a1 1 0 10-1.392-1.436L6.875 9.607 5.696 8.464A1 1 0 004.304 9.9l1.875 1.818a1 1 0 001.392 0z\"\n clip-rule=\"evenodd\" />\n</svg>",
72
+ "folder-plus": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path stroke-linecap=\"round\"\n d=\"M14 12.667A1.334 1.334 0 0112.667 14H3.333A1.334 1.334 0 012 12.667V3.333A1.333 1.333 0 013.333 2H6.5l1.333 2h4.834A1.333 1.333 0 0114 5.333z\" />\n <g stroke-linecap=\"square\">\n <path d=\"M8 7v4M6 9h4\" />\n </g>\n </g>\n</svg>",
73
+ "gift": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M14 8v7H2V8M15 5H1v3h14zM8 15V5M8 4H4.786c-.474 0-.928-.158-1.263-.44C3.188 3.28 3 2.899 3 2.5s.188-.78.523-1.06c.335-.282.79-.44 1.263-.44C7.286 1 8 4 8 4zM8 4h3.214c.474 0 .928-.158 1.263-.44S13 2.899 13 2.5s-.188-.78-.523-1.06-.79-.44-1.263-.44C8.714 1 8 4 8 4z\" />\n </g>\n</svg>",
74
+ "google": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"#ea4335\"\n d=\"M8 3.093c1.502 0 2.516.65 3.093 1.191l2.258-2.204C11.964.791 10.161 0 8.001 0A7.994 7.994 0 00.852 4.409L3.44 6.418C4.09 4.488 5.885 3.093 8 3.093z\" />\n <path fill=\"#4285f4\"\n d=\"M15.68 8.178c0-.658-.053-1.138-.169-1.636H8v2.97h4.409c-.089.737-.569 1.848-1.636 2.595l2.525 1.955c1.51-1.395 2.382-3.449 2.382-5.884z\" />\n <path fill=\"#fbbc05\"\n d=\"M3.449 9.582A4.925 4.925 0 013.182 8c0-.551.098-1.084.258-1.582L.853 4.408C.311 5.494 0 6.712 0 8s.311 2.507.853 3.591z\" />\n <path fill=\"#34a853\"\n d=\"M8 16c2.16 0 3.973-.711 5.298-1.938l-2.525-1.955c-.675.47-1.582.8-2.773.8-2.116 0-3.911-1.396-4.551-3.325l-2.587 2.01C2.178 14.204 4.872 16 8 16z\" />\n</svg>",
75
+ "hammer-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\"\n d=\"M14.494 6.195l-4-4A.664.664 0 0010.023 2H5.289a.666.666 0 00-.468 1.14l2.414 2.39-5.706 5.705a.666.666 0 000 .944l1.885 1.885a.667.667 0 00.943 0l5.721-5.72 1.14 1.128c.329.327.75.491 1.171.491.422 0 .843-.164 1.172-.492l.933-.932c.32-.32.495-.736.495-1.172s-.175-.852-.495-1.172z\" />\n</svg>",
76
+ "headphones": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M2 12V8a6 6 0 1112 0v4\" />\n <path fill=\"currentColor\"\n d=\"M14 9h1a1 1 0 00-1-1zM3.333 14v1zm1.334 0v-1zm0-5V8zM2 9V8a1 1 0 00-1 1zm11 3.667c0 .184-.15.333-.333.333v2A2.333 2.333 0 0015 12.667zm-.333.333h-1.334v2h1.334zm-1.334 0a.333.333 0 01-.333-.333H9A2.333 2.333 0 0011.333 15zM11 12.667v-2.334H9v2.334zm0-2.334c0-.184.15-.333.333-.333V8A2.333 2.333 0 009 10.333zm.333-.333H14V8h-2.667zM13 9v3.667h2V9zM1 12.667A2.333 2.333 0 003.333 15v-2A.333.333 0 013 12.667zM3.333 15h1.334v-2H3.333zm1.334 0A2.333 2.333 0 007 12.667H5c0 .184-.15.333-.333.333zM7 12.667v-2.334H5v2.334zm0-2.334A2.333 2.333 0 004.667 8v2c.184 0 .333.15.333.333zM4.667 8H2v2h2.667zM1 9v3.667h2V9z\" />\n</svg>",
77
+ "help-circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <circle cx=\"8\" cy=\"8\" r=\"7\" />\n <g stroke-linecap=\"round\" stroke-linejoin=\"round\">\n <path\n d=\"M6.25 6.168c.141-.39.42-.718.786-.927.367-.21.798-.286 1.217-.216.42.07.8.282 1.074.598.274.315.424.715.423 1.128C9.75 7.917 7.949 8.5 7.949 8.5M8 11h.007\" />\n </g>\n </g>\n</svg>",
78
+ "home": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M2 6l6-5 6 5v6.7c0 .718-.597 1.3-1.333 1.3H3.333C2.597 14 2 13.418 2 12.7z\" clip-rule=\"evenodd\" />\n <path d=\"M6 14V8h4v6\" />\n </g>\n</svg>",
79
+ "illustration": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M2 4a2 2 0 012-2h8a2 2 0 012 2v8a2 2 0 01-2 2H4a2 2 0 01-2-2z\" clip-rule=\"evenodd\" />\n <g fill=\"currentColor\">\n <path d=\"M10 12a2 2 0 100-4 2 2 0 000 4z\" />\n <path fill-rule=\"evenodd\" d=\"M8.92 7.2L7 4 4 9h3.17a3.009 3.009 0 011.75-1.8z\" clip-rule=\"evenodd\" />\n </g>\n</svg>",
80
+ "image": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M2 4a2 2 0 012-2h8a2 2 0 012 2v8a2 2 0 01-2 2H4a2 2 0 01-2-2z\" clip-rule=\"evenodd\" />\n <path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M5.5 7a1.5 1.5 0 100-3 1.5 1.5 0 000 3z\" clip-rule=\"evenodd\" />\n <path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 11l-4-4-7 7\" />\n</svg>",
81
+ "info": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-info\">\n <circle cx=\"8\" cy=\"8\" r=\"7\"/>\n <path d=\"M8 11V8M8 5h.01\"/>\n</svg>\n",
82
+ "layers": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M8 1.5l-7 3 7 3 7-3z\" clip-rule=\"evenodd\" />\n <path d=\"M1 8l7 3 7-3M1 11.5l7 3 7-3\" />\n </g>\n</svg>",
83
+ "link": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M6.667 8.605a3.478 3.478 0 005.244.376l2.087-2.087A3.478 3.478 0 009.08 1.976l-1.196 1.19\" />\n <path d=\"M9.308 7.391a3.478 3.478 0 00-5.245-.375L1.976 9.102a3.478 3.478 0 004.918 4.918l1.19-1.19\" />\n </g>\n</svg>",
84
+ "link2": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M10 5h1.875c.829 0 1.624.316 2.21.879A2.94 2.94 0 0115 8c0 1.657-1.4 3-3.125 3H10M6 11H4.125a3.192 3.192 0 01-2.21-.879A2.94 2.94 0 011 8c0-1.657 1.4-3 3.125-3H6M5.333 8h5.334\" />\n </g>\n</svg>",
85
+ "list": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\">\n <path d=\"M6 8h8M6 12h8M6 4h8\" />\n </g>\n <circle cx=\"3\" cy=\"4\" r=\"1\" fill=\"currentColor\" />\n <circle cx=\"3\" cy=\"8\" r=\"1\" fill=\"currentColor\" />\n <circle cx=\"3\" cy=\"12\" r=\"1\" fill=\"currentColor\" />\n</svg>",
86
+ "loader": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M8 1v3M8 12v3M3 3l2 2M11 11l2 2M1 8h3M12 8h3M3 13l2-2M11 5l2-2\" />\n </g>\n</svg>",
87
+ "lock": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 5V4.33333C4 2.04181 5.69436 0 8 0C10.3056 0 12 2.04181 12 4.33333V5C13.6569 5 15 6.34315 15 8V12C15 13.6569 13.6569 15 12 15H4C2.34315 15 1 13.6569 1 12V8C1 6.34315 2.34315 5 4 5ZM6 4.33333C6 2.94296 6.99193 2 8 2C9.00807 2 10 2.94296 10 4.33333V5H6V4.33333ZM4 7C3.44772 7 3 7.44772 3 8V12C3 12.5523 3.44772 13 4 13H12C12.5523 13 13 12.5523 13 12V8C13 7.44772 12.5523 7 12 7H4Z\" fill=\"currentColor\"/>\n</svg>\n",
88
+ "magic": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path\n d=\"M13 6l.938-2.063L16 3l-2.063-.938L13 0l-.938 2.063L10 3l2.063.938zM13 10l-.938 2.063L10 13l2.063.938L13 16l.938-2.063L16 13l-2.063-.938zM7.875 6.125L6 2 4.125 6.125 0 8l4.125 1.875L6 14l1.875-4.125L12 8zM6.742 8.743L6 10.377l-.743-1.635L3.624 8l1.635-.743L6 5.623l.743 1.635L8.377 8z\" />\n </g>\n</svg>",
89
+ "mail": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M2.4 2h11.2c.77 0 1.4.619 1.4 1.375v8.25c0 .756-.63 1.375-1.4 1.375H2.4c-.77 0-1.4-.619-1.4-1.375v-8.25C1 2.619 1.63 2 2.4 2z\"\n clip-rule=\"evenodd\" />\n <path d=\"M14 3L8 9 2 3\" />\n </g>\n</svg>",
90
+ "maximize": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path\n d=\"M6 2H3.333C2.597 2 2 2.597 2 3.333V6M14 6V3.333C14 2.597 13.403 2 12.667 2H10M10 14h2.667c.736 0 1.333-.597 1.333-1.333V10M2 10v2.667C2 13.403 2.597 14 3.333 14H6\" />\n </g>\n</svg>",
91
+ "maximize-2": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M14 2L9 7M2 14l5-5\" />\n <g stroke-linecap=\"round\">\n <path d=\"M10 2h4v4M6 14H2v-4\" />\n </g>\n </g>\n</svg>",
92
+ "med-imaging": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path\n d=\"M5 2H3.333C2.597 2 2 2.597 2 3.333V5M14 5V3.333C14 2.597 13.403 2 12.667 2H11M11 14h1.667c.736 0 1.333-.597 1.333-1.333V11M2 11v1.667C2 13.403 2.597 14 3.333 14H5M11 12v-1a2 2 0 00-2-2H7a2 2 0 00-2 2v1\" />\n </g>\n <path fill=\"currentColor\" d=\"M8 7a2 2 0 100-4 2 2 0 000 4z\" />\n</svg>",
93
+ "meditricks": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-width=\"2\"\n d=\"M5.39 15a.624.624 0 01-.396-.145l-2.227-1.849a.678.678 0 01-.111-.914L5 9l-3.579-.907a.668.668 0 01-.384-.844l.955-2.773a.656.656 0 01.333-.378.62.62 0 01.493-.017L6 5V1.66c0-.364.285-.66.636-.66h2.728c.352 0 .636.296.636.66V5l3.185-.92a.614.614 0 01.492.018c.154.075.274.211.331.378l.955 2.773a.683.683 0 01-.025.507.648.648 0 01-.365.34L11.125 9l2.224 3.032a.678.678 0 01-.115.908l-2.227 1.85a.627.627 0 01-.479.139.633.633 0 01-.43-.26L8.005 11.5l-2.1 3.23a.633.633 0 01-.514.27z\" />\n</svg>",
94
+ "menu": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\">\n <path d=\"M2 8h12M2 12h12M2 4h12\" />\n </g>\n</svg>",
95
+ "message-circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M14 7.667a5.587 5.587 0 01-.6 2.533 5.667 5.667 0 01-5.067 3.133 5.585 5.585 0 01-2.533-.6L2 14l1.267-3.8a5.586 5.586 0 01-.6-2.533A5.667 5.667 0 015.8 2.6 5.587 5.587 0 018.333 2h.334A5.653 5.653 0 0114 7.333z\"\n clip-rule=\"evenodd\" />\n</svg>",
96
+ "minus": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"bevel\" stroke-width=\"2\" d=\"M4 8h8\" />\n</svg>",
97
+ "more-horizontal": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path d=\"M4 9a1 1 0 100-2 1 1 0 000 2zM8 9a1 1 0 100-2 1 1 0 000 2zM12 9a1 1 0 100-2 1 1 0 000 2z\" />\n </g>\n</svg>",
98
+ "more-vertical": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path d=\"M8 5a1 1 0 100-2 1 1 0 000 2zM8 9a1 1 0 100-2 1 1 0 000 2zM8 13a1 1 0 100-2 1 1 0 000 2z\" />\n </g>\n</svg>",
99
+ "note-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 14h6\" />\n <path fill=\"currentColor\"\n d=\"M11.932 2c-.529 0-1.036.21-1.41.584L1.776 11.33a.5.5 0 00-.131.232l-.623 2.493a.7.7 0 00.848.85l2.494-.624a.5.5 0 00.232-.132l8.746-8.745A1.994 1.994 0 0011.932 2z\" />\n</svg>",
100
+ "note": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M9 14h6M10.45 3.438a1.494 1.494 0 112.113 2.112l-7.746 7.746L2 14l.704-2.817z\" />\n </g>\n</svg>",
101
+ "numbered-list": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path\n d=\"M14 9a1 1 0 100-2zM7 9h7V7H7zM14 13a1 1 0 100-2zm-7 0h7v-2H7zM14 5a1 1 0 100-2zM7 5h7V3H7zM3 3L1 5v2.5l2-2V13h2V3z\" />\n </g>\n</svg>",
102
+ "paragraph": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M5 4h3.5a2.5 2.5 0 010 5H5\" />\n <path d=\"M5 3v10\" />\n </g>\n</svg>",
103
+ "patientinfo": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path d=\"M13 12.04V4h-2v8.04zM13 3V1h-2v2z\" />\n <path fill-rule=\"evenodd\"\n d=\"M6.13 13.451c-.54 0-.922-.093-1.15-.28-.133-.105-.23-.277-.289-.516H2.393c.069.78.43 1.365 1.082 1.757.653.392 1.495.588 2.529.588 1.71 0 2.866-.44 3.47-1.32.35-.51.526-1.27.526-2.28V4H8v1.112A2.615 2.615 0 006.7 3.98 2.868 2.868 0 005.64 3.8c-1.097 0-1.945.397-2.543 1.19C2.5 5.78 2.2 6.754 2.2 7.916c0 1.204.309 2.16.927 2.868.623.703 1.453 1.054 2.491 1.054.672 0 1.218-.155 1.639-.466.232-.167.54-.418.743-.753v.502c0 .746-.175 1.276-.343 1.592-.257.492-.766.738-1.527.738zm.037-3.327c-.742 0-1.256-.33-1.543-.99a2.94 2.94 0 01-.237-1.211c0-.526.074-.968.223-1.327.281-.674.793-1.01 1.534-1.01.544 0 .977.193 1.298.58.326.387.49.951.49 1.692 0 .79-.171 1.365-.512 1.728a1.663 1.663 0 01-1.253.538z\"\n clip-rule=\"evenodd\" />\n </g>\n</svg>",
104
+ "percent": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M12.667 3.333l-9.334 9.334M4.5 6a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM11.5 13a1.5 1.5 0 100-3 1.5 1.5 0 000 3z\" />\n </g>\n</svg>",
105
+ "pill": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M2.815 8.471a3.333 3.333 0 004.714 4.714L10.714 10 6 5.286z\" />\n <path fill=\"currentColor\" d=\"M8.471 2.815L6 5.286 10.714 10l2.471-2.471a3.333 3.333 0 00-4.714-4.714z\" />\n </g>\n</svg>",
106
+ "play-circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill-rule=\"evenodd\" clip-rule=\"evenodd\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M8 15A7 7 0 108 1a7 7 0 000 14z\" />\n <path fill=\"currentColor\"\n d=\"M6 5.809a.5.5 0 01.724-.447l4.382 2.19a.5.5 0 010 .895l-4.382 2.191A.5.5 0 016 10.191z\" />\n </g>\n</svg>",
107
+ "play-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M3.86 2.183a1.792 1.792 0 011.682.055l7.7 4.5C13.714 7.014 14 7.49 14 8s-.286.986-.758 1.262l-7.7 4.5a1.793 1.793 0 01-1.683.055C3.33 13.554 3 13.049 3 12.5v-9c0-.549.33-1.054.86-1.317z\"\n clip-rule=\"evenodd\" />\n</svg>",
108
+ "plus": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"bevel\" stroke-width=\"2\">\n <path d=\"M4 8h8M8 4v8\" />\n </g>\n</svg>",
109
+ "plus-circle": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <circle cx=\"8\" cy=\"8\" r=\"7\" stroke=\"currentColor\" stroke-width=\"2\" />\n <g fill=\"currentColor\">\n <path d=\"M9 5a1 1 0 00-2 0zm-2 6a1 1 0 102 0zm0-6v6h2V5z\" />\n <path d=\"M5 7a1 1 0 000 2zm6 2a1 1 0 100-2zM5 9h6V7H5z\" />\n </g>\n</svg>",
110
+ "plus-circle-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M8 0a8 8 0 100 16A8 8 0 008 0zm0 4a1 1 0 011 1v2h2a1 1 0 110 2H9v2a1 1 0 11-2 0V9H5a1 1 0 010-2h2V5a1 1 0 011-1z\"\n clip-rule=\"evenodd\" />\n</svg>",
111
+ "reset": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 16 16\">\n <path stroke-linecap=\"square\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M2 3v4h4\" />\n <path stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3.394 9.661a5 5 0 101.184-5.2L3 6.04\" />\n</svg>",
112
+ "rotate-ccw": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M2 3v4h4M3.859 5.437a4.93 4.93 0 11-.165 4.927\" />\n </g>\n</svg>",
113
+ "rotate-cw": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M14 3v4h-4M12.141 5.437a4.93 4.93 0 10.165 4.927\" />\n </g>\n</svg>",
114
+ "search": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M7 12A5 5 0 107 2a5 5 0 000 10z\" clip-rule=\"evenodd\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 14l-3.467-3.467\" />\n</svg>",
115
+ "search-list": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M2 3h12M11 7h3M12 11h2\" />\n <path d=\"M4.5 14a3.5 3.5 0 100-7 3.5 3.5 0 000 7z\" clip-rule=\"evenodd\" />\n <path d=\"M9 15l-2-2\" />\n </g>\n</svg>",
116
+ "settings": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n clip-rule=\"evenodd\">\n <path d=\"M8 10a2 2 0 100-4 2 2 0 000 4z\" />\n <path\n d=\"M12.71 9.91a1.05 1.05 0 00.21 1.157l.037.039a1.272 1.272 0 11-1.8 1.8l-.039-.038a1.05 1.05 0 00-1.158-.21 1.05 1.05 0 00-.636.961v.108a1.273 1.273 0 01-2.546 0v-.057a1.05 1.05 0 00-.687-.96 1.05 1.05 0 00-1.158.21l-.038.037a1.273 1.273 0 11-1.801-1.8l.038-.039c.3-.307.383-.765.21-1.158a1.05 1.05 0 00-.961-.636h-.108a1.273 1.273 0 110-2.546h.057a1.05 1.05 0 00.96-.687 1.05 1.05 0 00-.21-1.158l-.037-.038a1.273 1.273 0 111.8-1.801l.039.038c.307.3.765.383 1.158.21h.05a1.05 1.05 0 00.637-.961v-.108a1.273 1.273 0 112.546 0v.057c.001.419.251.796.636.96.393.174.851.091 1.158-.21l.039-.037a1.273 1.273 0 111.8 1.8l-.038.039a1.05 1.05 0 00-.21 1.158v.05c.165.386.543.636.961.637h.108a1.273 1.273 0 010 2.546h-.057a1.05 1.05 0 00-.96.636z\" />\n </g>\n</svg>",
117
+ "share": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path stroke-linejoin=\"round\" d=\"M2 8v3.6c0 .773.56 1.4 1.25 1.4h9.5c.69 0 1.25-.627 1.25-1.4V8\" />\n <path stroke-linejoin=\"bevel\" d=\"M8 10V3\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M5 5l3-3 3 3\" />\n </g>\n</svg>",
118
+ "shopping-cart": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M6 15a1 1 0 100-2 1 1 0 000 2zM13 15a1 1 0 100-2 1 1 0 000 2z\" clip-rule=\"evenodd\" />\n <path\n d=\"M3.972 4H15l-1.07 5.034c-.12.57-.655.977-1.272.966H5.932c-.643.005-1.19-.443-1.273-1.044l-.967-6.912C3.609 1.447 3.07 1.001 2.432 1H1\" />\n </g>\n</svg>",
119
+ "show-all": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 2a1 1 0 00-1 1v3.222L1.638 7.67c-.091.097-.236.17-.255.3a.206.206 0 000 .06c.02.13.164.203.255.3L3 9.778V13a1 1 0 001 1h10a1 1 0 001-1V3a1 1 0 00-1-1z\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8 4h2l3 8h-2l-.667-2H7.667L7 12H5zm.333 4h1.334L9 6z\" clip-rule=\"evenodd\"/></svg>",
120
+ "sliders": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M3 14V9M3 6V2M8 14V8M8 5V2M13 14v-3M13 8V2M1 9h4M6 5h4M11 11h4\" />\n </g>\n</svg>",
121
+ "smartzoom": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M4.182 5.768a1 1 0 00.05 1.414l.266.248-.828.887a.25.25 0 00.013.353l2.012 1.875a.25.25 0 00.353-.012l.827-.887.283.263a1 1 0 001.413-.05l2.69-2.885a3.5 3.5 0 11-4.37 5.359L6.593 12H2v4h7c3.028 0 5.307-2.245 5.867-4.793a5.494 5.494 0 00-2.221-5.72l.698-.748a1 1 0 00-.05-1.413L10.368.598a1 1 0 00-1.413.05zm2.145.633L7.79 7.764l3.409-3.657-1.463-1.364z\"\n clip-rule=\"evenodd\" />\n</svg>",
122
+ "sort": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\">\n <path stroke-linejoin=\"bevel\" d=\"M4 3v9\" />\n <path stroke-linejoin=\"round\" d=\"M7 10l-3 3-3-3\" />\n <path stroke-linejoin=\"bevel\" d=\"M12 13V4\" />\n <path stroke-linejoin=\"round\" d=\"M9 6l3-3 3 3\" />\n </g>\n</svg>",
123
+ "sort-ascending": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m4.293 7 3-3.707a1 1 0 0 1 1.414 0l3 3.707H4.293Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m11.707 9-3 3.707a1 1 0 0 1-1.414 0L4.293 9h7.414Z\" clip-rule=\"evenodd\" opacity=\".3\"/></svg>",
124
+ "sort-descending": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m11.707 9-3 3.707a1 1 0 0 1-1.414 0L4.293 9h7.414Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m4.293 7 3-3.707a1 1 0 0 1 1.414 0l3 3.707H4.293Z\" clip-rule=\"evenodd\" opacity=\".3\"/></svg>",
125
+ "sort-neutral": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\"><g fill=\"currentColor\" opacity=\".3\"><path d=\"m11.707 7-3-3.707a1 1 0 0 0-1.414 0L4.293 7h7.414ZM4.293 9l3 3.707a1 1 0 0 0 1.414 0l3-3.707H4.293Z\"/></g></svg>",
126
+ "star-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\n stroke-width=\"2\" d=\"M8 1l2.163 4.279 4.837.69-3.5 3.329.826 4.702L8 11.779 3.674 14 4.5 9.298 1 5.969l4.837-.69z\"\n clip-rule=\"evenodd\" />\n</svg>",
127
+ "star": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M8 1l2.163 4.279 4.837.69-3.5 3.329.826 4.702L8 11.779 3.674 14 4.5 9.298 1 5.969l4.837-.69z\"\n clip-rule=\"evenodd\" />\n</svg>",
128
+ "special-character": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 13h3v-1.876c-1.495-.846-3-2.426-3-4.235C3 4.189 5.239 2 8 2s5 2.189 5 4.889c0 1.81-1.505 3.39-3 4.235V13h3\" />\n</svg>",
129
+ "stethoscope": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-width=\"2\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M5 1H3v3a4 4 0 108 0V1m0 0H9.214M11 1H9\" />\n <path d=\"M13 12a3 3 0 11-6 0V8\" />\n <circle cx=\"13\" cy=\"11\" r=\"2\" />\n </g>\n</svg>",
130
+ "subscript": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path d=\"M9.753 4.659a1 1 0 10-1.506-1.317zm-8.506 6.683a1 1 0 001.506 1.316zm7-8l-7 8 1.506 1.316 7-8z\" />\n <path\n d=\"M2.753 3.341a1 1 0 10-1.506 1.317zm5.494 9.317a1 1 0 001.506-1.316zm-7-8l7 8 1.506-1.316-7-8zM11.124 14v-1.156l2.37-1.827c.157-.121.291-.235.403-.34a1.3 1.3 0 00.26-.333.777.777 0 00.094-.379.667.667 0 00-.39-.639.948.948 0 00-.423-.089c-.16 0-.3.03-.422.09a.647.647 0 00-.279.263.837.837 0 00-.1.422H11c0-.417.1-.775.3-1.076.201-.3.485-.531.85-.693S12.947 8 13.439 8c.509 0 .95.076 1.321.228.375.15.663.363.866.636.204.274.307.595.307.963 0 .227-.05.453-.152.679-.101.223-.283.47-.546.743-.263.271-.636.595-1.12.97l-.595.463v.035H16V14z\" />\n </g>\n</svg>",
131
+ "superscript": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path d=\"M9.753 4.659a1 1 0 10-1.506-1.317zm-8.506 6.683a1 1 0 001.506 1.316zm7-8l-7 8 1.506 1.316 7-8z\" />\n <path\n d=\"M2.753 3.341a1 1 0 10-1.506 1.317zm5.494 9.317a1 1 0 001.506-1.316zm-7-8l7 8 1.506-1.316-7-8zM11.124 7V5.844l2.37-1.827c.157-.121.291-.235.403-.34a1.3 1.3 0 00.26-.333.778.778 0 00.094-.379.667.667 0 00-.39-.639.948.948 0 00-.423-.089c-.16 0-.3.03-.422.09a.647.647 0 00-.279.263.837.837 0 00-.1.422H11c0-.417.1-.775.3-1.076.201-.3.485-.531.85-.693S12.947 1 13.439 1c.509 0 .95.076 1.321.228.375.15.663.363.866.636.204.274.307.595.307.963 0 .227-.05.453-.152.679-.101.223-.283.47-.546.743-.263.271-.636.595-1.12.97l-.595.463v.035H16V7z\" />\n </g>\n</svg>",
132
+ "tag": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M9.632 14.864h0a.46.46 0 01-.652 0h0L2 7.89V2h5.888l6.978 6.98s0 0 0 0a.461.461 0 010 .649s0 0 0 0z\" />\n</svg>",
133
+ "text-zoom-reset": "<svg width=\"16\" height=\"16\" fill=\"currentColor\" stroke=\"none\" viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.477 13H5.824l-.563-1.5H2.738L2.176 13H.574l2.724-7.263h1.404l2.19 5.84 3.18-7.948h1.857L15.677 13h-2.154l-.8-2H9.277l-.8 2zM4 8.136L4.699 10H3.301L4 8.136zM11.923 9L11 6.693 10.077 9h1.846z\"/>\n</svg>\n",
134
+ "text-zoom": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M8.372 13h-2.81l-.596-1.6H2.293L1.697 13H0l2.885-7.75h1.488l2.32 6.231L10.063 3h1.967L16 13h-2.282l-.848-2.134H9.22L8.372 13zM3.63 7.81L4.47 10H2.79l.84-2.19zM12.15 9l-1.105-2.73L9.92 9h2.23z\"\n clip-rule=\"evenodd\" />\n</svg>",
135
+ "thumbs-down": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\"\n d=\"M6 10.98h1a1 1 0 00-1-1zm0 2.4H5zM8 15v1a1 1 0 00.937-.65zm2.014-5.4l.937.35a1 1 0 00.063-.35zm0-6.6h1a1 1 0 00-1-1zM3.1 3l-.011 1h.01zM1.874 4.02l-.989-.153zm-.86 5.58l.988.153zm1.226 1.38v-1h-.011zM10.014 3V2a1 1 0 00-1 1zm0 7h-1a1 1 0 001 1zM5 10.98v2.4h2v-2.4zm0 2.4c0 .863.438 1.546 1.018 1.982C6.583 15.787 7.3 16 8 16v-2c-.315 0-.598-.1-.78-.236-.166-.126-.22-.253-.22-.384zm3.937 1.97l2.014-5.4-1.874-.7-2.014 5.4zm2.077-5.75V3h-2v6.6zm-1-7.6H3.1v2h6.914zM3.11 2A2.218 2.218 0 00.885 3.867l1.977.306C2.875 4.09 2.959 4 3.089 4zM.885 3.868l-.86 5.58 1.977.304.86-5.58zm-.86 5.579c-.1.646.096 1.298.528 1.785l1.495-1.329a.183.183 0 01-.046-.15zm.528 1.785a2.238 2.238 0 001.698.748l-.022-2a.238.238 0 01-.18-.077zm1.687.748H6v-2H2.24zM10.014 4h2.4V2h-2.4zm2.4 0c.232 0 .409.076.509.155a.31.31 0 01.082.092c.01.017.009.024.009.026h2c0-1.457-1.39-2.273-2.6-2.273zm.6.273v4.454h2V4.273zm0 4.454c0 .002 0 .01-.009.026a.311.311 0 01-.082.092.828.828 0 01-.51.155v2c1.211 0 2.6-.816 2.6-2.273zm-.6.273h-2.4v2h2.4zm-1.4 1V3h-2v7z\" />\n</svg>",
136
+ "thumbs-up": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\"\n d=\"M10 5.02H9a1 1 0 001 1zm0-2.4h1zM8 1V0a1 1 0 00-.938.653zM6 6.4l-.938-.347A1 1 0 005 6.4zM6 13H5a1 1 0 001 1zm6.914 0l.011-1h-.01zm1.226-1.02l.988.153zM15 6.4l-.988-.153zm-1.226-1.38v1h.011zM6 13v1a1 1 0 001-1zm0-7h1a1 1 0 00-1-1zm5-.98v-2.4H9v2.4zm0-2.4c0-.863-.438-1.546-1.018-1.982C9.417.213 8.7 0 8 0v2c.315 0 .598.1.78.236.166.126.22.253.22.384zM7.062.653l-2 5.4 1.876.694 2-5.4zM5 6.4V13h2V6.4zM6 14h6.914v-2H6zm6.903 0a2.218 2.218 0 002.225-1.867l-1.976-.306c-.013.084-.097.174-.227.173zm2.225-1.868l.86-5.58-1.976-.304-.86 5.58zm.86-5.579a2.183 2.183 0 00-.527-1.785l-1.496 1.329c.04.045.055.1.047.15zm-.527-1.785a2.237 2.237 0 00-1.698-.748l.022 2c.074 0 .14.03.18.077zm-1.687-.748H10v2h3.774zM6 12H3.6v2H6zm-2.4 0a.827.827 0 01-.509-.155.31.31 0 01-.082-.092c-.01-.017-.009-.024-.009-.026H1C1 13.184 2.39 14 3.6 14zm-.6-.273V7.273H1v4.454zm0-4.454c0-.002 0-.01.009-.026a.31.31 0 01.082-.092c.1-.08.277-.155.509-.155V5C2.39 5 1 5.816 1 7.273zM3.6 7H6V5H3.6zM5 6v7h2V6z\" />\n</svg>",
137
+ "timer-off": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path\n d=\"M6 1a1 1 0 011-1h2a1 1 0 110 2v.07a7.002 7.002 0 015.381 9.811l-1.558-1.558a5 5 0 00-6.146-6.146L5.119 2.619A6.95 6.95 0 017 2.07V2a1 1 0 01-1-1z\" />\n <path fill-rule=\"evenodd\"\n d=\"M2.394 4.808L.586 3 2 1.586 15 14.58 13.58 16l-1.388-1.394a7 7 0 01-9.799-9.799zm8.363 8.364l-6.929-6.93a5 5 0 006.929 6.929z\"\n clip-rule=\"evenodd\" />\n <path d=\"M10.29 7.79l.417-.416A1 1 0 009.293 5.96l-.417.416z\" />\n </g>\n</svg>",
138
+ "timer-on": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path d=\"M10.707 7.374A1 1 0 009.293 5.96l-2 2a1 1 0 001.414 1.414z\" />\n <path fill-rule=\"evenodd\"\n d=\"M7 0a1 1 0 000 2v.07A7.002 7.002 0 008 16 7 7 0 009 2.07V2a1 1 0 000-2zM3 9a5 5 0 1110 0A5 5 0 013 9z\"\n clip-rule=\"evenodd\" />\n </g>\n</svg>",
139
+ "trash-2": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M1 4h14\" />\n <path fill=\"currentColor\"\n d=\"M14 4a1 1 0 10-2 0zM4 4a1 1 0 00-2 0zm0 0a1 1 0 002 0zm6 0a1 1 0 102 0zm2 0v9.625h2V4zm0 9.625c0 .171-.155.375-.429.375v2C12.876 16 14 14.972 14 13.625zm-.429.375H4.43v2h7.142zM4.43 14C4.156 14 4 13.796 4 13.625H2C2 14.972 3.124 16 4.429 16zM4 13.625V4H2v9.625zM6 4V2.5H4V4zm0-1.5a.5.5 0 01.5-.5V0A2.5 2.5 0 004 2.5zm.5-.5h3V0h-3zm3 0a.5.5 0 01.5.5h2A2.5 2.5 0 009.5 0zm.5.5V4h2V2.5z\" />\n <g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M6 7v5M10 7v5\" />\n </g>\n</svg>",
140
+ "twitter": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"#55acee\"\n d=\"M7.769 4.85l.035.573-.578-.07c-2.105-.269-3.943-1.18-5.503-2.708L.96 1.886l-.197.56c-.416 1.25-.15 2.568.717 3.455.462.49.358.56-.44.269-.277-.094-.52-.164-.543-.129-.08.082.197 1.144.416 1.564.3.584.914 1.156 1.584 1.494l.567.268-.67.012c-.648 0-.671.012-.602.257.231.759 1.144 1.564 2.162 1.914l.717.245-.625.374a6.508 6.508 0 01-3.098.863c-.52.012-.948.059-.948.094 0 .116 1.41.77 2.231 1.027 2.463.758 5.388.432 7.584-.864 1.56-.922 3.122-2.754 3.85-4.528.393-.946.786-2.673.786-3.502 0-.537.035-.607.682-1.249.382-.373.74-.782.81-.898.115-.222.104-.222-.486-.024-.983.35-1.121.304-.636-.221.358-.374.786-1.05.786-1.25 0-.034-.173.024-.37.129-.208.117-.67.292-1.017.397l-.624.198-.567-.385c-.312-.21-.751-.443-.983-.513-.59-.164-1.49-.14-2.023.046-1.445.525-2.358 1.88-2.254 3.362z\" />\n</svg>",
141
+ "unlock": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 4.33333C6 2.94296 6.99193 2 8 2C8.64759 2 9.26435 2.36775 9.64606 3.01057C9.92804 3.48545 10.5416 3.64182 11.0165 3.35984C11.4913 3.07786 11.6477 2.4643 11.3657 1.98943C10.6742 0.824843 9.44703 0 8 0C5.69436 0 4 2.04181 4 4.33333V5C2.34315 5 1 6.34315 1 8V12C1 13.6569 2.34315 15 4 15H12C13.6569 15 15 13.6569 15 12V8C15 6.34315 13.6569 5 12 5H6V4.33333ZM4 7C3.44772 7 3 7.44772 3 8V12C3 12.5523 3.44772 13 4 13H12C12.5523 13 13 12.5523 13 12V8C13 7.44772 12.5523 7 12 7H4Z\" fill=\"currentColor\"/>\n</svg>\n",
142
+ "user": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\"\n d=\"M15 15v-1.333h-2V15zm0-1.333A3.667 3.667 0 0011.333 10v2c.92 0 1.667.746 1.667 1.667zM11.333 10H4.667v2h6.666zm-6.666 0A3.667 3.667 0 001 13.667h2C3 12.747 3.746 12 4.667 12zM1 13.667V15h2v-1.333z\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M8 8a3 3 0 100-6 3 3 0 000 6z\" clip-rule=\"evenodd\" />\n</svg>",
143
+ "users": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\"\n d=\"M10 9a4.07 4.07 0 01-.219-.006 5.5 5.5 0 001.502-2.46C11.721 6.167 12 5.616 12 5s-.279-1.167-.717-1.534a5.5 5.5 0 00-1.502-2.46A4 4 0 1110 9zM16 15h-2v-1.333A5.307 5.307 0 0012.524 10c1.981.014 3.476 1.711 3.476 3.667z\" />\n <g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M11 15v-1.333C11 12.194 9.88 11 8.5 11h-5C2.12 11 1 12.194 1 13.667V15\" />\n <path stroke-linecap=\"round\" d=\"M6 8a3 3 0 100-6 3 3 0 000 6z\" clip-rule=\"evenodd\" />\n </g>\n</svg>",
144
+ "watch-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M16 8A8 8 0 110 8a8 8 0 0116 0zM9 5a1 1 0 10-2 0v3a1 1 0 00.553.894l2.667 1.334a1 1 0 00.894-1.79L9 7.383z\"\n clip-rule=\"evenodd\" />\n</svg>",
145
+ "watch": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path d=\"M8 15A7 7 0 108 1a7 7 0 000 14z\" />\n <path d=\"M10.667 9.333L8 8V5\" />\n </g>\n</svg>",
146
+ "wifi-off": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <clipPath id=\"prefix__a\">\n <path d=\"M0 0h16v16H0z\" />\n </clipPath>\n <g clip-path=\"url(#prefix__a)\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M13.169 8.755a1 1 0 00-.002-1.524 8.29 8.29 0 00-1.728-1.13.999.999 0 00-.908.016zM8.433 4.018a8.826 8.826 0 012.49.533A9.577 9.577 0 0114.3 6.714a1 1 0 101.4-1.428 11.575 11.575 0 00-4.082-2.61 10.767 10.767 0 00-4.707-.633.997.997 0 00-.355.1zM15.414 14l-7.86-7.86a1.002 1.002 0 00-.14-.14L4.726 3.312a1 1 0 00-.036-.036L2 .585.587 2l1.736 1.737A11.2 11.2 0 00.307 5.279a1 1 0 001.386 1.442 9.134 9.134 0 012.098-1.515l1.08 1.08a8.293 8.293 0 00-2.18 1.313 1 1 0 101.284 1.535A6.293 6.293 0 016.45 7.865l1.152 1.152a5 5 0 00-2.496.908 1 1 0 001.159 1.63 3 3 0 013.475 0 .996.996 0 00.585.185L14 15.414zM7 13.333a1 1 0 011-1h.007a1 1 0 110 2H8a1 1 0 01-1-1z\"\n clip-rule=\"evenodd\" />\n </g>\n</svg>",
147
+ "wifi": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M3.333 8.367a7.333 7.333 0 019.387 0M1 6c1.934-1.933 4.423-3 7-3s5.066 1.067 7 3M5.687 10.74a4 4 0 014.633 0M8 13.333h.007\" />\n </g>\n</svg>",
148
+ "x": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill=\"currentColor\">\n <path d=\"M12.707 4.707a1 1 0 00-1.414-1.414zm-9.414 6.586a1 1 0 101.414 1.414zm8-8l-8 8 1.414 1.414 8-8z\" />\n <path d=\"M4.707 3.293a1 1 0 00-1.414 1.414zm6.586 9.414a1 1 0 001.414-1.414zm-8-8l8 8 1.414-1.414-8-8z\" />\n </g>\n</svg>",
149
+ "x-circle-filled": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M8 16A8 8 0 108 0a8 8 0 000 16zm3.707-11.707a1 1 0 010 1.414L9.414 8l2.293 2.293a1 1 0 01-1.414 1.414L8 9.414l-2.293 2.293a1 1 0 01-1.414-1.414L6.586 8 4.293 5.707a1 1 0 011.414-1.414L8 6.586l2.293-2.293a1 1 0 011.414 0z\"\n clip-rule=\"evenodd\" />\n</svg>",
150
+ "table": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-table\"><path d=\"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18\"></path></svg>",
151
+ "zap": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-zap\"><polygon points=\"13 2 3 14 12 14 11 22 21 10 12 10 13 2\"></polygon></svg>",
152
+ "square": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-square\"><rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"></rect></svg>"
153
+ }