@amboss/design-system 1.9.1 → 1.9.5

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 (279) hide show
  1. package/build/cjs/build-tokens/_breakpoints.json.js +7 -0
  2. package/build/cjs/build-tokens/_icon_sizes_map.json.js +5 -0
  3. package/build/cjs/build-tokens/assets/icons.json.js +76 -0
  4. package/build/cjs/build-tokens/assets/icons16.json.js +80 -0
  5. package/build/cjs/build-tokens/assets/logo.json.js +7 -0
  6. package/build/cjs/build-tokens/visualConfig.js +1464 -0
  7. package/build/cjs/src/components/Badge/Badge.js +62 -0
  8. package/build/cjs/src/components/Box/Box.js +88 -0
  9. package/build/cjs/src/components/Button/Button.js +246 -0
  10. package/build/cjs/src/components/Callout/Callout.js +86 -0
  11. package/build/cjs/src/components/Card/Card.js +68 -0
  12. package/build/cjs/src/components/Card/CardBox.js +22 -0
  13. package/build/cjs/src/components/Card/CardHeader/CardHeader.js +59 -0
  14. package/build/cjs/src/components/Collapsible/Collapsible.js +115 -0
  15. package/build/cjs/src/components/Column/Columns.js +145 -0
  16. package/build/cjs/src/components/Container/Container.js +55 -0
  17. package/build/cjs/src/components/Divider/Divider.js +67 -0
  18. package/build/cjs/src/components/DropdownMenu/DropdownMenu.js +226 -0
  19. package/build/cjs/src/components/DropdownMenu/MenuItem.js +102 -0
  20. package/build/cjs/src/components/Form/Checkbox/Checkbox.js +146 -0
  21. package/build/cjs/src/components/Form/FormErrorMessages/FormErrorMessages.js +26 -0
  22. package/build/cjs/src/components/Form/FormField/FormField.js +56 -0
  23. package/build/cjs/src/components/Form/FormFieldGroup/FormFieldGroup.js +54 -0
  24. package/build/cjs/src/components/Form/FormLabelText/FormLabelText.js +41 -0
  25. package/build/cjs/src/components/Form/Input/Input.js +181 -0
  26. package/build/cjs/src/components/Form/PasswordInput/PasswordInput.js +224 -0
  27. package/build/cjs/src/components/Form/Radio/Radio.js +137 -0
  28. package/build/cjs/src/components/Form/RadioButton/RadioButton.js +137 -0
  29. package/build/cjs/src/components/Form/Select/Select.js +287 -0
  30. package/build/cjs/src/components/Form/Textarea/Textarea.js +89 -0
  31. package/build/cjs/src/components/Form/Toggle/Toggle.js +178 -0
  32. package/build/cjs/src/components/Form/ToggleButton/ToggleButton.js +142 -0
  33. package/build/cjs/src/components/Icon/Icon.js +91 -0
  34. package/build/cjs/src/components/Inline/Inline.js +110 -0
  35. package/build/cjs/src/components/Link/Link.js +78 -0
  36. package/build/cjs/src/components/Logo/Logo.js +43 -0
  37. package/build/cjs/src/components/MediaItem/MediaItem.js +124 -0
  38. package/build/cjs/src/components/MediaViewerBar/MediaViewerBar.js +72 -0
  39. package/build/cjs/src/components/Notification/Notification.js +106 -0
  40. package/build/cjs/src/components/Patterns/ButtonGroup/ButtonGroup.js +43 -0
  41. package/build/cjs/src/components/Patterns/Modal/Modal.js +220 -0
  42. package/build/cjs/src/components/PictogramButton/PictogramButton.js +118 -0
  43. package/build/cjs/src/components/Portal/Portal.js +22 -0
  44. package/build/cjs/src/components/ProgressBar/ProgressBar.js +38 -0
  45. package/build/cjs/src/components/RoundButton/RoundButton.js +116 -0
  46. package/build/cjs/src/components/SearchResult/SearchResult.js +177 -0
  47. package/build/cjs/src/components/SegmentedProgressBar/SegmentedProgressBar.js +107 -0
  48. package/build/cjs/src/components/SegmentedProgressBar/SegmentedProgressBarUtil.js +42 -0
  49. package/build/cjs/src/components/Stack/Stack.js +77 -0
  50. package/build/cjs/src/components/SubThemeProvider/SubThemeProvider.js +54 -0
  51. package/build/cjs/src/components/Tabs/Tabs.js +132 -0
  52. package/build/cjs/src/components/Typography/Header/Header.js +114 -0
  53. package/build/cjs/src/components/Typography/StyledText/StyledText.js +167 -0
  54. package/build/cjs/src/components/Typography/Text/Text.js +61 -0
  55. package/build/cjs/src/components/Typography/TextClamped/TextClamped.js +53 -0
  56. package/build/cjs/src/components/VirtualScrollList/VirtualScrollList.js +115 -0
  57. package/build/cjs/src/components/VirtualScrollList/VirtualScrollListReducer.js +131 -0
  58. package/build/cjs/src/index.js +120 -0
  59. package/build/cjs/src/shared/flattenChildren.js +33 -0
  60. package/build/cjs/src/shared/informDeprecation.js +12 -0
  61. package/build/cjs/src/shared/mediaQueries.js +68 -0
  62. package/build/cjs/src/shared/useAutoPosition.js +42 -0
  63. package/build/cjs/src/shared/useDocument.js +7 -0
  64. package/build/cjs/src/shared/useHover.js +26 -0
  65. package/build/cjs/src/shared/useKeyboard.js +43 -0
  66. package/build/cjs/src/shared/useOnEscapePress.js +52 -0
  67. package/build/cjs/src/shared/useOutsideClick.js +33 -0
  68. package/build/cjs/src/shared/useWindow.js +7 -0
  69. package/build/esm/build-tokens/_breakpoints.json.js +4 -0
  70. package/build/esm/build-tokens/_breakpoints.json.js.map +1 -0
  71. package/build/esm/build-tokens/_icon_sizes_map.json.js +4 -0
  72. package/build/esm/build-tokens/_icon_sizes_map.json.js.map +1 -0
  73. package/build/esm/build-tokens/assets/icons.json.js +4 -0
  74. package/build/esm/build-tokens/assets/icons.json.js.map +1 -0
  75. package/build/esm/build-tokens/assets/icons16.json.js +4 -0
  76. package/build/esm/build-tokens/assets/icons16.json.js.map +1 -0
  77. package/build/esm/build-tokens/assets/logo.json.js +4 -0
  78. package/build/esm/build-tokens/assets/logo.json.js.map +1 -0
  79. package/build/esm/build-tokens/visualConfig.js +1463 -0
  80. package/build/esm/build-tokens/visualConfig.js.map +1 -0
  81. package/build/esm/src/components/Badge/Badge.js +56 -0
  82. package/build/esm/src/components/Badge/Badge.js.map +1 -0
  83. package/build/esm/src/components/Box/Box.js +81 -0
  84. package/build/esm/src/components/Box/Box.js.map +1 -0
  85. package/build/esm/src/components/Button/Button.js +238 -0
  86. package/build/esm/src/components/Button/Button.js.map +1 -0
  87. package/build/esm/src/components/Callout/Callout.js +80 -0
  88. package/build/esm/src/components/Callout/Callout.js.map +1 -0
  89. package/build/esm/src/components/Card/Card.js +62 -0
  90. package/build/esm/src/components/Card/Card.js.map +1 -0
  91. package/build/esm/src/components/Card/CardBox.js +17 -0
  92. package/build/esm/src/components/Card/CardBox.js.map +1 -0
  93. package/build/esm/src/components/Card/CardHeader/CardHeader.js +52 -0
  94. package/build/esm/src/components/Card/CardHeader/CardHeader.js.map +1 -0
  95. package/build/esm/src/components/Collapsible/Collapsible.js +107 -0
  96. package/build/esm/src/components/Collapsible/Collapsible.js.map +1 -0
  97. package/build/esm/src/components/Column/Columns.js +139 -0
  98. package/build/esm/src/components/Column/Columns.js.map +1 -0
  99. package/build/esm/src/components/Container/Container.js +49 -0
  100. package/build/esm/src/components/Container/Container.js.map +1 -0
  101. package/build/esm/src/components/Divider/Divider.js +61 -0
  102. package/build/esm/src/components/Divider/Divider.js.map +1 -0
  103. package/build/esm/src/components/DropdownMenu/DropdownMenu.js +220 -0
  104. package/build/esm/src/components/DropdownMenu/DropdownMenu.js.map +1 -0
  105. package/build/esm/src/components/DropdownMenu/MenuItem.js +96 -0
  106. package/build/esm/src/components/DropdownMenu/MenuItem.js.map +1 -0
  107. package/build/esm/src/components/Form/Checkbox/Checkbox.js +139 -0
  108. package/build/esm/src/components/Form/Checkbox/Checkbox.js.map +1 -0
  109. package/build/esm/src/components/Form/FormErrorMessages/FormErrorMessages.js +21 -0
  110. package/build/esm/src/components/Form/FormErrorMessages/FormErrorMessages.js.map +1 -0
  111. package/build/esm/src/components/Form/FormField/FormField.js +50 -0
  112. package/build/esm/src/components/Form/FormField/FormField.js.map +1 -0
  113. package/build/esm/src/components/Form/FormFieldGroup/FormFieldGroup.js +48 -0
  114. package/build/esm/src/components/Form/FormFieldGroup/FormFieldGroup.js.map +1 -0
  115. package/build/esm/src/components/Form/FormLabelText/FormLabelText.js +35 -0
  116. package/build/esm/src/components/Form/FormLabelText/FormLabelText.js.map +1 -0
  117. package/build/esm/src/components/Form/Input/Input.js +174 -0
  118. package/build/esm/src/components/Form/Input/Input.js.map +1 -0
  119. package/build/esm/src/components/Form/PasswordInput/PasswordInput.js +217 -0
  120. package/build/esm/src/components/Form/PasswordInput/PasswordInput.js.map +1 -0
  121. package/build/esm/src/components/Form/Radio/Radio.js +130 -0
  122. package/build/esm/src/components/Form/Radio/Radio.js.map +1 -0
  123. package/build/esm/src/components/Form/RadioButton/RadioButton.js +130 -0
  124. package/build/esm/src/components/Form/RadioButton/RadioButton.js.map +1 -0
  125. package/build/esm/src/components/Form/Select/Select.js +281 -0
  126. package/build/esm/src/components/Form/Select/Select.js.map +1 -0
  127. package/build/esm/src/components/Form/Textarea/Textarea.js +83 -0
  128. package/build/esm/src/components/Form/Textarea/Textarea.js.map +1 -0
  129. package/build/esm/src/components/Form/Toggle/Toggle.js +171 -0
  130. package/build/esm/src/components/Form/Toggle/Toggle.js.map +1 -0
  131. package/build/esm/src/components/Form/ToggleButton/ToggleButton.js +135 -0
  132. package/build/esm/src/components/Form/ToggleButton/ToggleButton.js.map +1 -0
  133. package/build/esm/src/components/Icon/Icon.js +85 -0
  134. package/build/esm/src/components/Icon/Icon.js.map +1 -0
  135. package/build/esm/src/components/Inline/Inline.js +104 -0
  136. package/build/esm/src/components/Inline/Inline.js.map +1 -0
  137. package/build/esm/src/components/Link/Link.js +71 -0
  138. package/build/esm/src/components/Link/Link.js.map +1 -0
  139. package/build/esm/src/components/Logo/Logo.js +37 -0
  140. package/build/esm/src/components/Logo/Logo.js.map +1 -0
  141. package/build/esm/src/components/MediaItem/MediaItem.js +118 -0
  142. package/build/esm/src/components/MediaItem/MediaItem.js.map +1 -0
  143. package/build/esm/src/components/MediaViewerBar/MediaViewerBar.js +66 -0
  144. package/build/esm/src/components/MediaViewerBar/MediaViewerBar.js.map +1 -0
  145. package/build/esm/src/components/Notification/Notification.js +100 -0
  146. package/build/esm/src/components/Notification/Notification.js.map +1 -0
  147. package/build/esm/src/components/Patterns/ButtonGroup/ButtonGroup.js +38 -0
  148. package/build/esm/src/components/Patterns/ButtonGroup/ButtonGroup.js.map +1 -0
  149. package/build/esm/src/components/Patterns/Modal/Modal.js +213 -0
  150. package/build/esm/src/components/Patterns/Modal/Modal.js.map +1 -0
  151. package/build/esm/src/components/PictogramButton/PictogramButton.js +111 -0
  152. package/build/esm/src/components/PictogramButton/PictogramButton.js.map +1 -0
  153. package/build/esm/src/components/Portal/Portal.js +16 -0
  154. package/build/esm/src/components/Portal/Portal.js.map +1 -0
  155. package/build/esm/src/components/ProgressBar/ProgressBar.js +33 -0
  156. package/build/esm/src/components/ProgressBar/ProgressBar.js.map +1 -0
  157. package/build/esm/src/components/RoundButton/RoundButton.js +109 -0
  158. package/build/esm/src/components/RoundButton/RoundButton.js.map +1 -0
  159. package/build/esm/src/components/SearchResult/SearchResult.js +171 -0
  160. package/build/esm/src/components/SearchResult/SearchResult.js.map +1 -0
  161. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBar.js +101 -0
  162. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBar.js.map +1 -0
  163. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBarUtil.js +40 -0
  164. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBarUtil.js.map +1 -0
  165. package/build/esm/src/components/Stack/Stack.js +71 -0
  166. package/build/esm/src/components/Stack/Stack.js.map +1 -0
  167. package/build/esm/src/components/SubThemeProvider/SubThemeProvider.js +49 -0
  168. package/build/esm/src/components/SubThemeProvider/SubThemeProvider.js.map +1 -0
  169. package/build/esm/src/components/Tabs/Tabs.js +125 -0
  170. package/build/esm/src/components/Tabs/Tabs.js.map +1 -0
  171. package/build/esm/src/components/Typography/Header/Header.js +104 -0
  172. package/build/esm/src/components/Typography/Header/Header.js.map +1 -0
  173. package/build/esm/src/components/Typography/StyledText/StyledText.js +160 -0
  174. package/build/esm/src/components/Typography/StyledText/StyledText.js.map +1 -0
  175. package/build/esm/src/components/Typography/Text/Text.js +55 -0
  176. package/build/esm/src/components/Typography/Text/Text.js.map +1 -0
  177. package/build/esm/src/components/Typography/TextClamped/TextClamped.js +46 -0
  178. package/build/esm/src/components/Typography/TextClamped/TextClamped.js.map +1 -0
  179. package/build/esm/src/components/VirtualScrollList/VirtualScrollList.js +109 -0
  180. package/build/esm/src/components/VirtualScrollList/VirtualScrollList.js.map +1 -0
  181. package/build/esm/src/components/VirtualScrollList/VirtualScrollListReducer.js +130 -0
  182. package/build/esm/src/components/VirtualScrollList/VirtualScrollListReducer.js.map +1 -0
  183. package/build/esm/src/index.js +53 -0
  184. package/build/esm/src/index.js.map +1 -0
  185. package/build/esm/src/shared/flattenChildren.d.ts +11 -0
  186. package/build/esm/src/shared/flattenChildren.js +32 -0
  187. package/build/esm/src/shared/flattenChildren.js.map +1 -0
  188. package/build/esm/src/shared/informDeprecation.js +11 -0
  189. package/build/esm/src/shared/informDeprecation.js.map +1 -0
  190. package/build/esm/src/shared/mediaQueries.js +66 -0
  191. package/build/esm/src/shared/mediaQueries.js.map +1 -0
  192. package/build/esm/src/shared/useAutoPosition.js +41 -0
  193. package/build/esm/src/shared/useAutoPosition.js.map +1 -0
  194. package/build/esm/src/shared/useDocument.js +6 -0
  195. package/build/esm/src/shared/useDocument.js.map +1 -0
  196. package/build/esm/src/shared/useHover.js +25 -0
  197. package/build/esm/src/shared/useHover.js.map +1 -0
  198. package/build/esm/src/shared/useKeyboard.js +42 -0
  199. package/build/esm/src/shared/useKeyboard.js.map +1 -0
  200. package/build/esm/src/shared/useOnEscapePress.js +51 -0
  201. package/build/esm/src/shared/useOnEscapePress.js.map +1 -0
  202. package/build/esm/src/shared/useOutsideClick.js +32 -0
  203. package/build/esm/src/shared/useOutsideClick.js.map +1 -0
  204. package/build/esm/src/shared/useWindow.js +6 -0
  205. package/build/esm/src/shared/useWindow.js.map +1 -0
  206. package/package.json +27 -9
  207. package/build/build-tokens/assets/icons.json +0 -131
  208. package/build/build-tokens/assets/icons16.json +0 -142
  209. package/build/build-tokens/assets/logo.json +0 -3
  210. package/build/index.js +0 -3
  211. package/build/index.js.LICENSE.txt +0 -8
  212. package/build/index.js.map +0 -1
  213. /package/build/{build-tokens → esm/build-tokens}/_subThemeType.d.ts +0 -0
  214. /package/build/{build-tokens → esm/build-tokens}/visualConfig.d.ts +0 -0
  215. /package/build/{src → esm/src}/components/Badge/Badge.d.ts +0 -0
  216. /package/build/{src → esm/src}/components/Box/Box.d.ts +0 -0
  217. /package/build/{src → esm/src}/components/Button/Button.d.ts +0 -0
  218. /package/build/{src → esm/src}/components/Callout/Callout.d.ts +0 -0
  219. /package/build/{src → esm/src}/components/Card/Card.d.ts +0 -0
  220. /package/build/{src → esm/src}/components/Card/CardBox.d.ts +0 -0
  221. /package/build/{src → esm/src}/components/Card/CardHeader/CardHeader.d.ts +0 -0
  222. /package/build/{src → esm/src}/components/Collapsible/Collapsible.d.ts +0 -0
  223. /package/build/{src → esm/src}/components/Column/Columns.d.ts +0 -0
  224. /package/build/{src → esm/src}/components/Container/Container.d.ts +0 -0
  225. /package/build/{src → esm/src}/components/Divider/Divider.d.ts +0 -0
  226. /package/build/{src → esm/src}/components/DropdownMenu/DropdownMenu.d.ts +0 -0
  227. /package/build/{src → esm/src}/components/DropdownMenu/MenuItem.d.ts +0 -0
  228. /package/build/{src → esm/src}/components/Form/Checkbox/Checkbox.d.ts +0 -0
  229. /package/build/{src → esm/src}/components/Form/FormErrorMessages/FormErrorMessages.d.ts +0 -0
  230. /package/build/{src → esm/src}/components/Form/FormField/FormField.d.ts +0 -0
  231. /package/build/{src → esm/src}/components/Form/FormFieldGroup/FormFieldGroup.d.ts +0 -0
  232. /package/build/{src → esm/src}/components/Form/FormLabelText/FormLabelText.d.ts +0 -0
  233. /package/build/{src → esm/src}/components/Form/Input/Input.d.ts +0 -0
  234. /package/build/{src → esm/src}/components/Form/PasswordInput/PasswordInput.d.ts +0 -0
  235. /package/build/{src → esm/src}/components/Form/Radio/Radio.d.ts +0 -0
  236. /package/build/{src → esm/src}/components/Form/RadioButton/RadioButton.d.ts +0 -0
  237. /package/build/{src → esm/src}/components/Form/Select/Select.d.ts +0 -0
  238. /package/build/{src → esm/src}/components/Form/Textarea/Textarea.d.ts +0 -0
  239. /package/build/{src → esm/src}/components/Form/Toggle/Toggle.d.ts +0 -0
  240. /package/build/{src → esm/src}/components/Form/ToggleButton/ToggleButton.d.ts +0 -0
  241. /package/build/{src → esm/src}/components/Icon/Icon.d.ts +0 -0
  242. /package/build/{src → esm/src}/components/Inline/Inline.d.ts +0 -0
  243. /package/build/{src → esm/src}/components/Link/Link.d.ts +0 -0
  244. /package/build/{src → esm/src}/components/Logo/Logo.d.ts +0 -0
  245. /package/build/{src → esm/src}/components/MediaItem/MediaItem.d.ts +0 -0
  246. /package/build/{src → esm/src}/components/MediaViewerBar/MediaViewerBar.d.ts +0 -0
  247. /package/build/{src → esm/src}/components/Notification/ExpandedContent.d.ts +0 -0
  248. /package/build/{src → esm/src}/components/Notification/Notification.d.ts +0 -0
  249. /package/build/{src → esm/src}/components/Patterns/ButtonGroup/ButtonGroup.d.ts +0 -0
  250. /package/build/{src → esm/src}/components/Patterns/Modal/Modal.d.ts +0 -0
  251. /package/build/{src → esm/src}/components/PictogramButton/PictogramButton.d.ts +0 -0
  252. /package/build/{src → esm/src}/components/Portal/Portal.d.ts +0 -0
  253. /package/build/{src → esm/src}/components/ProgressBar/ProgressBar.d.ts +0 -0
  254. /package/build/{src → esm/src}/components/RoundButton/RoundButton.d.ts +0 -0
  255. /package/build/{src → esm/src}/components/SearchResult/SearchResult.d.ts +0 -0
  256. /package/build/{src → esm/src}/components/SegmentedProgressBar/SegmentedProgressBar.d.ts +0 -0
  257. /package/build/{src → esm/src}/components/SegmentedProgressBar/SegmentedProgressBarUtil.d.ts +0 -0
  258. /package/build/{src → esm/src}/components/ShadowWebComponent/ShadowWebComponent.d.ts +0 -0
  259. /package/build/{src → esm/src}/components/Stack/Stack.d.ts +0 -0
  260. /package/build/{src → esm/src}/components/SubThemeProvider/SubThemeProvider.d.ts +0 -0
  261. /package/build/{src → esm/src}/components/Tabs/Tabs.d.ts +0 -0
  262. /package/build/{src → esm/src}/components/Typography/Header/Header.d.ts +0 -0
  263. /package/build/{src → esm/src}/components/Typography/StyledText/StyledText.d.ts +0 -0
  264. /package/build/{src → esm/src}/components/Typography/Text/Text.d.ts +0 -0
  265. /package/build/{src → esm/src}/components/Typography/TextClamped/TextClamped.d.ts +0 -0
  266. /package/build/{src → esm/src}/components/VirtualScrollList/VirtualScrollList.d.ts +0 -0
  267. /package/build/{src → esm/src}/components/VirtualScrollList/VirtualScrollListReducer.d.ts +0 -0
  268. /package/build/{src → esm/src}/index.d.ts +0 -0
  269. /package/build/{src → esm/src}/shared/informDeprecation.d.ts +0 -0
  270. /package/build/{src → esm/src}/shared/mediaQueries.d.ts +0 -0
  271. /package/build/{src → esm/src}/shared/replaceDeprecated.d.ts +0 -0
  272. /package/build/{src → esm/src}/shared/useAutoPosition.d.ts +0 -0
  273. /package/build/{src → esm/src}/shared/useDocument.d.ts +0 -0
  274. /package/build/{src → esm/src}/shared/useHover.d.ts +0 -0
  275. /package/build/{src → esm/src}/shared/useKeyboard.d.ts +0 -0
  276. /package/build/{src → esm/src}/shared/useOnEscapePress.d.ts +0 -0
  277. /package/build/{src → esm/src}/shared/useOutsideClick.d.ts +0 -0
  278. /package/build/{src → esm/src}/shared/useWindow.d.ts +0 -0
  279. /package/build/{src → esm/src}/types/index.d.ts +0 -0
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var breakpoints = [{category:"breakpoint",name:"small",value:576,variableName:"$breakpoint-small"},{category:"breakpoint",name:"medium",value:768,variableName:"$breakpoint-medium"},{category:"breakpoint",name:"large",value:1280,variableName:"$breakpoint-large"}];
6
+
7
+ exports.default = breakpoints;
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ var icons={s:"16px",m:"24px",l:"48px"};
4
+
5
+ exports.icons = icons;
@@ -0,0 +1,76 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var apple="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M16.749 0c.214 1.458-.379 2.886-1.162 3.896-.837 1.084-2.28 1.922-3.679 1.879-.255-1.396.398-2.834 1.194-3.8C13.974.906 15.469.088 16.749 0zm4.201 20.518c.721-1.105.99-1.662 1.55-2.91-4.07-1.547-4.723-7.335-.694-9.556-1.23-1.54-2.956-2.434-4.586-2.434-1.174 0-1.979.306-2.71.585-.61.232-1.169.445-1.849.445-.734 0-1.385-.233-2.066-.477-.748-.269-1.533-.55-2.508-.55-1.83 0-3.776 1.117-5.01 3.028C1.34 11.34 1.636 16.4 4.45 20.71c1.006 1.542 2.35 3.275 4.107 3.29.73.008 1.215-.21 1.74-.445.601-.27 1.255-.563 2.386-.569 1.138-.007 1.78.29 2.374.564.511.236.986.454 1.71.447 1.758-.014 3.176-1.935 4.182-3.477z\"\n clip-rule=\"evenodd\" />\n</svg>";var article="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M4 2h16v20H4zm12 4H8m6 4H8\" />\n <path d=\"M8 14h8v4H8z\" />\n</svg>";var auditor="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <circle cx=\"6\" cy=\"7\" r=\"4\" />\n <circle cx=\"18\" cy=\"7\" r=\"4\" />\n <path\n d=\"M10 7h4m9 8.3c-.7.9-1.8 1.6-3.1 1.6-1.4 0-2.7-.7-3.3-1.8h0c-.4-.7-1.2-1.3-2.1-1.3-1.3 0-2.4 1-2.4 2.2 0 .3.1.6.2.9h0c.7 2 2.8 3.5 5.3 3.5 2.9 0 5.4-2.3 5.4-5.1h0zm-22 0c.7.9 1.8 1.6 3.1 1.6 1.4 0 2.7-.7 3.3-1.8h0c.4-.7 1.2-1.3 2.1-1.3 1.3 0 2.4 1 2.4 2.2 0 .3-.1.6-.2.9h0c-.7 2-2.8 3.5-5.3 3.5-2.9 0-5.4-2.3-5.4-5.1h0z\" />\n</svg>";var award="<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 15C15.866 15 19 11.866 19 8C19 4.13401 15.866 1 12 1C8.13401 1 5 4.13401 5 8C5 11.866 8.13401 15 12 15Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M8.21 13.89L7 23L12 20L17 23L15.79 13.88\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n";var bell="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-bell\"><path d=\"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9\"></path><path d=\"M13.73 21a2 2 0 0 1-3.46 0\"></path></svg>";var book="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-book\"><path d=\"M4 19.5A2.5 2.5 0 0 1 6.5 17H20\"></path><path d=\"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z\"></path></svg>";var bookmark="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2v16z\" clip-rule=\"evenodd\" />\n</svg>";var box="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-box\"><path d=\"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z\"></path><polyline points=\"3.27 6.96 12 12.01 20.73 6.96\"></polyline><line x1=\"12\" y1=\"22.08\" x2=\"12\" y2=\"12\"></line></svg>";var bubble="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M20 3H6c-1.1 0-2 .9-2 2v5l-3 2 3 2v5c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\" />\n</svg>";var bulb="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path\n d=\"M14 10h-4m2 0v7.9m4 0v-4.1c1.6-1.2 2.6-3.1 2.6-5.2 0-3.7-3-6.6-6.6-6.6S5.4 4.9 5.4 8.6c0 2.1 1 4 2.6 5.2v4.1h8zm-8 0l2 4.1h4l2-4.1\" />\n</svg>";var calculator="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path\n d=\"M4 7h16M7.9 10.5h0m4 0h0m4 0h0m-8 4h0m4 0h0m4 0h0m-7.9 4h3.9m4 0h0M18 22H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2z\" />\n</svg>";var charts="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 10.5s1.366.011 1.5 0a.75.75 0 00.621-.443l1.65-3.875a.75.75 0 011.4.078l3.077 6.717a.75.75 0 001.449-.072l3.095-9.307a.75.75 0 011.457-.052L18.75 9.75c.045.157 0 .75 1.5.75H21\" />\n <path fill=\"currentColor\"\n d=\"M4 19.5a1 1 0 10-2 0h2zm-2 0v3h2v-3H2zm11 0a1 1 0 10-2 0h2zm-2 0v3h2v-3h-2zm11 0a1 1 0 10-2 0h2zm-2 0v3h2v-3h-2zm-11.5-3a1 1 0 10-2 0h2zm-2 0v6h2v-6h-2zm11 0a1 1 0 10-2 0h2zm-2 0v6h2v-6h-2z\" />\n</svg>";var check="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-check\"><polyline points=\"20 6 9 17 4 12\"></polyline></svg>";var circle="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle></svg>";var clipboard="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-clipboard\"><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><rect x=\"8\" y=\"2\" width=\"8\" height=\"4\" rx=\"1\" ry=\"1\"></rect></svg>";var coffee="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-coffee\"><path d=\"M18 8h1a4 4 0 0 1 0 8h-1\"></path><path d=\"M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"10\" y1=\"1\" x2=\"10\" y2=\"4\"></line><line x1=\"14\" y1=\"1\" x2=\"14\" y2=\"4\"></line></svg>";var collapse="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M15 20.3L12 18l-3 2.3m3 1.7v-4M9 3.7L12 6l3-2.3M12 2v4m-7 4h14M5 14h14\" />\n</svg>";var compass="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-compass\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><polygon points=\"16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76\"></polygon></svg>";var copy="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-copy\"><rect x=\"9\" y=\"9\" width=\"13\" height=\"13\" rx=\"2\" ry=\"2\"></rect><path d=\"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1\"></path></svg>";var download="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-download\"><path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4\"></path><polyline points=\"7 10 12 15 17 10\"></polyline><line x1=\"12\" y1=\"15\" x2=\"12\" y2=\"3\"></line></svg>";var education="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 2L1 8l11 6 11-6-11-6z\"\n clip-rule=\"evenodd\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M5 11v7l7 4.5 7-4.5v-7\" />\n <path stroke-linecap=\"round\" stroke-width=\"2\" d=\"M23 8v8\" />\n</svg>";var expand="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M9 19.7l3 2.3 3-2.3M12 18v4m3-17.7L12 2 9 4.3M12 6V2m-7 8h14M5 14h14\" />\n</svg>";var eye="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-eye\"><path d=\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle></svg>";var facebook="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"#1877F2\"\n d=\"M24 12c0-6.627-5.373-12-12-12S0 5.373 0 12c0 5.99 4.388 10.954 10.125 11.854V15.47H7.078V12h3.047V9.356c0-3.007 1.792-4.668 4.533-4.668 1.312 0 2.686.234 2.686.234v2.953H15.83c-1.491 0-1.956.925-1.956 1.875V12h3.328l-.532 3.469h-2.796v8.385C19.612 22.954 24 17.99 24 12z\" />\n <path fill=\"#fff\"\n d=\"M16.671 15.469L17.203 12h-3.328V9.75c0-.949.465-1.875 1.956-1.875h1.513V4.922s-1.374-.234-2.686-.234c-2.741 0-4.533 1.66-4.533 4.668V12H7.078v3.469h3.047v8.385a12.13 12.13 0 003.75 0V15.47h2.796z\" />\n</svg>";var film="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M2 4.18A2.18 2.18 0 014.18 2h15.64A2.18 2.18 0 0122 4.18v15.64A2.18 2.18 0 0119.82 22H4.18A2.18 2.18 0 012 19.82V4.18z\"\n clip-rule=\"evenodd\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M7 2v20M17 2v20M2 12h20M2 7h5M2 17h5m10 0h5M17 7h5\" />\n</svg>";var flag="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-flag\"><path d=\"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z\"></path><line x1=\"4\" y1=\"22\" x2=\"4\" y2=\"15\"></line></svg>";var flask="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M4.4 21h15.2c1.1 0 1.8-1.2 1.3-2.2L14.3 7.3V3H9.7v4.3L3.1 18.8c-.5 1 .2 2.2 1.3 2.2zM8.5 3h7M5 16h14\" />\n</svg>";var flowchart="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M2 5a1 1 0 011-1h3a1 1 0 011 1v4a1 1 0 01-1 1H3a1 1 0 01-1-1V5zm15 0a1 1 0 011-1h3a1 1 0 011 1v4a1 1 0 01-1 1h-3a1 1 0 01-1-1V5zm0 10a1 1 0 011-1h3a1 1 0 011 1v4a1 1 0 01-1 1h-3a1 1 0 01-1-1v-4z\"\n clip-rule=\"evenodd\" />\n <path stroke-width=\"2\" d=\"M17 7h-5M7 7h5m5 11h-3a2 2 0 01-2-2V7\" />\n</svg>";var folder="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M3.6 8a.58.58 0 00-.6.6v11.2c0 .348.252.6.6.6h12.8a.58.58 0 00.6-.6V11a.58.58 0 00-.6-.6H9.2c-.334 0-.646-.168-.832-.446L7.065 8H3.6zm12.8 14.4H3.6A2.572 2.572 0 011 19.8V8.6C1 7.142 2.142 6 3.6 6h4c.334 0 .646.167.832.444L9.735 8.4H16.4c1.458 0 2.6 1.143 2.6 2.6v8.8c0 1.459-1.142 2.6-2.6 2.6zM22 21a1 1 0 01-1-1V3H9v1a1 1 0 01-2 0V2a1 1 0 011-1h14a1 1 0 011 1v18a1 1 0 01-1 1zM18 7h-6a1 1 0 010-2h6a1 1 0 110 2z\" />\n</svg>";var gift="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M20.8 12v11H3.2V12M23 6.5H1V12h22V6.5zM12 23V6.5M12 6.5H7.05a2.75 2.75 0 110-5.5C10.9 1 12 6.5 12 6.5zM12 6.5h4.95a2.75 2.75 0 000-5.5C13.1 1 12 6.5 12 6.5z\" />\n</svg>";var google="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"#EA4335\"\n d=\"M12 4.64c2.253 0 3.773.973 4.64 1.787l3.387-3.307C17.947 1.187 15.24 0 12 0 7.307 0 3.253 2.693 1.28 6.613l3.88 3.014C6.133 6.733 8.827 4.64 12 4.64z\" />\n <path fill=\"#4285F4\"\n d=\"M23.52 12.267c0-.987-.08-1.707-.253-2.454H12v4.454h6.613c-.133 1.106-.853 2.773-2.453 3.893l3.787 2.933C22.213 19 23.52 15.92 23.52 12.267z\" />\n <path fill=\"#FBBC05\"\n d=\"M5.173 14.373a7.387 7.387 0 01-.4-2.373c0-.827.147-1.627.387-2.373L1.28 6.613A12.01 12.01 0 000 12c0 1.933.467 3.76 1.28 5.387l3.893-3.014z\" />\n <path fill=\"#34A853\"\n d=\"M12 24c3.24 0 5.96-1.067 7.947-2.907L16.16 18.16c-1.013.707-2.373 1.2-4.16 1.2-3.173 0-5.867-2.093-6.827-4.987l-3.88 3.014C3.267 21.307 7.307 24 12 24z\" />\n</svg>";var hash="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-hash\"><line x1=\"4\" y1=\"9\" x2=\"20\" y2=\"9\"></line><line x1=\"4\" y1=\"15\" x2=\"20\" y2=\"15\"></line><line x1=\"10\" y1=\"3\" x2=\"8\" y2=\"21\"></line><line x1=\"16\" y1=\"3\" x2=\"14\" y2=\"21\"></line></svg>";var headphones="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 18v-6a9 9 0 0118 0v6\" />\n <path fill=\"currentColor\"\n d=\"M21 14h1a1 1 0 00-1-1v1zM3 14v-1a1 1 0 00-1 1h1zm17 5a1 1 0 01-1 1v2a3 3 0 003-3h-2zm-1 1h-1v2h1v-2zm-1 0a1 1 0 01-1-1h-2a3 3 0 003 3v-2zm-1-1v-3h-2v3h2zm0-3a1 1 0 011-1v-2a3 3 0 00-3 3h2zm1-1h3v-2h-3v2zm2-1v5h2v-5h-2zM2 19a3 3 0 003 3v-2a1 1 0 01-1-1H2zm3 3h1v-2H5v2zm1 0a3 3 0 003-3H7a1 1 0 01-1 1v2zm3-3v-3H7v3h2zm0-3a3 3 0 00-3-3v2a1 1 0 011 1h2zm-3-3H3v2h3v-2zm-4 1v5h2v-5H2z\" />\n</svg>";var home="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-home\"><path d=\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"></path><polyline points=\"9 22 9 12 15 12 15 22\"></polyline></svg>";var illustration="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M3 5a2 2 0 012-2h14a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V5z\" clip-rule=\"evenodd\" />\n <path fill=\"currentColor\" d=\"M15 18a3 3 0 100-6 3 3 0 000 6z\" />\n <path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M13.38 10.8L10.5 6 6 13.5h4.756a4.514 4.514 0 012.624-2.7z\"\n clip-rule=\"evenodd\" />\n</svg>";var image="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-image\"><rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"></rect><circle cx=\"8.5\" cy=\"8.5\" r=\"1.5\"></circle><polyline points=\"21 15 16 10 5 21\"></polyline></svg>";var info="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-info\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"></line></svg>";var institution="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M9.5 11.5h5\" />\n <path stroke=\"currentColor\" stroke-width=\"2\"\n d=\"M17.75 9.582V19.75a1 1 0 01-1 1h-9.5a1 1 0 01-1-1V9.582a1 1 0 01.42-.815l4.75-3.378a1 1 0 011.16 0l4.75 3.378a1 1 0 01.42.815z\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M13.875 21v-5.25h-3.75V21\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"\n d=\"M4.8 12H4a1 1 0 00-1 1v7a1 1 0 001 1h16a1 1 0 001-1v-7a1 1 0 00-1-1h-.8m-7.005-7.126V2m.305 1.5L15 3\" />\n</svg>";var key="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-key\"><path d=\"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4\"></path></svg>";var layers="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-layers\"><polygon points=\"12 2 2 7 12 12 22 7 12 2\"></polygon><polyline points=\"2 17 12 22 22 17\"></polyline><polyline points=\"2 12 12 17 22 12\"></polyline></svg>";var link="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-link\"><path d=\"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71\"></path><path d=\"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71\"></path></svg>";var list="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-list\"><line x1=\"8\" y1=\"6\" x2=\"21\" y2=\"6\"></line><line x1=\"8\" y1=\"12\" x2=\"21\" y2=\"12\"></line><line x1=\"8\" y1=\"18\" x2=\"21\" y2=\"18\"></line><line x1=\"3\" y1=\"6\" x2=\"3.01\" y2=\"6\"></line><line x1=\"3\" y1=\"12\" x2=\"3.01\" y2=\"12\"></line><line x1=\"3\" y1=\"18\" x2=\"3.01\" y2=\"18\"></line></svg>";var loader="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-loader\"><line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"6\"></line><line x1=\"12\" y1=\"18\" x2=\"12\" y2=\"22\"></line><line x1=\"4.93\" y1=\"4.93\" x2=\"7.76\" y2=\"7.76\"></line><line x1=\"16.24\" y1=\"16.24\" x2=\"19.07\" y2=\"19.07\"></line><line x1=\"2\" y1=\"12\" x2=\"6\" y2=\"12\"></line><line x1=\"18\" y1=\"12\" x2=\"22\" y2=\"12\"></line><line x1=\"4.93\" y1=\"19.07\" x2=\"7.76\" y2=\"16.24\"></line><line x1=\"16.24\" y1=\"7.76\" x2=\"19.07\" y2=\"4.93\"></line></svg>";var lock="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-lock\"><rect x=\"3\" y=\"11\" width=\"18\" height=\"11\" rx=\"2\" ry=\"2\"></rect><path d=\"M7 11V7a5 5 0 0 1 10 0v4\"></path></svg>";var mail="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-mail\"><path d=\"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z\"></path><polyline points=\"22,6 12,13 2,6\"></polyline></svg>";var maximize="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-maximize\"><path d=\"M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3\"></path></svg>";var meditricks="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M5.784 18.226l1.926 1.541 3.484-4.758c.188-.257.525-.39.806-.409a1 1 0 01.802.402l3.482 4.67 1.941-1.553-3.33-4.527a1.002 1.002 0 01.475-1.536l5.35-1.868-.819-2.295-5.45 2.043A.997.997 0 0113.101 9V3h-2.3v6a.998.998 0 01-1.357.934L4.098 7.897l-.82 2.299 5.461 1.963a1.002 1.002 0 01.46 1.544l-3.415 4.523zM7.9 22.2c-.225 0-.446-.077-.624-.219l-3.5-2.8a1 1 0 01-.174-1.384l3.182-4.216-5.122-1.84a1.001 1.001 0 01-.604-1.278l1.5-4.2c.091-.253.28-.459.524-.572.244-.111.523-.121.774-.026L8.8 7.549V2a1 1 0 011-1h4.3a1 1 0 011 1v5.557l5.05-1.894a.999.999 0 011.292.6l1.5 4.2a.999.999 0 01-.612 1.281l-5.022 1.753 3.098 4.209a1.001 1.001 0 01-.18 1.374l-3.5 2.801a1.002 1.002 0 01-1.427-.183l-3.29-4.415-3.302 4.507a1 1 0 01-.807.41z\" />\n</svg>";var menu="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-menu\"><line x1=\"3\" y1=\"12\" x2=\"21\" y2=\"12\"></line><line x1=\"3\" y1=\"6\" x2=\"21\" y2=\"6\"></line><line x1=\"3\" y1=\"18\" x2=\"21\" y2=\"18\"></line></svg>";var minus="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-minus\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line></svg>";var percent="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-percent\"><line x1=\"19\" y1=\"5\" x2=\"5\" y2=\"19\"></line><circle cx=\"6.5\" cy=\"6.5\" r=\"2.5\"></circle><circle cx=\"17.5\" cy=\"17.5\" r=\"2.5\"></circle></svg>";var pill="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4.222 12.707a5 5 0 007.071 7.071l4.243-4.242-7.071-7.072-4.243 4.243z\" />\n <path fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M12.707 4.222L8.465 8.464l7.07 7.072 4.244-4.243a5 5 0 10-7.072-7.071v0z\" />\n</svg>";var plus="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-plus\"><line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"></line><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line></svg>";var quiz="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"22\" height=\"22\" fill=\"none\" viewBox=\"0 0 22 22\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M6.8 12.1a1 1 0 110 2C3.05 14.1 0 11.005 0 7.2 0 3.387 2.987.4 6.8.4c3.75 0 6.8 3.05 6.8 6.8a1 1 0 11-2 0c0-2.646-2.154-4.8-4.8-4.8C4.109 2.4 2 4.509 2 7.2c0 2.748 2.109 4.9 4.8 4.9zm-1-7.4a1 1 0 012 0v2.085l1.007 1.008a.999.999 0 11-1.414 1.414l-1.3-1.3A.997.997 0 015.8 7.2V4.7zm7.3 12.486L10.914 15 17.4 8.514l2.185 2.186-6.486 6.486zM10.686 19.6H8.5v-2.185l1-1 2.186 2.185-1 1zm11.02-9.607l-3.598-3.6a1.003 1.003 0 00-1.414 0l-9.901 9.9A1.003 1.003 0 006.5 17v3.6a1 1 0 001 1h3.6a1 1 0 00.708-.293l9.899-9.9a.999.999 0 000-1.414z\"\n clip-rule=\"evenodd\" />\n</svg>";var reset="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-rotate-ccw\"><polyline points=\"1 4 1 10 7 10\"></polyline><path d=\"M3.51 15a9 9 0 1 0 2.13-9.36L1 10\"></path></svg>";var search="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-search\"><circle cx=\"11\" cy=\"11\" r=\"8\"></circle><line x1=\"21\" y1=\"21\" x2=\"16.65\" y2=\"16.65\"></line></svg>";var settings="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-settings\"><circle cx=\"12\" cy=\"12\" r=\"3\"></circle><path d=\"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z\"></path></svg>";var share="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-share\"><path d=\"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8\"></path><polyline points=\"16 6 12 2 8 6\"></polyline><line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"15\"></line></svg>";var sliders="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-sliders\"><line x1=\"4\" y1=\"21\" x2=\"4\" y2=\"14\"></line><line x1=\"4\" y1=\"10\" x2=\"4\" y2=\"3\"></line><line x1=\"12\" y1=\"21\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"3\"></line><line x1=\"20\" y1=\"21\" x2=\"20\" y2=\"16\"></line><line x1=\"20\" y1=\"12\" x2=\"20\" y2=\"3\"></line><line x1=\"1\" y1=\"14\" x2=\"7\" y2=\"14\"></line><line x1=\"9\" y1=\"8\" x2=\"15\" y2=\"8\"></line><line x1=\"17\" y1=\"16\" x2=\"23\" y2=\"16\"></line></svg>";var smartzoom="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M7.593 15.164l-1.7-1a1 1 0 011.013-1.724l1.701.999a1.002 1.002 0 01-1.014 1.725zm7.288-8.6C17.989 7.917 20 10.926 20 14.401c0 4.676-3.504 8.372-8.151 8.6H5a1 1 0 110-1.999h6.8c3.514-.173 6.2-3.01 6.2-6.6 0-2.997-1.954-5.543-4.862-6.336a1 1 0 01-.598-1.475l1.076-1.817-2.545-1.42-3.695 6.37 2.561 1.43 1.103-1.862a1 1 0 011.082-.466c2.653.603 4.578 2.948 4.578 5.575 0 3.143-2.656 5.8-5.8 5.8a5.764 5.764 0 01-3.791-1.4H5a1 1 0 110-2h2.5c.265 0 .52.106.707.293a3.78 3.78 0 002.693 1.107c2.06 0 3.8-1.74 3.8-3.8 0-1.474-.953-2.815-2.345-3.406l-1.195 2.016a.998.998 0 01-1.347.363l-4.3-2.4A1.003 1.003 0 015.135 9.6l4.701-8.1a.996.996 0 011.352-.37l4.299 2.4a1.002 1.002 0 01.373 1.382l-.979 1.653z\" />\n</svg>";var sort="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M6 5v15m5-5l-5 5-5-5m17 4V4m-5 5l5-5 5 5\" />\n</svg>";var star="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-star\"><polygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\"></polygon></svg>";var stethoscope="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M13.1 2.5h2.3v4.6c0 3.2-2.6 5.7-5.7 5.7S4 10.2 4 7.1V2.5h2.3\" />\n <circle cx=\"17.7\" cy=\"15\" r=\"2.3\" />\n <path d=\"M17.7 17.5c0 2.2-1.8 4-4 4s-4-1.8-4-4m0 0v-4\" />\n</svg>";var tag="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-tag\"><path d=\"M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z\"></path><line x1=\"7\" y1=\"7\" x2=\"7.01\" y2=\"7\"></line></svg>";var twitter="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"#55ACEE\"\n d=\"M11.653 7.276l.052.858-.867-.105C7.682 7.626 4.925 6.26 2.584 3.967L1.439 2.83l-.294.84C.52 5.544.919 7.522 2.22 8.853c.693.735.537.84-.66.402-.415-.14-.78-.245-.814-.192-.122.122.294 1.715.624 2.346.45.875 1.37 1.733 2.376 2.24l.85.403-1.006.018c-.971 0-1.006.017-.902.385.347 1.138 1.717 2.346 3.243 2.871l1.075.368-.937.56a9.764 9.764 0 01-4.647 1.296c-.78.017-1.422.087-1.422.14 0 .175 2.116 1.155 3.347 1.54 3.694 1.138 8.08.648 11.376-1.295 2.34-1.383 4.682-4.132 5.774-6.793.59-1.418 1.18-4.01 1.18-5.252 0-.806.052-.91 1.023-1.874.572-.56 1.11-1.172 1.214-1.348.173-.332.156-.332-.729-.035-1.474.526-1.682.456-.953-.332.537-.56 1.179-1.576 1.179-1.873 0-.053-.26.035-.555.192-.312.175-1.006.438-1.526.595l-.937.298-.85-.578c-.467-.315-1.127-.665-1.473-.77-.885-.245-2.237-.21-3.035.07-2.168.788-3.538 2.819-3.382 5.042z\" />\n</svg>";var user="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-user\"><path d=\"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2\"></path><circle cx=\"12\" cy=\"7\" r=\"4\"></circle></svg>";var users="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-users\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"></path><circle cx=\"9\" cy=\"7\" r=\"4\"></circle><path d=\"M23 21v-2a4 4 0 0 0-3-3.87\"></path><path d=\"M16 3.13a4 4 0 0 1 0 7.75\"></path></svg>";var watch="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-watch\"><circle cx=\"12\" cy=\"12\" r=\"7\"></circle><polyline points=\"12 9 12 12 13.5 13.5\"></polyline><path d=\"M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83\"></path></svg>";var wifi="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-wifi\"><path d=\"M5 12.55a11 11 0 0 1 14.08 0\"></path><path d=\"M1.42 9a16 16 0 0 1 21.16 0\"></path><path d=\"M8.53 16.11a6 6 0 0 1 6.95 0\"></path><line x1=\"12\" y1=\"20\" x2=\"12.01\" y2=\"20\"></line></svg>";var x="<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-x\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>";var icons = {"alert-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-alert-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"16\" x2=\"12.01\" y2=\"16\"></line></svg>","alert-triangle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-alert-triangle\"><path d=\"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z\"></path><line x1=\"12\" y1=\"9\" x2=\"12\" y2=\"13\"></line><line x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\"></line></svg>","align-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-align-left\"><line x1=\"17\" y1=\"10\" x2=\"3\" y2=\"10\"></line><line x1=\"21\" y1=\"6\" x2=\"3\" y2=\"6\"></line><line x1=\"21\" y1=\"14\" x2=\"3\" y2=\"14\"></line><line x1=\"17\" y1=\"18\" x2=\"3\" y2=\"18\"></line></svg>",apple:apple,"arrow-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" 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>","arrow-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-left\"><line x1=\"19\" y1=\"12\" x2=\"5\" y2=\"12\"></line><polyline points=\"12 19 5 12 12 5\"></polyline></svg>","arrow-right":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-arrow-right\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line><polyline points=\"12 5 19 12 12 19\"></polyline></svg>","arrow-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" 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>",article:article,auditor:auditor,award:award,"bar-chart-2":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-bar-chart-2\"><line x1=\"18\" y1=\"20\" x2=\"18\" y2=\"10\"></line><line x1=\"12\" y1=\"20\" x2=\"12\" y2=\"4\"></line><line x1=\"6\" y1=\"20\" x2=\"6\" y2=\"14\"></line></svg>",bell:bell,book:book,bookmark:bookmark,"book-open":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-book-open\"><path d=\"M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z\"></path><path d=\"M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z\"></path></svg>",box:box,bubble:bubble,"bubble-check":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" stroke=\"currentColor\"\n viewBox=\"0 0 24 24\">\n <path stroke=\"none\"\n d=\"M2.803 12l1.752 1.168c.278.186.445.499.445.832v5c0 .552.449 1 1 1h14a1 1 0 001-1V5c0-.551-.448-1-1-1H6c-.551 0-1 .449-1 1v5c0 .334-.167.646-.445.832L2.803 12zM20 22H6c-1.654 0-3-1.345-3-3v-4.464L.446 12.832a1 1 0 010-1.664L3 9.465V5c0-1.654 1.346-3 3-3h14c1.655 0 3 1.346 3 3v14c0 1.655-1.345 3-3 3z\" />\n <path fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M17 9l-6 6-2.5-2.5\" />\n</svg>","bubble-image":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M15.9 7.7a1.301 1.301 0 010 2.6A1.302 1.302 0 0114.6 9c0-.717.583-1.3 1.3-1.3zm0 4.6c1.82 0 3.3-1.48 3.3-3.3 0-1.82-1.48-3.3-3.3-3.3A3.304 3.304 0 0012.6 9c0 1.82 1.48 3.3 3.3 3.3zM6 20c-.551 0-1-.448-1-1v-2.586l3-3 5.293 5.293a.997.997 0 001.414 0l2.263-2.263 3.233 3.515c-.068.015-.131.041-.203.041H6zm-3.197-8l1.752-1.168C4.833 10.646 5 10.334 5 10V5c0-.552.449-1 1-1h14a1 1 0 011 1v12.871l-3.264-3.548a1 1 0 00-1.443-.03L14 16.586l-5.293-5.294a1.03 1.03 0 00-1.414 0l-2.362 2.363a1.004 1.004 0 00-.376-.487L2.803 12zM20 2H6C4.346 2 3 3.345 3 5v4.464L.445 11.167a1.002 1.002 0 000 1.665L3 14.535V19c0 1.654 1.346 3 3 3h14c1.654 0 3-1.346 3-3V5c0-1.655-1.346-3-3-3z\" />\n</svg>","bubble-pill":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M20 2c1.654 0 3 1.345 3 3v14c0 1.654-1.346 3-3 3H6c-1.654 0-3-1.346-3-3v-4.465L.445 12.832a1.001 1.001 0 010-1.665L3 9.464V5c0-1.655 1.346-3 3-3h14zm1 17V5a1 1 0 00-1-1H6c-.551 0-1 .448-1 1v5c0 .334-.167.646-.445.832L2.803 12l1.752 1.168c.278.186.445.498.445.832v5c0 .552.449 1 1 1h14a1 1 0 001-1zM15.117 6.487a3.161 3.161 0 012.426 1.044c1.26 1.4 1.244 3.497-.036 4.776-.018.018-.041.023-.06.04-.016.018-.022.042-.04.06l-4 4c-.021.021-.05.028-.073.048-.024.027-.037.062-.065.088-.72.648-1.595.971-2.445.971a3.15 3.15 0 01-2.367-1.045c-1.26-1.399-1.243-3.497.036-4.777.018-.017.04-.023.06-.039.016-.019.022-.043.04-.06l4-4c.022-.022.05-.03.074-.05.025-.027.036-.06.065-.087a3.696 3.696 0 012.385-.969zm.976 4.405c.527-.526.512-1.416-.036-2.023a1.172 1.172 0 00-.9-.382 1.72 1.72 0 00-1.087.456c-.01.01-.023.011-.034.02-.011.013-.016.031-.03.044L12.715 10.3l1.986 1.985 1.293-1.292c.018-.018.04-.024.059-.039.017-.02.022-.044.04-.062zm-4.1 4.1l1.293-1.293-1.986-1.985-1.293 1.293c-.018.017-.04.023-.06.04-.015.018-.021.042-.04.06-.527.527-.511 1.415.037 2.024.554.615 1.437.42 1.987-.074.01-.009.022-.01.032-.019.012-.015.017-.032.03-.046z\" />\n</svg>","bubble-text":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path fill=\"currentColor\"\n d=\"M2.803 12l1.752 1.168c.278.186.445.499.445.832v5c0 .552.449 1 1 1h14a1 1 0 001-1V5c0-.551-.448-1-1-1H6c-.551 0-1 .449-1 1v5c0 .334-.167.646-.445.832L2.803 12zM20 22H6c-1.654 0-3-1.345-3-3v-4.464L.446 12.832a1 1 0 010-1.664L3 9.465V5c0-1.654 1.346-3 3-3h14c1.655 0 3 1.346 3 3v14c0 1.655-1.345 3-3 3zm-4.2-7H8a1 1 0 110-2h7.8a1 1 0 110 2zm2.2-4H8a1 1 0 010-2h10a1 1 0 110 2z\" />\n</svg>",bulb:bulb,calculator:calculator,charts:charts,check:check,"check-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-check-circle\"><path d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"></path><polyline points=\"22 4 12 14.01 9 11.01\"></polyline></svg>","check-square":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 11l3 3L22 3\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M20 12v7a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h11\" />\n</svg>","checkmark-circle-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11zm5.7-13.3l-7 7c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3l-3-3c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0l2.3 2.3 6.3-6.3c.4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4z\"\n clip-rule=\"evenodd\" />\n</svg>","chevron-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-down\"><polyline points=\"6 9 12 15 18 9\"></polyline></svg>","chevrons-down":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" 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>","chevron-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-left\"><polyline points=\"15 18 9 12 15 6\"></polyline></svg>","chevron-right":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-right\"><polyline points=\"9 18 15 12 9 6\"></polyline></svg>","chevron-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevron-up\"><polyline points=\"18 15 12 9 6 15\"></polyline></svg>","chevrons-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" 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>",circle:circle,clipboard:clipboard,coffee:coffee,collapse:collapse,compass:compass,copy:copy,"corner-down-left":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 10l-5 5 5 5\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M20 4v7a4 4 0 01-4 4H4\" />\n</svg>","corner-down-right":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-corner-down-right\"><polyline points=\"15 10 20 15 15 20\"></polyline><path d=\"M4 4v7a4 4 0 0 0 4 4h12\"></path></svg>",download:download,"edit-3":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-edit-3\"><path d=\"M12 20h9\"></path><path d=\"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z\"></path></svg>","edit-3-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" stroke=\"currentColor\"\n viewBox=\"0 0 24 24\">\n <path fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 20h9\" />\n <path stroke=\"none\"\n d=\"M18 2.83c-.695 0-1.362.276-1.854.768l-12.5 12.5a.5.5 0 00-.131.232l-1 4a.5.5 0 00.606.606l4-1a.5.5 0 00.233-.131l12.5-12.5A2.62 2.62 0 0018 2.83z\" />\n</svg>","edit-square":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\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>",education:education,expand:expand,"external-link":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-external-link\"><path d=\"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\"></path><polyline points=\"15 3 21 3 21 9\"></polyline><line x1=\"10\" y1=\"14\" x2=\"21\" y2=\"3\"></line></svg>",eye:eye,"eye-off":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-eye-off\"><path d=\"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24\"></path><line x1=\"1\" y1=\"1\" x2=\"23\" y2=\"23\"></line></svg>",facebook:facebook,"face-happy":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M16 14.7c-2.2 2.2-5.8 2.2-8 0m.9-5.3h0m6.2 0h0\" />\n</svg>","face-neutral":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M8.9 9.4h0m6.2 0h0\" />\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M16 15.5H8\" />\n</svg>","face-sad":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M8.9 9.4h0m6.2 0h0\" />\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M8 16.3c2.2-2.2 5.8-2.2 8 0\" />\n</svg>","file-text":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-file-text\"><path d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z\"></path><polyline points=\"14 2 14 8 20 8\"></polyline><line x1=\"16\" y1=\"13\" x2=\"8\" y2=\"13\"></line><line x1=\"16\" y1=\"17\" x2=\"8\" y2=\"17\"></line><polyline points=\"10 9 9 9 8 9\"></polyline></svg>","filled-dot":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <circle cx=\"12\" cy=\"12\" r=\"4\" />\n</svg>",film:film,flag:flag,"flag-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" stroke=\"currentColor\"\n viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1v12z\" clip-rule=\"evenodd\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 22v-7\" />\n</svg>",flask:flask,flowchart:flowchart,folder:folder,"folder-check-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M1 5a3 3 0 013-3h5a1 1 0 01.832.445L11.535 5H20a3 3 0 013 3v11a3 3 0 01-3 3H4a3 3 0 01-3-3V5zm15.707 5.707a1 1 0 00-1.414-1.414L10 14.586l-1.793-1.793a1 1 0 00-1.414 1.414l2.5 2.5a1 1 0 001.414 0l6-6z\"\n clip-rule=\"evenodd\" />\n</svg>","folder-plus":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-folder-plus\"><path d=\"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z\"></path><line x1=\"12\" y1=\"11\" x2=\"12\" y2=\"17\"></line><line x1=\"9\" y1=\"14\" x2=\"15\" y2=\"14\"></line></svg>",gift:gift,google:google,"hammer-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path\n d=\"M15.741 3.293l6 6c.48.479.743 1.103.743 1.757 0 .654-.263 1.278-.743 1.758l-1.399 1.399a2.482 2.482 0 01-1.758.738 2.479 2.479 0 01-1.756-.737l-1.711-1.693-8.582 8.581a.997.997 0 01-1.414 0l-2.828-2.828a1 1 0 010-1.415l8.559-8.559-3.621-3.583A.998.998 0 017.934 3h7.1c.266 0 .52.105.707.293z\" />\n</svg>",hash:hash,headphones:headphones,"help-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-help-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\"></path><line x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\"></line></svg>",home:home,illustration:illustration,image:image,"image-broken":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M1 3a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v7h-3v3h-3v3h-3v3H3a2 2 0 0 1-2-2V3Z\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M23 18v-4h-3v3h-3v3h-3v3h7a2 2 0 0 0 2-2v-3Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6.5 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M15.188 10.707a1 1 0 0 0 1.414-1.414l-1.414 1.414ZM13.895 8l.707-.707a1 1 0 0 0-1.383-.03l.676.737ZM2.324 17.263l-.737.676 1.352 1.474.737-.676-1.352-1.474Zm14.278-7.97-2-2-1.414 1.414 2 2 1.414-1.414Zm-3.383-2.03-10.895 10 1.352 1.474 10.895-10-1.352-1.474Z\"/></svg>",info:info,institution:institution,key:key,layers:layers,link:link,list:list,loader:loader,lock:lock,mail:mail,maximize:maximize,"maximize-2":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-maximize-2\"><polyline points=\"15 3 21 3 21 9\"></polyline><polyline points=\"9 21 3 21 3 15\"></polyline><line x1=\"21\" y1=\"3\" x2=\"14\" y2=\"10\"></line><line x1=\"3\" y1=\"21\" x2=\"10\" y2=\"14\"></line></svg>","med-imaging":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-width=\"2\"\n d=\"M7.5 3H5a2 2 0 00-2 2v2.5m18 0V5a2 2 0 00-2-2h-2.5m0 18H19a2 2 0 002-2v-2.5m-18 0V19a2 2 0 002 2h2.5m9-3v-2.5a2 2 0 00-2-2h-5a2 2 0 00-2 2V18\" />\n <path fill=\"currentColor\" d=\"M12 10.5a3 3 0 100-6 3 3 0 000 6z\" />\n</svg>",meditricks:meditricks,menu:menu,"message-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path\n d=\"M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z\" />\n</svg>",minus:minus,"more-horizontal":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-more-horizontal\"><circle cx=\"12\" cy=\"12\" r=\"1\"></circle><circle cx=\"19\" cy=\"12\" r=\"1\"></circle><circle cx=\"5\" cy=\"12\" r=\"1\"></circle></svg>","more-vertical":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-more-vertical\"><circle cx=\"12\" cy=\"12\" r=\"1\"></circle><circle cx=\"12\" cy=\"5\" r=\"1\"></circle><circle cx=\"12\" cy=\"19\" r=\"1\"></circle></svg>",percent:percent,pill:pill,"play-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-play-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><polygon points=\"10 8 16 12 10 16 10 8\"></polygon></svg>","play-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M7.042 4.245a2 2 0 012.04.073l9.333 6a2 2 0 010 3.364l-9.333 6A2 2 0 016 18V6a2 2 0 011.042-1.755z\"\n clip-rule=\"evenodd\" />\n</svg>",plus:plus,"plus-circle":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-plus-circle\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"16\"></line><line x1=\"8\" y1=\"12\" x2=\"16\" y2=\"12\"></line></svg>","plus-circle-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm11-5a1 1 0 011 1v3h3a1 1 0 110 2h-3v3a1 1 0 11-2 0v-3H8a1 1 0 110-2h3V8a1 1 0 011-1z\"\n clip-rule=\"evenodd\" />\n</svg>",quiz:quiz,reset:reset,"rotate-cw":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-rotate-cw\"><polyline points=\"23 4 23 10 17 10\"></polyline><path d=\"M20.49 15a9 9 0 1 1-2.12-9.36L23 10\"></path></svg>",search:search,"search-list":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M4 6h16m-5 6h5m-4 6h4\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M7.125 19.5a4.375 4.375 0 100-8.75 4.375 4.375 0 000 8.75z\" clip-rule=\"evenodd\" />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M13.25 21.25l-3.033-3.033\" />\n</svg>",settings:settings,share:share,"shopping-bag":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-shopping-bag\"><path d=\"M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z\"></path><line x1=\"3\" y1=\"6\" x2=\"21\" y2=\"6\"></line><path d=\"M16 10a4 4 0 0 1-8 0\"></path></svg>","show-all":"<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=\"1.333\"\n d=\"M13.333 2H4c-.733 0-1.333.6-1.333 1.333v3.334L.667 8l2 1.333v3.334C2.667 13.4 3.267 14 4 14h9.333c.734 0 1.334-.6 1.334-1.333V3.333c0-.733-.6-1.333-1.334-1.333z\" />\n <path fill=\"currentColor\"\n d=\"M9.693 9.673H7.64l-.393 1.174H6L8.12 5.16h1.087l2.126 5.687h-1.246l-.394-1.174zm-1.74-.953h1.42L8.66 6.593 7.953 8.72z\" />\n</svg>",sliders:sliders,smartzoom:smartzoom,sort:sort,star:star,stethoscope:stethoscope,tag:tag,"text-zoom-reset":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M12.509 18H9.454l-.9-2H4.447l-.9 2H1.354l4.234-9.41h1.824l3.56 7.91 4.607-10.89h1.842L22.663 18H20.49l-1.269-3h-5.444l-1.269 3zM6.5 11.437L7.654 14H5.347L6.5 11.437zM18.376 13L16.5 8.566 14.624 13h3.752z\"\n clip-rule=\"evenodd\" />\n</svg>","thumbs-up":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-thumbs-up\"><path d=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"></path></svg>","timer-off":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M6.848 6.88a8 8 0 1011.275 11.27M19.748 15A8 8 0 0010 5.252M15.5 9.5l-.5.5\" />\n <path stroke-width=\"2\" d=\"M12 5V2\" />\n <path stroke-linecap=\"round\" stroke-width=\"2\" d=\"M10 2h4\" />\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 4l17 17\" />\n</svg>","timer-on":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n d=\"M12 21a8 8 0 100-16 8 8 0 000 16zm3-11l-3 3\" />\n <path stroke-width=\"2\" d=\"M12 5V2\" />\n <path stroke-linecap=\"round\" stroke-width=\"2\" d=\"M10 2h4\" />\n</svg>","trash-2":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-trash-2\"><polyline points=\"3 6 5 6 21 6\"></polyline><path d=\"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\"></path><line x1=\"10\" y1=\"11\" x2=\"10\" y2=\"17\"></line><line x1=\"14\" y1=\"11\" x2=\"14\" y2=\"17\"></line></svg>",twitter:twitter,user:user,users:users,watch:watch,"wifi-off":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-wifi-off\"><line x1=\"1\" y1=\"1\" x2=\"23\" y2=\"23\"></line><path d=\"M16.72 11.06A10.94 10.94 0 0 1 19 12.55\"></path><path d=\"M5 12.55a10.94 10.94 0 0 1 5.17-2.39\"></path><path d=\"M10.71 5.05A16 16 0 0 1 22.58 9\"></path><path d=\"M1.42 9a15.91 15.91 0 0 1 4.7-2.88\"></path><path d=\"M8.53 16.11a6 6 0 0 1 6.95 0\"></path><line x1=\"12\" y1=\"20\" x2=\"12.01\" y2=\"20\"></line></svg>",wifi:wifi,x:x,"x-circle-filled":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\"\n d=\"M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11zm4.707-15.707a1 1 0 010 1.414L13.414 12l3.293 3.293a1 1 0 01-1.414 1.414L12 13.414l-3.293 3.293a1 1 0 01-1.414-1.414L10.586 12 7.293 8.707a1 1 0 011.414-1.414L12 10.586l3.293-3.293a1 1 0 011.414 0z\"\n clip-rule=\"evenodd\" />\n</svg>"};
6
+
7
+ exports.apple = apple;
8
+ exports.article = article;
9
+ exports.auditor = auditor;
10
+ exports.award = award;
11
+ exports.bell = bell;
12
+ exports.book = book;
13
+ exports.bookmark = bookmark;
14
+ exports.box = box;
15
+ exports.bubble = bubble;
16
+ exports.bulb = bulb;
17
+ exports.calculator = calculator;
18
+ exports.charts = charts;
19
+ exports.check = check;
20
+ exports.circle = circle;
21
+ exports.clipboard = clipboard;
22
+ exports.coffee = coffee;
23
+ exports.collapse = collapse;
24
+ exports.compass = compass;
25
+ exports.copy = copy;
26
+ exports.default = icons;
27
+ exports.download = download;
28
+ exports.education = education;
29
+ exports.expand = expand;
30
+ exports.eye = eye;
31
+ exports.facebook = facebook;
32
+ exports.film = film;
33
+ exports.flag = flag;
34
+ exports.flask = flask;
35
+ exports.flowchart = flowchart;
36
+ exports.folder = folder;
37
+ exports.gift = gift;
38
+ exports.google = google;
39
+ exports.hash = hash;
40
+ exports.headphones = headphones;
41
+ exports.home = home;
42
+ exports.illustration = illustration;
43
+ exports.image = image;
44
+ exports.info = info;
45
+ exports.institution = institution;
46
+ exports.key = key;
47
+ exports.layers = layers;
48
+ exports.link = link;
49
+ exports.list = list;
50
+ exports.loader = loader;
51
+ exports.lock = lock;
52
+ exports.mail = mail;
53
+ exports.maximize = maximize;
54
+ exports.meditricks = meditricks;
55
+ exports.menu = menu;
56
+ exports.minus = minus;
57
+ exports.percent = percent;
58
+ exports.pill = pill;
59
+ exports.plus = plus;
60
+ exports.quiz = quiz;
61
+ exports.reset = reset;
62
+ exports.search = search;
63
+ exports.settings = settings;
64
+ exports.share = share;
65
+ exports.sliders = sliders;
66
+ exports.smartzoom = smartzoom;
67
+ exports.sort = sort;
68
+ exports.star = star;
69
+ exports.stethoscope = stethoscope;
70
+ exports.tag = tag;
71
+ exports.twitter = twitter;
72
+ exports.user = user;
73
+ exports.users = users;
74
+ exports.watch = watch;
75
+ exports.wifi = wifi;
76
+ exports.x = x;
@@ -0,0 +1,80 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var 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>";var icons16 = {"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>","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>","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>",apple:apple,"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>","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>","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>","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>",article:article,auditor:auditor,"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>",bell:bell,book:book,bookmark:bookmark,"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>",box:box,bubble:bubble,"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>","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>","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>","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>",bulb:bulb,calculator:calculator,charts:charts,check:check,"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>","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>","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>","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>","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>","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>","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>","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>","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>",circle:circle,clipboard:clipboard,coffee:coffee,collapse:collapse,compass:compass,copy:copy,"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>","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>",course:course,dot:dot,download:download,"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>","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>",edit:edit,"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>",education:education,expand:expand,"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>",eye:eye,"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>",facebook:facebook,"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>","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>","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>","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>","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>",film:film,flag:flag,"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>",flask:flask,flowchart:flowchart,folder:folder,"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>","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>",gift:gift,google:google,"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>",headphones:headphones,"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>",home:home,illustration:illustration,image:image,info:info,layers:layers,link:link,link2:link2,list:list,loader:loader,magic:magic,mail:mail,maximize:maximize,"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>","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>",meditricks:meditricks,menu:menu,"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>",minus:minus,"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>","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>","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>",note:note,"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>",paragraph:paragraph,patientinfo:patientinfo,percent:percent,pill:pill,"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>","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>",plus:plus,"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>","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>",reset:reset,"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>","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>",search:search,"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>",settings:settings,share:share,"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>","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>",sliders:sliders,smartzoom:smartzoom,sort:sort,"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>",star:star,"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>",stethoscope:stethoscope,subscript:subscript,superscript:superscript,tag:tag,"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","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>","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>","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>","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>","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>","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>",twitter:twitter,user:user,users:users,"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>",watch:watch,"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>",wifi:wifi,x:x,"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>"};
6
+
7
+ exports.apple = apple;
8
+ exports.article = article;
9
+ exports.auditor = auditor;
10
+ exports.bell = bell;
11
+ exports.book = book;
12
+ exports.bookmark = bookmark;
13
+ exports.box = box;
14
+ exports.bubble = bubble;
15
+ exports.bulb = bulb;
16
+ exports.calculator = calculator;
17
+ exports.charts = charts;
18
+ exports.check = check;
19
+ exports.circle = circle;
20
+ exports.clipboard = clipboard;
21
+ exports.coffee = coffee;
22
+ exports.collapse = collapse;
23
+ exports.compass = compass;
24
+ exports.copy = copy;
25
+ exports.course = course;
26
+ exports.default = icons16;
27
+ exports.dot = dot;
28
+ exports.download = download;
29
+ exports.edit = edit;
30
+ exports.education = education;
31
+ exports.expand = expand;
32
+ exports.eye = eye;
33
+ exports.facebook = facebook;
34
+ exports.film = film;
35
+ exports.flag = flag;
36
+ exports.flask = flask;
37
+ exports.flowchart = flowchart;
38
+ exports.folder = folder;
39
+ exports.gift = gift;
40
+ exports.google = google;
41
+ exports.headphones = headphones;
42
+ exports.home = home;
43
+ exports.illustration = illustration;
44
+ exports.image = image;
45
+ exports.info = info;
46
+ exports.layers = layers;
47
+ exports.link = link;
48
+ exports.link2 = link2;
49
+ exports.list = list;
50
+ exports.loader = loader;
51
+ exports.magic = magic;
52
+ exports.mail = mail;
53
+ exports.maximize = maximize;
54
+ exports.meditricks = meditricks;
55
+ exports.menu = menu;
56
+ exports.minus = minus;
57
+ exports.note = note;
58
+ exports.paragraph = paragraph;
59
+ exports.patientinfo = patientinfo;
60
+ exports.percent = percent;
61
+ exports.pill = pill;
62
+ exports.plus = plus;
63
+ exports.reset = reset;
64
+ exports.search = search;
65
+ exports.settings = settings;
66
+ exports.share = share;
67
+ exports.sliders = sliders;
68
+ exports.smartzoom = smartzoom;
69
+ exports.sort = sort;
70
+ exports.star = star;
71
+ exports.stethoscope = stethoscope;
72
+ exports.subscript = subscript;
73
+ exports.superscript = superscript;
74
+ exports.tag = tag;
75
+ exports.twitter = twitter;
76
+ exports.user = user;
77
+ exports.users = users;
78
+ exports.watch = watch;
79
+ exports.wifi = wifi;
80
+ exports.x = x;