@volverjs/ui-vue 0.0.1-beta.2

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 (933) hide show
  1. package/README.md +32 -0
  2. package/dist/DesignSystem.d.ts +67 -0
  3. package/dist/components/VvAccordion/VvAccordion.d.ts +32 -0
  4. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +104 -0
  5. package/dist/components/VvAccordion/useAccordionProps.d.ts +16 -0
  6. package/dist/components/VvAccordion/vv-accordion.es.js +262 -0
  7. package/dist/components/VvAccordion/vv-accordion.umd.js +1 -0
  8. package/dist/components/VvAccordionGroup/VvAccordionGroup.d.ts +50 -0
  9. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +170 -0
  10. package/dist/components/VvAccordionGroup/vv-accordion-group.es.js +315 -0
  11. package/dist/components/VvAccordionGroup/vv-accordion-group.umd.js +1 -0
  12. package/dist/components/VvBadge/VvBadge.d.ts +4 -0
  13. package/dist/components/VvBadge/VvBadge.vue.d.ts +56 -0
  14. package/dist/components/VvBadge/vv-badge.es.js +18 -0
  15. package/dist/components/VvBadge/vv-badge.umd.js +1 -0
  16. package/dist/components/VvBreadcrumb/VvBreadcrumb.d.ts +26 -0
  17. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +118 -0
  18. package/dist/components/VvBreadcrumb/vv-breadcrumb.es.js +206 -0
  19. package/dist/components/VvBreadcrumb/vv-breadcrumb.umd.js +1 -0
  20. package/dist/components/VvButton/VvButton.d.ts +115 -0
  21. package/dist/components/VvButton/VvButton.vue.d.ts +228 -0
  22. package/dist/components/VvButton/useButtonGroupProps.d.ts +23 -0
  23. package/dist/components/VvButton/vv-button.es.js +424 -0
  24. package/dist/components/VvButton/vv-button.umd.js +1 -0
  25. package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +57 -0
  26. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +210 -0
  27. package/dist/components/VvButtonGroup/vv-button-group.es.js +210 -0
  28. package/dist/components/VvButtonGroup/vv-button-group.umd.js +1 -0
  29. package/dist/components/VvCard/VvCard.d.ts +4 -0
  30. package/dist/components/VvCard/VvCard.vue.d.ts +63 -0
  31. package/dist/components/VvCard/vv-card.es.js +188 -0
  32. package/dist/components/VvCard/vv-card.umd.js +1 -0
  33. package/dist/components/VvCheck/VvCheck.d.ts +47 -0
  34. package/dist/components/VvCheck/VvCheck.vue.d.ts +165 -0
  35. package/dist/components/VvCheck/useCheckProps.d.ts +16 -0
  36. package/dist/components/VvCheck/vv-check.es.js +321 -0
  37. package/dist/components/VvCheck/vv-check.umd.js +1 -0
  38. package/dist/components/VvCheckGroup/VvCheckGroup.d.ts +65 -0
  39. package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +272 -0
  40. package/dist/components/VvCheckGroup/vv-check-group.es.js +434 -0
  41. package/dist/components/VvCheckGroup/vv-check-group.umd.js +2 -0
  42. package/dist/components/VvDialog/VvDialog.d.ts +22 -0
  43. package/dist/components/VvDialog/VvDialog.vue.d.ts +153 -0
  44. package/dist/components/VvDialog/constants.d.ts +5 -0
  45. package/dist/components/VvDialog/vv-dialog.es.js +315 -0
  46. package/dist/components/VvDialog/vv-dialog.umd.js +1 -0
  47. package/dist/components/VvDropdown/VvDropdown.d.ts +52 -0
  48. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +166 -0
  49. package/dist/components/VvDropdown/vv-dropdown.es.js +236 -0
  50. package/dist/components/VvDropdown/vv-dropdown.umd.js +1 -0
  51. package/dist/components/VvIcon/VvIcon.d.ts +92 -0
  52. package/dist/components/VvIcon/VvIcon.vue.d.ts +183 -0
  53. package/dist/components/VvIcon/vv-icon.es.js +229 -0
  54. package/dist/components/VvIcon/vv-icon.umd.js +1 -0
  55. package/dist/components/VvInputText/VvInputText.d.ts +59 -0
  56. package/dist/components/VvInputText/VvInputText.vue.d.ts +292 -0
  57. package/dist/components/VvInputText/constants.d.ts +55 -0
  58. package/dist/components/VvInputText/useInputNumber.d.ts +16 -0
  59. package/dist/components/VvInputText/useInputPassword.d.ts +16 -0
  60. package/dist/components/VvInputText/vv-input-text.es.js +596 -0
  61. package/dist/components/VvInputText/vv-input-text.umd.js +2 -0
  62. package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +70 -0
  63. package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +228 -0
  64. package/dist/components/VvNativeSelect/vv-native-select.es.js +395 -0
  65. package/dist/components/VvNativeSelect/vv-native-select.umd.js +2 -0
  66. package/dist/components/VvProgress/VvProgress.d.ts +29 -0
  67. package/dist/components/VvProgress/VvProgress.vue.d.ts +117 -0
  68. package/dist/components/VvProgress/vv-progress.es.js +185 -0
  69. package/dist/components/VvProgress/vv-progress.umd.js +1 -0
  70. package/dist/components/VvRadio/VvRadio.d.ts +22 -0
  71. package/dist/components/VvRadio/VvRadio.vue.d.ts +136 -0
  72. package/dist/components/VvRadio/useRadioProps.d.ts +15 -0
  73. package/dist/components/VvRadio/vv-radio.es.js +309 -0
  74. package/dist/components/VvRadio/vv-radio.umd.js +1 -0
  75. package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +54 -0
  76. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +264 -0
  77. package/dist/components/VvRadioGroup/vv-radio-group.es.js +423 -0
  78. package/dist/components/VvRadioGroup/vv-radio-group.umd.js +2 -0
  79. package/dist/components/VvSelect/VvSelect.d.ts +99 -0
  80. package/dist/components/VvSelect/VvSelect.vue.d.ts +294 -0
  81. package/dist/components/VvSelect/vv-select.es.js +427 -0
  82. package/dist/components/VvSelect/vv-select.umd.js +2 -0
  83. package/dist/components/VvTextarea/VvTextarea.d.ts +67 -0
  84. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +314 -0
  85. package/dist/components/VvTextarea/constants.d.ts +19 -0
  86. package/dist/components/VvTextarea/vv-textarea.es.js +472 -0
  87. package/dist/components/VvTextarea/vv-textarea.umd.js +2 -0
  88. package/dist/components/common/HintSlot.d.ts +25 -0
  89. package/dist/components/index.d.ts +12 -0
  90. package/dist/composables/focus/useComponentFocus.d.ts +7 -0
  91. package/dist/composables/group/types/IAccordionGroupState.d.ts +10 -0
  92. package/dist/composables/group/types/IButtonGroupState.d.ts +19 -0
  93. package/dist/composables/group/types/IGroupState.d.ts +11 -0
  94. package/dist/composables/group/types/IInputGroup.d.ts +11 -0
  95. package/dist/composables/group/useInjectedGroupState.d.ts +10 -0
  96. package/dist/composables/group/useProvideGroupState.d.ts +6 -0
  97. package/dist/composables/icons/useComponentIcons.d.ts +20 -0
  98. package/dist/composables/options/useOptions.d.ts +5 -0
  99. package/dist/composables/useModifiers.d.ts +9 -0
  100. package/dist/constants.d.ts +4 -0
  101. package/dist/icons.es.js +1885 -0
  102. package/dist/icons.umd.js +1 -0
  103. package/dist/index.d.ts +4 -0
  104. package/dist/props/index.d.ts +50 -0
  105. package/dist/stories/Icon/IconList.vue.d.ts +44 -0
  106. package/dist/ui-vue.es.js +2985 -0
  107. package/dist/ui-vue.umd.js +2 -0
  108. package/dist/utils/ObjectUtilities.d.ts +96 -0
  109. package/package.json +187 -0
  110. package/src/DesignSystem.ts +115 -0
  111. package/src/assets/icons/detailed/add-circle.svg +1 -0
  112. package/src/assets/icons/detailed/add.svg +1 -0
  113. package/src/assets/icons/detailed/align-center.svg +1 -0
  114. package/src/assets/icons/detailed/align-justify.svg +1 -0
  115. package/src/assets/icons/detailed/align-left.svg +1 -0
  116. package/src/assets/icons/detailed/align-right.svg +1 -0
  117. package/src/assets/icons/detailed/analysis-2.svg +1 -0
  118. package/src/assets/icons/detailed/analysis-3.svg +1 -0
  119. package/src/assets/icons/detailed/analysis.svg +1 -0
  120. package/src/assets/icons/detailed/apple.svg +1 -0
  121. package/src/assets/icons/detailed/arrow-down.svg +1 -0
  122. package/src/assets/icons/detailed/arrow-left.svg +1 -0
  123. package/src/assets/icons/detailed/arrow-right.svg +1 -0
  124. package/src/assets/icons/detailed/arrow-up.svg +1 -0
  125. package/src/assets/icons/detailed/attachment.svg +1 -0
  126. package/src/assets/icons/detailed/back-to-front.svg +1 -0
  127. package/src/assets/icons/detailed/bell-active.svg +1 -0
  128. package/src/assets/icons/detailed/bell.svg +1 -0
  129. package/src/assets/icons/detailed/bold.svg +1 -0
  130. package/src/assets/icons/detailed/bookmark-active.svg +1 -0
  131. package/src/assets/icons/detailed/bookmark.svg +1 -0
  132. package/src/assets/icons/detailed/building.svg +1 -0
  133. package/src/assets/icons/detailed/bullet-list.svg +1 -0
  134. package/src/assets/icons/detailed/calendar.svg +1 -0
  135. package/src/assets/icons/detailed/camera-off.svg +1 -0
  136. package/src/assets/icons/detailed/camera-on.svg +1 -0
  137. package/src/assets/icons/detailed/catalog.svg +1 -0
  138. package/src/assets/icons/detailed/certificate.svg +1 -0
  139. package/src/assets/icons/detailed/chat.svg +1 -0
  140. package/src/assets/icons/detailed/check-badge.svg +1 -0
  141. package/src/assets/icons/detailed/check-circle.svg +1 -0
  142. package/src/assets/icons/detailed/check.svg +1 -0
  143. package/src/assets/icons/detailed/checkbox.svg +1 -0
  144. package/src/assets/icons/detailed/chevron-down-circle.svg +1 -0
  145. package/src/assets/icons/detailed/chevron-down.svg +1 -0
  146. package/src/assets/icons/detailed/chevron-left-circle.svg +1 -0
  147. package/src/assets/icons/detailed/chevron-left.svg +1 -0
  148. package/src/assets/icons/detailed/chevron-right-circle.svg +1 -0
  149. package/src/assets/icons/detailed/chevron-up-circle.svg +1 -0
  150. package/src/assets/icons/detailed/chevron-up.svg +1 -0
  151. package/src/assets/icons/detailed/classroom.svg +1 -0
  152. package/src/assets/icons/detailed/clear-field.svg +1 -0
  153. package/src/assets/icons/detailed/clear-style.svg +1 -0
  154. package/src/assets/icons/detailed/close-circle.svg +1 -0
  155. package/src/assets/icons/detailed/close-loader.svg +1 -0
  156. package/src/assets/icons/detailed/close.svg +1 -0
  157. package/src/assets/icons/detailed/coffee.svg +1 -0
  158. package/src/assets/icons/detailed/color.svg +1 -0
  159. package/src/assets/icons/detailed/contact-us.svg +1 -0
  160. package/src/assets/icons/detailed/copy.svg +1 -0
  161. package/src/assets/icons/detailed/courses.svg +1 -0
  162. package/src/assets/icons/detailed/dashboard.svg +1 -0
  163. package/src/assets/icons/detailed/download.svg +1 -0
  164. package/src/assets/icons/detailed/drag.svg +1 -0
  165. package/src/assets/icons/detailed/duplicate.svg +1 -0
  166. package/src/assets/icons/detailed/edit.svg +1 -0
  167. package/src/assets/icons/detailed/elearning.svg +1 -0
  168. package/src/assets/icons/detailed/email.svg +1 -0
  169. package/src/assets/icons/detailed/error-2.svg +1 -0
  170. package/src/assets/icons/detailed/error.svg +1 -0
  171. package/src/assets/icons/detailed/exercise.svg +1 -0
  172. package/src/assets/icons/detailed/external-link.svg +1 -0
  173. package/src/assets/icons/detailed/extract.svg +1 -0
  174. package/src/assets/icons/detailed/eye-off.svg +1 -0
  175. package/src/assets/icons/detailed/eye-on.svg +1 -0
  176. package/src/assets/icons/detailed/fail.svg +1 -0
  177. package/src/assets/icons/detailed/fast-back.svg +1 -0
  178. package/src/assets/icons/detailed/fast-forward.svg +1 -0
  179. package/src/assets/icons/detailed/file-add.svg +1 -0
  180. package/src/assets/icons/detailed/file-duplicate.svg +1 -0
  181. package/src/assets/icons/detailed/file-remove.svg +1 -0
  182. package/src/assets/icons/detailed/file-required.svg +1 -0
  183. package/src/assets/icons/detailed/file.svg +1 -0
  184. package/src/assets/icons/detailed/filter-2.svg +1 -0
  185. package/src/assets/icons/detailed/filter-active.svg +1 -0
  186. package/src/assets/icons/detailed/filter.svg +1 -0
  187. package/src/assets/icons/detailed/flag.svg +1 -0
  188. package/src/assets/icons/detailed/folder.svg +1 -0
  189. package/src/assets/icons/detailed/full-width.svg +1 -0
  190. package/src/assets/icons/detailed/go-to-back.svg +1 -0
  191. package/src/assets/icons/detailed/grid.svg +1 -0
  192. package/src/assets/icons/detailed/group-add.svg +1 -0
  193. package/src/assets/icons/detailed/group.svg +1 -0
  194. package/src/assets/icons/detailed/heart-active.svg +1 -0
  195. package/src/assets/icons/detailed/heart.svg +1 -0
  196. package/src/assets/icons/detailed/highlighter.svg +1 -0
  197. package/src/assets/icons/detailed/home.svg +1 -0
  198. package/src/assets/icons/detailed/hourglass.svg +1 -0
  199. package/src/assets/icons/detailed/image.svg +1 -0
  200. package/src/assets/icons/detailed/info-badge.svg +1 -0
  201. package/src/assets/icons/detailed/information.svg +1 -0
  202. package/src/assets/icons/detailed/italic.svg +1 -0
  203. package/src/assets/icons/detailed/key.svg +1 -0
  204. package/src/assets/icons/detailed/language.svg +1 -0
  205. package/src/assets/icons/detailed/learning-path.svg +1 -0
  206. package/src/assets/icons/detailed/light-off.svg +1 -0
  207. package/src/assets/icons/detailed/light-on.svg +1 -0
  208. package/src/assets/icons/detailed/link.svg +1 -0
  209. package/src/assets/icons/detailed/lock.svg +1 -0
  210. package/src/assets/icons/detailed/login.svg +1 -0
  211. package/src/assets/icons/detailed/logout.svg +1 -0
  212. package/src/assets/icons/detailed/maximaze.svg +1 -0
  213. package/src/assets/icons/detailed/menu.svg +1 -0
  214. package/src/assets/icons/detailed/merge.svg +1 -0
  215. package/src/assets/icons/detailed/minimize.svg +1 -0
  216. package/src/assets/icons/detailed/mixed-class.svg +1 -0
  217. package/src/assets/icons/detailed/more-horizontal.svg +1 -0
  218. package/src/assets/icons/detailed/more-vertical.svg +1 -0
  219. package/src/assets/icons/detailed/news.svg +1 -0
  220. package/src/assets/icons/detailed/no-prerequisites.svg +1 -0
  221. package/src/assets/icons/detailed/notes.svg +1 -0
  222. package/src/assets/icons/detailed/number-code.svg +1 -0
  223. package/src/assets/icons/detailed/numbered-list.svg +1 -0
  224. package/src/assets/icons/detailed/on-site.svg +1 -0
  225. package/src/assets/icons/detailed/order-down.svg +1 -0
  226. package/src/assets/icons/detailed/order-up.svg +1 -0
  227. package/src/assets/icons/detailed/paste.svg +1 -0
  228. package/src/assets/icons/detailed/pausa.svg +1 -0
  229. package/src/assets/icons/detailed/pdf.svg +1 -0
  230. package/src/assets/icons/detailed/phone.svg +1 -0
  231. package/src/assets/icons/detailed/pin-map.svg +1 -0
  232. package/src/assets/icons/detailed/pin.svg +1 -0
  233. package/src/assets/icons/detailed/pizza.svg +1 -0
  234. package/src/assets/icons/detailed/play.svg +1 -0
  235. package/src/assets/icons/detailed/plug-in.svg +1 -0
  236. package/src/assets/icons/detailed/pointer.svg +1 -0
  237. package/src/assets/icons/detailed/printer.svg +1 -0
  238. package/src/assets/icons/detailed/profile-add.svg +1 -0
  239. package/src/assets/icons/detailed/profile.svg +1 -0
  240. package/src/assets/icons/detailed/push-pin-off.svg +1 -0
  241. package/src/assets/icons/detailed/push-pin-on.svg +1 -0
  242. package/src/assets/icons/detailed/qrcode.svg +1 -0
  243. package/src/assets/icons/detailed/question-badge.svg +1 -0
  244. package/src/assets/icons/detailed/radio.svg +1 -0
  245. package/src/assets/icons/detailed/redo.svg +1 -0
  246. package/src/assets/icons/detailed/relations.svg +1 -0
  247. package/src/assets/icons/detailed/reload.svg +1 -0
  248. package/src/assets/icons/detailed/remove-circle.svg +1 -0
  249. package/src/assets/icons/detailed/remove.svg +1 -0
  250. package/src/assets/icons/detailed/reorder.svg +1 -0
  251. package/src/assets/icons/detailed/repeat.svg +1 -0
  252. package/src/assets/icons/detailed/repository.svg +1 -0
  253. package/src/assets/icons/detailed/request-form.svg +1 -0
  254. package/src/assets/icons/detailed/resize-100%.svg +1 -0
  255. package/src/assets/icons/detailed/resize-height.svg +1 -0
  256. package/src/assets/icons/detailed/resize-width.svg +1 -0
  257. package/src/assets/icons/detailed/search.svg +1 -0
  258. package/src/assets/icons/detailed/sequential-prerequisites.svg +1 -0
  259. package/src/assets/icons/detailed/settings.svg +1 -0
  260. package/src/assets/icons/detailed/share.svg +1 -0
  261. package/src/assets/icons/detailed/sketch.svg +1 -0
  262. package/src/assets/icons/detailed/skills.svg +1 -0
  263. package/src/assets/icons/detailed/skip-back.svg +1 -0
  264. package/src/assets/icons/detailed/skip-forward.svg +1 -0
  265. package/src/assets/icons/detailed/sms.svg +1 -0
  266. package/src/assets/icons/detailed/sso-access.svg +1 -0
  267. package/src/assets/icons/detailed/star-active.svg +1 -0
  268. package/src/assets/icons/detailed/star.svg +1 -0
  269. package/src/assets/icons/detailed/success.svg +1 -0
  270. package/src/assets/icons/detailed/sun.svg +1 -0
  271. package/src/assets/icons/detailed/sunrise.svg +1 -0
  272. package/src/assets/icons/detailed/support.svg +1 -0
  273. package/src/assets/icons/detailed/survey.svg +1 -0
  274. package/src/assets/icons/detailed/table.svg +1 -0
  275. package/src/assets/icons/detailed/tematic-channels.svg +1 -0
  276. package/src/assets/icons/detailed/test.svg +1 -0
  277. package/src/assets/icons/detailed/text-body.svg +1 -0
  278. package/src/assets/icons/detailed/text-edit.svg +1 -0
  279. package/src/assets/icons/detailed/text-style.svg +1 -0
  280. package/src/assets/icons/detailed/time.svg +1 -0
  281. package/src/assets/icons/detailed/toilet-piper.svg +1 -0
  282. package/src/assets/icons/detailed/training-points.svg +1 -0
  283. package/src/assets/icons/detailed/trash.svg +1 -0
  284. package/src/assets/icons/detailed/underline.svg +1 -0
  285. package/src/assets/icons/detailed/undo.svg +1 -0
  286. package/src/assets/icons/detailed/unlock.svg +1 -0
  287. package/src/assets/icons/detailed/upload.svg +1 -0
  288. package/src/assets/icons/detailed/user-add.svg +1 -0
  289. package/src/assets/icons/detailed/user-badge.svg +1 -0
  290. package/src/assets/icons/detailed/user.svg +1 -0
  291. package/src/assets/icons/detailed/video-off.svg +1 -0
  292. package/src/assets/icons/detailed/video-on.svg +1 -0
  293. package/src/assets/icons/detailed/video-rec.svg +1 -0
  294. package/src/assets/icons/detailed/view-card.svg +1 -0
  295. package/src/assets/icons/detailed/view-list.svg +1 -0
  296. package/src/assets/icons/detailed/view.svg +1 -0
  297. package/src/assets/icons/detailed/voice-off.svg +1 -0
  298. package/src/assets/icons/detailed/voice-on.svg +1 -0
  299. package/src/assets/icons/detailed/volume-down.svg +1 -0
  300. package/src/assets/icons/detailed/volume-off.svg +1 -0
  301. package/src/assets/icons/detailed/volume-up.svg +1 -0
  302. package/src/assets/icons/detailed/warning.svg +1 -0
  303. package/src/assets/icons/detailed/webinar.svg +1 -0
  304. package/src/assets/icons/detailed/whiteboard.svg +1 -0
  305. package/src/assets/icons/detailed/wine.svg +1 -0
  306. package/src/assets/icons/detailed/zip.svg +1 -0
  307. package/src/assets/icons/detailed/zoom-in.svg +1 -0
  308. package/src/assets/icons/detailed/zoom-out.svg +1 -0
  309. package/src/assets/icons/detailed.json +1 -0
  310. package/src/assets/icons/index.js +7 -0
  311. package/src/assets/icons/normal/add-circle.svg +1 -0
  312. package/src/assets/icons/normal/add.svg +1 -0
  313. package/src/assets/icons/normal/align-center.svg +1 -0
  314. package/src/assets/icons/normal/align-justify.svg +1 -0
  315. package/src/assets/icons/normal/align-left.svg +1 -0
  316. package/src/assets/icons/normal/align-right.svg +1 -0
  317. package/src/assets/icons/normal/analysis-2.svg +1 -0
  318. package/src/assets/icons/normal/analysis-3.svg +1 -0
  319. package/src/assets/icons/normal/analysis.svg +1 -0
  320. package/src/assets/icons/normal/apple.svg +1 -0
  321. package/src/assets/icons/normal/arrow-down.svg +1 -0
  322. package/src/assets/icons/normal/arrow-left.svg +1 -0
  323. package/src/assets/icons/normal/arrow-right.svg +1 -0
  324. package/src/assets/icons/normal/arrow-up.svg +1 -0
  325. package/src/assets/icons/normal/attachment.svg +1 -0
  326. package/src/assets/icons/normal/back-to-front.svg +1 -0
  327. package/src/assets/icons/normal/bell-active.svg +1 -0
  328. package/src/assets/icons/normal/bell.svg +1 -0
  329. package/src/assets/icons/normal/bold.svg +1 -0
  330. package/src/assets/icons/normal/bookmark active.svg +1 -0
  331. package/src/assets/icons/normal/bookmark.svg +1 -0
  332. package/src/assets/icons/normal/building.svg +1 -0
  333. package/src/assets/icons/normal/bulleted-list.svg +1 -0
  334. package/src/assets/icons/normal/calendar.svg +1 -0
  335. package/src/assets/icons/normal/camera-off.svg +1 -0
  336. package/src/assets/icons/normal/camera-on.svg +1 -0
  337. package/src/assets/icons/normal/catalog.svg +1 -0
  338. package/src/assets/icons/normal/certificate.svg +1 -0
  339. package/src/assets/icons/normal/chat.svg +1 -0
  340. package/src/assets/icons/normal/check-badge.svg +1 -0
  341. package/src/assets/icons/normal/check-circle.svg +1 -0
  342. package/src/assets/icons/normal/check.svg +1 -0
  343. package/src/assets/icons/normal/checkbox.svg +1 -0
  344. package/src/assets/icons/normal/chevron-down-circle.svg +1 -0
  345. package/src/assets/icons/normal/chevron-down.svg +1 -0
  346. package/src/assets/icons/normal/chevron-left-circle.svg +1 -0
  347. package/src/assets/icons/normal/chevron-left.svg +1 -0
  348. package/src/assets/icons/normal/chevron-right-circle.svg +1 -0
  349. package/src/assets/icons/normal/chevron-right.svg +1 -0
  350. package/src/assets/icons/normal/chevron-up-circle.svg +1 -0
  351. package/src/assets/icons/normal/chevron-up.svg +1 -0
  352. package/src/assets/icons/normal/classroom.svg +1 -0
  353. package/src/assets/icons/normal/clear-field.svg +1 -0
  354. package/src/assets/icons/normal/clear-style.svg +1 -0
  355. package/src/assets/icons/normal/close-circle.svg +1 -0
  356. package/src/assets/icons/normal/close-loader.svg +1 -0
  357. package/src/assets/icons/normal/close.svg +1 -0
  358. package/src/assets/icons/normal/coffee.svg +1 -0
  359. package/src/assets/icons/normal/color.svg +1 -0
  360. package/src/assets/icons/normal/contact-us.svg +1 -0
  361. package/src/assets/icons/normal/copy.svg +1 -0
  362. package/src/assets/icons/normal/courses.svg +1 -0
  363. package/src/assets/icons/normal/dashboard.svg +1 -0
  364. package/src/assets/icons/normal/download.svg +1 -0
  365. package/src/assets/icons/normal/drag.svg +1 -0
  366. package/src/assets/icons/normal/dulicate.svg +1 -0
  367. package/src/assets/icons/normal/edit.svg +1 -0
  368. package/src/assets/icons/normal/elearning.svg +1 -0
  369. package/src/assets/icons/normal/email.svg +1 -0
  370. package/src/assets/icons/normal/error-2.svg +1 -0
  371. package/src/assets/icons/normal/error.svg +1 -0
  372. package/src/assets/icons/normal/exercise.svg +1 -0
  373. package/src/assets/icons/normal/external-link.svg +1 -0
  374. package/src/assets/icons/normal/extract.svg +1 -0
  375. package/src/assets/icons/normal/eye-off.svg +1 -0
  376. package/src/assets/icons/normal/eye-on.svg +1 -0
  377. package/src/assets/icons/normal/fail.svg +1 -0
  378. package/src/assets/icons/normal/fast-back.svg +1 -0
  379. package/src/assets/icons/normal/fast-forward.svg +1 -0
  380. package/src/assets/icons/normal/file-add.svg +1 -0
  381. package/src/assets/icons/normal/file-duplicate.svg +1 -0
  382. package/src/assets/icons/normal/file-remove.svg +1 -0
  383. package/src/assets/icons/normal/file-required.svg +1 -0
  384. package/src/assets/icons/normal/file.svg +1 -0
  385. package/src/assets/icons/normal/filter-2.svg +1 -0
  386. package/src/assets/icons/normal/filter-active.svg +1 -0
  387. package/src/assets/icons/normal/filter.svg +1 -0
  388. package/src/assets/icons/normal/flag.svg +1 -0
  389. package/src/assets/icons/normal/folder.svg +1 -0
  390. package/src/assets/icons/normal/full-width.svg +1 -0
  391. package/src/assets/icons/normal/go-to-back.svg +1 -0
  392. package/src/assets/icons/normal/grid.svg +1 -0
  393. package/src/assets/icons/normal/group-add.svg +1 -0
  394. package/src/assets/icons/normal/group.svg +1 -0
  395. package/src/assets/icons/normal/heart-active.svg +1 -0
  396. package/src/assets/icons/normal/heart.svg +1 -0
  397. package/src/assets/icons/normal/highlighter.svg +1 -0
  398. package/src/assets/icons/normal/home.svg +1 -0
  399. package/src/assets/icons/normal/hourglass.svg +1 -0
  400. package/src/assets/icons/normal/image.svg +1 -0
  401. package/src/assets/icons/normal/info-badge.svg +1 -0
  402. package/src/assets/icons/normal/information.svg +1 -0
  403. package/src/assets/icons/normal/italic.svg +1 -0
  404. package/src/assets/icons/normal/key.svg +1 -0
  405. package/src/assets/icons/normal/language.svg +1 -0
  406. package/src/assets/icons/normal/learning-path.svg +1 -0
  407. package/src/assets/icons/normal/light-off.svg +1 -0
  408. package/src/assets/icons/normal/light-on.svg +1 -0
  409. package/src/assets/icons/normal/link.svg +1 -0
  410. package/src/assets/icons/normal/lock.svg +1 -0
  411. package/src/assets/icons/normal/login.svg +1 -0
  412. package/src/assets/icons/normal/logout.svg +1 -0
  413. package/src/assets/icons/normal/maximize.svg +1 -0
  414. package/src/assets/icons/normal/menu.svg +1 -0
  415. package/src/assets/icons/normal/merge.svg +1 -0
  416. package/src/assets/icons/normal/minimize.svg +1 -0
  417. package/src/assets/icons/normal/mixed-class.svg +1 -0
  418. package/src/assets/icons/normal/more-horizontal.svg +1 -0
  419. package/src/assets/icons/normal/more-vertical.svg +1 -0
  420. package/src/assets/icons/normal/news.svg +1 -0
  421. package/src/assets/icons/normal/no-prerequisites.svg +1 -0
  422. package/src/assets/icons/normal/notes.svg +1 -0
  423. package/src/assets/icons/normal/number-code.svg +1 -0
  424. package/src/assets/icons/normal/numbered-list.svg +1 -0
  425. package/src/assets/icons/normal/on-site.svg +1 -0
  426. package/src/assets/icons/normal/order-down.svg +1 -0
  427. package/src/assets/icons/normal/order-up.svg +1 -0
  428. package/src/assets/icons/normal/paste.svg +1 -0
  429. package/src/assets/icons/normal/pausa.svg +1 -0
  430. package/src/assets/icons/normal/pdf.svg +1 -0
  431. package/src/assets/icons/normal/phone.svg +1 -0
  432. package/src/assets/icons/normal/pin-map.svg +1 -0
  433. package/src/assets/icons/normal/pin.svg +1 -0
  434. package/src/assets/icons/normal/pizza.svg +1 -0
  435. package/src/assets/icons/normal/play.svg +1 -0
  436. package/src/assets/icons/normal/plug-in.svg +1 -0
  437. package/src/assets/icons/normal/pointer.svg +1 -0
  438. package/src/assets/icons/normal/printer.svg +1 -0
  439. package/src/assets/icons/normal/profile-add.svg +1 -0
  440. package/src/assets/icons/normal/profile.svg +1 -0
  441. package/src/assets/icons/normal/push pin on.svg +1 -0
  442. package/src/assets/icons/normal/push-pin-off.svg +1 -0
  443. package/src/assets/icons/normal/qrcode.svg +1 -0
  444. package/src/assets/icons/normal/question-badge.svg +1 -0
  445. package/src/assets/icons/normal/radio.svg +1 -0
  446. package/src/assets/icons/normal/redo.svg +1 -0
  447. package/src/assets/icons/normal/relations.svg +1 -0
  448. package/src/assets/icons/normal/reload.svg +1 -0
  449. package/src/assets/icons/normal/remove-circle.svg +1 -0
  450. package/src/assets/icons/normal/remove.svg +1 -0
  451. package/src/assets/icons/normal/reorder.svg +1 -0
  452. package/src/assets/icons/normal/repeat.svg +1 -0
  453. package/src/assets/icons/normal/repository.svg +1 -0
  454. package/src/assets/icons/normal/request-form.svg +1 -0
  455. package/src/assets/icons/normal/resize-100%.svg +1 -0
  456. package/src/assets/icons/normal/resize-height.svg +1 -0
  457. package/src/assets/icons/normal/resize-width.svg +1 -0
  458. package/src/assets/icons/normal/search.svg +1 -0
  459. package/src/assets/icons/normal/sequential-prerequisites.svg +1 -0
  460. package/src/assets/icons/normal/settings.svg +1 -0
  461. package/src/assets/icons/normal/share.svg +1 -0
  462. package/src/assets/icons/normal/sketch.svg +1 -0
  463. package/src/assets/icons/normal/skills.svg +1 -0
  464. package/src/assets/icons/normal/skip-back.svg +1 -0
  465. package/src/assets/icons/normal/skip-forward.svg +1 -0
  466. package/src/assets/icons/normal/sms.svg +1 -0
  467. package/src/assets/icons/normal/sso-access.svg +1 -0
  468. package/src/assets/icons/normal/star-active.svg +1 -0
  469. package/src/assets/icons/normal/star.svg +1 -0
  470. package/src/assets/icons/normal/success.svg +1 -0
  471. package/src/assets/icons/normal/sun.svg +1 -0
  472. package/src/assets/icons/normal/sunrise.svg +1 -0
  473. package/src/assets/icons/normal/support.svg +1 -0
  474. package/src/assets/icons/normal/survey.svg +1 -0
  475. package/src/assets/icons/normal/table.svg +1 -0
  476. package/src/assets/icons/normal/tematic-channels.svg +1 -0
  477. package/src/assets/icons/normal/test.svg +1 -0
  478. package/src/assets/icons/normal/text-body.svg +1 -0
  479. package/src/assets/icons/normal/text-edit.svg +1 -0
  480. package/src/assets/icons/normal/text-style.svg +1 -0
  481. package/src/assets/icons/normal/time.svg +1 -0
  482. package/src/assets/icons/normal/toilet-paper.svg +1 -0
  483. package/src/assets/icons/normal/training-points.svg +1 -0
  484. package/src/assets/icons/normal/trash.svg +1 -0
  485. package/src/assets/icons/normal/underline.svg +1 -0
  486. package/src/assets/icons/normal/undo.svg +1 -0
  487. package/src/assets/icons/normal/unlock.svg +1 -0
  488. package/src/assets/icons/normal/upload.svg +1 -0
  489. package/src/assets/icons/normal/user-add.svg +1 -0
  490. package/src/assets/icons/normal/user-badge.svg +1 -0
  491. package/src/assets/icons/normal/user.svg +1 -0
  492. package/src/assets/icons/normal/video-off.svg +1 -0
  493. package/src/assets/icons/normal/video-on.svg +1 -0
  494. package/src/assets/icons/normal/video-rec.svg +1 -0
  495. package/src/assets/icons/normal/view-card.svg +1 -0
  496. package/src/assets/icons/normal/view-list.svg +1 -0
  497. package/src/assets/icons/normal/view.svg +1 -0
  498. package/src/assets/icons/normal/voice-off.svg +1 -0
  499. package/src/assets/icons/normal/voice-on.svg +1 -0
  500. package/src/assets/icons/normal/volume-down.svg +1 -0
  501. package/src/assets/icons/normal/volume-off.svg +1 -0
  502. package/src/assets/icons/normal/volume-up.svg +1 -0
  503. package/src/assets/icons/normal/warning.svg +1 -0
  504. package/src/assets/icons/normal/webinar.svg +1 -0
  505. package/src/assets/icons/normal/whiteboard.svg +1 -0
  506. package/src/assets/icons/normal/wine.svg +1 -0
  507. package/src/assets/icons/normal/zip.svg +1 -0
  508. package/src/assets/icons/normal/zoom-in.svg +1 -0
  509. package/src/assets/icons/normal/zoom-out.svg +1 -0
  510. package/src/assets/icons/normal.json +1 -0
  511. package/src/assets/icons/simple/add-circle.svg +1 -0
  512. package/src/assets/icons/simple/add.svg +1 -0
  513. package/src/assets/icons/simple/align-center.svg +1 -0
  514. package/src/assets/icons/simple/align-justify.svg +1 -0
  515. package/src/assets/icons/simple/align-left.svg +1 -0
  516. package/src/assets/icons/simple/align-right.svg +1 -0
  517. package/src/assets/icons/simple/analysis-2.svg +1 -0
  518. package/src/assets/icons/simple/analysis-3.svg +1 -0
  519. package/src/assets/icons/simple/analysis.svg +1 -0
  520. package/src/assets/icons/simple/apple.svg +1 -0
  521. package/src/assets/icons/simple/arrow-down.svg +1 -0
  522. package/src/assets/icons/simple/arrow-left.svg +1 -0
  523. package/src/assets/icons/simple/arrow-right.svg +1 -0
  524. package/src/assets/icons/simple/arrow-up.svg +1 -0
  525. package/src/assets/icons/simple/attachment.svg +1 -0
  526. package/src/assets/icons/simple/bck-to-front.svg +1 -0
  527. package/src/assets/icons/simple/bell-active.svg +1 -0
  528. package/src/assets/icons/simple/bell.svg +1 -0
  529. package/src/assets/icons/simple/bold.svg +1 -0
  530. package/src/assets/icons/simple/bookmark-active.svg +1 -0
  531. package/src/assets/icons/simple/bookmark.svg +1 -0
  532. package/src/assets/icons/simple/building.svg +1 -0
  533. package/src/assets/icons/simple/bulleted-list.svg +1 -0
  534. package/src/assets/icons/simple/calendar.svg +1 -0
  535. package/src/assets/icons/simple/camera-off.svg +1 -0
  536. package/src/assets/icons/simple/camera-on.svg +1 -0
  537. package/src/assets/icons/simple/catalog.svg +1 -0
  538. package/src/assets/icons/simple/certificate.svg +1 -0
  539. package/src/assets/icons/simple/chat.svg +1 -0
  540. package/src/assets/icons/simple/check-badge.svg +1 -0
  541. package/src/assets/icons/simple/check-circle.svg +1 -0
  542. package/src/assets/icons/simple/check.svg +1 -0
  543. package/src/assets/icons/simple/checkbox.svg +1 -0
  544. package/src/assets/icons/simple/chevron-down-circle.svg +1 -0
  545. package/src/assets/icons/simple/chevron-down.svg +1 -0
  546. package/src/assets/icons/simple/chevron-left-circle.svg +1 -0
  547. package/src/assets/icons/simple/chevron-left.svg +1 -0
  548. package/src/assets/icons/simple/chevron-right-circle.svg +1 -0
  549. package/src/assets/icons/simple/chevron-right.svg +1 -0
  550. package/src/assets/icons/simple/chevron-up-circle.svg +1 -0
  551. package/src/assets/icons/simple/chevron-up.svg +1 -0
  552. package/src/assets/icons/simple/classroom.svg +1 -0
  553. package/src/assets/icons/simple/clear-field.svg +1 -0
  554. package/src/assets/icons/simple/clear-style.svg +1 -0
  555. package/src/assets/icons/simple/close-circle.svg +1 -0
  556. package/src/assets/icons/simple/close-loader.svg +1 -0
  557. package/src/assets/icons/simple/close.svg +1 -0
  558. package/src/assets/icons/simple/coffee.svg +1 -0
  559. package/src/assets/icons/simple/color.svg +1 -0
  560. package/src/assets/icons/simple/contact-us.svg +1 -0
  561. package/src/assets/icons/simple/copy.svg +1 -0
  562. package/src/assets/icons/simple/courses.svg +1 -0
  563. package/src/assets/icons/simple/dashboard.svg +1 -0
  564. package/src/assets/icons/simple/download.svg +1 -0
  565. package/src/assets/icons/simple/drag.svg +1 -0
  566. package/src/assets/icons/simple/duplicate.svg +1 -0
  567. package/src/assets/icons/simple/edit.svg +1 -0
  568. package/src/assets/icons/simple/elearning.svg +1 -0
  569. package/src/assets/icons/simple/email.svg +1 -0
  570. package/src/assets/icons/simple/error-2.svg +1 -0
  571. package/src/assets/icons/simple/error.svg +1 -0
  572. package/src/assets/icons/simple/exercise.svg +1 -0
  573. package/src/assets/icons/simple/external-link.svg +1 -0
  574. package/src/assets/icons/simple/extract.svg +1 -0
  575. package/src/assets/icons/simple/eye-off.svg +1 -0
  576. package/src/assets/icons/simple/eye-on.svg +1 -0
  577. package/src/assets/icons/simple/fail.svg +1 -0
  578. package/src/assets/icons/simple/fast-back.svg +1 -0
  579. package/src/assets/icons/simple/fast-forward.svg +1 -0
  580. package/src/assets/icons/simple/file-add.svg +1 -0
  581. package/src/assets/icons/simple/file-duplicate.svg +1 -0
  582. package/src/assets/icons/simple/file-remove.svg +1 -0
  583. package/src/assets/icons/simple/file-required.svg +1 -0
  584. package/src/assets/icons/simple/file.svg +1 -0
  585. package/src/assets/icons/simple/filter-2.svg +1 -0
  586. package/src/assets/icons/simple/filter-active.svg +1 -0
  587. package/src/assets/icons/simple/filter.svg +1 -0
  588. package/src/assets/icons/simple/flag.svg +1 -0
  589. package/src/assets/icons/simple/folder.svg +1 -0
  590. package/src/assets/icons/simple/full-width.svg +1 -0
  591. package/src/assets/icons/simple/go-to-back.svg +1 -0
  592. package/src/assets/icons/simple/grid.svg +1 -0
  593. package/src/assets/icons/simple/group-add.svg +1 -0
  594. package/src/assets/icons/simple/group.svg +1 -0
  595. package/src/assets/icons/simple/heart-active.svg +1 -0
  596. package/src/assets/icons/simple/heart.svg +1 -0
  597. package/src/assets/icons/simple/highlighter.svg +1 -0
  598. package/src/assets/icons/simple/home.svg +1 -0
  599. package/src/assets/icons/simple/hourglass.svg +1 -0
  600. package/src/assets/icons/simple/image.svg +1 -0
  601. package/src/assets/icons/simple/info-badge.svg +1 -0
  602. package/src/assets/icons/simple/information.svg +1 -0
  603. package/src/assets/icons/simple/italic.svg +1 -0
  604. package/src/assets/icons/simple/key.svg +1 -0
  605. package/src/assets/icons/simple/language.svg +1 -0
  606. package/src/assets/icons/simple/learning-path.svg +1 -0
  607. package/src/assets/icons/simple/light-off.svg +1 -0
  608. package/src/assets/icons/simple/light-on.svg +1 -0
  609. package/src/assets/icons/simple/link.svg +1 -0
  610. package/src/assets/icons/simple/lock.svg +1 -0
  611. package/src/assets/icons/simple/login.svg +1 -0
  612. package/src/assets/icons/simple/logout.svg +1 -0
  613. package/src/assets/icons/simple/maximaze.svg +1 -0
  614. package/src/assets/icons/simple/menu.svg +1 -0
  615. package/src/assets/icons/simple/merge.svg +1 -0
  616. package/src/assets/icons/simple/minimaze.svg +1 -0
  617. package/src/assets/icons/simple/mixed-class.svg +1 -0
  618. package/src/assets/icons/simple/more-horizontal.svg +1 -0
  619. package/src/assets/icons/simple/more-vertical.svg +1 -0
  620. package/src/assets/icons/simple/news.svg +1 -0
  621. package/src/assets/icons/simple/no-prerequisites.svg +1 -0
  622. package/src/assets/icons/simple/notes.svg +1 -0
  623. package/src/assets/icons/simple/number-code.svg +1 -0
  624. package/src/assets/icons/simple/numbered-list.svg +1 -0
  625. package/src/assets/icons/simple/on-site.svg +1 -0
  626. package/src/assets/icons/simple/order-down.svg +1 -0
  627. package/src/assets/icons/simple/order-up.svg +1 -0
  628. package/src/assets/icons/simple/paste.svg +1 -0
  629. package/src/assets/icons/simple/pausa.svg +1 -0
  630. package/src/assets/icons/simple/pdf.svg +1 -0
  631. package/src/assets/icons/simple/phone.svg +1 -0
  632. package/src/assets/icons/simple/pin-map.svg +1 -0
  633. package/src/assets/icons/simple/pin.svg +1 -0
  634. package/src/assets/icons/simple/pizza.svg +1 -0
  635. package/src/assets/icons/simple/play.svg +1 -0
  636. package/src/assets/icons/simple/plug-in.svg +1 -0
  637. package/src/assets/icons/simple/pointer.svg +1 -0
  638. package/src/assets/icons/simple/printer.svg +1 -0
  639. package/src/assets/icons/simple/profile-add.svg +1 -0
  640. package/src/assets/icons/simple/profile.svg +1 -0
  641. package/src/assets/icons/simple/push-pin-off.svg +1 -0
  642. package/src/assets/icons/simple/push-pin-on.svg +1 -0
  643. package/src/assets/icons/simple/qrcode.svg +1 -0
  644. package/src/assets/icons/simple/question-badge.svg +1 -0
  645. package/src/assets/icons/simple/radio.svg +1 -0
  646. package/src/assets/icons/simple/redo.svg +1 -0
  647. package/src/assets/icons/simple/relations.svg +1 -0
  648. package/src/assets/icons/simple/reload.svg +1 -0
  649. package/src/assets/icons/simple/remove-circle.svg +1 -0
  650. package/src/assets/icons/simple/remove.svg +1 -0
  651. package/src/assets/icons/simple/repeart.svg +1 -0
  652. package/src/assets/icons/simple/repository.svg +1 -0
  653. package/src/assets/icons/simple/request-form.svg +1 -0
  654. package/src/assets/icons/simple/resize-100%.svg +1 -0
  655. package/src/assets/icons/simple/resize-height.svg +1 -0
  656. package/src/assets/icons/simple/resize-width.svg +1 -0
  657. package/src/assets/icons/simple/search.svg +1 -0
  658. package/src/assets/icons/simple/sequential-prerequisites.svg +1 -0
  659. package/src/assets/icons/simple/settings.svg +1 -0
  660. package/src/assets/icons/simple/share.svg +1 -0
  661. package/src/assets/icons/simple/sketch.svg +1 -0
  662. package/src/assets/icons/simple/skills.svg +1 -0
  663. package/src/assets/icons/simple/skip-back.svg +1 -0
  664. package/src/assets/icons/simple/skip-forward.svg +1 -0
  665. package/src/assets/icons/simple/sms.svg +1 -0
  666. package/src/assets/icons/simple/sso-access.svg +1 -0
  667. package/src/assets/icons/simple/star-active.svg +1 -0
  668. package/src/assets/icons/simple/star.svg +1 -0
  669. package/src/assets/icons/simple/success.svg +1 -0
  670. package/src/assets/icons/simple/sun.svg +1 -0
  671. package/src/assets/icons/simple/sunrise.svg +1 -0
  672. package/src/assets/icons/simple/support.svg +1 -0
  673. package/src/assets/icons/simple/survey.svg +1 -0
  674. package/src/assets/icons/simple/table.svg +1 -0
  675. package/src/assets/icons/simple/tematic-channels.svg +1 -0
  676. package/src/assets/icons/simple/test.svg +1 -0
  677. package/src/assets/icons/simple/text-body.svg +1 -0
  678. package/src/assets/icons/simple/text-edit.svg +1 -0
  679. package/src/assets/icons/simple/text-style.svg +1 -0
  680. package/src/assets/icons/simple/time.svg +1 -0
  681. package/src/assets/icons/simple/toilet-paper.svg +1 -0
  682. package/src/assets/icons/simple/training-points.svg +1 -0
  683. package/src/assets/icons/simple/trash.svg +1 -0
  684. package/src/assets/icons/simple/underline.svg +1 -0
  685. package/src/assets/icons/simple/undo.svg +1 -0
  686. package/src/assets/icons/simple/unlock.svg +1 -0
  687. package/src/assets/icons/simple/upload.svg +1 -0
  688. package/src/assets/icons/simple/user-add.svg +1 -0
  689. package/src/assets/icons/simple/user-badge.svg +1 -0
  690. package/src/assets/icons/simple/user.svg +1 -0
  691. package/src/assets/icons/simple/video-off.svg +1 -0
  692. package/src/assets/icons/simple/video-on.svg +1 -0
  693. package/src/assets/icons/simple/video-rec.svg +1 -0
  694. package/src/assets/icons/simple/view-card.svg +1 -0
  695. package/src/assets/icons/simple/view-list.svg +1 -0
  696. package/src/assets/icons/simple/view.svg +1 -0
  697. package/src/assets/icons/simple/voice-off.svg +1 -0
  698. package/src/assets/icons/simple/voice-on.svg +1 -0
  699. package/src/assets/icons/simple/volume-down.svg +1 -0
  700. package/src/assets/icons/simple/volume-off.svg +1 -0
  701. package/src/assets/icons/simple/volume-up.svg +1 -0
  702. package/src/assets/icons/simple/warning.svg +1 -0
  703. package/src/assets/icons/simple/webinar.svg +1 -0
  704. package/src/assets/icons/simple/whiteboard.svg +1 -0
  705. package/src/assets/icons/simple/wine.svg +1 -0
  706. package/src/assets/icons/simple/zip.svg +1 -0
  707. package/src/assets/icons/simple/zoom-in.svg +1 -0
  708. package/src/assets/icons/simple/zoom-out.svg +1 -0
  709. package/src/assets/icons/simple.json +1 -0
  710. package/src/components/VvAccordion/VvAccordion.ts +34 -0
  711. package/src/components/VvAccordion/VvAccordion.vue +92 -0
  712. package/src/components/VvAccordion/useAccordionProps.ts +45 -0
  713. package/src/components/VvAccordionGroup/VvAccordionGroup.ts +36 -0
  714. package/src/components/VvAccordionGroup/VvAccordionGroup.vue +63 -0
  715. package/src/components/VvBadge/VvBadge.ts +4 -0
  716. package/src/components/VvBadge/VvBadge.vue +12 -0
  717. package/src/components/VvBreadcrumb/VvBreadcrumb.ts +14 -0
  718. package/src/components/VvBreadcrumb/VvBreadcrumb.vue +52 -0
  719. package/src/components/VvButton/VvButton.ts +117 -0
  720. package/src/components/VvButton/VvButton.vue +190 -0
  721. package/src/components/VvButton/useButtonGroupProps.ts +51 -0
  722. package/src/components/VvButtonGroup/VvButtonGroup.ts +37 -0
  723. package/src/components/VvButtonGroup/VvButtonGroup.vue +55 -0
  724. package/src/components/VvCard/VvCard.ts +4 -0
  725. package/src/components/VvCard/VvCard.vue +37 -0
  726. package/src/components/VvCheck/VvCheck.ts +48 -0
  727. package/src/components/VvCheck/VvCheck.vue +149 -0
  728. package/src/components/VvCheck/useCheckProps.ts +41 -0
  729. package/src/components/VvCheckGroup/VvCheckGroup.ts +34 -0
  730. package/src/components/VvCheckGroup/VvCheckGroup.vue +84 -0
  731. package/src/components/VvDialog/VvDialog.ts +17 -0
  732. package/src/components/VvDialog/VvDialog.vue +91 -0
  733. package/src/components/VvDialog/constants.ts +5 -0
  734. package/src/components/VvDropdown/VvDropdown.ts +46 -0
  735. package/src/components/VvDropdown/VvDropdown.vue +130 -0
  736. package/src/components/VvIcon/VvIcon.ts +94 -0
  737. package/src/components/VvIcon/VvIcon.vue +123 -0
  738. package/src/components/VvInputText/VvInputText.ts +49 -0
  739. package/src/components/VvInputText/VvInputText.vue +276 -0
  740. package/src/components/VvInputText/constants.ts +34 -0
  741. package/src/components/VvInputText/useInputNumber.ts +40 -0
  742. package/src/components/VvInputText/useInputPassword.ts +38 -0
  743. package/src/components/VvNativeSelect/VvNativeSelect.ts +70 -0
  744. package/src/components/VvNativeSelect/VvNativeSelect.vue +106 -0
  745. package/src/components/VvProgress/VvProgress.ts +28 -0
  746. package/src/components/VvProgress/VvProgress.vue +34 -0
  747. package/src/components/VvRadio/VvRadio.ts +25 -0
  748. package/src/components/VvRadio/VvRadio.vue +130 -0
  749. package/src/components/VvRadio/useRadioProps.ts +40 -0
  750. package/src/components/VvRadioGroup/VvRadioGroup.ts +25 -0
  751. package/src/components/VvRadioGroup/VvRadioGroup.vue +80 -0
  752. package/src/components/VvSelect/VvSelect.ts +91 -0
  753. package/src/components/VvSelect/VvSelect.vue +194 -0
  754. package/src/components/VvTextarea/VvTextarea.ts +55 -0
  755. package/src/components/VvTextarea/VvTextarea.vue +189 -0
  756. package/src/components/VvTextarea/constants.ts +14 -0
  757. package/src/components/common/HintSlot.ts +164 -0
  758. package/src/components/index.ts +12 -0
  759. package/src/composables/focus/useComponentFocus.ts +22 -0
  760. package/src/composables/group/types/IAccordionGroupState.ts +12 -0
  761. package/src/composables/group/types/IButtonGroupState.ts +21 -0
  762. package/src/composables/group/types/IGroupState.ts +12 -0
  763. package/src/composables/group/types/IInputGroup.ts +13 -0
  764. package/src/composables/group/useInjectedGroupState.ts +64 -0
  765. package/src/composables/group/useProvideGroupState.ts +23 -0
  766. package/src/composables/icons/useComponentIcons.ts +52 -0
  767. package/src/composables/options/useOptions.ts +27 -0
  768. package/src/composables/useModifiers.ts +54 -0
  769. package/src/constants.ts +7 -0
  770. package/src/directives/.README +0 -0
  771. package/src/index.ts +7 -0
  772. package/src/props/index.ts +45 -0
  773. package/src/stories/Accordion/Accordion.stories.mdx +37 -0
  774. package/src/stories/Accordion/AccordionBordered.stories.mdx +26 -0
  775. package/src/stories/Accordion/AccordionIconRight.stories.mdx +32 -0
  776. package/src/stories/Accordion/AccordionSlots.stories.mdx +82 -0
  777. package/src/stories/Accordion/accordionTest.js +36 -0
  778. package/src/stories/AccordionGroup/Accordion.stories.mdx +42 -0
  779. package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +43 -0
  780. package/src/stories/AccordionGroup/AccordionItems.stories.mdx +51 -0
  781. package/src/stories/AccordionGroup/accordionGroupTest.js +51 -0
  782. package/src/stories/Badge/Badge.stories.mdx +38 -0
  783. package/src/stories/Badge/BadgeColor.stories.mdx +54 -0
  784. package/src/stories/Badge/BadgeDot.stories.mdx +20 -0
  785. package/src/stories/Badge/BadgeTest.js +21 -0
  786. package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +46 -0
  787. package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +41 -0
  788. package/src/stories/Button/Button.stories.mdx +73 -0
  789. package/src/stories/Button/ButtonBadge.stories.mdx +33 -0
  790. package/src/stories/Button/ButtonIcon.stories.mdx +51 -0
  791. package/src/stories/Button/ButtonIconPosition.stories.mdx +103 -0
  792. package/src/stories/Button/ButtonLink.stories.mdx +156 -0
  793. package/src/stories/Button/ButtonLoading.stories.mdx +62 -0
  794. package/src/stories/Button/ButtonModifiers.stories.mdx +194 -0
  795. package/src/stories/Button/ButtonSlots.stories.mdx +123 -0
  796. package/src/stories/Button/ButtonVariant.stories.mdx +223 -0
  797. package/src/stories/Button/test.js +41 -0
  798. package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +39 -0
  799. package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +83 -0
  800. package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +50 -0
  801. package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +40 -0
  802. package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +38 -0
  803. package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +77 -0
  804. package/src/stories/ButtonGroup/ButtonGroupTest.js +61 -0
  805. package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +131 -0
  806. package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +38 -0
  807. package/src/stories/Card/Card.stories.mdx +23 -0
  808. package/src/stories/Card/CardSlots.stories.mdx +42 -0
  809. package/src/stories/Card/CardVariant.stories.mdx +37 -0
  810. package/src/stories/Check/Check.stories.mdx +62 -0
  811. package/src/stories/Check/CheckBinary.stories.mdx +80 -0
  812. package/src/stories/Check/CheckDisabled.stories.mdx +30 -0
  813. package/src/stories/Check/CheckError.stories.mdx +64 -0
  814. package/src/stories/Check/CheckErrorTests.js +72 -0
  815. package/src/stories/Check/CheckHintLabel.stories.mdx +30 -0
  816. package/src/stories/Check/CheckPropertyTest.js +101 -0
  817. package/src/stories/Check/CheckReadonly.stories.mdx +30 -0
  818. package/src/stories/Check/CheckSlots.stories.mdx +51 -0
  819. package/src/stories/Check/CheckSwitch.stories.mdx +30 -0
  820. package/src/stories/CheckGroup/CheckGroup.stories.mdx +69 -0
  821. package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +26 -0
  822. package/src/stories/CheckGroup/CheckGroupError.stories.mdx +28 -0
  823. package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +27 -0
  824. package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +26 -0
  825. package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +48 -0
  826. package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +48 -0
  827. package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +40 -0
  828. package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +26 -0
  829. package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +152 -0
  830. package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +28 -0
  831. package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +26 -0
  832. package/src/stories/Dialog/Dialog.stories.mdx +29 -0
  833. package/src/stories/Dialog/DialogAutoClose.stories.mdx +18 -0
  834. package/src/stories/Dialog/DialogSize.stories.mdx +36 -0
  835. package/src/stories/Dropdown/Dropdown.stories.mdx +50 -0
  836. package/src/stories/Dropdown/DropdownDisabled.stories.mdx +25 -0
  837. package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +25 -0
  838. package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +26 -0
  839. package/src/stories/Dropdown/DropdownMultiple.stories.mdx +56 -0
  840. package/src/stories/Dropdown/DropdownOptions.stories.mdx +76 -0
  841. package/src/stories/Dropdown/DropdownUseObject.stories.mdx +58 -0
  842. package/src/stories/Icon/Icon.stories.mdx +73 -0
  843. package/src/stories/Icon/IconList.vue +34 -0
  844. package/src/stories/Icon/IconPrefix.stories.mdx +79 -0
  845. package/src/stories/Icon/IconRemote.stories.mdx +39 -0
  846. package/src/stories/Icon/IconTest.js +27 -0
  847. package/src/stories/Icon/IconsList.stories.mdx +35 -0
  848. package/src/stories/InputText/InputText.stories.mdx +94 -0
  849. package/src/stories/InputText/InputTextAutocomplete.stories.mdx +15 -0
  850. package/src/stories/InputText/InputTextAutofocus.stories.mdx +20 -0
  851. package/src/stories/InputText/InputTextDisabled.stories.mdx +19 -0
  852. package/src/stories/InputText/InputTextError.stories.mdx +19 -0
  853. package/src/stories/InputText/InputTextFloating.stories.mdx +20 -0
  854. package/src/stories/InputText/InputTextHintLabel.stories.mdx +18 -0
  855. package/src/stories/InputText/InputTextIcon.stories.mdx +18 -0
  856. package/src/stories/InputText/InputTextIconPosition.stories.mdx +31 -0
  857. package/src/stories/InputText/InputTextLabel.stories.mdx +15 -0
  858. package/src/stories/InputText/InputTextLoading.stories.mdx +19 -0
  859. package/src/stories/InputText/InputTextMax.stories.mdx +31 -0
  860. package/src/stories/InputText/InputTextMaxLength.stories.mdx +15 -0
  861. package/src/stories/InputText/InputTextMin.stories.mdx +31 -0
  862. package/src/stories/InputText/InputTextMinLength.stories.mdx +15 -0
  863. package/src/stories/InputText/InputTextPlaceholder.stories.mdx +15 -0
  864. package/src/stories/InputText/InputTextReadonly.stories.mdx +19 -0
  865. package/src/stories/InputText/InputTextSlots.stories.mdx +30 -0
  866. package/src/stories/InputText/InputTextStep.stories.mdx +31 -0
  867. package/src/stories/InputText/InputTextType.stories.mdx +81 -0
  868. package/src/stories/InputText/InputTextValid.stories.mdx +19 -0
  869. package/src/stories/NativeSelect/NativeSelect.stories.mdx +53 -0
  870. package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +32 -0
  871. package/src/stories/NativeSelect/NativeSelectError.stories.mdx +36 -0
  872. package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +34 -0
  873. package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +42 -0
  874. package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +27 -0
  875. package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +78 -0
  876. package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +34 -0
  877. package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +66 -0
  878. package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +36 -0
  879. package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +66 -0
  880. package/src/stories/Progress/Progress.stories.mdx +29 -0
  881. package/src/stories/Progress/ProgressDeterminate.stories.mdx +19 -0
  882. package/src/stories/Radio/Radio.stories.mdx +67 -0
  883. package/src/stories/Radio/RadioDisabled.stories.mdx +30 -0
  884. package/src/stories/Radio/RadioError.stories.mdx +64 -0
  885. package/src/stories/Radio/RadioHintLabel.stories.mdx +30 -0
  886. package/src/stories/Radio/RadioSlots.stories.mdx +29 -0
  887. package/src/stories/Radio/RadioTest.js +89 -0
  888. package/src/stories/RadioGroup/RadioGroup.stories.mdx +73 -0
  889. package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +29 -0
  890. package/src/stories/RadioGroup/RadioGroupError.stories.mdx +31 -0
  891. package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +28 -0
  892. package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +29 -0
  893. package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +65 -0
  894. package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +65 -0
  895. package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +58 -0
  896. package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +29 -0
  897. package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +162 -0
  898. package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +31 -0
  899. package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +29 -0
  900. package/src/stories/RadioGroup/RadioOptionsTest.js +78 -0
  901. package/src/stories/RadioGroup/RadioPropertyTest.js +131 -0
  902. package/src/stories/RadioGroup/RadioSlotsTest.js +20 -0
  903. package/src/stories/Select/Select.stories.mdx +55 -0
  904. package/src/stories/Select/SelectDisabled.stories.mdx +32 -0
  905. package/src/stories/Select/SelectMaxValues.stories.mdx +33 -0
  906. package/src/stories/Select/SelectMultiple.stories.mdx +64 -0
  907. package/src/stories/Select/SelectOptions.stories.mdx +78 -0
  908. package/src/stories/Select/SelectSearchable.stories.mdx +80 -0
  909. package/src/stories/Select/SelectSeparator.stories.mdx +64 -0
  910. package/src/stories/Select/SelectUseObject.stories.mdx +66 -0
  911. package/src/stories/Textarea/Textarea.stories.mdx +84 -0
  912. package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +15 -0
  913. package/src/stories/Textarea/TextareaAutofocus.stories.mdx +20 -0
  914. package/src/stories/Textarea/TextareaDisabled.stories.mdx +19 -0
  915. package/src/stories/Textarea/TextareaError.stories.mdx +19 -0
  916. package/src/stories/Textarea/TextareaFloating.stories.mdx +20 -0
  917. package/src/stories/Textarea/TextareaHintLabel.stories.mdx +18 -0
  918. package/src/stories/Textarea/TextareaIcon.stories.mdx +18 -0
  919. package/src/stories/Textarea/TextareaIconPosition.stories.mdx +31 -0
  920. package/src/stories/Textarea/TextareaLabel.stories.mdx +15 -0
  921. package/src/stories/Textarea/TextareaLoading.stories.mdx +19 -0
  922. package/src/stories/Textarea/TextareaMaxLength.stories.mdx +15 -0
  923. package/src/stories/Textarea/TextareaMinLength.stories.mdx +15 -0
  924. package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +15 -0
  925. package/src/stories/Textarea/TextareaReadonly.stories.mdx +19 -0
  926. package/src/stories/Textarea/TextareaRowsCols.stories.mdx +31 -0
  927. package/src/stories/Textarea/TextareaSlots.stories.mdx +31 -0
  928. package/src/stories/Textarea/TextareaValid.stories.mdx +19 -0
  929. package/src/stories/stories.scss +24 -0
  930. package/src/stories/volver-ui-vue.stories.mdx +70 -0
  931. package/src/types/.README +0 -0
  932. package/src/types/generic.d.ts +1 -0
  933. package/src/utils/ObjectUtilities.ts +275 -0
@@ -0,0 +1,2985 @@
1
+ import { computed as p, unref as m, defineComponent as j, ref as E, toRefs as L, inject as e1, openBlock as f, createBlock as O, mergeProps as S, createCommentVNode as H, toRef as m1, useAttrs as F, useSlots as o1, resolveDynamicComponent as l1, withCtx as X, renderSlot as w, createElementBlock as M, toDisplayString as V, Fragment as R, createTextVNode as D, normalizeClass as I, isRef as g1, provide as p1, createElementVNode as A, renderList as U, watch as f1, h as v1, createVNode as n1, Transition as C1, toHandlers as y1, withDirectives as M1, withModifiers as w1, vShow as b1 } from "vue";
2
+ import { v4 as Y } from "uuid";
3
+ import { iconExists as W, Icon as x1, addIcon as Z1 } from "@iconify/vue";
4
+ import { useVModel as K, useFocus as A1, onClickOutside as H1 } from "@vueuse/core";
5
+ var G = /* @__PURE__ */ ((r) => (r.left = "left", r.right = "right", r.top = "top", r.bottom = "bottom", r))(G || {}), q = /* @__PURE__ */ ((r) => (r.nuxtLink = "nuxt-link", r.routerLink = "router-link", r.a = "a", r.button = "button", r))(q || {}), a1 = /* @__PURE__ */ ((r) => (r._blank = "_blank", r._self = "_self", r._parent = "_parent", r._top = "_top", r))(a1 || {});
6
+ const V1 = {
7
+ icon: String,
8
+ iconPosition: {
9
+ type: String,
10
+ default: "left",
11
+ validator: (r) => r in G
12
+ },
13
+ label: String,
14
+ loading: Boolean,
15
+ loadingIcon: { type: String, default: "eos-icons:bubble-loading" },
16
+ loadingLabel: {
17
+ type: String,
18
+ default: "Loading..."
19
+ },
20
+ to: {
21
+ type: [String, Object]
22
+ },
23
+ href: String,
24
+ target: {
25
+ type: String,
26
+ validator: (r) => r in a1
27
+ },
28
+ block: Boolean,
29
+ active: Boolean,
30
+ rounded: Boolean,
31
+ disabled: Boolean,
32
+ fullBleed: Boolean,
33
+ action: Boolean,
34
+ actionQuiet: Boolean,
35
+ selected: Boolean,
36
+ modifiers: [Array, String]
37
+ }, C = {
38
+ equals(r, e, t) {
39
+ return t ? this.resolveFieldData(r, t) === this.resolveFieldData(e, t) : this.deepEquals(r, e);
40
+ },
41
+ deepEquals(r, e) {
42
+ if (r === e)
43
+ return !0;
44
+ if (r && e && typeof r == "object" && typeof e == "object") {
45
+ const t = Array.isArray(r), l = Array.isArray(e);
46
+ let o, i, a;
47
+ if (t && l) {
48
+ if (i = r.length, i != e.length)
49
+ return !1;
50
+ for (o = i; o-- !== 0; )
51
+ if (!this.deepEquals(r[o], e[o]))
52
+ return !1;
53
+ return !0;
54
+ }
55
+ if (t != l)
56
+ return !1;
57
+ const c = r instanceof Date, u = e instanceof Date;
58
+ if (c != u)
59
+ return !1;
60
+ if (c && u)
61
+ return r.getTime() == e.getTime();
62
+ const d = r instanceof RegExp, h = e instanceof RegExp;
63
+ if (d != h)
64
+ return !1;
65
+ if (d && h)
66
+ return r.toString() == e.toString();
67
+ const n = Object.keys(r);
68
+ if (i = n.length, i !== Object.keys(e).length)
69
+ return !1;
70
+ for (o = i; o-- !== 0; )
71
+ if (!Object.prototype.hasOwnProperty.call(e, n[o]))
72
+ return !1;
73
+ for (o = i; o-- !== 0; )
74
+ if (a = n[o], !this.deepEquals(r[a], e[a]))
75
+ return !1;
76
+ return !0;
77
+ }
78
+ return r !== r && e !== e;
79
+ },
80
+ resolveFieldData(r, e) {
81
+ if (r && Object.keys(r).length && e) {
82
+ if (e.indexOf(".") === -1)
83
+ return r[e];
84
+ {
85
+ const t = e.split(".");
86
+ let l = r;
87
+ for (let o = 0, i = t.length; o < i; ++o) {
88
+ if (r == null)
89
+ return null;
90
+ l = l[t[o]];
91
+ }
92
+ return l;
93
+ }
94
+ } else
95
+ return null;
96
+ },
97
+ isFunction(r) {
98
+ return !!(r && r.constructor && r.call && r.apply);
99
+ },
100
+ findIndexInList(r, e) {
101
+ let t = -1;
102
+ if (e) {
103
+ for (let l = 0; l < e.length; l++)
104
+ if (this.equals(e[l], r)) {
105
+ t = l;
106
+ break;
107
+ }
108
+ }
109
+ return t;
110
+ },
111
+ contains(r, e) {
112
+ if (r != null && e && e.length) {
113
+ for (const t of e)
114
+ if (this.equals(r, t))
115
+ return !0;
116
+ }
117
+ return !1;
118
+ },
119
+ isEmpty(r) {
120
+ return r == null || r === "" || Array.isArray(r) && r.length === 0 || !(r instanceof Date) && typeof r == "object" && Object.keys(r).length === 0;
121
+ },
122
+ isNotEmpty(r) {
123
+ return !this.isEmpty(r);
124
+ },
125
+ pickBy(r, e) {
126
+ return Object.fromEntries(
127
+ Object.entries(r).filter(([t]) => e(t))
128
+ );
129
+ },
130
+ removeFromList(r, e) {
131
+ const t = this.findIndexInList(r, e);
132
+ return t > -1 ? e.filter((l, o) => o !== t) : e;
133
+ },
134
+ isString(r) {
135
+ return typeof r == "string" || r instanceof String;
136
+ },
137
+ propsToObject(r) {
138
+ return Object.keys(r).reduce((e, t) => {
139
+ var l, o, i, a, c;
140
+ return this.isFunction(r[t]) ? e[t] = r[t]() : Array.isArray(r[t]) ? e[t] = r[t][0]() : (l = r[t]) != null && l.type && (Array.isArray(r[t].type) ? e[t] = ((o = r[t]) == null ? void 0 : o.default) || ((i = r[t]) == null ? void 0 : i.type[0]()) : e[t] = ((a = r[t]) == null ? void 0 : a.default) || ((c = r[t]) == null ? void 0 : c.type())), e;
141
+ }, {});
142
+ },
143
+ filterArray(r, e, t) {
144
+ return r.filter((l) => e.some((o) => typeof o == "string" ? l[t] == o : this.equals(
145
+ l[t],
146
+ o[t]
147
+ )));
148
+ },
149
+ kebabCase(r) {
150
+ var e, t;
151
+ if (r)
152
+ return (t = (e = r.match(
153
+ /[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g
154
+ )) == null ? void 0 : e.join("-")) == null ? void 0 : t.toLowerCase();
155
+ }
156
+ }, j1 = {
157
+ color: String,
158
+ width: {
159
+ type: [String, Number]
160
+ },
161
+ height: {
162
+ type: [String, Number]
163
+ },
164
+ name: {
165
+ type: String,
166
+ required: !0
167
+ },
168
+ provider: {
169
+ type: String
170
+ },
171
+ prefix: {
172
+ type: String,
173
+ default: "normal"
174
+ },
175
+ src: String,
176
+ horizontalFlip: Boolean,
177
+ verticalFlip: Boolean,
178
+ flip: String,
179
+ mode: String,
180
+ inline: Boolean,
181
+ rotate: [Number, String],
182
+ onLoad: Function,
183
+ svg: String,
184
+ modifiers: {
185
+ type: [String, Array]
186
+ }
187
+ };
188
+ function _(r, e) {
189
+ const t = { [`${r}`]: !0 };
190
+ return {
191
+ bemCssClasses: p(() => Object.keys(e).reduce((o, i) => {
192
+ const a = m(e[i]) || !1;
193
+ if (!a)
194
+ return o;
195
+ if (i === "modifiers") {
196
+ const c = Array.isArray(a) ? a : [a];
197
+ return {
198
+ ...o,
199
+ ...c.reduce(
200
+ (u, d) => ({
201
+ ...u,
202
+ [`${r}--${C.kebabCase(
203
+ d
204
+ )}`]: !0
205
+ }),
206
+ {}
207
+ )
208
+ };
209
+ } else
210
+ return {
211
+ ...o,
212
+ [`${r}--${C.kebabCase(i)}`]: a
213
+ };
214
+ }, t) || {})
215
+ };
216
+ }
217
+ const J = /* @__PURE__ */ j({
218
+ __name: "VvIcon",
219
+ props: j1,
220
+ setup(r) {
221
+ const e = r, t = E(!0), { modifiers: l } = L(e), o = e1("ds"), { bemCssClasses: i } = _("vv-icon", {
222
+ modifiers: l
223
+ }), a = p(() => e.provider || (o == null ? void 0 : o.provider)), c = p(() => {
224
+ const h = e.name || "", n = `@${a.value}:${e.prefix}:${e.name}`;
225
+ return W(h) ? h : W(n) ? n : (o == null ? void 0 : o.iconsCollections.find((s) => {
226
+ const k = `@${a.value}:${s.prefix}:${h}`;
227
+ if (W(k))
228
+ return k;
229
+ })) || h;
230
+ });
231
+ function u(h) {
232
+ let n = null;
233
+ if (typeof window > "u") {
234
+ const { JSDOM: g } = require("jsdom");
235
+ n = new g().window;
236
+ }
237
+ return (n ? new n.DOMParser() : new window.DOMParser()).parseFromString(h, "text/html").querySelector("svg");
238
+ }
239
+ function d(h) {
240
+ const n = u(h), s = (n == null ? void 0 : n.innerHTML.trim()) || "";
241
+ n && s && Z1(`@${a.value}:${e.prefix}:${e.name}`, {
242
+ body: s,
243
+ height: n.viewBox.baseVal.height,
244
+ width: n.viewBox.baseVal.width
245
+ });
246
+ }
247
+ return o && (e.src ? (t.value = !1, o.fetchIcon(e.src).then((h) => {
248
+ h && (d(h), t.value = !0);
249
+ }).catch((h) => {
250
+ throw new Error(`During fetch icon: ${h == null ? void 0 : h.message}`);
251
+ })) : e.svg && d(e.svg)), (h, n) => t.value ? (f(), O(m(x1), S({
252
+ key: 0,
253
+ class: m(i)
254
+ }, {
255
+ ...h.$props,
256
+ provider: m(a),
257
+ icon: m(c)
258
+ }), null, 16, ["class"])) : H("", !0);
259
+ }
260
+ });
261
+ function r1(r) {
262
+ const e = e1(r, void 0);
263
+ console.log("Inject - ", e);
264
+ const t = p(() => C.isNotEmpty(e));
265
+ function l(o, i, a) {
266
+ if (e != null && e.value) {
267
+ const c = m(e.value)[o];
268
+ return p({
269
+ get() {
270
+ return c == null ? void 0 : c.value;
271
+ },
272
+ set(u) {
273
+ c.value = u;
274
+ }
275
+ });
276
+ } else {
277
+ const c = m1(i, o);
278
+ return p({
279
+ get() {
280
+ return c.value;
281
+ },
282
+ set(u) {
283
+ a && a(`update:${o}`, u);
284
+ }
285
+ });
286
+ }
287
+ }
288
+ return {
289
+ group: e,
290
+ isInGroup: t,
291
+ getGroupOrLocalRef: l
292
+ };
293
+ }
294
+ const i1 = Symbol("VV_BUTTON_GROUP"), c1 = Symbol("VV_CHECK_GROUP"), s1 = Symbol("VV_ACCORDION_GROUP");
295
+ function L1(r) {
296
+ const { group: e, isInGroup: t, getGroupOrLocalRef: l } = r1(i1), { modifiers: o, fullBleed: i, iconPosition: a, icon: c, label: u, block: d, selected: h } = L(r), n = l("modelValue", r), s = l("disabled", r), k = l("toggle", r), v = l("rounded", r), g = l("action", r), y = l("actionQuiet", r);
297
+ return {
298
+ modelValue: n,
299
+ disabled: s,
300
+ toggle: k,
301
+ isInGroup: t,
302
+ group: e,
303
+ modifiers: o,
304
+ action: g,
305
+ actionQuiet: y,
306
+ selected: h,
307
+ block: d,
308
+ rounded: v,
309
+ fullBleed: i,
310
+ iconPosition: a,
311
+ icon: c,
312
+ label: u
313
+ };
314
+ }
315
+ const _1 = {
316
+ key: 1,
317
+ class: "vv-button__label"
318
+ }, S1 = {
319
+ key: 1,
320
+ class: "vv-button__label"
321
+ }, P0 = /* @__PURE__ */ j({
322
+ __name: "VvButton",
323
+ props: V1,
324
+ setup(r) {
325
+ const e = r, t = F();
326
+ o1();
327
+ const l = (t == null ? void 0 : t.name) || Y(), {
328
+ modifiers: o,
329
+ action: i,
330
+ actionQuiet: a,
331
+ block: c,
332
+ rounded: u,
333
+ fullBleed: d,
334
+ iconPosition: h,
335
+ icon: n,
336
+ label: s,
337
+ modelValue: k,
338
+ disabled: v,
339
+ toggle: g,
340
+ isInGroup: y
341
+ } = L1(e), x = p(() => {
342
+ switch (!0) {
343
+ case v.value:
344
+ return q.button;
345
+ case e.to !== void 0:
346
+ return q.routerLink;
347
+ case e.href !== void 0:
348
+ return q.a;
349
+ default:
350
+ return q.button;
351
+ }
352
+ }), B = p(() => g.value ? Array.isArray(k.value) ? C.contains(l, k.value) : C.equals(l, k.value) : e.active), z = p(() => g.value ? Array.isArray(k.value) ? C.contains(l, k.value) : C.equals(l, k.value) : e.selected), { bemCssClasses: Q } = _("vv-button", {
353
+ modifiers: o,
354
+ active: B,
355
+ action: i,
356
+ actionQuiet: a,
357
+ selected: z,
358
+ block: c,
359
+ rounded: u,
360
+ fullBleed: d,
361
+ disabled: v,
362
+ reverse: p(
363
+ () => [G.right, G.bottom].includes(
364
+ h.value
365
+ )
366
+ ),
367
+ column: p(
368
+ () => [G.top, G.bottom].includes(
369
+ h.value
370
+ )
371
+ ),
372
+ iconOnly: p(() => (n == null ? void 0 : n.value) && !(s != null && s.value))
373
+ }), T = p(() => ({
374
+ ...Z.value,
375
+ "aria-label": e.label || t["aria-label"],
376
+ "aria-disabled": v.value,
377
+ role: "button",
378
+ class: Q.value,
379
+ to: e.to
380
+ })), Z = p(() => {
381
+ const b = x.value === q.a;
382
+ let P = {};
383
+ return b && (P = v.value ? {
384
+ href: "javascript:;"
385
+ } : {
386
+ target: e.target,
387
+ href: e.href
388
+ }), P;
389
+ });
390
+ function $() {
391
+ y.value && (k.value = l);
392
+ }
393
+ return (b, P) => (f(), O(l1(m(x)), S(m(T), { onClickPassive: $ }), {
394
+ default: X(() => [
395
+ w(b.$slots, "default", {}, () => [
396
+ b.loading ? w(b.$slots, "loading", { key: 0 }, () => [
397
+ b.loadingIcon ? (f(), O(J, {
398
+ key: 0,
399
+ class: "vv-button__loading-icon",
400
+ name: b.loadingIcon
401
+ }, null, 8, ["name"])) : H("", !0),
402
+ b.loadingLabel ? (f(), M("span", _1, V(b.loadingLabel), 1)) : H("", !0)
403
+ ]) : (f(), M(R, { key: 1 }, [
404
+ w(b.$slots, "before"),
405
+ m(n) ? (f(), O(J, {
406
+ key: 0,
407
+ class: "vv-button__icon",
408
+ name: m(n)
409
+ }, null, 8, ["name"])) : H("", !0),
410
+ m(s) ? (f(), M("span", S1, [
411
+ w(b.$slots, "label", {}, () => [
412
+ D(V(m(s)), 1)
413
+ ])
414
+ ])) : H("", !0),
415
+ w(b.$slots, "after")
416
+ ], 64))
417
+ ])
418
+ ]),
419
+ _: 3
420
+ }, 16));
421
+ }
422
+ }), $1 = {
423
+ value: [String, Number],
424
+ color: String
425
+ }, E0 = /* @__PURE__ */ j({
426
+ __name: "VvBadge",
427
+ props: $1,
428
+ setup(r) {
429
+ const e = r, t = p(() => e.color ? `vv-badge--${e.color}` : "");
430
+ return (l, o) => (f(), M("span", {
431
+ class: I(["vv-badge", m(t)]),
432
+ role: "status"
433
+ }, V(l.value), 3));
434
+ }
435
+ }), B1 = {
436
+ disabled: { type: Boolean, default: !1 },
437
+ vertical: { type: Boolean, default: !1 },
438
+ compact: { type: Boolean, default: !1 },
439
+ toggle: { type: Boolean, default: !1 },
440
+ block: { type: Boolean, default: !1 },
441
+ rounded: { type: Boolean, default: !1 },
442
+ action: Boolean,
443
+ actionQuiet: Boolean,
444
+ modelValue: { type: String, default: void 0 }
445
+ }, z1 = ["update:modelValue"];
446
+ function t1(r) {
447
+ if (Object.keys(r).some(
448
+ (e) => e !== "key" && !g1(r[e])
449
+ ))
450
+ throw Error("One or more groupState props aren't ref.");
451
+ console.log("PRovide - ", r), p1(
452
+ r.key,
453
+ p(() => r)
454
+ );
455
+ }
456
+ const R0 = /* @__PURE__ */ j({
457
+ __name: "VvButtonGroup",
458
+ props: B1,
459
+ emits: z1,
460
+ setup(r, { emit: e }) {
461
+ const t = r, l = K(t, "modelValue", e), {
462
+ disabled: o,
463
+ vertical: i,
464
+ compact: a,
465
+ block: c,
466
+ rounded: u,
467
+ toggle: d,
468
+ action: h,
469
+ actionQuiet: n
470
+ } = L(t), { bemCssClasses: s } = _("vv-button-group", {
471
+ vertical: i,
472
+ compact: a,
473
+ block: c
474
+ });
475
+ return t1({
476
+ key: i1,
477
+ modelValue: l,
478
+ disabled: o,
479
+ toggle: d,
480
+ rounded: u,
481
+ action: h,
482
+ actionQuiet: n
483
+ }), (v, g) => (f(), M("div", {
484
+ class: I(m(s)),
485
+ role: "group"
486
+ }, [
487
+ w(v.$slots, "default")
488
+ ], 2));
489
+ }
490
+ }), O1 = {
491
+ title: String,
492
+ content: String,
493
+ open: Boolean,
494
+ iconRight: Boolean,
495
+ bordered: Boolean,
496
+ modifiers: [String, Array],
497
+ disabled: Boolean
498
+ }, D1 = ["update:open"];
499
+ function I1(r, e) {
500
+ const { group: t, isInGroup: l, getGroupOrLocalRef: o } = r1(s1), { modifiers: i } = L(r), a = o("modelValue", r, e), c = o("bordered", r), u = o("disabled", r), d = o("iconRight", r), h = o("accordion", r);
501
+ return {
502
+ modelValue: a,
503
+ disabled: u,
504
+ bordered: c,
505
+ iconRight: d,
506
+ isInGroup: l,
507
+ group: t,
508
+ accordion: h,
509
+ modifiers: i
510
+ };
511
+ }
512
+ const q1 = ["open"], G1 = ["aria-controls", "aria-expanded"], P1 = ["aria-hidden"], E1 = /* @__PURE__ */ j({
513
+ __name: "VvAccordion",
514
+ props: O1,
515
+ emits: D1,
516
+ setup(r, { emit: e }) {
517
+ const t = r, l = F(), o = (l == null ? void 0 : l.name) || Y(), {
518
+ modelValue: i,
519
+ modifiers: a,
520
+ bordered: c,
521
+ disabled: u = E(!1),
522
+ iconRight: d,
523
+ isInGroup: h,
524
+ accordion: n
525
+ } = I1(t, e), s = p(() => h.value ? n.value ? C.equals(o, i.value) : C.contains(o, i.value) : t.open), { bemCssClasses: k } = _("vv-accordion", {
526
+ modifiers: a,
527
+ disabled: u,
528
+ markerRight: p(() => d.value),
529
+ bordered: c
530
+ }), v = (y) => {
531
+ const x = y.target;
532
+ e("update:open", x.open);
533
+ }, g = (y) => {
534
+ h.value && (n.value ? i.value = s.value ? null : o : i.value = s.value ? C.removeFromList(
535
+ o,
536
+ i.value
537
+ ) : [...i.value, o], y.preventDefault());
538
+ };
539
+ return (y, x) => (f(), M("details", {
540
+ class: I(m(k)),
541
+ open: m(s),
542
+ onToggle: v,
543
+ onClick: g
544
+ }, [
545
+ A("summary", {
546
+ "aria-controls": `#${m(o)}`,
547
+ "aria-expanded": m(s),
548
+ class: "vv-collapse__summary"
549
+ }, [
550
+ w(y.$slots, "header", {}, () => [
551
+ D(V(y.title), 1)
552
+ ])
553
+ ], 8, G1),
554
+ A("div", {
555
+ "aria-hidden": !m(s),
556
+ class: "vv-collapse__content"
557
+ }, [
558
+ w(y.$slots, "details", {}, () => [
559
+ D(V(y.content), 1)
560
+ ])
561
+ ], 8, P1)
562
+ ], 42, q1));
563
+ }
564
+ }), R1 = {
565
+ modelValue: [String, Array],
566
+ iconRight: Boolean,
567
+ bordered: Boolean,
568
+ items: { type: Array, default: () => [] },
569
+ accordion: Boolean,
570
+ modifiers: [String, Array],
571
+ disabled: Boolean
572
+ }, N1 = ["update:open"], N0 = /* @__PURE__ */ j({
573
+ __name: "VvAccordionGroup",
574
+ props: R1,
575
+ emits: N1,
576
+ setup(r, { emit: e }) {
577
+ const t = r, l = K(t, "modelValue", e), { disabled: o, bordered: i, iconRight: a, accordion: c, modifiers: u, items: d } = L(t);
578
+ t1({
579
+ key: s1,
580
+ modelValue: l,
581
+ disabled: o,
582
+ bordered: i,
583
+ iconRight: a,
584
+ accordion: c
585
+ });
586
+ const { bemCssClasses: n } = _("vv-accordion-group", {
587
+ modifiers: u,
588
+ disabled: o
589
+ });
590
+ return (s, k) => {
591
+ var v;
592
+ return f(), M("div", {
593
+ class: I(m(n))
594
+ }, [
595
+ ((v = t.items) == null ? void 0 : v.length) > 0 ? (f(!0), M(R, { key: 0 }, U(m(d), (g) => (f(), O(E1, S({
596
+ key: g.title
597
+ }, {
598
+ name: g.name,
599
+ title: g.title,
600
+ content: g.content,
601
+ ...t
602
+ }), null, 16))), 128)) : w(s.$slots, "default", { key: 1 })
603
+ ], 2);
604
+ };
605
+ }
606
+ }), h1 = {
607
+ valid: Boolean,
608
+ validLabel: [String, Array]
609
+ }, d1 = {
610
+ error: Boolean,
611
+ errorLabel: [String, Array]
612
+ }, F1 = {
613
+ disabled: Boolean
614
+ }, k1 = {
615
+ modifiers: [String, Array]
616
+ }, U1 = {
617
+ hintLabel: { type: String, default: "" }
618
+ }, K1 = {
619
+ options: { type: Array, default: () => [] },
620
+ optionLabel: { type: [String, Function], default: () => "label" },
621
+ optionValue: { type: [String, Function], default: () => "value" }
622
+ }, Q1 = {
623
+ ...k1,
624
+ routes: Array,
625
+ multiline: Boolean
626
+ }, T1 = { class: "vv-breadcrumb__list" }, W1 = ["content"], F0 = /* @__PURE__ */ j({
627
+ __name: "VvBreadcrumb",
628
+ props: Q1,
629
+ setup(r) {
630
+ const e = r, { modifiers: t, multiline: l } = L(e), { bemCssClasses: o } = _("vv-breadcrumb", {
631
+ modifiers: t,
632
+ multiline: l
633
+ });
634
+ return (i, a) => (f(), M("nav", {
635
+ class: I(m(o)),
636
+ "aria-label": "breadcrumbs"
637
+ }, [
638
+ A("ol", T1, [
639
+ (f(!0), M(R, null, U(i.routes, (c, u) => {
640
+ var d, h, n, s;
641
+ return f(), M("li", {
642
+ key: `${c.label}-${u}`,
643
+ class: I({
644
+ "vv-breadcrumb__item": u < Number((d = i.routes) == null ? void 0 : d.length) - 1,
645
+ "vv-breadcrumb__item-active": u === Number((h = i.routes) == null ? void 0 : h.length) - 1
646
+ }),
647
+ itemprop: "itemListElement",
648
+ itemtype: "https://schema.org/ListItem",
649
+ itemscope: ""
650
+ }, [
651
+ (f(), O(l1(c.to ? "router-link" : c.href ? "a" : "span"), S(c, {
652
+ class: {
653
+ "vv-breadcrumb__link": u < Number((n = i.routes) == null ? void 0 : n.length) - 1
654
+ },
655
+ "aria-current": u === Number((s = i.routes) == null ? void 0 : s.length) - 1 ? "page" : void 0,
656
+ itemprop: "item"
657
+ }), {
658
+ default: X(() => [
659
+ D(V(c.label) + " ", 1)
660
+ ]),
661
+ _: 2
662
+ }, 1040, ["class", "aria-current"])),
663
+ A("meta", {
664
+ itemprop: "position",
665
+ content: `${u + 1}`
666
+ }, null, 8, W1)
667
+ ], 2);
668
+ }), 128))
669
+ ])
670
+ ], 2));
671
+ }
672
+ }), J1 = {
673
+ title: String,
674
+ modifiers: [String, Array]
675
+ }, X1 = {
676
+ key: 0,
677
+ class: "vv-card__header"
678
+ }, Y1 = {
679
+ key: 1,
680
+ class: "vv-card__content"
681
+ }, r0 = {
682
+ key: 2,
683
+ class: "vv-card__footer"
684
+ }, U0 = /* @__PURE__ */ j({
685
+ __name: "VvCard",
686
+ props: J1,
687
+ setup(r) {
688
+ const e = r, t = F(), { modifiers: l } = L(e), { bemCssClasses: o } = _("vv-card", {
689
+ modifiers: l
690
+ }), i = p(() => t);
691
+ return (a, c) => (f(), M("article", S({ class: m(o) }, m(i)), [
692
+ a.$slots.header || a.title ? (f(), M("header", X1, [
693
+ w(a.$slots, "header", {}, () => [
694
+ D(V(a.title), 1)
695
+ ])
696
+ ])) : H("", !0),
697
+ w(a.$slots, "default"),
698
+ a.$slots.content ? (f(), M("div", Y1, [
699
+ w(a.$slots, "content")
700
+ ])) : H("", !0),
701
+ a.$slots.footer ? (f(), M("footer", r0, [
702
+ w(a.$slots, "footer")
703
+ ])) : H("", !0)
704
+ ], 16));
705
+ }
706
+ }), t0 = {
707
+ ...h1,
708
+ ...d1,
709
+ value: null,
710
+ modelValue: null,
711
+ binary: Boolean,
712
+ trueValue: { type: null, default: !0 },
713
+ falseValue: { type: null, default: !1 },
714
+ switch: Boolean,
715
+ label: String,
716
+ disabled: Boolean,
717
+ readonly: Boolean
718
+ }, e0 = [
719
+ "click",
720
+ "update:modelValue",
721
+ "change",
722
+ "focus",
723
+ "blur"
724
+ ];
725
+ function o0(r, e) {
726
+ const { group: t, isInGroup: l, getGroupOrLocalRef: o } = r1(c1), { valid: i, error: a, switch: c } = L(r), u = o("modelValue", r, e), d = o("readonly", r), h = o("disabled", r);
727
+ return {
728
+ group: t,
729
+ isInGroup: l,
730
+ valid: i,
731
+ error: a,
732
+ propsSwitch: c,
733
+ modelValue: u,
734
+ readonly: d,
735
+ disabled: h
736
+ };
737
+ }
738
+ function l0(r, e) {
739
+ const { focused: t } = A1(r);
740
+ return f1(t, (l) => {
741
+ e(l ? "focus" : "blur", r.value);
742
+ }), {
743
+ focused: t
744
+ };
745
+ }
746
+ const n0 = {
747
+ inheritAttrs: !1
748
+ }, a0 = /* @__PURE__ */ j({
749
+ ...n0,
750
+ __name: "VvCheck",
751
+ props: t0,
752
+ emits: e0,
753
+ setup(r, { emit: e }) {
754
+ const t = r, l = F(), { disabled: o, readonly: i, valid: a, error: c, propsSwitch: u, modelValue: d } = o0(t, e), h = E(), { focused: n } = l0(h, e), s = p(() => t.binary ? C.equals(d.value, t.trueValue) : Array.isArray(d.value) ? C.contains(t.value, d.value) : C.equals(t.value, d.value)), { bemCssClasses: k } = _("vv-input-checkbox", {
755
+ switch: u,
756
+ valid: a,
757
+ invalid: c
758
+ }), { bemCssClasses: v } = _(
759
+ "vv-input-check__input",
760
+ {
761
+ checked: s,
762
+ disabled: o,
763
+ readonly: i
764
+ }
765
+ ), g = p(() => ({
766
+ [l.class]: !0,
767
+ ...k.value
768
+ })), y = p(() => ({
769
+ ...v.value,
770
+ "focus-visible": n.value
771
+ })), x = p(() => {
772
+ const { id: Z, name: $, style: b } = l, P = C.pickBy(
773
+ l,
774
+ (u1) => u1.startsWith("data-")
775
+ );
776
+ return {
777
+ for: Z || $,
778
+ style: b,
779
+ ...P
780
+ };
781
+ }), B = p(() => {
782
+ const { id: Z = "", name: $ = "" } = l;
783
+ return {
784
+ type: "checkbox",
785
+ id: Z || $,
786
+ name: $,
787
+ value: t.value,
788
+ disabled: o.value,
789
+ readonly: i.value,
790
+ checked: s.value,
791
+ ...z.value
792
+ };
793
+ }), z = p(() => {
794
+ const { name: Z } = l, $ = C.pickBy(
795
+ l,
796
+ (b) => b.startsWith("aria-")
797
+ );
798
+ return {
799
+ "aria-label": Z,
800
+ "aria-checked": s.value,
801
+ ...$
802
+ };
803
+ });
804
+ function Q() {
805
+ if (t.binary) {
806
+ d.value = s.value ? t.falseValue : t.trueValue;
807
+ return;
808
+ }
809
+ if (d.value === null) {
810
+ d.value = [t.value];
811
+ return;
812
+ }
813
+ if (Array.isArray(d.value)) {
814
+ d.value = s.value ? C.removeFromList(t.value, d.value) : [...d.value, t.value];
815
+ return;
816
+ }
817
+ console.warn("Cannot change value - VvCheck modelValue is not an array");
818
+ }
819
+ function T(Z) {
820
+ o.value || (e("click", Z), e("change", s.value ? t.value : null), n.value = !0);
821
+ }
822
+ return (Z, $) => (f(), M("label", S({ class: m(g) }, m(x), { onClick: T }), [
823
+ A("input", S({
824
+ ref_key: "input",
825
+ ref: h,
826
+ class: m(y)
827
+ }, m(B), { onInput: Q }), null, 16),
828
+ w(Z.$slots, "default", { value: m(d) }, () => [
829
+ D(V(Z.label), 1)
830
+ ])
831
+ ], 16));
832
+ }
833
+ }), i0 = {
834
+ ...h1,
835
+ ...d1,
836
+ ...U1,
837
+ ...K1,
838
+ modelValue: { type: Array },
839
+ label: { type: String, default: "" },
840
+ name: { type: String, default: "", required: !0 },
841
+ disabled: { type: Boolean, default: !1 },
842
+ readonly: { type: Boolean, default: !1 },
843
+ vertical: { type: Boolean, default: !1 }
844
+ }, c0 = ["update:modelValue", "change"];
845
+ function s0(r) {
846
+ const { options: e, optionLabel: t, optionValue: l } = L(r);
847
+ return {
848
+ options: e,
849
+ getOptionLabel: (a) => typeof a != "object" && a !== null ? a : typeof t.value == "function" ? t.value(a) : a[t.value],
850
+ getOptionValue: (a) => typeof a != "object" && a !== null ? a : typeof l.value == "function" ? l.value(a) : a[l.value]
851
+ };
852
+ }
853
+ function h0(r) {
854
+ return Array.isArray(r) ? r.filter((e) => C.isString(e)).reduce((e, t) => e.length > 0 ? e + `
855
+ ` + t : t, "") : r;
856
+ }
857
+ function d0(r, e) {
858
+ return {
859
+ name: "HintSlot",
860
+ setup() {
861
+ const t = L(r), {
862
+ error: l,
863
+ valid: o,
864
+ hint: i,
865
+ loading: a
866
+ } = e, {
867
+ hintLabel: c,
868
+ modelValue: u,
869
+ valid: d,
870
+ validLabel: h,
871
+ error: n,
872
+ errorLabel: s
873
+ } = t, k = C.resolveFieldData(t, "loading"), v = C.resolveFieldData(
874
+ t,
875
+ "loadingLabel"
876
+ ), g = p(() => n.value ? !!(n.value && l || (s == null ? void 0 : s.value) && Array.isArray(s.value) && s.value.length > 0 || (s == null ? void 0 : s.value) && C.isNotEmpty(s.value)) : !1), y = p(() => !!(c && c.value || i || o || h && h.value || g.value || (k == null ? void 0 : k.value) && a || (k == null ? void 0 : k.value) && (v == null ? void 0 : v.value))), x = p(() => Array.isArray(s == null ? void 0 : s.value) ? h0((s == null ? void 0 : s.value) || "") : s == null ? void 0 : s.value), B = p(() => {
877
+ const z = { modelValue: u, error: n, valid: d };
878
+ return n != null && n.value ? (l == null ? void 0 : l(z)) || (x == null ? void 0 : x.value) || (c == null ? void 0 : c.value) : d != null && d.value ? (o == null ? void 0 : o(z)) || (h == null ? void 0 : h.value) || (c == null ? void 0 : c.value) : k != null && k.value ? (a == null ? void 0 : a(z)) || (v == null ? void 0 : v.value) || (c == null ? void 0 : c.value) : (i == null ? void 0 : i(z)) || (c == null ? void 0 : c.value) || (c == null ? void 0 : c.value);
879
+ });
880
+ return {
881
+ hasHint: y,
882
+ hintContent: B
883
+ };
884
+ },
885
+ render() {
886
+ if (this.hasHint)
887
+ return v1("span", null, this.hintContent);
888
+ }
889
+ };
890
+ }
891
+ const k0 = ["textContent"], u0 = { class: "vv-input-checkbox-group__wrapper" }, K0 = /* @__PURE__ */ j({
892
+ __name: "VvCheckGroup",
893
+ props: i0,
894
+ emits: c0,
895
+ setup(r, { emit: e }) {
896
+ const t = r, l = o1(), o = K(t, "modelValue", e), { disabled: i, readonly: a, error: c, valid: u } = L(t);
897
+ t1({
898
+ key: c1,
899
+ modelValue: o,
900
+ disabled: i,
901
+ readonly: a
902
+ });
903
+ const { getOptionLabel: h, getOptionValue: n } = s0(t), { bemCssClasses: s } = _(
904
+ "vv-input-checkbox-group",
905
+ {
906
+ horizontal: p(() => !t.vertical),
907
+ valid: u,
908
+ invalid: c
909
+ }
910
+ ), k = (g, y) => ({
911
+ id: `${t.name}_opt${y}`,
912
+ name: t.name,
913
+ label: h(g),
914
+ value: n(g)
915
+ }), v = d0(t, l);
916
+ return (g, y) => (f(), M("fieldset", {
917
+ class: I(m(s))
918
+ }, [
919
+ g.label ? (f(), M("legend", {
920
+ key: 0,
921
+ textContent: V(g.label)
922
+ }, null, 8, k0)) : H("", !0),
923
+ A("div", u0, [
924
+ g.options.length > 0 ? (f(!0), M(R, { key: 0 }, U(g.options, (x, B) => (f(), O(a0, S({ key: B }, k(x, B)), null, 16))), 128)) : w(g.$slots, "default", { key: 1 })
925
+ ]),
926
+ n1(m(v), { class: "vv-input-checkbox-group__hint" })
927
+ ], 2));
928
+ }
929
+ }), N = {
930
+ normal: "",
931
+ small: "small",
932
+ fullscreen: "fullscreen"
933
+ }, m0 = ["open", "close", "update:open"], g0 = {
934
+ id: { type: String, required: !0 },
935
+ title: String,
936
+ open: Boolean,
937
+ transition: { type: String, default: "fade-block" },
938
+ size: {
939
+ type: String,
940
+ default: N.normal,
941
+ validator: (r) => Object.values(N).includes(r)
942
+ },
943
+ autoClose: { type: Boolean, default: !0 }
944
+ }, p0 = {
945
+ key: 0,
946
+ class: "vv-dialog__header"
947
+ }, f0 = ["onClick"], v0 = { class: "vv-dialog__content" }, C0 = {
948
+ key: 1,
949
+ class: "vv-dialog__footer"
950
+ }, Q0 = /* @__PURE__ */ j({
951
+ __name: "VvDialog",
952
+ props: g0,
953
+ emits: m0,
954
+ setup(r, { emit: e }) {
955
+ const t = r, l = K(t, "open", e), o = E(!0), i = E(null), a = p(() => {
956
+ const { id: n } = t;
957
+ return {
958
+ id: n,
959
+ open: o.value
960
+ };
961
+ }), c = p(() => ({
962
+ "vv-dialog": !0,
963
+ "vv-dialog--small": t.size === N.small,
964
+ "vv-dialog--fullscreen": t.size === N.fullscreen
965
+ })), u = p(() => `vv-dialog--${t.transition}`), d = {
966
+ "after-enter": () => {
967
+ o.value = !0, e("open");
968
+ },
969
+ "after-leave": () => {
970
+ o.value = !1, e("close");
971
+ }
972
+ };
973
+ H1(i, () => {
974
+ t.autoClose && (l.value = !1);
975
+ });
976
+ function h() {
977
+ l.value = !1;
978
+ }
979
+ return (n, s) => (f(), O(C1, S({ name: m(u) }, y1(d)), {
980
+ default: X(() => [
981
+ M1(A("dialog", S(m(a), { class: m(c) }), [
982
+ A("article", {
983
+ ref_key: "modalWrapper",
984
+ ref: i,
985
+ class: "vv-dialog__wrapper"
986
+ }, [
987
+ n.$slots.header || n.title ? (f(), M("header", p0, [
988
+ w(n.$slots, "header", {}, () => [
989
+ D(V(n.title) + " ", 1),
990
+ A("button", {
991
+ type: "button",
992
+ "aria-label": "Close",
993
+ class: "vv-dialog__close",
994
+ onClick: w1(h, ["prevent"])
995
+ }, [
996
+ n1(J, { name: "close" })
997
+ ], 8, f0)
998
+ ])
999
+ ])) : H("", !0),
1000
+ A("div", v0, [
1001
+ w(n.$slots, "default")
1002
+ ]),
1003
+ n.$slots.footer ? (f(), M("footer", C0, [
1004
+ w(n.$slots, "footer")
1005
+ ])) : H("", !0)
1006
+ ], 512)
1007
+ ], 16), [
1008
+ [b1, m(l)]
1009
+ ])
1010
+ ]),
1011
+ _: 3
1012
+ }, 16, ["name"]));
1013
+ }
1014
+ }), y0 = {
1015
+ ...F1,
1016
+ ...k1,
1017
+ modelValue: [String, Array, Object],
1018
+ labelNoResult: { type: String, default: "No results" },
1019
+ options: {
1020
+ type: Array,
1021
+ required: !0
1022
+ },
1023
+ useObject: Boolean,
1024
+ multiple: Boolean,
1025
+ maxValues: [Number, String],
1026
+ labelKey: { type: String, default: "label" },
1027
+ valueKey: { type: String, default: "value" }
1028
+ }, M0 = { key: 0 }, w0 = ["for"], b0 = ["id", "type", "value", "checked", "disabled"], T0 = /* @__PURE__ */ j({
1029
+ __name: "VvDropdown",
1030
+ props: y0,
1031
+ emits: ["update:modelValue"],
1032
+ setup(r, { emit: e }) {
1033
+ const t = r, l = Y(), { modifiers: o, disabled: i } = L(t), { bemCssClasses: a } = _("vv-dropdown", {
1034
+ modifiers: o,
1035
+ disabled: i
1036
+ });
1037
+ function c(n) {
1038
+ return Array.isArray(t.modelValue) ? C.contains(n, t.modelValue) || C.contains(u(n), t.modelValue) : C.equals(n, t.modelValue) || C.equals(u(n), t.modelValue);
1039
+ }
1040
+ function u(n) {
1041
+ return typeof n == "string" ? n : String(n[t.valueKey]);
1042
+ }
1043
+ function d(n) {
1044
+ return typeof n == "string" ? n : n[t.labelKey];
1045
+ }
1046
+ function h(n) {
1047
+ var g, y;
1048
+ const s = n.target;
1049
+ let k = s.value;
1050
+ if (k = (t.useObject ? (g = t.options) == null ? void 0 : g.find(
1051
+ (x) => x[t.valueKey] == k
1052
+ ) : null) || k, t.multiple) {
1053
+ if (typeof t.maxValues < "u" && t.maxValues >= 0 && ((y = t.modelValue) == null ? void 0 : y.length) >= t.maxValues && (Array.isArray(t.modelValue) && !C.contains(k, t.modelValue) || t.maxValues == 0)) {
1054
+ s.checked = !1;
1055
+ return;
1056
+ }
1057
+ Array.isArray(t.modelValue) ? k = C.contains(k, t.modelValue) ? C.removeFromList(k, t.modelValue) : [...t.modelValue, k] : k = [k];
1058
+ }
1059
+ e("update:modelValue", k);
1060
+ }
1061
+ return (n, s) => {
1062
+ var k;
1063
+ return f(), M("ul", {
1064
+ class: I(m(a)),
1065
+ role: "listbox"
1066
+ }, [
1067
+ (k = n.options) != null && k.length ? H("", !0) : (f(), M("li", M0, [
1068
+ A("label", null, V(n.labelNoResult), 1)
1069
+ ])),
1070
+ (f(!0), M(R, null, U(n.options, (v, g) => {
1071
+ var y;
1072
+ return f(), M("li", { key: g }, [
1073
+ A("label", {
1074
+ for: `dropdown-${g}-${m(l)}`
1075
+ }, [
1076
+ A("input", {
1077
+ id: `dropdown-${g}-${m(l)}`,
1078
+ type: n.multiple ? "checkbox" : "radio",
1079
+ value: u(v),
1080
+ checked: c(v),
1081
+ disabled: typeof v == "object" ? (y = v.disabled) != null ? y : m(i) : m(i),
1082
+ onInput: h
1083
+ }, null, 40, b0),
1084
+ D(" " + V(d(v)), 1)
1085
+ ], 8, w0)
1086
+ ]);
1087
+ }), 128))
1088
+ ], 2);
1089
+ };
1090
+ }
1091
+ }), x0 = "simple", Z0 = 1668011046, A0 = {
1092
+ add: {
1093
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" d="M.5 8h15M8 .5v15"/>'
1094
+ },
1095
+ "add-circle": {
1096
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g><path stroke-linecap="round" d="M3.5 8h9"/><path stroke-linecap="round" stroke-miterlimit="10" d="M8 3.5v9"/></g>'
1097
+ },
1098
+ "align-center": {
1099
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M12.5 6.5h-9m12-3H.5m13 6h-11m8 3h-5"/>'
1100
+ },
1101
+ "align-justify": {
1102
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.5 6.5H.5m15-3H.5m15 6H.5m15 3H.5"/>'
1103
+ },
1104
+ "align-left": {
1105
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M10.5 6.501H.5m15-3.001H.5m12 6.001H.5m8 3h-8"/>'
1106
+ },
1107
+ "align-right": {
1108
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.5 6.5h-10m10-3H.5m15 6h-12m12 3h-8"/>'
1109
+ },
1110
+ analysis: {
1111
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><g transform="translate(0 8)"><rect width="4" height="8" rx="1" stroke="none"/><rect width="3" height="7" x=".5" y=".5" rx=".5"/></g><g transform="translate(6)"><rect width="4" height="16" rx="1" stroke="none"/><rect width="3" height="15" x=".5" y=".5" rx=".5"/></g><g transform="translate(12 5)"><rect width="4" height="11" rx="1" stroke="none"/><rect width="3" height="10" x=".5" y=".5" rx=".5"/></g></g>'
1112
+ },
1113
+ "analysis-2": {
1114
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M8.496.999a.579.579 0 00-.346.15.58.58 0 00-.15.348v6.5H1.5a.59.59 0 00-.35.15.585.585 0 00-.15.35 7.629 7.629 0 007.66 7.5A7.215 7.215 0 0016 8.662 7.635 7.635 0 008.496.999Z"/><path fill="currentColor" d="M9 2.02v6.979H2.02c.121 1.538.803 2.975 1.95 4.09A6.699 6.699 0 008.66 15c1.74 0 3.346-.646 4.52-1.818C14.352 12.009 15 10.405 15 8.665c0-1.756-.68-3.423-1.913-4.693C11.973 2.824 10.537 2.142 9 2.02M8.496 1C12.647.999 16 4.514 16 8.665 16 12.815 12.811 16 8.66 16 4.51 16 1 12.65 1 8.5a.59.59 0 01.15-.35A.59.59 0 011.5 8H8V1.497c0-.11.072-.27.15-.348a.58.58 0 01.346-.15Z"/><path d="M6.882 6.882A.405.405 0 007 6.597V.4a.407.407 0 00-.118-.285.405.405 0 00-.284-.118 6.6 6.6 0 00-6.6 6.6.406.406 0 00.118.285A.405.405 0 00.4 7h6.2a.405.405 0 00.282-.118Z"/><path fill="currentColor" d="M6 6V1.032A5.61 5.61 0 001.032 6H6m.598 1H.403A.405.405 0 010 6.598 6.598 6.598 0 016.598 0 .405.405 0 017 .403v6.195A.405.405 0 016.598 7Z"/></g>'
1115
+ },
1116
+ "analysis-3": {
1117
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round"><path stroke-linejoin="round" d="M1 12.002h0l7-6 3 2 3-3"/><path stroke-miterlimit="10" d="M15.5 12.5H.5v-9"/></g>'
1118
+ },
1119
+ apple: {
1120
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M8.011 15.457a3.9 3.9 0 01.8.1 4.318 4.318 0 01.8.314l.019.009c.1.047.2.1.3.139a1.345 1.345 0 00.539.124 2.029 2.029 0 00.834-.248 3.537 3.537 0 001.324-1.129 11.185 11.185 0 001.456-2.447c.077-.172.136-.315.186-.446a8.9 8.9 0 00.529-5.47 4.23 4.23 0 00-1.694-2.514.386.386 0 01-.037-.026 2.886 2.886 0 00-.582-.363 3.523 3.523 0 00-1.52-.356h-.086a5.038 5.038 0 00-1.73.454l-.342.132c-.149.056-.495.176-.5.177a.4.4 0 01-.136.024h-.334a.4.4 0 01-.136-.023s-.347-.121-.5-.179l-.337-.13a5.076 5.076 0 00-1.735-.458h-.093a3.562 3.562 0 00-1.512.356 2.91 2.91 0 00-.584.363.339.339 0 01-.035.026A4.3 4.3 0 001.221 6.36a8.9 8.9 0 00.505 5.481c.073.192.139.343.2.477a11.141 11.141 0 001.455 2.447 3.51 3.51 0 001.276 1.109 2.208 2.208 0 00.885.267 1.35 1.35 0 00.535-.123c.1-.043.2-.091.3-.137l.018-.009a4.419 4.419 0 01.8-.317 3.706 3.706 0 01.8-.1h.014Z"/><path fill="currentColor" d="M10.463 15.14c.064 0 .248-.081.428-.162.311-.138.568-.366.949-.84.494-.616.939-1.366 1.323-2.23.066-.147.118-.272.164-.393l.02-.048c1.086-2.467.484-4.785.478-4.808l-.013-.055c-.242-1.159-1.175-1.822-1.255-1.876a1.337 1.337 0 01-.099-.07l-.03-.024a1.908 1.908 0 00-.385-.236 2.516 2.516 0 00-1.086-.256h-.062c-.429.01-.853.176-1.395.387l-.348.134c-.151.057-.467.167-.52.186-.15.053-.308.08-.468.08h-.327c-.161 0-.32-.027-.47-.081l-.028-.01c-.152-.053-.368-.13-.49-.175l-.007-.003-.341-.132c-.54-.21-.967-.375-1.393-.386l-.072-.001c-.346 0-.739.094-1.08.258-.152.073-.278.15-.384.236-.036.03-.074.058-.113.084-.061.042-1.031.737-1.259 1.842l-.012.054c-.026.097-.614 2.396.453 4.82l.02.048c.065.172.123.305.178.427.383.861.828 1.61 1.322 2.228.376.468.629.698.901.82l.005.002c.2.088.405.18.475.18a.43.43 0 00.145-.045 6.38 6.38 0 00.252-.115l.037-.018c.277-.131.59-.28.973-.377.29-.074.623-.116 1.018-.128h.079c.252.01.63.032 1.007.128.387.098.715.255.979.38l.038.018c.085.041.166.08.243.112l.005.002a.464.464 0 00.145.044m0 1c-.17 0-.34-.04-.539-.125a7.085 7.085 0 01-.303-.139l-.02-.009a4.318 4.318 0 00-.795-.314 3.894 3.894 0 00-.795-.097h-.015c-.319.01-.58.04-.8.097-.292.075-.55.197-.802.317l-.018.009a7.333 7.333 0 01-.3.136 1.35 1.35 0 01-.534.123c-.283 0-.534-.111-.885-.267-.5-.223-.872-.605-1.276-1.109-.548-.684-1.038-1.507-1.455-2.447a8.365 8.365 0 01-.2-.477C.543 9.15 1.15 6.632 1.221 6.359c.317-1.54 1.623-2.432 1.684-2.473a2.91 2.91 0 01.62-.389 3.562 3.562 0 011.604-.355c.605.016 1.129.22 1.735.455l.338.13c.152.057.498.178.5.179a.404.404 0 00.135.023h.129l.026-.003h.019c.01 0 .017.001.025.003h.128a.4.4 0 00.136-.024c.004-.001.35-.121.499-.177l.342-.132c.605-.236 1.128-.439 1.73-.454a3.536 3.536 0 011.607.355c.225.109.416.227.582.363l.037.026c.014.009 1.35.864 1.694 2.514.044.165.687 2.708-.53 5.47-.05.131-.108.274-.185.446-.419.94-.908 1.764-1.456 2.447-.404.504-.783.89-1.323 1.13-.323.144-.557.248-.834.248Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8 4.14a2.771 2.771 0 012-3.5m-.002 5.5s2.075 1.039 2 3"/></g>',
1121
+ height: 16.14
1122
+ },
1123
+ "arrow-down": {
1124
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m2.5 9.5 5.5 6 5.5-6M8 15.501v-15"/>',
1125
+ height: 16.001
1126
+ },
1127
+ "arrow-left": {
1128
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m6.5 2.501-6 5.5 6 5.5m-6-5.5h15"/>'
1129
+ },
1130
+ "arrow-right": {
1131
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m9.5 13.501 6-5.5-6-5.5m6 5.5H.5"/>'
1132
+ },
1133
+ "arrow-up": {
1134
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m13.501 6.5-5.5-6-5.5 6m5.5-6v15"/>'
1135
+ },
1136
+ attachment: {
1137
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m15.5 7.734-7.091 6.688a4.832 4.832 0 01-6.552 0 4.2 4.2 0 010-6.179l7.092-6.689a3.223 3.223 0 014.368 0 2.8 2.8 0 010 4.119l-7.1 6.688a1.609 1.609 0 01-2.183 0 1.4 1.4 0 010-2.059l6.551-6.172"/>',
1138
+ width: 16.207,
1139
+ height: 16.202
1140
+ },
1141
+ "bck-to-front": {
1142
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m12.5.707-2 2 2 2"/><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M4.667 2.708h-2.5a1.568 1.568 0 00-1.25.417A1.569 1.569 0 00.5 4.375v6.667a1.571 1.571 0 00.417 1.25 1.568 1.568 0 001.25.417h11.667a1.568 1.568 0 001.25-.417 1.568 1.568 0 00.416-1.251V4.375a1.568 1.568 0 00-.417-1.25 1.568 1.568 0 00-1.25-.417h-2.5"/><g stroke-miterlimit="10"><path d="M5.477 13.207h5.043l.431 1.062a.7.7 0 01-.679.938H5.729a.7.7 0 01-.68-.936Z"/><path fill="currentColor" d="M5.477 13.207h5.043l.431 1.062c.184.452-.168.938-.679.938H5.73c-.51 0-.861-.484-.68-.936l.427-1.064Z"/></g></g>',
1143
+ height: 16.207
1144
+ },
1145
+ bell: {
1146
+ body: '<path fill="currentColor" d="M5.999 14.105a1.949 1.949 0 002 1.894 1.949 1.949 0 002-1.894v-.106h-4Z"/><g fill="none" stroke-miterlimit="10"><path d="M9.173.172a5.454 5.454 0 013.823 4.829v2a5.518 5.518 0 001.677 4.529l.1.086a.808.808 0 01.232.566.822.822 0 01-.826.818H1.83a.822.822 0 01-.826-.818.808.808 0 01.232-.566l.1-.086a5.519 5.519 0 001.669-4.529v-2a5.471 5.471 0 013.7-4.795A4.359 4.359 0 019.173.172Z"/><path fill="currentColor" d="M8.072 1.001c-.576 0-1.052.153-1.052.153l-.04.012C5.42 1.62 4 3.448 4 5.001v2c0 1.553-.202 3.496-1.707 5h11.414C12.202 10.498 12 8.555 12 7.001v-2c0-1.6-1.466-3.44-3.076-3.862l-.036-.01-.035-.011A2.418 2.418 0 008.072 1m0-1c.35 0 .734.044 1.105.17C11.15.689 13 2.885 13 5.002v2c0 1.794.326 3.375 1.669 4.53l.1.085a.808.808 0 01.231.567c0 .452-.37.818-.826.818H1.826A.822.822 0 011 12.183c0-.22.089-.42.232-.567l.1-.086C2.673 10.376 3 8.795 3 7.001v-2C3 2.928 4.79.762 6.7.206c0 0 .61-.205 1.372-.205Z"/></g>'
1147
+ },
1148
+ "bell-active": {
1149
+ body: '<g fill="currentColor"><path d="M5.999 14.105a1.949 1.949 0 002 1.894 1.949 1.949 0 002-1.894v-.106h-4Z"/><g stroke-miterlimit="10"><path d="M14.174 12.501H1.826a.323.323 0 01-.326-.318c0-.075.027-.147.077-.204l.043-.038.037-.031C3.29 10.505 3.5 8.549 3.5 7V5c0-1.78 1.561-3.797 3.34-4.315l.01-.003.01-.003A4.32 4.32 0 018.072.501c.347 0 .665.048.943.144l.018.006.018.004c.854.224 1.725.823 2.389 1.645.674.835 1.06 1.82 1.06 2.701v2c0 2.947.985 4.17 1.843 4.908l.036.031.044.039c.05.057.077.129.077.204a.322.322 0 01-.326.318Z"/><path d="M8.072 1.001c-.576 0-1.052.153-1.052.153l-.04.012C5.42 1.62 4 3.448 4 5.001v2c0 1.553-.202 3.496-1.707 5h11.414C12.202 10.498 12 8.555 12 7.001v-2c0-1.6-1.466-3.44-3.076-3.862l-.036-.01-.035-.011A2.418 2.418 0 008.072 1m0-1c.35 0 .734.044 1.105.17C11.15.689 13 2.885 13 5.002v2c0 1.794.326 3.375 1.669 4.53l.1.085a.808.808 0 01.231.567c0 .452-.37.818-.826.818H1.826A.822.822 0 011 12.183c0-.22.089-.42.232-.567l.1-.086C2.673 10.376 3 8.795 3 7.001v-2C3 2.928 4.79.762 6.7.206c0 0 .61-.205 1.372-.205Z"/></g></g>'
1150
+ },
1151
+ bold: {
1152
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M2.5.5h6.722a3.772 3.772 0 010 7.5H2.5Zm0 7.5h7.615a3.77 3.77 0 010 7.5H2.5Z"/>'
1153
+ },
1154
+ bookmark: {
1155
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M4 1.358v14.435a.2.2 0 00.351.141L7.9 12.067a.134.134 0 01.2 0l3.549 3.868a.2.2 0 00.351-.141V1.358A1.345 1.345 0 0010.669 0H5.332A1.345 1.345 0 004 1.358Z"/><path fill="currentColor" d="M5.331 1C5.15 1 5 1.16 5 1.358v12.39l2.161-2.356a1.138 1.138 0 011.675-.002L11 13.748V1.358C11 1.16 10.851 1 10.669 1H5.33m0-1h5.338C11.404 0 12 .608 12 1.358v14.435c0 .187-.225.278-.351.14l-3.55-3.867a.134.134 0 00-.199 0l-3.549 3.868c-.126.137-.351.046-.351-.141V1.358C4 .608 4.596 0 5.331 0Z"/></g>'
1156
+ },
1157
+ "bookmark-active": {
1158
+ body: '<g fill="currentColor" stroke-miterlimit="10"><path d="M11 13.748 8.836 11.39a1.136 1.136 0 00-1.675.002L5 13.748V1.358C5 1.16 5.149 1 5.331 1h5.338c.182 0 .331.16.331.358v12.39Z"/><path d="M6 2v9.179l.426-.465a2.137 2.137 0 013.147 0l.427.465V2H6m-.669-2h5.338C11.404 0 12 .608 12 1.358v14.435c0 .187-.225.278-.351.14l-3.55-3.867a.134.134 0 00-.199 0l-3.549 3.868c-.126.137-.351.046-.351-.141V1.358C4 .608 4.596 0 5.331 0Z"/></g>'
1159
+ },
1160
+ building: {
1161
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M.5 15.501h15M10.5 2.5v-2h-5v2"/><path stroke-linecap="round" d="M8 15.001v-2m-3-8h1m-1 3h1m4-3h1m-1 3h1"/><path d="M4 2.001h8a2 2 0 012 2v12H2v-12a2 2 0 012-2Z" stroke="none"/><path d="M4 2.501h8a1.5 1.5 0 011.5 1.5v11.5h-11v-11.5a1.5 1.5 0 011.5-1.5Z"/></g>',
1162
+ height: 16.001
1163
+ },
1164
+ "bulleted-list": {
1165
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-miterlimit="10" d="M5.5 11.999h5M5.5 8h10m-10-4.001h7"/><g transform="translate(2 4.166) translate(-2 -1.667)"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1"/></g><g transform="translate(2 4.166) translate(-2 2.333)"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1"/></g><g transform="translate(2 4.166) translate(-2 6.333)"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1"/></g></g>'
1166
+ },
1167
+ calendar: {
1168
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-miterlimit="10" d="M4.5.501v2m7-2v2M1 5.5h14m-11.5 3h2m5 0h2m-9 4h2m5 0h2"/><g transform="translate(0 1)"><rect width="16" height="15" rx="2" stroke="none"/><rect width="15" height="14" x=".5" y=".5" rx="1.5"/></g></g>'
1169
+ },
1170
+ "camera-off": {
1171
+ body: '<path fill="currentColor" d="M14 14H4.118l1-1h8.883c.747 0 1-.252 1-1V5c0-.713-.231-.975-.884-1l.84-.84A1.8 1.8 0 0116 4.998v7A1.789 1.789 0 0114 14ZM.453 13.424a2.083 2.083 0 01-.451-1.426v-7a1.789 1.789 0 012-2h1l1-1h4l1 1h1.88l-1 1h-1.29l-1-1h-3.17l-1 1H2.005c-.747 0-1 .252-1 1v7a1.2 1.2 0 00.164.719l-.709.707Z"/><path fill="currentColor" d="m7.231 10.891 1.662-1.664a2.494 2.494 0 01-1.662 1.664ZM4.263 9.616a2.468 2.468 0 01-.262-1.113 2.5 2.5 0 013.615-2.236l-.775.775a1.488 1.488 0 00-.34-.041 1.5 1.5 0 00-1.5 1.5 1.457 1.457 0 00.039.34l-.774.773Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M1 15 15 1"/>'
1172
+ },
1173
+ "camera-on": {
1174
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M14 3H9L8 2H4L3 3H2a1.8 1.8 0 00-2 2v7a1.794 1.794 0 002 2h12a1.8 1.8 0 002-2V5a1.8 1.8 0 00-2-2Z"/><path fill="currentColor" d="m4.414 3-1 1H2c-.748 0-1 .253-1 1v7c0 .748.252 1 1 1h12c.748 0 1-.252 1-1V5c0-.747-.252-1-1-1H8.586l-1-1H4.414M4 2h4l1 1h5c1.296 0 2 .695 2 2v7c0 1.302-.702 2-2 2H2c-1.302 0-2-.699-2-2V5c0-1.297.7-2 2-2h1l1-1Z"/><g stroke="currentColor" transform="translate(4 6.001)"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2"/></g></g>'
1175
+ },
1176
+ catalog: {
1177
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10"><path d="M4 0h9a1 1 0 011 1v14a1 1 0 01-1 1H4a2 2 0 01-2-2V2a2 2 0 012-2Z" stroke="none"/><path d="M4 .5h9a.5.5 0 01.5.5v14a.5.5 0 01-.5.5H4A1.5 1.5 0 012.5 14V2A1.5 1.5 0 014 .5Z"/></g><path stroke-linecap="round" stroke-miterlimit="10" d="M5.5 8.5h5m-5 3h3"/><path d="M3 4.5h10"/></g>'
1178
+ },
1179
+ certificate: {
1180
+ body: '<g fill="none" stroke="currentColor"><path stroke-miterlimit="22.926" d="M8.501.999a4.5 4.5 0 11-4.5 4.5 4.5 4.5 0 014.5-4.5Z"/><path stroke-miterlimit="22.926" d="M8.5 4A1.5 1.5 0 117 5.5 1.5 1.5 0 018.5 4Z"/><path stroke-linecap="round" stroke-linejoin="round" d="m5 9.001-3 4 2.3.5.7 2.5 3.5-4 3.5 4 .693-2.5 2.3-.5-3-4"/></g>',
1181
+ width: 17,
1182
+ height: 17
1183
+ },
1184
+ chat: {
1185
+ body: '<path fill="none" stroke="currentColor" d="M6.995 12.004h-1.5a4.5 4.5 0 010-9h6a4.118 4.118 0 014.5 4.5 4.281 4.281 0 01-4.5 4.5l-1.5 3Z"/>',
1186
+ width: 17,
1187
+ height: 17
1188
+ },
1189
+ check: {
1190
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m1.497 8.5 4 4 9-9"/>'
1191
+ },
1192
+ "check-badge": {
1193
+ body: '<path fill="currentColor" d="M8.5 1.231 9.728.187a.78.78 0 011.264.43l.407 1.6a.8.8 0 00.807.614l1.581-.089a.822.822 0 01.783 1.124L14 5.412a.849.849 0 00.308.993l1.329.9a.849.849 0 010 1.39l-1.329.9a.849.849 0 00-.308.993l.57 1.546a.822.822 0 01-.781 1.125l-1.581-.089a.8.8 0 00-.807.614l-.407 1.6a.78.78 0 01-1.264.43L8.5 14.77a.764.764 0 00-1 0l-1.229 1.044a.78.78 0 01-1.264-.43l-.407-1.6a.8.8 0 00-.807-.614l-1.581.089a.822.822 0 01-.781-1.125L2 10.589a.849.849 0 00-.308-.993l-1.329-.9a.849.849 0 010-1.39l1.329-.9A.849.849 0 002 5.412l-.57-1.546a.822.822 0 01.781-1.125l1.581.089a.8.8 0 00.807-.614l.407-1.6A.78.78 0 016.27.186L7.5 1.231a.764.764 0 001 0Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M4.5 7.5 7 10l4.5-4.45"/>'
1194
+ },
1195
+ "check-circle": {
1196
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m3.5 8.5 3 3 6-6"/></g>'
1197
+ },
1198
+ checkbox: {
1199
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><rect width="16" height="16" rx="3" stroke="none"/><rect width="15" height="15" x=".5" y=".5" rx="2.5"/></g>'
1200
+ },
1201
+ "chevron-down": {
1202
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m1.5 5.5 6.5 6 6.5-6"/>'
1203
+ },
1204
+ "chevron-down-circle": {
1205
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m4.5 7.501 3.5 3 3.5-3"/></g>'
1206
+ },
1207
+ "chevron-left": {
1208
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M11.5 1.5 5.5 8l6 6.5"/>'
1209
+ },
1210
+ "chevron-left-circle": {
1211
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m9.499 4.5-3 3.5 3 3.5"/></g>'
1212
+ },
1213
+ "chevron-right": {
1214
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m5.5 14.5 6-6.5-6-6.5"/>'
1215
+ },
1216
+ "chevron-right-circle": {
1217
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M6.64 4.5 9.5 8.083l-3 3.417"/></g>'
1218
+ },
1219
+ "chevron-up": {
1220
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M14.5 11.5 8 5.5l-6.5 6"/>'
1221
+ },
1222
+ "chevron-up-circle": {
1223
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m4.5 9.499 3.5-3 3.5 3"/></g>'
1224
+ },
1225
+ classroom: {
1226
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" d="M1.5 7.5h13m-13 8h13"/><path stroke="currentColor" d="M3.001 7.001a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M3 3a2 2 0 11.586 1.414A2 2 0 013 3Z"/><path fill="currentColor" d="M5 2a.998.998 0 00-.708 1.706.997.997 0 001.415 0A.993.993 0 006 3.001a.996.996 0 00-1-1m0-1c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 015 5a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 015 1Z"/></g><path stroke="currentColor" d="M9.001 7.001a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M9 3a2 2 0 11.586 1.414A2 2 0 019 3Z"/><path fill="currentColor" d="M11 2a.998.998 0 00-.708 1.706.997.997 0 001.415 0A.993.993 0 0012 3.001a.996.996 0 00-1-1m0-1c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 0111 5a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0111 1Z"/></g><path stroke="currentColor" d="M6.001 15.001a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M6 11a2 2 0 11.586 1.414A2 2 0 016 11Z"/><path fill="currentColor" d="M8 10a.998.998 0 00-.708 1.706.997.997 0 001.415 0A.993.993 0 009 11.001a.996.996 0 00-1-1m0-1c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 018 13a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 018 9Z"/></g></g>'
1227
+ },
1228
+ "clear-field": {
1229
+ body: '<g stroke="currentColor" transform="translate(.5 .5)"><circle cx="8" cy="8" r="8" fill="currentColor"/><path fill="none" stroke-linecap="round" stroke-miterlimit="10" d="m5 10.999 6-6m-6 0 6 6"/></g>',
1230
+ width: 17,
1231
+ height: 17
1232
+ },
1233
+ "clear-style": {
1234
+ body: '<path fill="none" d="M3 3h7v10H3z"/><path fill="currentColor" d="M11.377 2.502H1.501a.5.5 0 010-1h10.876l-1 1Z"/><path fill="currentColor" d="M1.5 4a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5.5.5 0 01.5.5v3a.5.5 0 01-.5.5Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" d="M9.5 15.5h-3"/><path fill="currentColor" d="M7.999 16.002a.549.549 0 01-.5-.586v-4.793l1-1v5.793a.549.549 0 01-.5.586Zm-.5-9.623v-3.8a.506.506 0 111 0v2.8l-1 1Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" d="M1 15 15 1"/>',
1235
+ height: 16.002
1236
+ },
1237
+ close: {
1238
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="m.707 15.707 15-15m-15 0 15 15"/>',
1239
+ width: 16.414,
1240
+ height: 16.414
1241
+ },
1242
+ "close-circle": {
1243
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/><path stroke-linecap="round" d="m4.5 11.499 7-7m-7 0 7 7"/></g>'
1244
+ },
1245
+ "close-loader": {
1246
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="m4 12 8-8M4 4l8 8"/>'
1247
+ },
1248
+ coffee: {
1249
+ body: '<g fill="none" stroke="currentColor"><g stroke-linejoin="round"><path d="M2.186 4.5h9.628a.686.686 0 01.686.686V8A5.5 5.5 0 017 13.5 5.5 5.5 0 011.5 8V5.186a.686.686 0 01.686-.686Z" stroke="none"/><path d="M2.332 5h9.336a.332.332 0 01.332.332V8a5 5 0 01-5 5 5 5 0 01-5-5V5.332A.332.332 0 012.332 5Z"/></g><path d="M11.5 10.5v-6h1a3 3 0 013 3 3 3 0 01-3 3h-1Z" stroke="none"/><path d="M12 10V5h.5A2.5 2.5 0 0115 7.5a2.5 2.5 0 01-2.5 2.5H12Z"/><path stroke-linecap="round" stroke-linejoin="round" d="M1 14h15"/><path stroke-linecap="round" d="M3 3.5v-2m4 2v-2m4 2v-2"/></g>',
1250
+ width: 17,
1251
+ height: 17
1252
+ },
1253
+ color: {
1254
+ body: '<defs><radialGradient id="svgIDa" cx=".5" cy=".5" r=".5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="currentColor"/><stop offset=".148" stop-color="currentColor"/><stop offset=".32" stop-color="currentColor"/><stop offset=".493" stop-color="currentColor"/><stop offset=".66" stop-color="currentColor"/><stop offset=".833" stop-color="currentColor"/><stop offset="1" stop-color="currentColor"/></radialGradient></defs><g fill="url(#svgIDa)" stroke="currentColor"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g>'
1255
+ },
1256
+ "contact-us": {
1257
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M13.501 8.501V5.962a5.5 5.5 0 00-11 0v1.2"/><path stroke-linecap="round" stroke-linejoin="round" d="M11.499 5.501v2.471a5.592 5.592 0 01-1 3.529m-6-9.5c0 1.733 6.184 3.375 8.5 3.5M6.5 4a5.4 5.4 0 00-2 3.556v.889a4.306 4.306 0 002 3.556m2.999 2.498h.375c1.995.011 3.618-2.156 3.625-4.837v-.164M14.5 6.5h-1v4h1a.95.95 0 001-.889V7.388a.951.951 0 00-1-.888Zm-13-.002h1v4h-1a.949.949 0 01-1-.887V7.388a.949.949 0 011-.89h0Z"/><g transform="translate(7 13)"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1"/></g></g>'
1258
+ },
1259
+ copy: {
1260
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><g transform="translate(4 .001)"><rect width="10" height="14" rx="2" stroke="none"/><rect width="9" height="13" x=".5" y=".5" rx="1.5"/></g><path stroke-linecap="round" d="M9.5 15.5H4c-1.1 0-1.5-.4-1.5-1.5V5.5"/></g>'
1261
+ },
1262
+ courses: {
1263
+ body: '<g transform="translate(0 1.775)"><g fill="none" stroke-miterlimit="10"><path d="M15.728 4.241 8.238.284a.51.51 0 00-.476 0L.272 4.241a.509.509 0 000 .9L3 6.634v3.592a1.8 1.8 0 002 2h6a1.8 1.8 0 002-2V6.634l2.728-1.493a.509.509 0 000-.9Z"/><path fill="currentColor" d="m8 1.289-6.454 3.41L4 6.041v4.184c0 .748.252 1 1 1h6c.748 0 1-.252 1-1V6.042l2.454-1.343L8 1.289M8 .225c.081 0 .163.02.238.058l7.49 3.958a.509.509 0 010 .9L13 6.634v3.592c0 1.3-.7 2-2 2H5c-1.295 0-2-.695-2-2V6.634L.271 5.141a.509.509 0 010-.9L7.761.283A.509.509 0 018 .225Z"/></g><g fill="none" stroke-miterlimit="10"><path d="M7.762 9.164.272 5.177a.514.514 0 010-.907L7.762.283a.506.506 0 01.476 0l7.49 3.987a.514.514 0 010 .907l-7.49 3.987a.506.506 0 01-.476 0Z"/><path fill="currentColor" d="m8 8.16 6.452-3.433L8 1.292 1.548 4.727 8 8.16m0 1.066a.506.506 0 01-.238-.06L.272 5.18a.514.514 0 010-.907L7.761.286a.506.506 0 01.476 0l7.49 3.987a.514.514 0 010 .907l-7.49 3.987a.506.506 0 01-.238.06Z"/></g><rect width="1" height="5" fill="currentColor" rx=".5" transform="translate(15 4.226)"/></g>'
1264
+ },
1265
+ dashboard: {
1266
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><g transform="translate(1)"><rect width="6" height="6" rx="1" stroke="none"/><rect width="5" height="5" x=".5" y=".5" rx=".5"/></g><g transform="translate(9 10)"><rect width="6" height="6" rx="1" stroke="none"/><rect width="5" height="5" x=".5" y=".5" rx=".5"/></g><g transform="translate(9)"><rect width="6" height="9" rx="1" stroke="none"/><rect width="5" height="8" x=".5" y=".5" rx=".5"/></g><g transform="translate(1 7)"><rect width="6" height="9" rx="1" stroke="none"/><rect width="5" height="8" x=".5" y=".5" rx=".5"/></g></g>'
1267
+ },
1268
+ download: {
1269
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="m5 8.502 3 3 3-3M8 11.5v-10"/><path d="M15.5 11.499v3H.5v-3"/></g>'
1270
+ },
1271
+ drag: {
1272
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" d="M11 .5v15M8 .5v15M5 .5v15"/>'
1273
+ },
1274
+ duplicate: {
1275
+ body: '<g stroke-miterlimit="10"><g fill="rgba(0,0,0,0)"><path d="M8.997 15.502H1.998A1.501 1.501 0 01.501 14V7c0-.826.672-1.5 1.497-1.5H5.5V2.002C5.5 1.174 6.173.5 7.001.5h7a1.5 1.5 0 011.496 1.502v7a1.5 1.5 0 01-1.496 1.502H10.5V14c0 .828-.674 1.502-1.502 1.502Z"/><path fill="currentColor" d="M8.997 15.002C9.55 15.002 10 14.553 10 14v-3.996h4.002a1 1 0 00.996-1.002v-7A1 1 0 0014.001 1h-7c-.552 0-1 .45-1 1.002V6H1.997A1 1 0 001 7v7a1 1 0 00.997 1.002h7m0 1h-7C.897 16.002 0 15.106 0 14V7a2 2 0 011.997-2H5V2.002C5 .897 5.896 0 7.001 0h7c1.106 0 1.996.897 1.996 2.002v7c0 1.106-.89 2.002-1.996 2.002H11V14a2.002 2.002 0 01-2.002 2.002Z"/></g><g fill="rgba(0,0,0,0)" stroke="currentColor" transform="translate(5 .002)"><rect width="11" height="11" rx="2" stroke="none"/><rect width="10" height="10" x=".5" y=".5" fill="none" rx="1.5"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" d="M8.5 5.502h4m-2-2v4"/></g>',
1276
+ height: 16.002
1277
+ },
1278
+ edit: {
1279
+ body: '<g fill="none" stroke-miterlimit="10"><path stroke="currentColor" d="m10 3.011 3 3m-11 4 4 4"/><path d="M13.856.726 15.27 2.14a1.719 1.719 0 01.132 2.7l-9.45 9.45a1.174 1.174 0 01-.683.334l-4.206 1.193a.793.793 0 01-.86-.861l1.215-4.274a1.173 1.173 0 01.336-.68L11.16.596a1.716 1.716 0 012.7.132Z"/><path fill="currentColor" d="M12.406 1.001c-.198 0-.403.163-.54.3l-9.412 9.413a.186.186 0 00-.047.105l-.01.068-1.085 3.817 3.751-1.063.07-.01a.187.187 0 00.106-.046l.005-.005 9.45-9.45c.315-.315.523-.629-.131-1.283l-1.414-1.414c-.28-.279-.543-.432-.743-.432m0-1c.477 0 .966.242 1.45.725l1.414 1.415c.918.919.962 1.866.131 2.697l-9.45 9.45a1.18 1.18 0 01-.683.335l-4.206 1.193c-.472.064-.926-.391-.86-.86l1.215-4.275c.037-.265.155-.501.336-.68L11.16.594c.396-.396.816-.593 1.247-.593Z"/></g>',
1280
+ height: 16.011
1281
+ },
1282
+ elearning: {
1283
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" transform="translate(1.334 1.334) translate(-1.333 -1.334)"><rect width="16" height="11" rx="2" stroke="none"/><rect width="15" height="10" x=".5" y=".5" rx="1.5"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M1.501 14.5h13"/><g fill="none" stroke="currentColor" transform="translate(1.334 1.334) translate(1.667 11.666)"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1"/></g><path fill="currentColor" d="M10.211 4.606a1 1 0 010 1.789L7.447 7.776A1 1 0 016 6.882V4.118a1 1 0 011.447-.894Z"/>',
1284
+ height: 16.002
1285
+ },
1286
+ email: {
1287
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10" transform="rotate(90 7 9)"><rect width="12" height="16" rx="2" stroke="none"/><rect width="11" height="15" x=".5" y=".5" rx="1.5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m1 3.001 7 4.5 7-4.5"/></g>'
1288
+ },
1289
+ error: {
1290
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M7.999 3.5v5m0 2.999v1"/><g stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g></g>'
1291
+ },
1292
+ "error-2": {
1293
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8 1.5v8m0 3v2"/>'
1294
+ },
1295
+ exercise: {
1296
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M5 15.754a.632.632 0 01-1 0 11.769 11.769 0 01-2-3.713V1.378A1.4 1.4 0 013.432 0h2.141a1.4 1.4 0 011.43 1.378v10.664A11.769 11.769 0 015 15.754Z"/><path fill="currentColor" d="M4.5 14.774c.612-.846 1.396-2.35 1.5-2.786V1.378C6 1.169 5.807 1 5.57 1H3.43c-.237 0-.43.17-.43.378v10.61c.104.436.888 1.94 1.5 2.786M4.5 16a.667.667 0 01-.5-.246c-.736-.838-2-3.182-2-3.712V1.378C2 .617 2.64 0 3.43 0h2.14C6.36 0 7 .617 7 1.378v10.664c0 .53-1.264 2.874-2 3.712a.668.668 0 01-.5.246Z"/></g><path stroke="currentColor" stroke-linecap="round" d="M3 4.014h3"/><path d="M9 0h5v16H9Z"/><path fill="currentColor" d="M10 1v14h3V1h-3M9 0h5v16H9V0Z"/><path stroke="currentColor" stroke-linecap="round" d="M9.5 3.5h2m-2 3h2m-2 3h2m-2 3h2"/></g>'
1297
+ },
1298
+ "external-link": {
1299
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M14.5 10.208v4a2.1 2.1 0 01-2 2h-10a2.1 2.1 0 01-2-2v-10a2.1 2.1 0 012-2h4m5-1.501h4v4m-8 4 8-8"/>',
1300
+ width: 16.207,
1301
+ height: 16.708
1302
+ },
1303
+ extract: {
1304
+ body: '<g transform="translate(2.666 3.332)"><path fill="none" stroke="currentColor" stroke-linecap="round" d="M1.834 3.166h7m-7 3h4"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M11.833 2.166v-4h-4m.002 13.001h4v-4m-9-9.001h-4v4m-.001 5.001v4h4"/><circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(10.334 9.666)"/></g>'
1305
+ },
1306
+ "eye-off": {
1307
+ body: '<path fill="currentColor" d="M8.002 11.002a2.991 2.991 0 01-.779-.1l.9-.9a2 2 0 001.872-1.871l.9-.9a3 3 0 01-2.9 3.779Zm-2.9-2.225a2.923 2.923 0 01-.1-.775 3 3 0 013.776-2.9l-.9.9a2 2 0 00-1.869 1.869l-.9.9Z"/><path fill="currentColor" d="M8.002 13.002a10.545 10.545 0 01-2.576-.307l.843-.842a10.108 10.108 0 001.733.145 8.81 8.81 0 003.507-.668 6.782 6.782 0 002.8-2.232 5.814 5.814 0 00.642-1.088 6.942 6.942 0 00-2.223-2.619l.717-.717a7.954 7.954 0 01.864.742 7.439 7.439 0 011.665 2.445.378.378 0 01.006.266 6.326 6.326 0 01-.859 1.564 7.846 7.846 0 01-3.215 2.557 9.822 9.822 0 01-3.904.754ZM2.53 11.35a7.51 7.51 0 01-.887-.766A6.879 6.879 0 01.025 8.129a.377.377 0 010-.266 6.847 6.847 0 01.9-1.555 8.052 8.052 0 013.23-2.551 9.485 9.485 0 013.846-.754h.011a10.309 10.309 0 012.56.311l-.838.838a9.646 9.646 0 00-1.722-.15h-.011a8.581 8.581 0 00-3.448.668 7.056 7.056 0 00-2.827 2.238 1.662 1.662 0 00.631 2.971 6.651 6.651 0 00.9.754l-.717.717Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="m1.001 15 14-14"/>',
1308
+ width: 16.002
1309
+ },
1310
+ "eye-on": {
1311
+ body: '<g fill="none" stroke="currentColor" transform="translate(.502 2.001)"><path d="M15.976 5.863a7.364 7.364 0 00-1.669-2.445 8.014 8.014 0 00-2.457-1.665A9.537 9.537 0 007.996 1a9.534 9.534 0 00-3.85.753 8.021 8.021 0 00-3.23 2.553 6.641 6.641 0 00-.9 1.557.4.4 0 000 .264A7.005 7.005 0 001.642 8.58a7.817 7.817 0 002.454 1.667 9.738 9.738 0 003.9.753 9.738 9.738 0 003.9-.753 7.772 7.772 0 003.213-2.558 6.334 6.334 0 00.861-1.562.4.4 0 00.006-.264Z"/><circle cx="3" cy="3" r="3" transform="translate(5 3)"/></g>',
1312
+ width: 17.003
1313
+ },
1314
+ fail: {
1315
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" transform="translate(.5 1.5)"><rect width="3" height="8" rx="1" transform="translate(12)"/><path stroke-linecap="round" d="M1.002 6.659h.749l-.059.4h-.69a.978.978 0 100 1.956h1.5l3.5-.013s-.918 3.612 1.3 4.8c1.424.686 1.7-.6 1.7-.6v-2.699l1-.5s1.992-1.2 2-2.5v-6a1.314 1.314 0 00-1.5-1.5h-8a1.1 1.1 0 00-1.12.978.993.993 0 001 .978h.068l-.059.4h-.7a.978.978 0 100 1.955h.408l-.059.4H1.002a.978.978 0 100 1.956Z"/></g>',
1316
+ height: 16.009
1317
+ },
1318
+ "fast-back": {
1319
+ body: '<g fill="none"><path d="M10 11.377v-.359l3.5 1.784a1.7 1.7 0 002.5-1.425V4.625a1.7 1.7 0 00-2.5-1.423L10 4.982v-.357a1.7 1.7 0 00-2.5-1.423L.9 6.575a1.588 1.588 0 000 2.857l6.6 3.37a1.775 1.775 0 00.8.2 1.665 1.665 0 001.7-1.625Z"/><path fill="currentColor" d="M8.299 12.002c.337 0 .701-.239.701-.625V9.382l4.95 2.535a.767.767 0 00.348.085c.337 0 .702-.24.702-.625V4.625c0-.385-.365-.623-.702-.623a.756.756 0 00-.348.086L9 6.616V4.625c0-.385-.364-.623-.7-.623a.763.763 0 00-.35.086L1.353 7.46A.6.6 0 001 8.002c0 .108.035.375.351.536l6.597 3.377a.771.771 0 00.35.087m0 1c-.266 0-.541-.063-.803-.195l-6.6-3.38a1.588 1.588 0 010-2.857l6.6-3.373C8.632 2.617 10 3.4 10 4.625v.357l3.495-1.785C14.628 2.617 16 3.4 16 4.625v6.752c0 1.227-1.372 2.01-2.505 1.43L10 11.017v.36c0 .943-.81 1.625-1.701 1.625Z"/><path d="M6.9 6.57a1.589 1.589 0 000 2.861l6.6 3.374a1.7 1.7 0 002.5-1.43v-6.75a1.7 1.7 0 00-2.5-1.43Z"/><path fill="currentColor" d="M7 8c0 .108.034.377.353.54l6.6 3.375a.756.756 0 00.743-.027.597.597 0 00.304-.513v-6.75a.597.597 0 00-.304-.513.756.756 0 00-.743-.027l-6.6 3.375A.598.598 0 007 8M6 8c0-.562.3-1.125.897-1.43l6.6-3.375C14.63 2.615 16 3.399 16 4.625v6.75c0 1.226-1.37 2.01-2.503 1.43l-6.6-3.375A1.596 1.596 0 016 8Z"/></g>'
1320
+ },
1321
+ "fast-forward": {
1322
+ body: '<g fill="none"><path d="M5.999 11.377v-.359l-3.5 1.789a1.7 1.7 0 01-2.5-1.43V4.625a1.7 1.7 0 012.5-1.428l3.5 1.785v-.357a1.7 1.7 0 012.5-1.428l6.6 3.373a1.588 1.588 0 010 2.857l-6.6 3.379a1.775 1.775 0 01-.8.2 1.665 1.665 0 01-1.7-1.629Z"/><path fill="currentColor" d="M7.701 12.002a.76.76 0 00.348-.086l6.601-3.379a.595.595 0 00.35-.535.6.6 0 00-.35-.541l-6.6-3.373a.771.771 0 00-.35-.086c-.337 0-.7.238-.7.623v1.99L2.049 4.088a.752.752 0 00-.347-.086c-.338 0-.702.238-.702.623v6.752c0 .168.065.312.193.43a.752.752 0 00.855.11L7 9.382v1.994c0 .387.364.625.701.625m0 1C6.81 13.002 6 12.32 6 11.377v-.36l-3.495 1.79c-1.133.582-2.506-.204-2.505-1.43V4.625c.001-1.223 1.373-2.008 2.505-1.428L6 4.982v-.357c.001-1.223 1.367-2.008 2.505-1.428l6.6 3.373a1.588 1.588 0 010 2.858l-6.6 3.379a1.775 1.775 0 01-.804.195Z"/><path d="M9.101 6.57a1.589 1.589 0 010 2.86l-6.6 3.375a1.7 1.7 0 01-2.5-1.43v-6.75a1.7 1.7 0 012.5-1.43Z"/><path fill="currentColor" d="M9.001 8a.598.598 0 00-.353-.54l-6.6-3.375a.756.756 0 00-.743.027.597.597 0 00-.304.513v6.75c0 .284.19.443.304.513a.754.754 0 00.743.027l6.6-3.375A.598.598 0 009.001 8m1 0c0 .562-.3 1.125-.897 1.43l-6.6 3.375C1.37 13.385 0 12.601 0 11.375v-6.75c0-1.226 1.37-2.01 2.503-1.43l6.6 3.375c.598.305.897.868.897 1.43Z"/></g>'
1323
+ },
1324
+ file: {
1325
+ body: '<g stroke-linejoin="round"><g fill="none"><path d="M14 4v10.222A1.621 1.621 0 0112.285 16H3.713a1.621 1.621 0 01-1.714-1.778V1.778A1.621 1.621 0 013.714 0h6.287Z"/><path fill="currentColor" d="M3.714 1c-.353 0-.715.092-.715.778v12.444c0 .686.362.778.715.778h8.572c.353 0 .714-.092.714-.778V4.414L9.586 1H3.714m0-1H10l4 4v10.222C14 15.327 13.335 16 12.286 16H3.714c-1.05 0-1.715-.673-1.715-1.778V1.778C2 .673 2.664 0 3.714 0Z"/></g><path fill="currentColor" stroke="currentColor" d="M13.499 4.502h-4v-4Z"/></g>'
1326
+ },
1327
+ "file-add": {
1328
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" d="M5.5 9.001h5"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M8 6.5v5"/><g stroke-linejoin="round"><g fill="none"><path d="M14 4v10.222A1.621 1.621 0 0112.285 16H3.713a1.621 1.621 0 01-1.714-1.778V1.778A1.621 1.621 0 013.714 0h6.287Z"/><path fill="currentColor" d="M3.714 1c-.353 0-.715.092-.715.778v12.444c0 .686.362.778.715.778h8.572c.353 0 .714-.092.714-.778V4.414L9.586 1H3.714m0-1H10l4 4v10.222C14 15.327 13.335 16 12.286 16H3.714c-1.05 0-1.715-.673-1.715-1.778V1.778C1.999.673 2.664 0 3.714 0Z"/></g><path fill="currentColor" stroke="currentColor" d="M13.499 4.502h-4v-4Z"/></g>'
1329
+ },
1330
+ "file-duplicate": {
1331
+ body: '<g stroke-linejoin="round"><path fill="rgba(0,0,0,0)" stroke="currentColor" d="M2.284 15.5a.731.731 0 01-.786-.832V5.336a.732.732 0 01.786-.838h4.219V1.332A.727.727 0 017.288.5h4.5L14.5 3.205v7.461a.731.731 0 01-.792.832H9.495v3.17a.727.727 0 01-.785.832Z"/><g fill="none"><path d="M10 7v7.667A1.216 1.216 0 018.714 16H2.285a1.216 1.216 0 01-1.286-1.333V5.333A1.216 1.216 0 012.285 4H7Z"/><path fill="currentColor" d="M2.285 5C2.12 5 2 5 2 5.333v9.334c0 .333.12.333.286.333h6.43C8.88 15 9 15 9 14.667V7.414L6.586 5h-4.3m0-1H7l3 3v7.667C10 15.495 9.5 16 8.714 16H2.285C1.498 16 1 15.495 1 14.667V5.333C1 4.505 1.5 4 2.285 4Z"/></g><path fill="currentColor" stroke="currentColor" d="M9.499 7.501h-3v-3Zm5-4h-3v-3Z"/></g>'
1332
+ },
1333
+ "file-remove": {
1334
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" d="M5.5 9h5"/><g stroke-linejoin="round"><g fill="none"><path d="M14 4v10.222A1.621 1.621 0 0112.285 16H3.713a1.621 1.621 0 01-1.714-1.778V1.778A1.621 1.621 0 013.714 0h6.287Z"/><path fill="currentColor" d="M3.714 1c-.353 0-.715.092-.715.778v12.444c0 .686.362.778.715.778h8.572c.353 0 .714-.092.714-.778V4.414L9.586 1H3.714m0-1H10l4 4v10.222C14 15.327 13.335 16 12.286 16H3.714c-1.05 0-1.715-.673-1.715-1.778V1.778C2 .673 2.664 0 3.714 0Z"/></g><path fill="currentColor" stroke="currentColor" d="M13.499 4.502h-4v-4Z"/></g>'
1335
+ },
1336
+ "file-required": {
1337
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" d="M12.501.5v5m1.999-4-4 3m0-3 4 3"/><g stroke-linejoin="round"><g fill="none"><path d="M10 7v7.667A1.216 1.216 0 018.714 16H2.285a1.216 1.216 0 01-1.286-1.333V5.333A1.216 1.216 0 012.285 4H7Z"/><path fill="currentColor" d="M2.285 5C2.12 5 2 5 2 5.333v9.334c0 .333.12.333.286.333h6.43C8.88 15 9 15 9 14.667V7.414L6.586 5h-4.3m0-1H7l3 3v7.667C10 15.495 9.5 16 8.714 16H2.285C1.498 16 1 15.495 1 14.667V5.333C1 4.505 1.5 4 2.285 4Z"/></g><path fill="currentColor" stroke="currentColor" d="M9.499 7.501h-3v-3Z"/></g>'
1338
+ },
1339
+ filter: {
1340
+ body: '<g fill="none" stroke-linejoin="round"><path d="M2.373.003h11.252a1.335 1.335 0 011.173 2.029l-3.64 5.3a1.04 1.04 0 00-.159.552v7.281a.87.87 0 01-1.419.652l-3.95-2.268a1.67 1.67 0 01-.631-1.3V7.978a1.652 1.652 0 00-.157-.707L1.199 2.029A1.335 1.335 0 012.373.003Z"/><path fill="currentColor" d="m13.625 1-11.252.003a.366.366 0 00-.333.186.293.293 0 000 .297l3.623 5.215a.99.99 0 01.027.04c.3.482.309 1.161.309 1.237v4.267c0 .181.076.354.21.482L10 14.902v-7.02a2.04 2.04 0 01.335-1.117l3.623-5.279c.07-.122.04-.23.001-.3A.367.367 0 0013.625 1m0-1c1.07 0 1.729 1.14 1.173 2.029l-3.64 5.302a1.04 1.04 0 00-.159.551v7.281c0 .714-.853 1.105-1.419.652l-3.95-2.268A1.67 1.67 0 015 12.245V7.978c0-.194-.054-.541-.157-.707L1.199 2.03C.646 1.139 1.304.003 2.373.003L13.625 0Z"/></g>',
1341
+ height: 16.009
1342
+ },
1343
+ "filter-2": {
1344
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-miterlimit="10" d="M.5 11.5h9m4 0h2"/><g transform="translate(9 9)"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2"/></g><path stroke-linecap="round" stroke-miterlimit="10" d="M.5 4.5h2m4 0h9"/><g transform="translate(2 2)"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2"/></g></g>'
1345
+ },
1346
+ "filter-active": {
1347
+ body: '<g fill="currentColor" stroke-linejoin="round"><path d="M10.128 15.509a.367.367 0 01-.234-.085l-.03-.024-.034-.019-3.913-2.247a1.165 1.165 0 01-.417-.889V7.978c0-.207-.049-.676-.233-.972l-.007-.01-.007-.01-3.634-5.23a.788.788 0 01-.015-.81.866.866 0 01.77-.443L13.626.5c.328 0 .616.166.77.444a.787.787 0 01-.016.812l-3.633 5.292-.006.008-.006.01a1.54 1.54 0 00-.235.816v7.281c0 .238-.217.346-.372.346Z"/><path d="m13.626 1-11.252.003a.366.366 0 00-.333.186.293.293 0 000 .297l3.623 5.215a.99.99 0 01.027.04c.3.482.309 1.161.309 1.237v4.267c0 .181.076.354.21.482L10 14.902v-7.02a2.04 2.04 0 01.335-1.117l3.623-5.279c.07-.122.04-.23.001-.3A.367.367 0 0013.626 1m0-1c1.07 0 1.729 1.14 1.173 2.029l-3.64 5.302a1.04 1.04 0 00-.159.551v7.281c0 .714-.853 1.105-1.419.652l-3.95-2.268A1.67 1.67 0 015 12.245V7.978c0-.194-.054-.541-.157-.707L1.2 2.03C.647 1.139 1.305.003 2.374.003L13.626 0Z"/></g>',
1348
+ height: 16.009
1349
+ },
1350
+ flag: {
1351
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M10.412 9.5c1.962.461 3.088 1.5 3.088 2.861 0 1.76-2.636 3.139-6 3.139s-6-1.379-6-3.139c0-1.358 1.126-2.4 3.088-2.861"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M7.5 12V.5h7l-3 2.5 3 2.5h-7"/>'
1352
+ },
1353
+ folder: {
1354
+ body: '<g fill="none"><path d="M2 14a2 2 0 01-2-2V2.6A1.638 1.638 0 011.43 1h5.693l1.436 2H14a2 2 0 012 2v7a2 2 0 01-2 2Z"/><path fill="currentColor" d="M14 13c.552 0 1-.45 1-1.001v-7c0-.551-.448-1-1-1H8.047L6.609 2.001H1.436c-.122.01-.434.302-.434.603v2.365L1 5v7a1 1 0 001 1h12m0 1H2a2 2 0 01-2-2V2.604c0-.801.712-1.598 1.43-1.602l5-.002.693.002 1.436 1.997H14a2 2 0 012 2v7a2 2 0 01-2 2Z"/><path stroke="currentColor" stroke-linejoin="round" d="m.997 13.001 4-5.5h10"/></g>'
1355
+ },
1356
+ "full-width": {
1357
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M11.5 2.499v11"/><g transform="translate(0 1.999)"><rect width="16" height="12" rx="2" stroke="none"/><rect width="15" height="11" x=".5" y=".5" rx="1.5"/></g></g>'
1358
+ },
1359
+ "go-to-back": {
1360
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M4.667 2.5h-2.5a1.568 1.568 0 00-1.25.417A1.569 1.569 0 00.5 4.167v6.667a1.571 1.571 0 00.417 1.25 1.568 1.568 0 001.25.417h11.667a1.568 1.568 0 001.25-.417 1.568 1.568 0 00.416-1.251V3.999c0-.531.086-.864-.261-1.213S14.529 2.5 14 2.5h-2.667"/><g stroke-miterlimit="10"><path d="M5.477 13.001h5.043l.431 1.062a.7.7 0 01-.679.938H5.729a.7.7 0 01-.68-.936Z"/><path fill="currentColor" d="M5.477 13.001h5.043l.431 1.062c.184.452-.168.938-.679.938H5.73c-.51 0-.861-.484-.68-.936l.428-1.064Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m6 7.499 2 2 2-2m-2 1.5v-6"/></g>',
1361
+ width: 16.006
1362
+ },
1363
+ grid: {
1364
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><rect width="7" height="7" rx="1" stroke="none"/><rect width="6" height="6" x=".5" y=".5" rx=".5"/><g transform="translate(0 9)"><rect width="7" height="7" rx="1" stroke="none"/><rect width="6" height="6" x=".5" y=".5" rx=".5"/></g><g transform="translate(9)"><rect width="7" height="7" rx="1" stroke="none"/><rect width="6" height="6" x=".5" y=".5" rx=".5"/></g><g transform="translate(9 9)"><rect width="7" height="7" rx="1" stroke="none"/><rect width="6" height="6" x=".5" y=".5" rx=".5"/></g></g>'
1365
+ },
1366
+ group: {
1367
+ body: '<g fill="none" stroke="currentColor"><g transform="translate(0 2)"><rect width="8" height="8" rx="4" stroke="none"/><rect width="7" height="7" x=".5" y=".5" rx="3.5"/></g><path stroke-linejoin="round" d="M.5 14.001a3.5 3.5 0 013.5-3.5 3.5 3.5 0 013.5 3.5m3 0a2.5 2.5 0 012.5-2.5 2.5 2.5 0 012.5 2.5"/><g transform="translate(10 5)"><rect width="6" height="6" rx="3" stroke="none"/><rect width="5" height="5" x=".5" y=".5" rx="2.5"/></g></g>'
1368
+ },
1369
+ "group-add": {
1370
+ body: '<g fill="none" stroke="currentColor"><g transform="translate(7 9)"><rect width="5" height="5" rx="2.5" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx="2"/></g><g transform="translate(0 7)"><rect width="6" height="6" rx="3" stroke="none"/><rect width="5" height="5" x=".5" y=".5" rx="2.5"/></g><path stroke-linejoin="round" d="M7.5 16.001a2 2 0 012-2 2 2 0 012 2m-11 0a2.5 2.5 0 012.5-2.5 2.5 2.5 0 012.5 2.5"/><path stroke-linecap="round" stroke-miterlimit="10" d="M9.5 3.5h6m-3-3v6"/></g>',
1371
+ height: 16.001
1372
+ },
1373
+ heart: {
1374
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M11.534 1a4.431 4.431 0 00-3.158 1.312L8 2.689l-.376-.377A4.431 4.431 0 004.466 1a4.431 4.431 0 00-3.158 1.312A4.458 4.458 0 000 5.479a4.457 4.457 0 001.308 3.167l6.083 6.1a.858.858 0 00.609.253.861.861 0 00.61-.253l6.082-6.1A4.458 4.458 0 0016 5.479a4.457 4.457 0 00-1.308-3.167A4.431 4.431 0 0011.534 1Z"/><path fill="currentColor" d="M4.466 2c-.925 0-1.796.362-2.45 1.018A3.463 3.463 0 001 5.479c0 .93.36 1.804 1.016 2.461L8 13.942l5.984-6.001A3.463 3.463 0 0015 5.479c0-.93-.36-1.804-1.016-2.461A3.437 3.437 0 0011.534 2a3.44 3.44 0 00-2.45 1.018L8 4.105 6.916 3.018A3.436 3.436 0 004.466 2m0-1a4.43 4.43 0 013.158 1.312L8 2.689l.376-.377A4.431 4.431 0 0111.534 1a4.43 4.43 0 013.158 1.312A4.457 4.457 0 0116 5.479a4.458 4.458 0 01-1.308 3.168l-6.082 6.1a.861.861 0 01-1.22 0l-6.082-6.1A4.457 4.457 0 010 5.479c0-1.196.465-2.321 1.308-3.167A4.43 4.43 0 014.466 1Z"/></g>'
1375
+ },
1376
+ "heart-active": {
1377
+ body: '<g fill="currentColor" stroke-miterlimit="10"><path d="M8 13.942 2.016 7.94A3.463 3.463 0 011 5.479c0-.93.36-1.804 1.016-2.461A3.437 3.437 0 014.466 2a3.44 3.44 0 012.45 1.018l.376.377.708.71.708-.71.376-.377A3.437 3.437 0 0111.534 2a3.44 3.44 0 012.45 1.018A3.463 3.463 0 0115 5.479c0 .93-.36 1.804-1.016 2.462L8 13.94Z"/><path d="M4.466 3c-.658 0-1.276.257-1.742.724A2.47 2.47 0 002 5.479c0 .664.257 1.287.724 1.755L8 12.525l5.276-5.29A2.47 2.47 0 0014 5.479a2.47 2.47 0 00-.724-1.755A2.444 2.444 0 0011.534 3c-.658 0-1.276.257-1.742.724L8 5.52 6.207 3.724A2.443 2.443 0 004.466 3m0-2a4.43 4.43 0 013.158 1.312L8 2.689l.376-.377A4.431 4.431 0 0111.534 1a4.43 4.43 0 013.158 1.312A4.457 4.457 0 0116 5.479a4.458 4.458 0 01-1.308 3.168l-6.082 6.1a.86.86 0 01-1.22 0l-6.082-6.1A4.457 4.457 0 010 5.479c0-1.196.465-2.321 1.308-3.167A4.43 4.43 0 014.466 1Z"/></g>'
1378
+ },
1379
+ highlighter: {
1380
+ body: '<g stroke="currentColor" stroke-linejoin="round"><path fill="none" d="m3.5 8.214 4.286 4.287L15.5 4.787 11.211.501Z"/><path fill="none" stroke-linecap="round" d="m4 9.502 2.5 2.5-1.5 1.5H3.5l-1-1v-1.5Z"/><path fill="currentColor" d="m2.5 13.001-1 .667 1 .333 1-.667Z"/></g>'
1381
+ },
1382
+ home: {
1383
+ body: '<g fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M6.5 14.5H5c-.853-.002-1.499-.729-1.5-1.691v-5.31H.957a.926.926 0 01-.3-.04C.573 7.43.542 7.396.522 7.367A.148.148 0 01.5 7.291c0-.042.008-.092.062-.18.047-.071.11-.142.2-.219l6.42-5.095.006-.006.007-.006c.216-.184.502-.285.805-.285.304 0 .59.101.804.286l.008.006.007.005 6.42 5.095c.089.078.152.148.199.22a.326.326 0 01.062.18.15.15 0 01-.02.073l-.002.002-.001.002a.2.2 0 01-.07.062c-.066.035-.158.067-.366.068h-2.54V13c-.002.896-.605 1.499-1.502 1.5H9.5v-3.998h-3V14.5Z"/><path fill="currentColor" d="M6 14v-4h4v4h.998c.627-.002 1.002-.376 1.002-1V7h2.57L8.48 2.165A.734.734 0 008 2a.737.737 0 00-.48.166l-.028.022L1.432 7H4v5.81c0 .689.422 1.19 1 1.19h1m1 1H5c-1.138-.001-1.998-.943-2-2.19V8H.957a1.42 1.42 0 01-.461-.066.736.736 0 01-.39-.288A.644.644 0 010 7.287a.81.81 0 01.14-.443 1.54 1.54 0 01.303-.337L6.87 1.405A1.737 1.737 0 018 1c.422 0 .823.144 1.129.406l6.428 5.101c.132.114.227.22.302.337.094.15.139.29.14.443a.644.644 0 01-.106.358.7.7 0 01-.25.226c-.167.089-.346.127-.6.128H13v5c-.001 1.176-.824 1.999-2 2H9v-3.998H7V15Z"/></g>'
1384
+ },
1385
+ hourglass: {
1386
+ body: '<g transform="translate(2 .375)"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-miterlimit="10" d="M7.834 7.625c0-.33 1.2-1.03 1.833-1.667A6.017 6.017 0 0011.5 1.791V.124H.5v1.667a6.014 6.014 0 001.833 4.167c.631.637 1.833 1.337 1.833 1.667s-1.2 1.03-1.833 1.667A6.015 6.015 0 00.5 13.459v1.667h11v-1.667a6.02 6.02 0 00-1.833-4.167c-.632-.638-1.833-1.336-1.833-1.667Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M10.5 4.125h-9"/><ellipse cx="4" cy="1" fill="currentColor" rx="4" ry="1" transform="translate(2 13.625)"/></g>'
1387
+ },
1388
+ image: {
1389
+ body: '<g fill="none" stroke="currentColor" transform="translate(-.667 .999)"><g stroke-miterlimit="10" transform="rotate(90 7.833 8.834)"><rect width="12" height="16" rx="2" stroke="none"/><rect width="11" height="15" x=".5" y=".5" rx="1.5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m2.163 12.002 9.5-5.5 3.5 5.5"/><circle cx="1.5" cy="1.5" r="1.5" stroke-linecap="round" stroke-linejoin="round" transform="translate(2.667 3.001)"/><path stroke-linecap="round" stroke-linejoin="round" d="m9.165 8 1 2 2.5-1.5"/></g>'
1390
+ },
1391
+ "info-badge": {
1392
+ body: '<g transform="translate(.333 .334)"><circle cx="8" cy="8" r="8" fill="currentColor" transform="translate(-.333 -.333)"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M7.667 12.166v-5"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M7.668 4.166v-1"/></g>',
1393
+ height: 16.001
1394
+ },
1395
+ information: {
1396
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M8 3.5v1m0 3v5"/><g stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g></g>'
1397
+ },
1398
+ italic: {
1399
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M13.5.632h-7m3 15h-7m8-15-5 15"/>',
1400
+ height: 16.265
1401
+ },
1402
+ key: {
1403
+ body: '<g transform="translate(-948 -1895.998)"><path fill="none" stroke="currentColor" stroke-linejoin="round" d="M951 1911.5h-2.5v-2.707l.145-.15 6.5-6.5.063-.064a4.252 4.252 0 118.289-1.332 4.255 4.255 0 01-5.578 4.035l-.066.066-1.5 1.5-.145.15h-1.709v2h-2v1.705l-.143.15-1 1-.143.15Z"/><circle cx="1" cy="1" r="1" fill="currentColor" transform="translate(959 1899)"/></g>',
1404
+ height: 16.004
1405
+ },
1406
+ language: {
1407
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g><path fill="none" stroke="currentColor" stroke-miterlimit="10" d="M1 5h14M1 11h14"/><path fill="none" stroke="currentColor" stroke-linecap="round" d="M6.5 15a16.394 16.394 0 01-2-7 16.394 16.394 0 012-7m3 14a16.394 16.394 0 002-7 16.394 16.394 0 00-2-7"/>'
1408
+ },
1409
+ "learning-path": {
1410
+ body: '<path fill="none" stroke="currentColor" stroke-linejoin="round" d="m1.495 12.719 1-3.778a.158.158 0 01.287-.047 1.762 1.762 0 003.161-.452 1.8 1.8 0 00-1.227-2.285 1.741 1.741 0 00-1.242.124.16.16 0 01-.225-.186l1-3.779 3.722 1.013a.161.161 0 00.183-.229 1.812 1.812 0 01-.122-1.26A1.768 1.768 0 0110.285.593a1.807 1.807 0 011.186 2.114 1.788 1.788 0 01-.741 1.089.162.162 0 00.046.291l3.724 1.02-2.747 10.4Z"/>',
1411
+ height: 16.007
1412
+ },
1413
+ "light-off": {
1414
+ body: '<path fill="currentColor" d="M8 15a2.8 2.8 0 01-1.825-.648 2.119 2.119 0 01-.778-1.617v-.014l1-1v1.018a1.109 1.109 0 00.432.854 1.784 1.784 0 001.173.408 1.8 1.8 0 001.173-.408 1.143 1.143 0 00.431-.857v-1.924l.239-.281a10.14 10.14 0 001.524-2.252 6.226 6.226 0 00.606-2.135l1-1a4.332 4.332 0 01.022.434 7.244 7.244 0 01-.731 3.137 11.083 11.083 0 01-1.665 2.473v1.553a2.124 2.124 0 01-.784 1.617A2.772 2.772 0 018 15ZM4.245 9.631a9 9 0 01-.513-.924 7.153 7.153 0 01-.731-3.133 4.328 4.328 0 011.473-3.242 5.336 5.336 0 017.055 0 .027.027 0 00.006.008l-.71.709a4.344 4.344 0 00-5.684.023 3.347 3.347 0 00-1.145 2.5 6.2 6.2 0 00.633 2.7c.1.205.21.412.34.631l-.726.725Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M1 15 15 1"/>'
1415
+ },
1416
+ "light-on": {
1417
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M12.999 5.571a4.372 4.372 0 00-1.474-3.241A5.233 5.233 0 007.999 1a5.233 5.233 0 00-3.527 1.33 4.372 4.372 0 00-1.473 3.241 7.179 7.179 0 00.734 3.132 11.418 11.418 0 001.663 2.468v1.564a2.126 2.126 0 00.782 1.619A2.808 2.808 0 007.999 15a2.808 2.808 0 001.821-.646 2.126 2.126 0 00.782-1.619v-1.552a11.308 11.308 0 001.667-2.474 7.213 7.213 0 00.73-3.138Z"/><path fill="currentColor" d="M8 2c-1.082 0-2.096.38-2.855 1.07-.74.672-1.146 1.56-1.146 2.501 0 .922.208 1.805.636 2.7.346.723.843 1.459 1.52 2.25l.241.28v1.935c0 .428.268.72.43.856.309.263.726.408 1.174.408.447 0 .864-.145 1.175-.409.16-.136.428-.427.428-.856v-1.923l.241-.28c.679-.79 1.177-1.528 1.523-2.254.426-.895.634-1.78.633-2.708 0-.94-.407-1.828-1.147-2.5C10.095 2.38 9.081 2 8 2m0-1c1.372 0 2.62.506 3.526 1.33.906.823 1.475 1.972 1.474 3.24a7.213 7.213 0 01-.73 3.139c-.428.896-1.012 1.711-1.667 2.474v1.552c0 .641-.308 1.217-.782 1.62A2.808 2.808 0 018 15a2.808 2.808 0 01-1.822-.646c-.474-.402-.783-.978-.782-1.619v-1.564c-.652-.762-1.236-1.575-1.663-2.468-.455-.951-.735-1.993-.734-3.132 0-1.269.568-2.418 1.474-3.241C5.379 1.506 6.627 1 8 1Z"/></g><path stroke="currentColor" stroke-miterlimit="10" d="M6.001 11h4"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m9 6.5-1 3M7 6.504l1 2.5v1.5"/></g>'
1418
+ },
1419
+ link: {
1420
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M6.333 9.191a3.82 3.82 0 005.371.78 3.8 3.8 0 00.416-.362l2.3-2.319a3.883 3.883 0 00-.094-5.464 3.819 3.819 0 00-5.332 0l-1.32 1.321"/><path d="M9.666 7.29a3.82 3.82 0 00-5.371-.78 3.806 3.806 0 00-.416.362l-2.3 2.319a3.883 3.883 0 00.094 5.464 3.819 3.819 0 005.332 0l1.313-1.321"/></g>',
1421
+ height: 16.479
1422
+ },
1423
+ lock: {
1424
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-miterlimit="10" d="M8 9v3"/><g stroke-miterlimit="10" transform="translate(0 5)"><rect width="16" height="11" rx="2" stroke="none"/><rect width="15" height="10" x=".5" y=".5" rx="1.5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M4.505 5.5V3.335C4.505 1.769 6.067.5 8.005.5h0c1.933 0 3.5 1.269 3.5 2.835V5.5"/></g>'
1425
+ },
1426
+ login: {
1427
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M10.5.5H14A1.664 1.664 0 0115.5 2v12a1.668 1.668 0 01-1.5 1.5h-3.5"/><path d="m7.499 11.501 4-3.5-4-3.5M10.5 8H.5"/></g>',
1428
+ width: 16.005
1429
+ },
1430
+ logout: {
1431
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M5.5.5H2A1.661 1.661 0 00.5 2v12A1.659 1.659 0 002 15.5h3.5m5.999-3.999 4-3.5-4-3.5M14.5 8h-10"/>'
1432
+ },
1433
+ maximaze: {
1434
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round"><g transform="translate(0 2)"><rect width="16" height="12" rx="2" stroke="none"/><rect width="15" height="11" x=".5" y=".5" rx="1.5"/></g><path stroke-linecap="round" d="M2.5 8.501v3h3m8-4.001v-3h-3"/></g>'
1435
+ },
1436
+ menu: {
1437
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M1.5 11h11m-11-3H9M1.5 5h13"/>'
1438
+ },
1439
+ merge: {
1440
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round"><g stroke-miterlimit="10" transform="translate(2.667 2.666) translate(-1.667 8.334)"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2"/></g><g stroke-miterlimit="10" transform="translate(2.667 2.666) translate(7.333 8.334)"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2"/></g><path stroke-linejoin="round" d="m11.001 3.5-3-3-3 3M8 1.5V9"/><path stroke-miterlimit="10" d="m5 11.999 3-3 3 3"/></g>'
1441
+ },
1442
+ minimaze: {
1443
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" transform="translate(1.333 1.334)"><rect width="7" height="5" rx="1" transform="translate(-.833 7.166)"/><path stroke-linecap="round" d="M14.167 4.166v-3h-5m0 10.999h5v-3m-10-7.998h-5v3"/></g>'
1444
+ },
1445
+ "mixed-class": {
1446
+ body: '<g fill="none"><path stroke="currentColor" d="M2.5 8.001a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M2.5 4.001a2 2 0 11.586 1.414A2 2 0 012.5 4.001Z"/><path fill="currentColor" d="M4.5 3.001a.998.998 0 00-.708 1.706.997.997 0 001.415 0 .993.993 0 00.293-.706.996.996 0 00-1-1m0-1c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 014.5 2.001Z"/></g><path stroke="currentColor" d="M6 16.001a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M6 12.001a2 2 0 11.586 1.414A2 2 0 016 12.001Z"/><path fill="currentColor" d="M8 11.001a.998.998 0 00-.708 1.706.997.997 0 001.415 0A.993.993 0 009 12.001a.996.996 0 00-1-1m0-1c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 018 14.001a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 018 10.001Z"/></g><path stroke="currentColor" d="M9.5 8.001a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M9.5 4.001a2 2 0 11.586 1.414A2 2 0 019.5 4.001Z"/><path fill="currentColor" d="M11.5 3.001a.998.998 0 00-.708 1.706.997.997 0 001.415 0 .993.993 0 00.293-.706.996.996 0 00-1-1m0-1c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0111.5 2.001Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M2.167 10.5A1.537 1.537 0 01.501 8.833V2.167A1.537 1.537 0 012.168.5h11.666a1.537 1.537 0 011.667 1.667v6.666a1.537 1.537 0 01-1.667 1.667"/></g>',
1447
+ width: 16.001,
1448
+ height: 16.002
1449
+ },
1450
+ "more-horizontal": {
1451
+ body: '<g fill="currentColor" transform="rotate(90 5.133 11.2)"><circle cx="2" cy="2" r="2" transform="translate(-.066 .333)"/><circle cx="2" cy="2" r="2" transform="translate(-.066 6.333)"/><circle cx="2" cy="2" r="2" transform="translate(-.066 12.333)"/></g>'
1452
+ },
1453
+ "more-vertical": {
1454
+ body: '<g fill="currentColor" transform="translate(5.991 -.713)"><circle cx="2" cy="2" r="2" transform="translate(.009 .713)"/><circle cx="2" cy="2" r="2" transform="translate(.009 6.713)"/><circle cx="2" cy="2" r="2" transform="translate(.009 12.713)"/></g>',
1455
+ height: 16.001
1456
+ },
1457
+ news: {
1458
+ body: '<g fill="none" stroke="currentColor"><path d="M3.5 5.498h-3v8c0 1.2.544 2 1.5 2s1.5-.8 1.5-2v-12h12v12.5c0 1.3-.2 1.5-1.5 1.5H2"/><path stroke-linecap="round" d="M6.5 5.5h6m-6 3h6m-6 3h3"/></g>'
1459
+ },
1460
+ "no-prerequisites": {
1461
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" transform="translate(7 1)"><rect width="8" height="5" rx="1" stroke="none"/><rect width="7" height="4" x=".5" y=".5" rx=".5"/></g><g fill="none" stroke="currentColor" stroke-linejoin="round" transform="translate(7 9)"><rect width="8" height="5" rx="1" stroke="none"/><rect width="7" height="4" x=".5" y=".5" rx=".5"/></g><path fill="currentColor" d="M1.089 5.091h.944V2.225l-1.032.254v-.976l2.165-.5v4.091h.835v.909H1.09Zm-.077 7.859a1.333 1.333 0 01.858-1.385l.908-.456a.481.481 0 00.271-.514v-.263c0-.257-.109-.373-.338-.373h-.44c-.231 0-.341.112-.341.373v.533H1v-.479a1.2 1.2 0 011.318-1.384h.341a1.2 1.2 0 011.317 1.367v.264a1.322 1.322 0 01-.857 1.368l-.9.458a.446.446 0 00-.279.456v.16h2.064v.926H1.016Z"/>'
1462
+ },
1463
+ notes: {
1464
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M3.5 4.5h9m-9 3h6"/><rect width="16" height="16" rx="2" stroke="none"/><rect width="15" height="15" x=".5" y=".5" rx="1.5"/><path stroke-linecap="round" stroke-linejoin="round" d="M2 15.501c2 0 3-4 3-4l9 4Z"/></g>'
1465
+ },
1466
+ "number-code": {
1467
+ body: '<defs><path id="svgIDa" d="M1.5-.166v3M3 .333l-3 2m3 0-3-2"/></defs><g fill="none" stroke="currentColor"><g stroke-miterlimit="10" transform="translate(2 3)"><rect width="12" height="8" rx="2" stroke="none"/><rect width="11" height="7" x=".5" y=".5" rx="1.5"/></g><path stroke-linecap="square" stroke-linejoin="round" d="M5.506 2.768A2.393 2.393 0 018.006.5h0a2.392 2.392 0 012.5 2.268"/><use xlink:href="#svgIDa" stroke-linecap="round" transform="translate(3 12.667)"/><use xlink:href="#svgIDa" stroke-linecap="round" transform="translate(10 12.667)"/></g>',
1468
+ height: 16.001
1469
+ },
1470
+ "numbered-list": {
1471
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M5.5 12h5m-5-4h10m-10-4h7"/><path fill="currentColor" stroke="rgba(0,0,0,0)" d="M1.044 4.955h.472v-1.72L1 3.386v-.585l1.083-.3v2.455H2.5v.545H1.044Zm-.04 3.913a.824.824 0 01.429-.831l.454-.274c.1-.063.135-.14.135-.308v-.158c0-.154-.055-.224-.169-.224h-.22c-.116 0-.171.067-.171.224v.32h-.458V7.33c0-.558.235-.83.659-.83h.171c.427 0 .658.276.658.82v.159a.816.816 0 01-.428.821l-.452.275a.277.277 0 00-.139.274v.1h1.031v.556h-1.5Zm1.495 3.726v.09c0 .545-.225.817-.649.817h-.2c-.425 0-.65-.271-.65-.806v-.242h.456v.276c0 .14.057.21.169.21h.245c.111 0 .17-.073.17-.22v-.257c0-.142-.05-.215-.158-.215h-.363v-.519h.337c.107 0 .157-.07.157-.214v-.236c0-.145-.057-.215-.165-.215h-.206c-.107 0-.163.068-.163.205v.251h-.458v-.216c0-.533.224-.8.648-.8h.157c.423 0 .647.269.647.817v.074c0 .314-.118.531-.344.59.246.042.37.284.37.61Z"/>'
1472
+ },
1473
+ "on-site": {
1474
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M2.167 10.5A1.537 1.537 0 01.501 8.833V2.167A1.537 1.537 0 012.168.5h11.666a1.537 1.537 0 011.667 1.667v6.666a1.537 1.537 0 01-1.667 1.667"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m4.5 7.501 2-2h3l2-2"/><path stroke="currentColor" d="M5.5 16A2.5 2.5 0 018 13.5a2.5 2.5 0 012.5 2.5"/><g stroke-miterlimit="10"><path d="M5.5 10.499a2.5 2.5 0 11.732 1.767 2.5 2.5 0 01-.732-1.767Z"/><path fill="currentColor" d="M8 11.999c.4 0 .776-.156 1.06-.44.284-.283.44-.66.44-1.06a1.49 1.49 0 00-.439-1.06A1.494 1.494 0 008 8.998a1.496 1.496 0 00-1.5 1.5c0 .4.156.776.439 1.06.285.284.661.44 1.061.44m0 1c-.691 0-1.314-.28-1.767-.732a2.492 2.492 0 01-.733-1.768 2.495 2.495 0 012.5-2.5 2.49 2.49 0 011.767.731A2.49 2.49 0 0110.5 10.5c0 .691-.279 1.314-.733 1.768A2.492 2.492 0 018 12.999Z"/></g></g>'
1475
+ },
1476
+ "order-down": {
1477
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M1.5 3.5h13m-13 3h9m-9 3h7m-7 3h3"/>'
1478
+ },
1479
+ "order-up": {
1480
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M1.5 12.5h13m-13-3h9m-9-3h5m-5-3h3"/>'
1481
+ },
1482
+ paste: {
1483
+ body: '<g fill="none" stroke="currentColor" transform="translate(3.333 1.834)"><path stroke-linecap="round" d="M3.167 4.166h5m-5 3h5"/><rect width="10" height="14" rx="2" transform="translate(.667 -1.334)"/><path d="M6.167 14.166h-5.5c-1.1 0-1.5-.4-1.5-1.5v-8.5"/></g>',
1484
+ height: 16.5
1485
+ },
1486
+ pausa: {
1487
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M5.5 1.5v13m5-13v13"/>'
1488
+ },
1489
+ pdf: {
1490
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round"><path stroke-miterlimit="10" d="M15.5 4.5h-7m7 2.999h-7m7 4.001H.5"/><path stroke-linejoin="round" d="M.5 3.5h5v5h-5z"/></g>'
1491
+ },
1492
+ phone: {
1493
+ body: '<g transform="translate(2.333 -.167)"><g fill="none" stroke="currentColor" stroke-miterlimit="10" transform="translate(.667 .167)"><rect width="10" height="16" rx="2" stroke="none"/><rect width="9" height="15" x=".5" y=".5" rx="1.5"/></g><circle cx="1" cy="1" r="1" fill="currentColor" transform="translate(4.667 12.167)"/><rect width="4" height="2" fill="currentColor" rx="1" transform="translate(3.667 .167)"/></g>'
1494
+ },
1495
+ pin: {
1496
+ body: '<g fill="none"><path d="M8.002 0a5.81 5.81 0 016 5.6c0 4.805-6 10.4-6 10.4s-6-5.6-6-10.4a5.81 5.81 0 016-5.6Z"/><path fill="currentColor" d="M8.001 1C5.245 1 3.002 3.063 3.002 5.6c0 1.739.962 3.943 2.78 6.374a28.787 28.787 0 002.22 2.61 28.726 28.726 0 002.2-2.584C12.031 9.56 13 7.346 13 5.6 13 3.062 10.758 1 8 1m0-1c3.314 0 6 2.507 6 5.6 0 4.805-6 10.397-6 10.397S2.002 10.403 2.002 5.6c0-3.092 2.686-5.599 6-5.599Z"/><g stroke="currentColor" transform="translate(5 3)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5"/></g></g>'
1497
+ },
1498
+ "pin-map": {
1499
+ body: '<g fill="currentColor"><path d="M8 15.302a29.153 29.153 0 01-2.6-3C3.005 9.107 2.502 6.894 2.502 5.601 2.501 2.788 4.968.5 8.001.5c3.032 0 5.5 2.288 5.5 5.1 0 1.295-.503 3.509-2.9 6.703A29.107 29.107 0 018 15.302ZM8.003 1.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5Z"/><path d="M8 14.587a28.64 28.64 0 002.2-2.584C12.516 8.919 13 6.819 13 5.6 13 3.064 10.759 1 8 1 5.244 1 3.001 3.064 3.001 5.6c0 1.218.486 3.317 2.8 6.402A28.68 28.68 0 008 14.587M8.002 1c2.206 0 4 1.794 4 4 0 2.205-1.794 4-4 4s-4-1.795-4-4c0-2.206 1.794-4 4-4M8 16a28.75 28.75 0 01-3-3.398c-1.368-1.824-2.999-4.52-2.999-7.001 0-3.089 2.691-5.601 6-5.601 3.308 0 6 2.512 6 5.6 0 2.484-1.632 5.18-3 7.003A28.68 28.68 0 018 16Zm.002-14c-1.654 0-3 1.345-3 3 0 1.653 1.346 3 3 3s3-1.347 3-3c0-1.655-1.346-3-3-3Z"/></g>',
1500
+ height: 16.001
1501
+ },
1502
+ pizza: {
1503
+ body: '<path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m10.178.5 5.347 15L.554 10.143S-.515.5 10.178.5Z"/><path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M2.524 10.55a19.678 19.678 0 01.054-2.608 6.888 6.888 0 01.676-1.409 7 7 0 01.7-1.4 7.217 7.217 0 011.231-.982 7.113 7.113 0 011.247-.962 7.311 7.311 0 011.543-.359 21.912 21.912 0 012.749-.385"/><path fill="rgba(0,0,0,0)" stroke="currentColor" d="M5.525 11.501c.33-1.464 2.091-1.417 3.208-.949a2.6 2.6 0 011.792 2.949"/><path fill="currentColor" d="M10.152 5.192a1.413 1.413 0 00-1.93 1.936.47.47 0 00.348.228.483.483 0 00.4-.138l.108-.093.608.873 1.336-1.338-.874-.623.092-.1a.483.483 0 00.138-.4.47.47 0 00-.228-.348Z"/>',
1504
+ width: 16.024
1505
+ },
1506
+ play: {
1507
+ body: '<g fill="none"><path d="M14.481 7.132a1 1 0 010 1.736l-10.984 6A1 1 0 012 14V2a1 1 0 011.5-.868Z"/><path fill="currentColor" d="M13.984 8 3 2v12l.017-.01L13.984 8m1 0a.99.99 0 01-.503.868l-10.985 6A1 1 0 012 14V2a1 1 0 011.496-.868l10.985 6a.99.99 0 01.503.868Z"/></g>'
1508
+ },
1509
+ "plug-in": {
1510
+ body: '<g fill="none"><path d="M2.002 12.998a2 2 0 01-2-2v-5a2 2 0 012-2v-1a1 1 0 011-1h3a1 1 0 011 1v1h2v-1a1 1 0 011-1h3a1 1 0 011 1v1a2 2 0 012 2v5a2 2 0 01-2 2Z"/><path fill="currentColor" d="M14.002 12c.55 0 1-.45 1-1.002v-5c0-.551-.45-1-1-1h-1l.002-1.995-.006-.001L10.002 3v1.998H6l-.002-1.996L3 3v1.998H2c-.55 0-1 .449-1 1v5C1 11.55 1.45 12 2 12h12.002m0 1H2a2 2 0 01-2-2.002v-5c0-1.106.895-2 2-2V3a1 1 0 01.998-.998h3A1 1 0 017 3v.998h2.002V3c0-.551.447-.998.998-.998h2.998A1 1 0 0114.002 3v.998c1.105 0 2 .894 2 2v5a2 2 0 01-2 2.002Z"/></g>',
1511
+ width: 16.002
1512
+ },
1513
+ pointer: {
1514
+ body: '<g stroke="currentColor" transform="translate(.667 .666)"><circle cx="7" cy="7" r="7" fill="none" transform="translate(.333 .334)"/><circle cx="3" cy="3" r="3" fill="currentColor" transform="translate(4.333 4.334)"/></g>'
1515
+ },
1516
+ printer: {
1517
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M14 4H2a2 2 0 00-2 2v5a2.008 2.008 0 002 2h1v2a1.073 1.073 0 001 1h8a1.074 1.074 0 001-1v-2h1a2 2 0 002-2V6a2.011 2.011 0 00-2-2Z"/><path fill="currentColor" d="M2 5c-.551 0-1 .449-1 1v5c0 .542.458 1 1 1h2v2.959c.01.014.027.03.04.041h7.918a.198.198 0 00.042-.041V12h2c.551 0 1-.448 1-1V6c0-.542-.458-1-1-1H2m0-1h12c1.098 0 2 .905 2 2v5c0 1.102-.896 2-2 2h-1v2c0 .502-.5 1-1 1H4c-.508 0-1-.504-1-1v-2H2c-1.098 0-2-.902-2-2V6c0-1.102.897-2 2-2Z"/></g><g stroke-miterlimit="10"><path d="M3 9.999h10v4.9a1.125 1.125 0 01-1.146 1.1H4.146A1.125 1.125 0 013 14.899Z"/><path fill="currentColor" d="M4 10.999v3.897c0 .049.06.103.146.103h7.708c.086 0 .146-.054.146-.103v-3.897H4m-1-1h10v4.897c0 .61-.513 1.103-1.146 1.103H4.146c-.633 0-1.146-.494-1.146-1.103V9.999Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M10.5 7.5h2"/><g stroke="currentColor"><path stroke-linejoin="round" d="M11.001 2h-1V1Z"/><path stroke-miterlimit="10" d="M4.5 4.5V1.457A1.011 1.011 0 015.559.502h4.3l1.64 1.453V4.5"/></g></g>'
1518
+ },
1519
+ profile: {
1520
+ body: '<g stroke="currentColor" transform="translate(4 2.666)"><path fill="rgba(0,0,0,0)" d="M4 7.834A4.472 4.472 0 01.17 5.693a2.5 2.5 0 100-4.721 4.5 4.5 0 017.659 0 2.5 2.5 0 100 4.721A4.479 4.479 0 014 7.834Z"/><path fill="none" stroke-linejoin="round" d="M-.5 13.334a4.5 4.5 0 014.5-4.5 4.5 4.5 0 014.5 4.5"/><circle cx="2.5" cy="2.5" r="2.5" fill="rgba(0,0,0,0)" transform="translate(-1.5 .834)"/><circle cx="2.5" cy="2.5" r="2.5" fill="rgba(0,0,0,0)" transform="translate(4.5 .834)"/></g>'
1521
+ },
1522
+ "profile-add": {
1523
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M9.5 3.5h6m-3-3v6"/><g fill="rgba(0,0,0,0)"><path d="M4.999 11.502a3.53 3.53 0 01-3.15-1.973l-.075-.154-.153-.076A1.993 1.993 0 01.501 7.5c0-1.06.825-1.938 1.88-1.998l.172-.012.13-.113A3.493 3.493 0 014.999 4.5c.856 0 1.679.31 2.318.877l.13.113.172.012a2.003 2.003 0 01.759 3.797l-.153.076-.076.154A3.482 3.482 0 015 11.502Z"/><path fill="currentColor" d="M4.999 11.002a2.984 2.984 0 002.7-1.691l.15-.309.31-.152c.52-.256.843-.772.843-1.35 0-.793-.621-1.453-1.413-1.5l-.344-.02-.259-.228a2.999 2.999 0 00-3.972 0l-.26.228-.345.02a1.502 1.502 0 00-1.408 1.5c0 .578.322 1.096.84 1.352l.308.15.15.309a3.026 3.026 0 002.7 1.691m0 1c-1.58 0-2.95-.922-3.599-2.254a2.504 2.504 0 01.952-4.746A3.989 3.989 0 014.999 4c1.018 0 1.944.379 2.65 1.002a2.503 2.503 0 01.95 4.746 4.002 4.002 0 01-3.6 2.254Z"/></g><path fill="none" stroke="currentColor" stroke-linejoin="round" d="M1.5 16a3.5 3.5 0 017 0"/><g fill="none" stroke="currentColor" transform="translate(0 5)"><rect width="5" height="5" rx="2.5" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx="2"/></g><g fill="none" stroke="currentColor" transform="translate(5 5)"><rect width="5" height="5" rx="2.5" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx="2"/></g>'
1524
+ },
1525
+ "push-pin-off": {
1526
+ body: '<path fill="currentColor" d="M7.988 16a1.257 1.257 0 01-.967-.449 6.8 6.8 0 01-1.521-2.93l.885-.885a5.35 5.35 0 001.4 3.172.262.262 0 00.2.094.272.272 0 00.19-.08l6.743-6.738a.27.27 0 00.075-.209.251.251 0 00-.093-.191 5.347 5.347 0 00-3.174-1.393l.89-.889a6.818 6.818 0 012.932 1.52 1.291 1.291 0 01.447.914 1.27 1.27 0 01-.372.953l-6.739 6.738a1.247 1.247 0 01-.896.373ZM4.632 9.248 2 6.621a.244.244 0 00-.187-.08l-.944-.006a.885.885 0 01-.8-.541.873.873 0 01.19-.947L5.043.258a.878.878 0 011.494.617v.939A.257.257 0 006.612 2l2.634 2.635-.707.707-2.631-2.633a1.274 1.274 0 01-.373-.891v-.639L1.178 5.538h.638a1.268 1.268 0 01.892.367l2.631 2.633-.706.705Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="m12 12 3 3M1 15 15 1"/>'
1527
+ },
1528
+ "push-pin-on": {
1529
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><path d="M15.236 7.412c-2.14-1.8-3.949-1.594-4.728-1.374a.767.767 0 01-.756-.193l-3.48-3.482a.765.765 0 01-.225-.538V.882A.373.373 0 005.41.621L.621 5.406a.373.373 0 00.261.637h.943a.765.765 0 01.538.225L5.845 9.75a.767.767 0 01.193.756c-.22.78-.426 2.589 1.374 4.728a.772.772 0 001.132.046l6.741-6.741a.772.772 0 00-.049-1.127Z"/><path stroke-linecap="round" d="m12.01 12.01 3 3"/></g>',
1530
+ width: 16.01,
1531
+ height: 16.01
1532
+ },
1533
+ qrcode: {
1534
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10"><rect width="5" height="5" rx="1" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx=".5"/></g><g stroke-miterlimit="10" transform="translate(0 11)"><rect width="5" height="5" rx="1" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx=".5"/></g><g stroke-miterlimit="10" transform="translate(11)"><rect width="5" height="5" rx="1" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx=".5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M.5 7.501h7v3m4-3h4v2m-6 3h4m-5.999-8v-4h2M8.5 15.5h7v-3"/></g>'
1535
+ },
1536
+ "question-badge": {
1537
+ body: '<g transform="translate(.004 .005)"><circle cx="8" cy="8" r="8" fill="currentColor" transform="translate(-.004 -.005)"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M4.496 4.833A3.631 3.631 0 019.09 2.694a3.5 3.5 0 012.406 3.3c0 2.331-3.6 3.5-3.6 3.5m-.4 4.002v-1"/></g>'
1538
+ },
1539
+ radio: {
1540
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g>'
1541
+ },
1542
+ redo: {
1543
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round"><path stroke-miterlimit="10" d="M14.5 6H3.779A3.39 3.39 0 00.5 9.49v.019A3.39 3.39 0 003.779 13h2.593"/><path stroke-linejoin="round" d="m12.5 2.998 3 3-3 3"/></g>'
1544
+ },
1545
+ relations: {
1546
+ body: '<g fill="none" stroke="currentColor"><g stroke-linecap="round" stroke-miterlimit="10" transform="translate(1 2.999)"><path d="m1.5.5 2 2"/><circle cx="1" cy="1" r="1" transform="translate(-.5 -1.5)"/></g><g stroke-linecap="round" stroke-miterlimit="10" transform="translate(11.5 1.5)"><path d="m2 1.999-2 2"/><circle cx="1" cy="1" r="1" transform="translate(2 -.001)"/></g><g stroke-linecap="round" stroke-miterlimit="10" transform="translate(7.333 2.166)"><path d="M.667.334v3"/><circle cx="1" cy="1" r="1" transform="translate(-.333 -1.666)"/></g><path stroke-linejoin="round" d="M5 16a3 3 0 013-3 3 3 0 013 3"/><g transform="translate(5 7)"><rect width="6" height="6" rx="3" stroke="none"/><rect width="5" height="5" x=".5" y=".5" rx="2.5"/></g></g>'
1547
+ },
1548
+ reload: {
1549
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round"><path stroke-miterlimit="10" d="M1.5 9.502h13m-13-3h13"/><path stroke-linejoin="round" d="m10.501 2.502-2.5-2-2.5 2m5 10.999-2.5 2-2.5-2"/></g>'
1550
+ },
1551
+ remove: {
1552
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M.5 7.999h15"/>'
1553
+ },
1554
+ "remove-circle": {
1555
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/><path stroke-linecap="round" d="M3.5 8h9"/></g>'
1556
+ },
1557
+ repeart: {
1558
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="m12.5.707 3 3-3 3m-9 9-3-3 3-3"/><path d="M.5 7.706v-2a2.184 2.184 0 012.332-2H14.5m1 5v2a2.184 2.184 0 01-2.332 2H1.5"/></g>',
1559
+ width: 16.001,
1560
+ height: 16.414
1561
+ },
1562
+ repository: {
1563
+ body: '<g fill="none"><path d="M2 14a2 2 0 01-2-2V2.6A1.638 1.638 0 011.43 1h5.693l1.436 2H14a2 2 0 012 2v7a2 2 0 01-2 2Z"/><path fill="currentColor" d="M14 13c.552 0 1-.45 1-1.001v-7c0-.551-.448-1-1-1H8.047L6.609 2.001H1.436c-.122.01-.434.302-.434.603v2.365L1 5v7a1 1 0 001 1h12m0 1H2a2 2 0 01-2-2V2.604c0-.801.712-1.598 1.43-1.602l5-.002.693.002 1.436 1.997H14a2 2 0 012 2v7a2 2 0 01-2 2Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m12.001 8-1.5-2-1.5 2M10.5 6.5v4"/></g>'
1564
+ },
1565
+ "request-form": {
1566
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" transform="translate(.5 .5)"><path stroke-linecap="round" d="M11 8.49a3.643 3.643 0 01-2.507 2.507m0-7A3.644 3.644 0 0111 6.506m-7 0a3.645 3.645 0 012.508-2.509m0 7A3.641 3.641 0 013.999 8.49M14 9.358c-.481 3.218-1.954 4.146-4.643 4.643m0-13A5.358 5.358 0 0114 5.644m-13 0a5.364 5.364 0 014.642-4.64m0 13A5.227 5.227 0 01.999 9.361"/><rect width="3" height="4" rx="1" transform="translate(6 11)"/><rect width="4" height="3" rx="1.333" transform="translate(11 6)"/><rect width="4" height="3" rx="1" transform="translate(0 6)"/><rect width="3" height="4" rx="1" transform="translate(6)"/></g>'
1567
+ },
1568
+ "resize-100": {
1569
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.5 5.498v-3h-3m0 11.003h3v-3M3.501 2.498h-3v3m0 5.001v3h3"/><path fill="currentColor" d="M3.001 10.999h3v-1h-1v-5l-2 1v1l1-.5v3.5h-1Zm7 0h3v-1h-1v-5l-2 1v1l1-.5v3.5h-1ZM7 7.001h1v-1H7Zm0 3h1v-1H7Z"/>'
1570
+ },
1571
+ "resize-height": {
1572
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round"><path stroke-linejoin="round" d="m10 5.501-2-2-2 2m0 5.001 2 2 2-2"/><path d="M.5.5h15m-15 15h15"/></g>'
1573
+ },
1574
+ "resize-width": {
1575
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round"><path stroke-linejoin="round" d="m10.502 10.002 2-2-2-2m-5.003-.001-2 2 2 2"/><path d="M15.5.5v15M.5.5v15"/></g>',
1576
+ height: 16.001
1577
+ },
1578
+ search: {
1579
+ body: '<g stroke="currentColor" stroke-miterlimit="10"><path fill="currentColor" stroke-linecap="round" d="m9 8.999 6 6"/><g fill="none"><circle cx="5.5" cy="5.5" r="5.5" stroke="none"/><circle cx="5.5" cy="5.5" r="5"/></g></g>'
1580
+ },
1581
+ "sequential-prerequisites": {
1582
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" transform="translate(7 1)"><rect width="8" height="5" rx="1" stroke="none"/><rect width="7" height="4" x=".5" y=".5" rx=".5"/></g><g fill="none" stroke="currentColor"><g stroke-miterlimit="10" transform="translate(8 9.999)"><rect width="6" height="5" rx="1" stroke="none"/><rect width="5" height="4" x=".5" y=".5" rx=".5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M9.505 10v-.867A1.356 1.356 0 0111.005 8h0a1.356 1.356 0 011.5 1.133V10"/></g><path fill="currentColor" d="M1.089 5.091h.944V2.225l-1.032.254v-.976l2.165-.5v4.091h.835v.909H1.09Zm-.077 7.859a1.333 1.333 0 01.858-1.385l.908-.456a.481.481 0 00.271-.514v-.263c0-.257-.109-.373-.338-.373h-.44c-.231 0-.341.112-.341.373v.533H1v-.479a1.2 1.2 0 011.318-1.384h.341a1.2 1.2 0 011.317 1.367v.264a1.322 1.322 0 01-.857 1.368l-.9.458a.446.446 0 00-.279.456v.16h2.064v.926H1.016Z"/>'
1583
+ },
1584
+ settings: {
1585
+ body: '<g fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M7.112 15h1.775l.217-1.743.3-.083a5.315 5.315 0 001.256-.521l.272-.157 1.387 1.082 1.257-1.257-1.076-1.387.158-.273a5.331 5.331 0 00.521-1.256l.083-.3L15 8.884V7.112l-1.742-.216-.083-.3a5.322 5.322 0 00-.521-1.257l-.154-.274 1.082-1.387-1.239-1.237-.021-.021-1.388 1.083-.272-.158a5.326 5.326 0 00-1.256-.521l-.3-.083L8.889.999H7.112L6.9 2.742l-.3.083a5.327 5.327 0 00-1.256.521l-.272.158L3.678 2.42 2.421 3.678 3.5 5.065l-.157.273a5.312 5.312 0 00-.521 1.256l-.083.3L1 7.112v1.772l1.742.217.083.3a5.312 5.312 0 00.521 1.256l.157.273-1.082 1.392 1.257 1.257 1.387-1.082.272.157a5.326 5.326 0 001.256.521l.3.083Z"/><path fill="currentColor" d="m8.888 15 .217-1.743.3-.083a5.316 5.316 0 001.257-.52l.272-.157 1.388 1.082 1.257-1.257-1.082-1.388.157-.273c.222-.385.398-.807.52-1.256l.084-.3L15 8.888V7.112l-1.742-.217-.083-.3a5.322 5.322 0 00-.521-1.258l-.157-.272 1.082-1.387-1.257-1.258-1.388 1.083-.272-.157a5.327 5.327 0 00-1.256-.52l-.301-.084L8.888 1H7.112l-.217 1.742-.3.083a5.358 5.358 0 00-1.257.52l-.272.158L3.678 2.42 2.421 3.678l1.082 1.387-.157.273a5.312 5.312 0 00-.52 1.256l-.084.301L1 7.112v1.776l1.742.217.083.3c.123.449.299.871.521 1.256l.157.273-1.082 1.388 1.257 1.257 1.388-1.082.272.157c.386.222.808.397 1.256.52l.301.083L7.112 15h1.776m0 1H7.112a1 1 0 01-.992-.876l-.136-1.09a6.333 6.333 0 01-.825-.342l-.865.675a1 1 0 01-1.323-.08l-1.257-1.258a1 1 0 01-.081-1.323l.675-.865a6.315 6.315 0 01-.342-.825L.876 9.88A1 1 0 010 8.888V7.112a1 1 0 01.877-.993l1.089-.135c.095-.285.21-.562.342-.826l-.675-.865a1 1 0 01.08-1.322l1.258-1.258a1 1 0 011.323-.08l.865.674a6.3 6.3 0 01.825-.341L6.12.876A1 1 0 017.112 0h1.776a1 1 0 01.992.876l.136 1.09c.285.095.561.21.825.341l.865-.675a1 1 0 011.323.081l1.257 1.258a1 1 0 01.081 1.322l-.675.865c.133.265.247.54.342.826l1.09.135a1 1 0 01.876.993v1.776a1 1 0 01-.876.992l-1.09.136c-.095.285-.21.56-.342.825l.675.865a1 1 0 01-.08 1.323l-1.258 1.257a1 1 0 01-1.323.081l-.865-.675a6.32 6.32 0 01-.825.342l-.136 1.09a1 1 0 01-.992.876Z"/><g stroke="currentColor" transform="translate(4.999 5)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5"/></g></g>'
1586
+ },
1587
+ share: {
1588
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10" transform="translate(1.195 .234) translate(-1.195 4.766)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5"/></g><g stroke-miterlimit="10" transform="translate(1.195 .234) translate(8.806 9.766)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5"/></g><g stroke-miterlimit="10" transform="translate(1.195 .234) translate(8.806 -.234)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m10.501 11.5-5-2m4.5-5.5-5 1.998"/></g>',
1589
+ width: 16.001
1590
+ },
1591
+ sketch: {
1592
+ body: '<g fill="none"><path d="M10.951 1a2.1 2.1 0 011.8 1.008l2.97 5a1.934 1.934 0 010 1.985l-2.97 5a2.1 2.1 0 01-1.8 1.007h-5.9a2.1 2.1 0 01-1.8-1.008l-2.97-5a1.934 1.934 0 010-1.985l2.97-5A2.1 2.1 0 015.048 1Z"/><path fill="currentColor" d="M5.048 2c-.393 0-.755.199-.945.518l-2.97 5a.93.93 0 000 .964l2.97 5c.19.32.552.518.945.518h5.903c.393 0 .755-.199.945-.518l2.97-5a.93.93 0 000-.964l-2.97-5A1.095 1.095 0 0010.951 2H5.048m0-1h5.903c.746 0 1.435.385 1.805 1.008l2.97 5c.365.615.365 1.37 0 1.984l-2.97 5A2.095 2.095 0 0110.95 15H5.048a2.095 2.095 0 01-1.805-1.008l-2.97-5a1.934 1.934 0 010-1.984l2.97-5A2.095 2.095 0 015.048 1Z"/></g>'
1593
+ },
1594
+ skills: {
1595
+ body: '<g transform="translate(1.333 1.334)"><path fill="none" stroke="currentColor" stroke-linejoin="round" d="M3.667 14.665a3 3 0 013-3 3 3 0 013 3"/><g fill="none" stroke="currentColor" transform="translate(3.667 5.666)"><rect width="6" height="6" rx="3" stroke="none"/><rect width="5" height="5" x=".5" y=".5" rx="2.5"/></g><rect width="4" height="4" fill="currentColor" rx="1" transform="translate(-1.333 1.666)"/><path fill="currentColor" d="M11.554 2.145a1.017 1.017 0 011.726 0l1.242 2.028a.986.986 0 01-.863 1.493h-2.484a.986.986 0 01-.863-1.493ZM6.06-.87a1 1 0 011.214 0l.839.641a1 1 0 01.348 1.09l-.34 1.1a1 1 0 01-.954.705h-1a1 1 0 01-.955-.7l-.34-1.1a1 1 0 01.349-1.1Z"/></g>'
1596
+ },
1597
+ "skip-back": {
1598
+ body: '<g fill="none"><path d="M1.574 6.947a1.255 1.255 0 000 2.106l8.693 4.8a1.1 1.1 0 001.625-1.053V3.2a1.1 1.1 0 00-1.625-1.052Z"/><path fill="currentColor" d="M2.001 8c0 .023.004.14.078.19l8.7 4.803.013.007c.024-.005.1-.06.1-.201V3.2c0-.142-.079-.198-.097-.201 0 0-.006.001-.016.007l-.029.017L2.08 7.81C2.005 7.86 2 7.977 2 8M1 8c0-.413.191-.826.573-1.053l8.694-4.799c.732-.436 1.625.143 1.625 1.053V12.8c0 .91-.893 1.489-1.625 1.053l-8.693-4.8c-.382-.227-.573-.64-.573-1.053Z"/><path stroke="currentColor" stroke-linecap="round" d="M14.401 2.5v11"/></g>'
1599
+ },
1600
+ "skip-forward": {
1601
+ body: '<g fill="none"><path d="M14.423 6.948a1.249 1.249 0 010 2.106l-8.772 4.8a1.113 1.113 0 01-1.64-1.053V3.203a1.113 1.113 0 011.64-1.053Z"/><path fill="currentColor" d="M14.001 8.001c0-.032-.006-.138-.08-.187L5.143 3.011C5.124 3 5.121 2.998 5.1 3.01c-.015.008-.088.057-.088.193V12.8c0 .136.073.185.088.193.021.012.024.01.043 0l.029-.017 8.75-4.787c.074-.05.08-.155.08-.187m1 0c0 .413-.193.825-.578 1.053l-8.772 4.798c-.74.436-1.64-.142-1.64-1.053V3.203c0-.91.9-1.49 1.64-1.053l8.772 4.798c.385.228.578.64.578 1.054Z"/><path stroke="currentColor" stroke-linecap="round" d="M1.5 2.5v11"/></g>'
1602
+ },
1603
+ sms: {
1604
+ body: '<g fill="none"><path d="M3 1.999h10a3 3 0 013 3v4a3 3 0 01-3 3H3a3 3 0 01-3-3v-4a3 3 0 013-3Z"/><path fill="currentColor" d="M3 2.999c-1.103 0-2 .897-2 2v4c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2v-4c0-1.103-.897-2-2-2H3m0-1h10a3 3 0 013 3v4a3 3 0 01-3 3H3a3 3 0 01-3-3v-4a3 3 0 013-3Z"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M3.5 5.499h9M3.5 8.5h5"/><g fill="currentColor" stroke-linecap="round"><path d="M3.5 13.792v-2.293h2.293L3.5 13.792Z"/><path d="M4 11.999v.586l.585-.586H4m-1-1h4l-4 4v-4Z"/></g>'
1605
+ },
1606
+ "sso-access": {
1607
+ body: '<g fill="none"><g stroke-linecap="round"><path d="M13.001 12.999h-10a3 3 0 01-.984-5.835 3.5 3.5 0 014.995-2.823A4 4 0 0114.001 7v.169a3 3 0 01-.969 5.83h-.026Z"/><path fill="currentColor" d="M13.002 11.999h.017a2.005 2.005 0 001.982-2c0-.848-.537-1.606-1.336-1.887l-.698-.246.031-.739.003-.128c0-1.654-1.346-3-3-3-.856 0-1.673.367-2.242 1.006l-.5.563-.68-.326A2.475 2.475 0 005.501 5a2.488 2.488 0 00-2.489 2.26l-.06.64-.607.21A2.001 2.001 0 003.002 12h10m0 1H3a3 3 0 01-.984-5.835 3.5 3.5 0 014.995-2.823 4 4 0 016.985 2.828 3 3 0 01-.995 5.83Z"/></g><g stroke="currentColor"><path stroke-linecap="round" stroke-miterlimit="10" d="M8 8v2"/><g transform="translate(7 7)"><circle cx="1" cy="1" r="1" stroke="none"/><circle cx="1" cy="1" r=".5"/></g></g></g>'
1608
+ },
1609
+ star: {
1610
+ body: '<path fill="none" stroke="currentColor" stroke-linejoin="round" d="m8 .5 1.771 5.729H15.5l-4.635 3.542 1.77 5.729L8 11.959 3.365 15.5l1.77-5.729L.5 6.229h5.729Z"/>'
1611
+ },
1612
+ "star-active": {
1613
+ body: '<path fill="currentColor" stroke="currentColor" stroke-linejoin="round" d="m8 .5 1.771 5.729H15.5l-4.635 3.542 1.77 5.729L8 11.959 3.365 15.5l1.77-5.729L.5 6.229h5.729Z"/>'
1614
+ },
1615
+ success: {
1616
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" transform="translate(.001 -.989)"><rect width="3" height="8" rx="1" transform="translate(.499 7.499)"/><path stroke-linecap="round" d="M14.497 8.84h-.749l.059-.4h.69a.978.978 0 100-1.956h-1.5L9.499 6.5s.918-3.613-1.3-4.8c-1.424-.687-1.7.6-1.7.6V5l-1 .5s-1.992 1.2-2 2.5v6a1.314 1.314 0 001.5 1.5h8a1.1 1.1 0 001.12-.978.993.993 0 00-1-.978h-.068l.059-.4h.7a.978.978 0 100-1.955h-.408l.059-.4H14.5a.978.978 0 100-1.956Z"/></g>',
1617
+ height: 16.009
1618
+ },
1619
+ sun: {
1620
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" transform="translate(.574 .574)"><circle cx="4" cy="4" r="4" transform="translate(3.426 3.426)"/><path stroke-linecap="round" d="M7.426 1.926v-2m0 15v-2m5.5-5.5h2m-15 0h2m-1-6.5 2 2m-2 11.5 2-2m9-9.5 2-2m-2 11.5 2 2"/></g>'
1621
+ },
1622
+ sunrise: {
1623
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M3 10.999a5 5 0 015-5 5 5 0 015 5Z"/><path fill="currentColor" d="M11.873 9.999a4.007 4.007 0 00-3.873-3 4.007 4.007 0 00-3.874 3h7.747m1.127 1H3a5 5 0 1110 0Z"/><path stroke="currentColor" stroke-linecap="round" d="M8 4.5v-1m-7.5 7h15m-13-6 1 1m10-1-1 1"/></g>'
1624
+ },
1625
+ support: {
1626
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" transform="translate(.667 .568)"><path stroke-linecap="round" d="M2.833 3.934a4.272 4.272 0 014.5-4 4.272 4.272 0 014.5 4"/><g transform="translate(.333 3.433)"><rect width="5" height="7" rx="2" stroke="none"/><rect width="4" height="6" x=".5" y=".5" rx="1.5"/></g><g transform="translate(9.333 3.433)"><rect width="5" height="7" rx="2.004" stroke="none"/><rect width="4" height="6" x=".5" y=".5" rx="1.504"/></g><path stroke-linecap="round" d="M11.83 9.932v2c0 1.394-.451 2-1.5 2h-1.5"/><circle cx="1" cy="1" r="1" stroke-linecap="round" transform="translate(6.833 12.931)"/></g>'
1627
+ },
1628
+ survey: {
1629
+ body: '<g fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M14.5.5h-7a2.006 2.006 0 00-2 2v4a2.011 2.011 0 002 2h1v1c0 1 .4 1.2 1 .8l2-1.8h3a2.009 2.009 0 002-2v-4a2 2 0 00-2-2Z"/><path fill="currentColor" d="M7.5 1.5c-.551 0-1 .45-1 1.002v4.002c0 .543.458 1.002 1 1.002h1a1 1 0 011 1v.456l1.33-1.2a1 1 0 01.67-.256h3c.542 0 1-.459 1-1.002V2.502c0-.552-.449-1.002-1-1.002h-7m0-1h7c1.1 0 2 .897 2 2.002v4.002a2.01 2.01 0 01-2 2.002h-3l-2 1.802c-.6.4-1 .198-1-.801V8.506h-1c-1.097 0-2-.906-2-2.002V2.502C5.5 1.403 6.397.5 7.5.5Z"/></g><g fill="none" stroke-miterlimit="10"><path d="M10.483 3.612a.184.184 0 00-.073-.079.263.263 0 00-.1-.033l-.631-.1a.3.3 0 01-.127-.06.317.317 0 01-.094-.108l-.282-.6a.278.278 0 00-.068-.093.169.169 0 00-.11-.043.169.169 0 00-.11.043.275.275 0 00-.068.093l-.282.6a.319.319 0 01-.094.108.3.3 0 01-.127.06l-.632.1a.244.244 0 00-.125.054.18.18 0 00-.045.059.175.175 0 00-.017.075.205.205 0 00.023.092.292.292 0 00.054.074l.457.466a.31.31 0 01.061.1.393.393 0 01.025.132.217.217 0 010 .035l-.108.657a.316.316 0 000 .055.214.214 0 00.043.137.162.162 0 00.06.046.168.168 0 00.07.015.249.249 0 00.119-.034l.565-.31a.3.3 0 01.137-.03.3.3 0 01.137.03l.565.31a.248.248 0 00.119.034.169.169 0 00.071-.015.169.169 0 00.08-.078.233.233 0 00.023-.1.347.347 0 000-.055l-.108-.658a.221.221 0 010-.035.394.394 0 01.026-.132.3.3 0 01.062-.1l.457-.466a.291.291 0 00.054-.074.2.2 0 00.023-.092.177.177 0 00-.03-.08Z"/><path fill="currentColor" d="M8.999 2.501h.002a.17.17 0 01.109.043c.03.025.05.057.068.093l.283.598c.015.033.05.076.093.108a.303.303 0 00.128.06l.631.097a.263.263 0 01.097.033.177.177 0 01.09.155.204.204 0 01-.023.092.291.291 0 01-.054.074l-.457.466a.394.394 0 00-.085.272l.109.657a.347.347 0 01.004.055.233.233 0 01-.023.105.17.17 0 01-.08.078.17.17 0 01-.07.015.248.248 0 01-.12-.034l-.564-.31A.286.286 0 009 5.128a.296.296 0 00-.137.03l-.564.31a.25.25 0 01-.12.034.168.168 0 01-.13-.061.214.214 0 01-.043-.137c0-.018.001-.036.004-.055l.108-.657a.393.393 0 00-.084-.272l-.457-.466a.292.292 0 01-.054-.074.205.205 0 01-.023-.093.175.175 0 01.061-.134.244.244 0 01.126-.054l.631-.096a.301.301 0 00.127-.06.319.319 0 00.095-.108l.282-.598a.275.275 0 01.068-.093.169.169 0 01.109-.044Z"/></g><path fill="currentColor" d="M14.483 3.612a.184.184 0 00-.073-.079.263.263 0 00-.1-.033l-.631-.1a.3.3 0 01-.127-.06.317.317 0 01-.094-.108l-.282-.6a.278.278 0 00-.068-.093.169.169 0 00-.11-.043.169.169 0 00-.11.043.275.275 0 00-.068.093l-.282.6a.319.319 0 01-.094.108.3.3 0 01-.127.06l-.632.1a.244.244 0 00-.125.054.18.18 0 00-.045.059.175.175 0 00-.017.075.205.205 0 00.023.092.292.292 0 00.054.074l.457.466a.31.31 0 01.061.1.393.393 0 01.025.132.217.217 0 010 .035l-.108.657a.316.316 0 000 .055.214.214 0 00.043.137.162.162 0 00.06.046.168.168 0 00.07.015.249.249 0 00.119-.034l.565-.31a.3.3 0 01.137-.03.3.3 0 01.137.03l.565.31a.248.248 0 00.119.034.169.169 0 00.071-.015.169.169 0 00.08-.078.233.233 0 00.023-.1.347.347 0 000-.055l-.108-.658a.221.221 0 010-.035.394.394 0 01.026-.132.3.3 0 01.062-.1l.457-.466a.291.291 0 00.054-.074.2.2 0 00.023-.092.177.177 0 00-.03-.08Z"/><path fill="none" stroke="currentColor" stroke-linejoin="round" d="M2 16.501a2.5 2.5 0 012.5-2.5 2.5 2.5 0 012.5 2.5"/><g fill="none" stroke="currentColor" transform="translate(2.5 9.5)"><rect width="4" height="4" rx="2" stroke="none"/><rect width="3" height="3" x=".5" y=".5" rx="1.5"/></g>',
1630
+ width: 17,
1631
+ height: 17
1632
+ },
1633
+ table: {
1634
+ body: '<g fill="none" stroke="currentColor"><g transform="translate(0 2)"><rect width="16" height="12" rx="2" stroke="none"/><rect width="15" height="11" x=".5" y=".5" rx="1.5"/></g><path d="M4.5 3v10M0 5.5h16m-16 4h16"/></g>'
1635
+ },
1636
+ "tematic-channels": {
1637
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" d="M8.5 1v15m3.5 0H5"/><path d="M8.5 3.001h4.408L14 4.376l-1.092 1.625H8.5ZM8.001 8H3.593L2.501 6.625 3.593 5h4.408Z"/></g>',
1638
+ width: 17,
1639
+ height: 17
1640
+ },
1641
+ test: {
1642
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" transform="translate(0 2)"><rect width="5" height="5" rx="1" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx=".5"/></g><g fill="none" stroke="currentColor" stroke-miterlimit="10" transform="translate(0 9)"><rect width="5" height="5" rx="1" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx=".5"/></g><g fill="none" stroke-miterlimit="10"><path d="M9.447 15.053a.658.658 0 01-.966-.259 10.824 10.824 0 01-1.032-3.88l2.584-9.66A1.366 1.366 0 0111.75.378l2.068.554a1.366 1.366 0 011.048 1.617l-2.585 9.66a10.824 10.824 0 01-2.834 2.844Z"/><path fill="currentColor" d="M9.211 14c.773-.587 1.894-1.738 2.119-2.116l2.567-9.594c.036-.133-.095-.328-.34-.393l-2.068-.553c-.237-.064-.454.037-.49.17l-2.567 9.594c.006.44.402 1.997.779 2.891m-.307 1.147a.684.684 0 01-.423-.352c-.508-.95-1.161-3.399-1.033-3.88l2.585-9.658c.184-.69.952-1.083 1.715-.879l2.067.554c.764.204 1.232.928 1.048 1.617l-2.584 9.659c-.129.48-1.918 2.276-2.832 2.846a.686.686 0 01-.543.093Z"/></g>'
1643
+ },
1644
+ "text-body": {
1645
+ body: '<path fill="currentColor" d="M.999 13.002h2.017l-.017-9.5-3 1v-2l5-1.5v12h2v2h-6Zm8 0h2.017l-.017-9.5-3 1v-2l5-1.5v12h2v2h-6Z"/>'
1646
+ },
1647
+ "text-edit": {
1648
+ body: '<path fill="currentColor" d="M4.865 10H2.139l-.64 2h-1.5l2.368-8h2.269l2.363 8h-1.5Zm-.332-1-.482-1.763C3.868 6.562 3.699 5.784 3.5 5c-.193.784-.367 1.562-.546 2.237L2.472 9Zm7.965-1.095v4.013h-.96l-.117-.481-.76.32a2.871 2.871 0 01-1.1.244 1.511 1.511 0 01-1.559-1.71v-.1c0-1.009.639-1.591 2.068-1.591h1.164v-.836c0-.439-.156-.684-.647-.684h-.421c-.417 0-.643.134-.643.517v.421H8.234v-.347c0-1.068.717-1.669 1.945-1.669h.382c1.199-.001 1.937.512 1.937 1.903ZM11.23 9.546h-1.194c-.5 0-.734.148-.734.514v.346c0 .366.186.546.5.546a1.512 1.512 0 00.577-.125l.843-.255ZM15 1h1v14h-1Z"/>'
1649
+ },
1650
+ "text-style": {
1651
+ body: '<path fill="currentColor" d="M5.908 10.724H2.6L1.984 13H0L2.876 3h2.755L8.5 13H6.517Zm-.4-1.5L4.919 7.05a150.33 150.33 0 01-.669-2.6c-.235.979-.446 1.756-.663 2.6L3 9.224Zm10.487-1.683v5.351h-1.277l-.156-.642-1.014.426a3.817 3.817 0 01-1.471.326 2.015 2.015 0 01-2.079-2.28v-.129c0-1.344.852-2.121 2.757-2.121h1.552V7.35c0-.585-.208-.912-.863-.912h-.561c-.556 0-.857.179-.857.69v.56h-1.714v-.461c0-1.424.956-2.225 2.595-2.225h.509c1.598 0 2.579.685 2.579 2.539ZM14.304 9.73h-1.589c-.666 0-.979.2-.979.684v.459c0 .487.249.728.672.728a2.011 2.011 0 00.77-.167l1.124-.339Z"/>'
1652
+ },
1653
+ time: {
1654
+ body: '<g fill="none" stroke="currentColor"><g stroke-miterlimit="10"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m9.5 6.501-2 1.5 4 3.5"/></g>'
1655
+ },
1656
+ "toilet-paper": {
1657
+ body: '<g transform="translate(-.512 .154)"><ellipse cx="2.5" cy="6" fill="none" stroke="currentColor" stroke-miterlimit="10" rx="2.5" ry="6" transform="translate(11.011 .346)"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M13.511.346H3.006a1.8 1.8 0 00-2 2v13h10v-9.5"/><path fill="none" stroke="currentColor" stroke-linecap="round" d="M9.012 10.346h1.5m-5.5 0h2m-5.5 0h1.5"/><ellipse cx="1" cy="1.5" fill="currentColor" rx="1" ry="1.5" transform="translate(12.512 4.846)"/></g>',
1658
+ height: 16.001
1659
+ },
1660
+ "training-points": {
1661
+ body: '<g fill="none" stroke="currentColor"><g transform="translate(0 .207) translate(1.333 2) translate(-1.333 2)"><circle cx="6" cy="6" r="6" stroke="none"/><circle cx="6" cy="6" r="5.5"/></g><g transform="translate(0 .207) translate(1.333 2) translate(1.667 5)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5"/></g><path stroke-linecap="round" d="m6.5 9.707 5-5"/><path stroke-linejoin="round" d="m13.327.707-1.886 1.886.118 2.003 2.004.118 1.885-1.887Z"/></g>',
1662
+ width: 16.156,
1663
+ height: 16.207
1664
+ },
1665
+ trash: {
1666
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><path d="M2 1.999h12v12a2 2 0 01-2 2H4a2 2 0 01-2-2v-12Z" stroke="none"/><path d="M2.5 2.499h11v11.5a1.5 1.5 0 01-1.5 1.5H4a1.5 1.5 0 01-1.5-1.5v-11.5Z"/><path stroke-linecap="round" d="M.5 2.499h15m-9 4v5m3-5v5"/><path d="M11.001 1.999h-6v-1a1 1 0 011-1h4a1 1 0 011 1v1Z" stroke="none"/><path d="M10.501 1.499h-5v-.5a.5.5 0 01.5-.5h4a.5.5 0 01.5.5v.5Z"/></g>'
1667
+ },
1668
+ underline: {
1669
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M2.501.5v7.222c0 3.682 2.463 5.778 5.5 5.778s5.5-2.1 5.5-5.778V.5M.5 15.5h15"/>'
1670
+ },
1671
+ undo: {
1672
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round"><path stroke-miterlimit="10" d="M1.501 5.502h10.721a3.39 3.39 0 013.279 3.49v.019a3.39 3.39 0 01-3.279 3.491H9.629"/><path stroke-linejoin="round" d="m3.501 2.5-3 3 3 3"/></g>',
1673
+ width: 16.001
1674
+ },
1675
+ unlock: {
1676
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M4.996 5.695a2.842 2.842 0 010-4.134h0a3.049 3.049 0 014.257 0l.851.827"/><path stroke-linecap="round" stroke-miterlimit="10" d="M8 9.185v3"/><g stroke-miterlimit="10" transform="translate(0 5.186)"><rect width="16" height="11" rx="2" stroke="none"/><rect width="15" height="10" x=".5" y=".5" rx="1.5"/></g></g>',
1677
+ height: 16.185
1678
+ },
1679
+ upload: {
1680
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m11 4.502-3-3-3 3M8 11.5v-10m7.5 10v3H.5v-3"/>'
1681
+ },
1682
+ user: {
1683
+ body: '<g fill="none" stroke="currentColor" transform="translate(4 2.666)"><rect width="9" height="9" rx="4.5" transform="translate(-.5 -1.166)"/><path d="M-.5 13.334a4.5 4.5 0 014.5-4.5 4.5 4.5 0 014.5 4.5"/></g>'
1684
+ },
1685
+ "user-add": {
1686
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-miterlimit="10" d="M9.5 3.5h6m-3-3v6"/><g transform="translate(0 4)"><rect width="8" height="8" rx="4" stroke="none"/><rect width="7" height="7" x=".5" y=".5" rx="3.5"/></g><path stroke-linejoin="round" d="M.5 16a3.5 3.5 0 017 0"/></g>'
1687
+ },
1688
+ "user-badge": {
1689
+ body: '<path fill="currentColor" d="M8.5 1.23 9.729.186a.78.78 0 011.264.43l.408 1.6a.8.8 0 00.808.614l1.582-.089a.822.822 0 01.782 1.125L14 5.411a.849.849 0 00.309.993l1.33.9a.849.849 0 010 1.39l-1.33.9a.849.849 0 00-.309.993l.57 1.546a.822.822 0 01-.782 1.125l-1.582-.089a.8.8 0 00-.808.614l-.408 1.6a.78.78 0 01-1.264.43L8.5 14.77a.764.764 0 00-1 0l-1.23 1.045a.78.78 0 01-1.264-.43l-.408-1.6a.8.8 0 00-.808-.614l-1.582.089a.822.822 0 01-.782-1.125L2 10.589a.849.849 0 00-.309-.993l-1.33-.9a.849.849 0 010-1.39l1.33-.9A.849.849 0 002 5.411l-.57-1.546a.822.822 0 01.782-1.125l1.582.089a.8.8 0 00.808-.614l.408-1.6a.78.78 0 011.264-.43L7.5 1.23a.764.764 0 001 0Z"/><path fill="none" stroke="currentColor" d="M8 3.5A2.5 2.5 0 115.5 6 2.5 2.5 0 018 3.5Z"/><path fill="none" stroke="currentColor" stroke-linejoin="round" d="M5.501 12.001a2.5 2.5 0 012.5-2.5 2.5 2.5 0 012.5 2.5"/>',
1690
+ width: 16.001,
1691
+ height: 16.001
1692
+ },
1693
+ "video-off": {
1694
+ body: '<g fill="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M15.46 10.498a.074.074 0 01-.04-.011l-3.88-2.489 3.88-2.488a.073.073 0 01.04-.012c.017 0 .031.005.04.01v4.981a.093.093 0 01-.04.01Z"/><path d="m15 6.373-2.534 1.625L15 9.624V6.373m.46-1.375c.28 0 .54.2.54.484v5.032c0 .393-.494.622-.85.394L11.225 8.39a.455.455 0 010-.785l3.925-2.517a.573.573 0 01.31-.09Z"/></g><path fill="currentColor" d="M10 13H5.119l1-1h3.877a1 1 0 001-1V7.125l1-1v4.879A2 2 0 0110 13Zm-8.905-.217A1.99 1.99 0 01.002 11V5a2 2 0 012-2h8a1.969 1.969 0 01.74.141l-.857.857H2.001a1 1 0 00-1 1v6a1 1 0 00.889.992l-.793.791Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M1 15 15 1"/>'
1695
+ },
1696
+ "video-on": {
1697
+ body: '<g fill="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M15.46 10.5a.074.074 0 01-.04-.012l-3.88-2.489 3.88-2.488a.073.073 0 01.04-.012c.017 0 .031.005.04.01v4.981a.093.093 0 01-.04.01Z"/><path d="m15 6.374-2.534 1.625L15 9.625V6.374m.46-1.375c.28 0 .54.2.54.484v5.032c0 .393-.494.622-.85.394l-3.925-2.517a.455.455 0 010-.785L15.15 5.09a.573.573 0 01.31-.09Z"/></g><g fill="none" stroke="currentColor" transform="translate(0 3)"><rect width="12" height="10" rx="2" stroke="none"/><rect width="11" height="9" x=".5" y=".5" rx="1.5"/></g>'
1698
+ },
1699
+ "video-rec": {
1700
+ body: '<g transform="translate(1.333 3.334)"><g fill="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M14.127 7.164a.074.074 0 01-.04-.011l-3.88-2.489 3.88-2.488a.073.073 0 01.04-.012c.017 0 .031.005.04.01v4.981a.093.093 0 01-.04.01Z"/><path d="m13.667 3.039-2.534 1.625 2.534 1.626V3.039m.46-1.375c.28 0 .54.2.54.484V7.18c0 .393-.494.622-.85.394L9.892 5.057a.455.455 0 010-.785l3.925-2.517a.573.573 0 01.31-.09Z"/></g><g fill="none" stroke="currentColor" transform="translate(-1.333 -.335)"><rect width="12" height="10" rx="2" stroke="none"/><rect width="11" height="9" x=".5" y=".5" rx="1.5"/></g><circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(-.333 -1.333)"/></g>'
1701
+ },
1702
+ view: {
1703
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M6.001 15a2 2 0 01-2-2v-2h-2a2 2 0 01-2-2V3a2 2 0 012-2h8a2 2 0 012 2v2h2a2 2 0 012 2v6a2 2 0 01-2 2Z"/><path fill="currentColor" d="M14.003 14a1 1 0 00.999-.998V7a1 1 0 00-.999-.998h-3.004v-3c0-.553-.448-1.004-.999-1.004H1.999c-.55 0-.999.451-.999 1.004v5.996c0 .55.448 1 .999 1h3.004v3.004a1 1 0 00.999.998h8.001m0 1H6.002a1.996 1.996 0 01-1.999-1.998v-2.004H1.999a1.997 1.997 0 01-1.999-2V3.002C0 1.895.897.998 1.999.998H10c1.104 0 1.999.897 1.999 2.004v2h2.004c1.103 0 1.999.894 1.999 1.998v6.002A1.999 1.999 0 0114.003 15Z"/><g stroke="currentColor" transform="translate(.001 1)"><rect width="12" height="10" rx="2" stroke="none"/><rect width="11" height="9" x=".5" y=".5" rx="1.5"/></g></g>',
1704
+ width: 16.002
1705
+ },
1706
+ "view-card": {
1707
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><g transform="translate(0 4)"><rect width="9" height="8" rx="1" stroke="none"/><rect width="8" height="7" x=".5" y=".5" rx=".5"/></g><g transform="translate(11 4)"><rect width="5" height="5" rx="1" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx=".5"/></g></g>'
1708
+ },
1709
+ "view-list": {
1710
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><g transform="translate(0 2)"><rect width="5" height="5" rx="1" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx=".5"/></g><g transform="translate(0 9)"><rect width="5" height="5" rx="1" stroke="none"/><rect width="4" height="4" x=".5" y=".5" rx=".5"/></g><path stroke-linecap="round" d="M7.501 5.5h5m-5 7h5M7.5 3.5h8m-8 7h8"/></g>'
1711
+ },
1712
+ "voice-off": {
1713
+ body: '<path fill="currentColor" d="M8.001 11a3.035 3.035 0 01-.776-.1l.9-.9a2 2 0 001.871-1.871l1-1v.877A3 3 0 018.001 11Zm-2.9-2.221a3.029 3.029 0 01-.1-.775v-5a3 3 0 016-.119l-1 1V3a2 2 0 10-4 0v4.877l-.9.9Z"/><path fill="currentColor" d="M8.001 13a5.58 5.58 0 01-2.36-.52l.764-.764a4.561 4.561 0 001.6.281c2.2 0 4-1.514 4-3.375V7.499a.5.5 0 011 0v1.123C13 11.035 10.758 13 8.001 13Zm-4.555-2.568a3.865 3.865 0 01-.447-1.807V7.502a.5.5 0 011 0v1.123a2.889 2.889 0 00.2 1.055l-.752.752Z"/><path fill="none" stroke="currentColor" stroke-miterlimit="10" d="M8 12v3"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M4.5 15.5h7"/><path fill="none" stroke="currentColor" stroke-linecap="round" d="M1 15 15 1"/>'
1714
+ },
1715
+ "voice-on": {
1716
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><g transform="translate(5)"><rect width="6" height="11" rx="3" stroke="none"/><rect width="5" height="10" x=".5" y=".5" rx="2.5"/></g><path stroke-linecap="round" d="M12.5 7.5v1.123c0 2.141-2.015 3.877-4.5 3.877h0c-2.485 0-4.5-1.736-4.5-3.877V7.5"/><path d="M8 12v3"/><path stroke-linecap="round" d="M4.5 15.5h7"/></g>',
1717
+ height: 16.001
1718
+ },
1719
+ "volume-down": {
1720
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M14.503 5.499a3.69 3.69 0 010 5"/><g stroke-linejoin="round"><path d="M0 9.491c0 1.054.425 1.5 1.429 1.5h2.857a.811.811 0 01.552.222l3.746 2.563a.86.86 0 001.417-.744V2.969a.86.86 0 00-1.417-.744L4.838 4.764a.811.811 0 01-.552.222H1.429c-1 0-1.429.458-1.429 1.5Z"/><path fill="currentColor" d="M9 12.851v-9.7L5.45 5.558a1.81 1.81 0 01-1.164.429H1.428c-.24 0-.34.038-.363.05-.014.026-.065.145-.065.451v3.003c0 .304.047.423.062.454.028.012.127.048.366.048h2.857c.426 0 .836.152 1.166.43L9 12.852m.13 1.15a.8.8 0 01-.547-.223l-3.746-2.563a.811.811 0 00-.552-.222H1.428C.425 10.993 0 10.545 0 9.491V6.488c0-1.044.43-1.501 1.428-1.501h2.858a.811.811 0 00.551-.223l3.746-2.54C9.147 1.705 10 2.153 10 2.97v10.065c0 .574-.423.967-.87.967Z"/></g></g>',
1721
+ width: 16.147
1722
+ },
1723
+ "volume-off": {
1724
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="m12.5 9.504 3-3m-3 0 3 3"/><g stroke-linejoin="round"><path d="M0 9.492c0 1.054.425 1.5 1.429 1.5h2.857a.811.811 0 01.552.222l3.746 2.563a.86.86 0 001.417-.744V2.97a.86.86 0 00-1.417-.744L4.838 4.765a.811.811 0 01-.552.222H1.429c-1 0-1.429.458-1.429 1.5Z"/><path fill="currentColor" d="M9 12.852v-9.7L5.45 5.559a1.81 1.81 0 01-1.164.429H1.428c-.24 0-.34.038-.363.05-.014.026-.065.145-.065.451v3.003c0 .304.047.423.062.454.028.012.127.048.366.048h2.857c.426 0 .836.152 1.166.43L9 12.852m.13 1.15a.8.8 0 01-.547-.223l-3.746-2.563a.811.811 0 00-.552-.222H1.428C.425 10.994 0 10.546 0 9.492V6.49c0-1.044.43-1.501 1.428-1.501h2.858a.811.811 0 00.551-.223l3.746-2.54c.564-.52 1.417-.072 1.417.745v10.065c0 .574-.423.967-.87.967Z"/></g></g>',
1725
+ width: 16.207
1726
+ },
1727
+ "volume-up": {
1728
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M11.5 5.499a3.69 3.69 0 010 5m3-6a6.709 6.709 0 010 7"/><g stroke-linejoin="round"><path d="M0 9.488c0 1.054.425 1.5 1.429 1.5h2.857a.811.811 0 01.552.222l3.746 2.563a.86.86 0 001.417-.744V2.966a.86.86 0 00-1.417-.744L4.838 4.761a.811.811 0 01-.552.222H1.429c-1 0-1.429.458-1.429 1.5Z"/><path fill="currentColor" d="M9 12.848v-9.7L5.45 5.555a1.81 1.81 0 01-1.164.429H1.428c-.24 0-.34.038-.363.05C1.05 6.06 1 6.179 1 6.485v3.003c0 .304.047.423.062.454.028.012.127.048.366.048h2.857c.426 0 .836.152 1.166.43L9 12.849m.13 1.15a.8.8 0 01-.547-.223l-3.746-2.563a.811.811 0 00-.552-.222H1.428C.425 10.99 0 10.542 0 9.488V6.485c0-1.044.43-1.501 1.428-1.501h2.858a.811.811 0 00.551-.223l3.746-2.54C9.147 1.702 10 2.15 10 2.967v10.065c0 .574-.423.967-.87.967Z"/></g></g>',
1729
+ width: 16.132
1730
+ },
1731
+ warning: {
1732
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8 4.5v4m0 4v-1"/><g fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M6.863 1.649a1.324 1.324 0 012.277 0l3.341 5.7 3.342 5.7a1.3 1.3 0 01-1.138 1.944H1.318A1.3 1.3 0 01.18 13.049l3.342-5.7Z"/><path fill="currentColor" d="M8.001 2.001c-.07 0-.197.02-.275.153L1.043 13.562a.27.27 0 00-.002.283.305.305 0 00.277.156h13.366a.305.305 0 00.277-.156.269.269 0 00-.001-.282L8.277 2.154A.308.308 0 008 2.001m0-1c.443 0 .886.216 1.138.648l6.684 11.408c.505.864-.127 1.944-1.139 1.944H1.318c-1.012 0-1.644-1.08-1.138-1.944L6.863 1.65A1.306 1.306 0 018 1Z"/></g>'
1733
+ },
1734
+ webinar: {
1735
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10"><path d="M11.5 8.999a1.5 1.5 0 11.439 1.06 1.5 1.5 0 01-.439-1.06Zm-5 0a1.5 1.5 0 11.439 1.06 1.5 1.5 0 01-.439-1.06Zm2.5 5a1.5 1.5 0 11.439 1.06A1.5 1.5 0 019 13.999Zm-7.5-5a1.5 1.5 0 11.439 1.06 1.5 1.5 0 01-.439-1.06Zm2.5 5a1.5 1.5 0 11.439 1.06A1.5 1.5 0 014 13.999Z"/><path stroke-linecap="round" d="M.501 6.5V1.7C.501.953 1.13.5 2.168.5h11.666c1.037 0 1.667.453 1.667 1.2v4.8"/></g>'
1736
+ },
1737
+ whiteboard: {
1738
+ body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" d="M2 15.5 4 11m4 4.5V11m6 4.5L12 11"/><g stroke-miterlimit="10"><rect width="16" height="11" rx="2" stroke="none"/><rect width="15" height="10" x=".5" y=".5" rx="1.5"/></g><path d="M3.5 6.499c1-.754 2.514-2.5 4.5-2.5-.844 2.822 2 4.8 4.5 2.5"/></g>',
1739
+ height: 16.16
1740
+ },
1741
+ wine: {
1742
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round"><path stroke-linecap="round" d="M12.493 10.983c3.323-1.346 1.5-6.981 1.5-6.981h-5s-1.819 5.636 1.5 6.981a2 2 0 00.438.014h1.162a1.713 1.713 0 00.4-.014Zm-.993.02v4m1.999.5h-4"/><path d="M2.5 15.501c-1 0-1 0-1-1V7.168c.012-.265 0-.833 0-.833l1-2.334v-3.5h3v3.5l1 2.333c.008.008-.013.568 0 .833v7.334c0 1 0 1-1 1Z"/><path d="M1.501 8.502h3v4h-3z"/></g>',
1743
+ height: 16.002
1744
+ },
1745
+ zip: {
1746
+ body: '<g fill="none"><path d="M12.001 11.999a1 1 0 101 1 1 1 0 00-1-1Z"/><path fill="currentColor" d="M12.001 11.999a1 1 0 11-.001 2 1 1 0 010-2Z"/></g><path fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M6.501.5v5m-3-5v5m-3-5v5"/><g fill="none" stroke="currentColor" stroke-miterlimit="10" transform="translate(9.001)"><rect width="6" height="6" rx="1" stroke="none"/><rect width="5" height="5" x=".5" y=".5" rx=".5"/></g><path fill="none" stroke="currentColor" stroke-linejoin="round" d="M11.918 15.498a2.715 2.715 0 01-2.918-3l1-5h4l1 5a2.716 2.716 0 01-2.918 3Z"/>'
1747
+ },
1748
+ "zoom-in": {
1749
+ body: '<g stroke="currentColor" stroke-miterlimit="10"><path fill="currentColor" stroke-linecap="round" d="m9 9.001 6 6"/><g fill="none"><circle cx="5.5" cy="5.5" r="5.5" stroke="none"/><circle cx="5.5" cy="5.5" r="5"/></g><path fill="none" stroke-linecap="round" d="M2.501 5.5h6m-3-3v6"/></g>'
1750
+ },
1751
+ "zoom-out": {
1752
+ body: '<g stroke="currentColor" stroke-miterlimit="10"><path fill="currentColor" stroke-linecap="round" d="m9 9 6 6"/><g fill="none"><circle cx="5.5" cy="5.5" r="5.5" stroke="none"/><circle cx="5.5" cy="5.5" r="5"/></g></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" d="M2.5 5.5h6"/>'
1753
+ }
1754
+ }, W0 = {
1755
+ prefix: x0,
1756
+ lastModified: Z0,
1757
+ icons: A0
1758
+ }, H0 = "normal", V0 = 1668011046, j0 = {
1759
+ add: {
1760
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 12h16m-8-8v16"/>'
1761
+ },
1762
+ "add-circle": {
1763
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g><path stroke-linecap="round" d="M9 12h6m-3-3v6"/></g>'
1764
+ },
1765
+ "align-center": {
1766
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 10H7m13-4H4m16 8H4m13 4H7"/>'
1767
+ },
1768
+ "align-justify": {
1769
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 10H4m16-4H4m16 8H4m16 4H4"/>'
1770
+ },
1771
+ "align-left": {
1772
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 10H4m16-4H4m16 8H4m12 4H4"/>'
1773
+ },
1774
+ "align-right": {
1775
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 10H8m12-4H4m16 8H4m16 4H8"/>'
1776
+ },
1777
+ analysis: {
1778
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(2 13)"><rect width="5" height="9" rx="2" stroke="none"/><rect width="3" height="7" x="1" y="1" rx="1"/></g><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(9 4)"><rect width="6" height="18" rx="2" stroke="none"/><rect width="4" height="16" x="1" y="1" rx="1"/></g><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(17 9)"><rect width="5" height="13" rx="2" stroke="none"/><rect width="3" height="11" x="1" y="1" rx="1"/></g>'
1779
+ },
1780
+ "analysis-2": {
1781
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M12.515 3.973a.478.478 0 00-.335.139.476.476 0 00-.139.336v7.564h-7.57a.478.478 0 00-.335.139.475.475 0 00-.14.335A8.514 8.514 0 0012.51 21a8.513 8.513 0 008.514-8.514 8.512 8.512 0 00-8.509-8.513Z"/><path fill="currentColor" d="M14.04 6.153v7.859H6.182A6.524 6.524 0 0012.515 19a6.521 6.521 0 006.513-6.514c0-3.066-2.13-5.644-4.987-6.333m-1.526-2.18a8.512 8.512 0 018.513 8.513 8.514 8.514 0 01-17.027 0 .475.475 0 01.475-.474h7.565V4.448a.476.476 0 01.474-.475Z"/></g><g fill="none" stroke-miterlimit="10"><path d="M9.866 9.865A.463.463 0 0010 9.54V2.461a.465.465 0 00-.134-.326.463.463 0 00-.325-.134 7.541 7.541 0 00-7.54 7.54.464.464 0 00.135.325.463.463 0 00.325.134h7.08a.463.463 0 00.325-.135Z"/><path fill="currentColor" d="M8 8V4.217a5.564 5.564 0 00-3.782 3.781H8m1.54 2H2.46A.463.463 0 012 9.54 7.54 7.54 0 019.54 2c.121 0 .24.049.326.134A.465.465 0 0110 2.46v7.08c0 .12-.049.24-.134.325a.463.463 0 01-.326.134Z"/></g>'
1782
+ },
1783
+ "analysis-3": {
1784
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-linejoin="round" d="m3 18 7-7 2 2 4-4"/><path stroke-miterlimit="10" d="M21 18H3V6"/></g>'
1785
+ },
1786
+ apple: {
1787
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M12.011 21.212a4.412 4.412 0 01.909.112 4.909 4.909 0 01.909.362l.021.01c.112.054.228.11.347.161a1.525 1.525 0 00.616.144 2.3 2.3 0 00.953-.287 4.053 4.053 0 001.513-1.3 12.933 12.933 0 001.664-2.823c.088-.2.155-.363.212-.515a10.364 10.364 0 00.6-6.312 4.877 4.877 0 00-1.936-2.9.442.442 0 01-.042-.03 3.294 3.294 0 00-.666-.418 4 4 0 00-1.738-.41h-.1a5.715 5.715 0 00-1.978.524l-.391.152c-.17.065-.566.2-.57.2a.453.453 0 01-.156.027h-.138a.163.163 0 00-.029 0h-.198a.458.458 0 01-.155-.027s-.4-.14-.571-.206l-.386-.15a5.759 5.759 0 00-1.983-.525h-.107a4.04 4.04 0 00-1.729.411 3.322 3.322 0 00-.668.419.388.388 0 01-.04.029 4.96 4.96 0 00-1.924 2.855 10.361 10.361 0 00.578 6.322c.084.222.159.4.228.551a12.881 12.881 0 001.663 2.823 4.023 4.023 0 001.459 1.28A2.507 2.507 0 009.189 22a1.53 1.53 0 00.611-.142c.117-.05.231-.1.341-.158l.021-.01a5.022 5.022 0 01.917-.365 4.2 4.2 0 01.915-.112h.016Z"/><path fill="currentColor" d="M9.175 19.945c.03-.013.058-.028.087-.041l.05-.025c.335-.16.751-.358 1.269-.492a6.149 6.149 0 011.353-.174h.147a6.31 6.31 0 011.338.174c.524.135.942.336 1.278.497l.042.02.085.041.125-.056c.183-.082.375-.231.764-.721.52-.654.991-1.458 1.402-2.388a7.88 7.88 0 00.17-.412l.017-.048.021-.046c1.117-2.562.511-4.977.505-4.999l-.014-.054-.011-.055c-.204-.984-.998-1.577-1.077-1.634a2.355 2.355 0 01-.154-.11l-.062-.049a2.012 2.012 0 00-1.13-.371h-.05c-.322.008-.683.144-1.295.385l-.41.16c-.18.068-.521.188-.612.22a2.449 2.449 0 01-.827.143h-.373c-.285 0-.564-.048-.83-.144l-.03-.01a32.244 32.244 0 01-.578-.21l-.015-.005-.391-.153c-.613-.24-.977-.377-1.3-.386L8.611 9c-.265 0-.584.078-.856.211-.113.054-.2.108-.269.163a2.4 2.4 0 01-.186.14c-.072.052-.902.676-1.09 1.6l-.011.053-.014.053c-.026.1-.63 2.482.476 5.017l.02.046.018.048c.067.178.128.317.183.442l.004.009c.408.927.88 1.73 1.4 2.385.327.412.54.622.71.698l.005.002c.055.025.117.053.174.077M14.815 22c-.194 0-.39-.046-.617-.144-.119-.05-.235-.106-.347-.16l-.021-.01c-.284-.137-.577-.277-.91-.363a4.413 4.413 0 00-.909-.112h-.016a4.198 4.198 0 00-.915.112c-.334.086-.629.228-.917.365l-.021.01c-.11.054-.224.108-.341.158a1.53 1.53 0 01-.612.143c-.323 0-.61-.13-1.011-.31-.57-.256-.997-.697-1.459-1.279-.626-.788-1.186-1.739-1.663-2.823a9.693 9.693 0 01-.228-.55c-1.353-3.103-.66-6.01-.578-6.323.363-1.778 1.855-2.807 1.925-2.854a.388.388 0 00.04-.03c.191-.157.41-.294.668-.419a4.04 4.04 0 011.835-.41c.691.018 1.29.253 1.983.525l.385.15c.175.066.57.206.572.206a.447.447 0 00.155.027h.147l.03-.004.021.001a.13.13 0 01.029.003h.146a.453.453 0 00.156-.027c.004-.002.4-.14.57-.205l.39-.152c.693-.272 1.29-.507 1.978-.524h.1c.584 0 1.185.141 1.737.41.258.125.476.262.666.418.013.01.027.022.042.03.015.01 1.543.998 1.936 2.901.05.191.785 3.126-.605 6.312a9.845 9.845 0 01-.212.515c-.479 1.085-1.039 2.035-1.664 2.823-.462.582-.895 1.027-1.513 1.303-.37.167-.637.287-.953.287Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12.09 8s-.5-2.968.913-4m-.007 8.001s2.075 1.039 2 3"/></g>'
1788
+ },
1789
+ "arrow-down": {
1790
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m6.001 14 6 6 6-6m-6 4V4"/>'
1791
+ },
1792
+ "arrow-left": {
1793
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m10.001 6-6 6 6 6m-4-6h14"/>'
1794
+ },
1795
+ "arrow-right": {
1796
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m14 18.001 6-6-6-6m4 6H4"/>'
1797
+ },
1798
+ "arrow-up": {
1799
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m18 10-6-6-6 6m6-4v14"/>'
1800
+ },
1801
+ attachment: {
1802
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m21 11.439-8.51 8.025a5.8 5.8 0 01-7.862 0 5.035 5.035 0 010-7.414l8.51-8.026a3.867 3.867 0 015.242 0 3.357 3.357 0 010 4.943l-8.52 8.025a1.931 1.931 0 01-2.62 0 1.676 1.676 0 010-2.471l7.862-7.406"/>'
1803
+ },
1804
+ "back-to-front": {
1805
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M8 6H5a1.881 1.881 0 00-1.5.5A1.883 1.883 0 003 8v8a1.886 1.886 0 00.5 1.5A1.881 1.881 0 005 18h14a1.881 1.881 0 001.5-.5A1.881 1.881 0 0021 16V8a1.881 1.881 0 00-.5-1.5A1.881 1.881 0 0019 6h-3"/><g fill="none" stroke-miterlimit="10"><path d="M8.635 19h6.724l.575 1.062c.245.452-.224.938-.906.938H8.971c-.68 0-1.149-.484-.907-.936Z"/><path fill="currentColor" d="M8.635 19h6.724l.575 1.062c.245.452-.224.938-.906.938H8.971c-.68 0-1.149-.484-.907-.936L8.635 19Z"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m16.999 3-3 3 3 3"/>'
1806
+ },
1807
+ bell: {
1808
+ body: '<path fill="currentColor" d="M10 19.106A1.949 1.949 0 0012 21a1.949 1.949 0 002-1.894V19h-4Z"/><g fill="none" stroke-miterlimit="10"><path d="M13.514 2.21a5.68 5.68 0 014.407 5.431v3.016a6.969 6.969 0 002.652 5.533l.128.106a.974.974 0 01.3.7 1.036 1.036 0 01-1.062 1.007H4.062A1.036 1.036 0 013 16.996a.974.974 0 01.3-.7l.128-.106a6.97 6.97 0 002.654-5.532V7.641a5.668 5.668 0 014.25-5.389 5.843 5.843 0 013.182-.042Z"/><path fill="currentColor" d="M12.092 4c-.586 0-1.084.138-1.154.158l-.018.006-.054.015C9.226 4.636 8.08 6.06 8.08 7.641v3.017c0 1.398-.296 2.72-.878 3.928A8.865 8.865 0 016.35 16h11.3a8.87 8.87 0 01-.852-1.414 8.978 8.978 0 01-.878-3.928V7.64c0-1.629-1.189-3.064-2.892-3.49l-.07-.018-.068-.022a2.582 2.582 0 00-.798-.11m0-2c.451 0 .944.054 1.422.21 2.536.635 4.406 2.826 4.406 5.431v3.017c0 2.207.927 4.11 2.654 5.532l.128.106c.184.18.298.425.298.697 0 .556-.476 1.007-1.062 1.007H4.062C3.476 18 3 17.55 3 16.993c0-.272.114-.517.298-.697l.128-.106c1.727-1.421 2.654-3.325 2.654-5.532V7.64c0-2.55 1.794-4.704 4.25-5.388 0 0 .783-.253 1.762-.253Z"/></g>'
1809
+ },
1810
+ "bell-active": {
1811
+ body: '<g fill="currentColor"><path d="M10 19.106A1.949 1.949 0 0012 21a1.949 1.949 0 002-1.894V19h-4Z"/><g stroke-miterlimit="10"><path d="M19.938 17H4.062a.11.11 0 01-.039-.007l.037-.03c1.976-1.626 3.02-3.806 3.02-6.305V7.64c0-1.008.34-1.965.984-2.769a4.975 4.975 0 012.534-1.656l.02-.005.019-.007A5.459 5.459 0 0112.092 3c.412 0 .786.054 1.11.16l.034.011.035.01c2.149.537 3.65 2.372 3.65 4.46v3.017c0 2.499 1.043 4.679 3.018 6.304l.038.031a.11.11 0 01-.039.007Z"/><path d="M12.092 4c-.586 0-1.084.138-1.154.158l-.018.006-.054.015C9.226 4.636 8.08 6.06 8.08 7.641v3.017c0 1.398-.296 2.72-.878 3.928A8.864 8.864 0 016.35 16h11.3a8.87 8.87 0 01-.852-1.414 8.978 8.978 0 01-.878-3.928V7.64c0-1.629-1.189-3.064-2.892-3.49l-.07-.018-.068-.022a2.582 2.582 0 00-.798-.11m0-2c.451 0 .944.054 1.422.21 2.536.635 4.406 2.826 4.406 5.431v3.017c0 2.207.927 4.11 2.654 5.532l.128.106a.97.97 0 01.298.696C21 17.55 20.524 18 19.938 18H4.062C3.476 18 3 17.55 3 16.992c0-.27.114-.516.298-.696l.128-.106c1.727-1.421 2.654-3.325 2.654-5.532V7.64c0-2.55 1.794-4.704 4.25-5.388 0 0 .783-.253 1.762-.253Z"/></g></g>'
1812
+ },
1813
+ bold: {
1814
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 4.999h6.722a3.5 3.5 0 010 7H7Zm0 7h7.615a3.5 3.5 0 010 7H7Z"/>'
1815
+ },
1816
+ bookmark: {
1817
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M7 4.526v16.24a.257.257 0 00.439.159l4.436-4.351a.18.18 0 01.249 0l4.437 4.351a.257.257 0 00.439-.159V4.526a1.6 1.6 0 00-1.664-1.527H8.664A1.6 1.6 0 007 4.526Z"/><path fill="currentColor" d="M9 4.999v11.594l1.472-1.445A2.17 2.17 0 0112 14.524c.576 0 1.119.222 1.525.622L15 16.593V5H9m-.336-2h6.672C16.255 3 17 3.684 17 4.527v16.24c0 .211-.282.314-.44.16l-4.436-4.352a.18.18 0 00-.249 0l-4.436 4.351c-.157.155-.439.052-.439-.159V4.526C7 3.683 7.745 3 8.664 3Z"/></g>'
1818
+ },
1819
+ "bookmark-active": {
1820
+ body: '<g fill="currentColor" stroke-miterlimit="10"><path d="m16 18.977-3.176-3.115a1.169 1.169 0 00-.824-.336c-.313 0-.606.12-.827.338L8 18.976V4.528c0-.285.304-.527.664-.527h6.672c.36 0 .664.242.664.527v14.449Z"/><path d="M9 5.001v11.594l1.472-1.445A2.17 2.17 0 0112 14.526c.576 0 1.119.222 1.525.622L15 16.595V5.001H9m-.336-2h6.672c.919 0 1.664.684 1.664 1.527v16.24c0 .211-.282.314-.44.16l-4.436-4.352a.18.18 0 00-.249 0l-4.436 4.351c-.157.155-.439.052-.439-.159V4.528c0-.843.745-1.527 1.664-1.527Z"/></g>'
1821
+ },
1822
+ building: {
1823
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M4 21h16M14 4V3h-4v1"/><path stroke-linecap="round" d="M12 21v-3M9 9h1m-1 4h1m4-4h1m-1 4h1"/><g transform="translate(5 4)"><rect width="14" height="18" rx="2" stroke="none"/><rect width="12" height="16" x="1" y="1" rx="1"/></g></g>'
1824
+ },
1825
+ "bulleted-list": {
1826
+ body: '<path fill="none" d="M0 0h24v24H0z"/><g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M8 15.998h5m-5-3.999h12M8 8h8"/><g transform="translate(4.95 6.924) translate(-1.95 .076)"><circle cx="1" cy="1" r="1" stroke="none"/><circle cx="1" cy="1" r=".5"/></g><g transform="translate(4.95 6.924) translate(-1.95 4.076)"><circle cx="1" cy="1" r="1" stroke="none"/><circle cx="1" cy="1" r=".5"/></g><g transform="translate(4.95 6.924) translate(-1.95 8.076)"><circle cx="1" cy="1" r="1" stroke="none"/><circle cx="1" cy="1" r=".5"/></g></g>'
1827
+ },
1828
+ calendar: {
1829
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M8 3v2m8-2v2M3 8h18M7 12h2m-2 4h2m6-4h2m-2 4h2"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(2 3)"><rect width="20" height="18" rx="3" stroke="none"/><rect width="18" height="16" x="1" y="1" rx="2"/></g>'
1830
+ },
1831
+ "camera-off": {
1832
+ body: '<path fill="currentColor" d="M3.293 19.278a.986.986 0 00-.218.328 1 1 0 01.218-.328M20 8.228v9.721a.251.251 0 01-.052.051h-9.72l-2 2H20a2.087 2.087 0 002-2V8a1.958 1.958 0 00-.506-1.266ZM4 15.743V8.051A.251.251 0 014.052 8h2.776l2-2h4.566l.21.14 1.442-1.44L14 4H8L6 6H4a2.087 2.087 0 00-2 2v9.743Z"/><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" d="M10.617 9.126a3.487 3.487 0 00-2.491 2.491m4.215 4.269a3.486 3.486 0 002.545-2.545"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 20 20 4"/>'
1833
+ },
1834
+ "camera-on": {
1835
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M20 6h-3l-3-2H8L6 6H4a2.087 2.087 0 00-2 2v10a2.087 2.087 0 002 2h16a2.087 2.087 0 002-2V8a2.087 2.087 0 00-2-2Z"/><path fill="currentColor" d="m8.828 6-2 2H4.052A.235.235 0 004 8.051v9.898a.234.234 0 00.052.051h15.896a.235.235 0 00.052-.05v-9.9a.235.235 0 00-.052-.05h-3.554l-3-2H8.828M8 4h6l3 2h3c1.034 0 1.998.947 2 2v10c-.002 1.05-.966 1.997-2 2H4c-1.034-.003-1.998-.95-2-2V8c.002-1.053.966-2 2-2h2l2-2Z"/><g stroke="currentColor" stroke-width="2" transform="translate(7 8)"><circle cx="4.5" cy="4.5" r="4.5" stroke="none"/><circle cx="4.5" cy="4.5" r="3.5"/></g></g>'
1836
+ },
1837
+ catalog: {
1838
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10"><path d="M7 2h11a1 1 0 011 1v18a1 1 0 01-1 1H7a3 3 0 01-3-3V5a3 3 0 013-3Z" stroke="none"/><path d="M7 3h11v18H7a2 2 0 01-2-2V5a2 2 0 012-2Z"/></g><path stroke-linecap="round" stroke-miterlimit="10" d="M9.001 11h5m-5 4h2"/><path d="M5 7h13"/></g>'
1839
+ },
1840
+ certificate: {
1841
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-miterlimit="22.926" d="M12.002 2.999a6 6 0 11-6 6 6 6 0 016-6Z"/><path stroke-miterlimit="22.926" d="M12 7.002a2 2 0 11-2 2 2 2 0 012-2Z"/><path stroke-linecap="round" stroke-linejoin="round" d="M6.758 13.292 4 18.411h1.964l.793 1.428H8.37L9.204 21l2.759-4.378L14.722 21l1.015-1.161h1.474l1.048-1.428 1.741.018L17.211 13"/></g>'
1842
+ },
1843
+ chat: {
1844
+ body: '<path fill="none" stroke="currentColor" stroke-width="2" d="M10.997 15.998h-2c-3.391 0-6-1.906-6-5s2.609-5 6-5h6c3.391 0 6 1.918 6 5s-3.021 5-6 5l-1 3Z"/>'
1845
+ },
1846
+ check: {
1847
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m6.996 12 4 4 7-7"/>'
1848
+ },
1849
+ "check-badge": {
1850
+ body: '<path fill="currentColor" d="m12.624 3.539 1.537-1.306a.975.975 0 011.58.537l.509 2a1 1 0 001.009.768l1.977-.112a1.028 1.028 0 01.977 1.406L19.5 8.765a1.061 1.061 0 00.386 1.242l1.662 1.125a1.061 1.061 0 010 1.738l-1.662 1.126a1.061 1.061 0 00-.386 1.24l.713 1.932a1.028 1.028 0 01-.977 1.406l-1.977-.112a1 1 0 00-1.009.768l-.509 2a.975.975 0 01-1.58.537l-1.537-1.306a.955.955 0 00-1.248 0l-1.537 1.306a.975.975 0 01-1.58-.537l-.509-2a1 1 0 00-1.009-.768l-1.977.112a1.028 1.028 0 01-.977-1.406l.713-1.932a1.061 1.061 0 00-.386-1.242l-1.662-1.125a1.061 1.061 0 010-1.738l1.662-1.125A1.061 1.061 0 004.5 8.765l-.713-1.932a1.028 1.028 0 01.977-1.406l1.977.112a1 1 0 001.009-.768l.509-2a.975.975 0 011.58-.537l1.537 1.306a.955.955 0 001.248-.001Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 12 2 2 4-4"/>'
1851
+ },
1852
+ "check-circle": {
1853
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m9 12 2 2 4-4"/></g>'
1854
+ },
1855
+ checkbox: {
1856
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(2 2)"><rect width="20" height="20" rx="3" stroke="none"/><rect width="18" height="18" x="1" y="1" rx="2"/></g>'
1857
+ },
1858
+ "chevron-down": {
1859
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m6 10 6 6 6-6"/>'
1860
+ },
1861
+ "chevron-down-circle": {
1862
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m8 11 4 4 4-4"/></g>'
1863
+ },
1864
+ "chevron-left": {
1865
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m15 6-6 6 6 6"/>'
1866
+ },
1867
+ "chevron-left-circle": {
1868
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m14 8-4 4 4 4"/></g>'
1869
+ },
1870
+ "chevron-right": {
1871
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 18 6-6-6-6"/>'
1872
+ },
1873
+ "chevron-right-circle": {
1874
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m10.187 8 3.814 4.1-4 3.9"/></g>'
1875
+ },
1876
+ "chevron-up": {
1877
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m18 16-6-6-6 6"/>'
1878
+ },
1879
+ "chevron-up-circle": {
1880
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m8 14 4-4 4 4"/></g>'
1881
+ },
1882
+ classroom: {
1883
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M3 10h18M3 21h18"/><path stroke="currentColor" stroke-width="2" d="M6 8.999a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M6 3.999a2 2 0 11.586 1.414A2 2 0 016 3.999Z"/><path fill="currentColor" d="M8 1.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 018 5.999a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 018 1.999Z"/></g><path stroke="currentColor" stroke-width="2" d="M10 19.999a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M10 14.999a2 2 0 11.586 1.414A2 2 0 0110 14.999Z"/><path fill="currentColor" d="M12 12.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0112 12.999Z"/></g><path stroke="currentColor" stroke-width="2" d="M14 8.999a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M14 3.999a2 2 0 11.586 1.414A2 2 0 0114 3.999Z"/><path fill="currentColor" d="M16 1.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 0116 5.999a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0116 1.999Z"/></g></g>'
1884
+ },
1885
+ "clear-field": {
1886
+ body: '<g stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(3 3)"><circle cx="9" cy="9" r="9" fill="currentColor" stroke="none"/><circle cx="9" cy="9" r="8" fill="none"/></g><path fill="none" stroke-linecap="round" d="m9 15 6-6M9 9l6 6"/></g>'
1887
+ },
1888
+ "clear-style": {
1889
+ body: '<defs><clipPath id="svgIDa"><path stroke="rgba(0,0,0,0)" d="M0 0h10v16H0z"/></clipPath></defs><g fill="currentColor" stroke="rgba(0,0,0,0)" clip-path="url(#svgIDa)" transform="translate(5 4)"><path d="M1 4a1 1 0 001-1h4v1.758L9.758 1H2a1 1 0 00-2 0v2a1 1 0 001 1m8 10H8v-2.758l-2 2V14h-.758l-1.2 1.2A.985.985 0 005 16h4a1 1 0 000-2"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 20 20 4"/>'
1890
+ },
1891
+ close: {
1892
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M6 18 18 6M6 6l12 12"/>'
1893
+ },
1894
+ "close-circle": {
1895
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g><path stroke-linecap="round" d="m10 14 4-4m-4 0 4 4"/></g>'
1896
+ },
1897
+ "close-loader": {
1898
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="m9 15 6-6M9 9l6 6"/>'
1899
+ },
1900
+ coffee: {
1901
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-linejoin="round"><path d="M5.373 9.501h12.254a.873.873 0 01.873.873v3.127a7 7 0 01-7 7 7 7 0 01-7-7v-3.127a.873.873 0 01.873-.873Z" stroke="none"/><path d="M5.5 10.501h12v3a6 6 0 01-6 6 6 6 0 01-6-6v-3Z"/></g><g stroke-linejoin="round"><path d="M16.5 16.501v-7h2a3 3 0 013 3v1a3 3 0 01-3 3h-2Z" stroke="none"/><path d="M17.5 15.501v-5h1a2 2 0 012 2v1a2 2 0 01-2 2h-1Z"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M3.5 20.501h16"/><path stroke-linecap="round" d="M7.5 6.501v-2m4 2v-2m4 2v-2"/></g>',
1902
+ width: 25,
1903
+ height: 25
1904
+ },
1905
+ color: {
1906
+ body: '<defs><radialGradient id="svgIDa" cx=".5" cy=".5" r=".5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="currentColor"/><stop offset=".148" stop-color="currentColor"/><stop offset=".32" stop-color="currentColor"/><stop offset=".493" stop-color="currentColor"/><stop offset=".66" stop-color="currentColor"/><stop offset=".833" stop-color="currentColor"/><stop offset="1" stop-color="currentColor"/></radialGradient></defs><g fill="url(#svgIDa)" stroke="currentColor" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9.5" fill="none"/></g>'
1907
+ },
1908
+ "contact-us": {
1909
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M17.999 11V8.461c0-2.623-2.635-5.461-6-5.461s-6 2.838-6 5.461v1.2"/><path d="M15.995 10.002v1.251a4.847 4.847 0 01-1.5 3.75M8.999 4.001c0 2.571 6 6 9 6m-7.5-3a5.966 5.966 0 00-2.5 4v1a4.76 4.76 0 002.5 4m2.499 4a1.113 1.113 0 01-1.2 1h-.6a1.113 1.113 0 01-1.2-1h0a1.112 1.112 0 011.2-1h.6a1.114 1.114 0 011.2 1Zm0-.005h.469c2.493.013 4.522-2.587 4.531-5.8v-.2m.502-3.994H18v4h.5c.276 0 .5-.4.5-.889V10.89c0-.49-.224-.887-.5-.888Zm-13 0H6v4h-.5c-.276 0-.5-.4-.5-.887v-2.223c0-.491.223-.889.5-.89h0Z"/></g>'
1910
+ },
1911
+ copy: {
1912
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(8 2)"><rect width="12" height="16" rx="2" stroke="none"/><rect width="10" height="14" x="1" y="1" rx="1"/></g><path stroke-linecap="round" d="M15 21H7.377C6.064 21 5 19.616 5 17.91V8"/></g>'
1913
+ },
1914
+ courses: {
1915
+ body: '<g fill="none" stroke-miterlimit="10"><path d="m20.695 9.514-8.427-4.452a.573.573 0 00-.535 0L3.306 9.514a.572.572 0 000 1.013L6 11.999v5a1.849 1.849 0 002 2h8a1.849 1.849 0 002-2v-5l2.695-1.472a.572.572 0 000-1.013Z"/><path fill="currentColor" d="m12 7.182-5.412 2.86 1.412.77V17h8v-6.186l1.412-.772L12 7.182m0-2.187c.092 0 .184.023.268.067l8.427 4.452a.572.572 0 010 1.013L18 11.999v5c0 1.24-.759 2-2 2H8c-1.24 0-2-.76-2-2v-5l-2.695-1.472a.572.572 0 010-1.013l8.427-4.452A.573.573 0 0112 4.995Z"/></g><g fill="none" stroke-miterlimit="10"><path d="m11.732 14.933-8.427-4.43a.568.568 0 010-1.008l8.427-4.43a.576.576 0 01.535 0l8.427 4.43a.568.568 0 010 1.008l-8.427 4.43a.576.576 0 01-.535 0Z"/><path fill="currentColor" d="m12 12.81 5.355-2.815L12 7.18 6.645 9.996 12 12.81m0 2.185a.575.575 0 01-.268-.067L3.305 10.5a.568.568 0 010-1.007l8.427-4.43a.576.576 0 01.536 0l8.427 4.43a.568.568 0 010 1.007l-8.427 4.43a.575.575 0 01-.268.067Z"/></g><path fill="currentColor" d="M19 10h2v5a1 1 0 01-1 1 1 1 0 01-1-1v-5Z"/>'
1916
+ },
1917
+ dashboard: {
1918
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(4 3)"><rect width="7" height="6" rx="2" stroke="none"/><rect width="5" height="4" x="1" y="1" rx="1"/></g><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(13 15)"><rect width="7" height="6" rx="2" stroke="none"/><rect width="5" height="4" x="1" y="1" rx="1"/></g><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(13 3)"><rect width="7" height="10" rx="2" stroke="none"/><rect width="5" height="8" x="1" y="1" rx="1"/></g><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(4 11)"><rect width="7" height="10" rx="2" stroke="none"/><rect width="5" height="8" x="1" y="1" rx="1"/></g>'
1919
+ },
1920
+ download: {
1921
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 11.001 3 3 3-3M12 14V4m8 11v3H4v-3"/>'
1922
+ },
1923
+ drag: {
1924
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M16 4v16M12 4v16M8 4v16"/>'
1925
+ },
1926
+ dulicate: {
1927
+ body: '<g stroke-miterlimit="10"><g fill="rgba(0,0,0,0)"><path d="M13 21H5c-1.103 0-2-.897-2-2v-8c0-1.103.897-2 2-2h4V5c0-1.103.897-2 2-2h8c1.103 0 2 .897 2 2v8c0 1.103-.897 2-2 2h-4v4c0 1.103-.897 2-2 2Z"/><path fill="currentColor" d="M13 20c.551 0 1-.448 1-1v-5h5a1 1 0 001-1V5a1 1 0 00-1-1h-8a1 1 0 00-1 1v5H5a1 1 0 00-1 1v8a1 1 0 001 1h8m0 2H5a3 3 0 01-3-3v-8a3 3 0 013-3h3V5a3 3 0 013-3h8a3 3 0 013 3v8a3 3 0 01-3 3h-3v3a3 3 0 01-3 3Z"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M13 9h4m-2-2v4"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(8 2)"><rect width="14" height="14" rx="3" stroke="none"/><rect width="12" height="12" x="1" y="1" rx="2"/></g></g>'
1928
+ },
1929
+ edit: {
1930
+ body: '<g fill="none" stroke-miterlimit="10"><path d="m18.318 3.465 2.2 2.194a1.641 1.641 0 01.006 2.318L8.938 19.663a1.64 1.64 0 01-.832.453l-4.151.868a.792.792 0 01-.938-.938l.9-4.233a1.641 1.641 0 01.454-.829L16.079 3.457a1.592 1.592 0 012.239.008Z"/><path fill="currentColor" d="M17.194 5.167 5.852 16.334l-.492 2.312 2.232-.466 11.26-11.358-1.658-1.655M17.196 3c.407 0 .814.155 1.124.465l2.198 2.194c.64.64.643 1.675.006 2.318L8.938 19.663a1.64 1.64 0 01-.832.453l-4.151.867a.792.792 0 01-.938-.937l.9-4.233c.067-.315.226-.603.455-.829L16.079 3.457A1.594 1.594 0 0117.196 3Z"/><path stroke="currentColor" stroke-width="2" d="m14 6 4 4M7 13.998l3 3"/></g>'
1931
+ },
1932
+ elearning: {
1933
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(2 2)"><rect width="20" height="14" rx="3" stroke="none"/><rect width="18" height="12" x="1" y="1" rx="2"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5 20h14"/><g fill="none" stroke="currentColor" transform="translate(7 18)"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1.5"/></g><path fill="currentColor" d="M14.211 8.107a1 1 0 010 1.789l-2.764 1.381A1 1 0 0110 10.383V7.619a1 1 0 011.447-.894Z"/>'
1934
+ },
1935
+ email: {
1936
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="rotate(90 8.5 13.5)"><rect width="14" height="20" rx="3" stroke="none"/><rect width="12" height="18" x="1" y="1" rx="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M3.995 7.015 11.981 12l8.014-5"/></g>'
1937
+ },
1938
+ error: {
1939
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M12 7v5m0 4v1"/><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g></g>'
1940
+ },
1941
+ "error-2": {
1942
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v9m0 5v2"/>'
1943
+ },
1944
+ exercise: {
1945
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M7.659 20.725a.926.926 0 01-1.318 0C5.458 19.785 4 18.144 4 17.55v-13a1.637 1.637 0 011.715-1.545h2.569A1.637 1.637 0 0110 4.545v13c0 .599-1.458 2.24-2.341 3.18Z"/><path fill="currentColor" d="M7 18.476c.546-.626.856-1.042 1-1.268V5H6v12.208c.144.226.454.642 1 1.268M7 21a.901.901 0 01-.66-.275C5.458 19.785 4 18.145 4 17.55V4.545C4 3.69 4.768 3 5.715 3h2.569C9.232 3 10 3.691 10 4.545V17.55c0 .594-1.458 2.235-2.34 3.175A.904.904 0 017 21Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 8h4"/><path d="M12 3h8v18h-8Z"/><path fill="currentColor" d="M14 5v14h4V5h-4m-2-2h8v18h-8V3Z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M13 8h2m-2 4h2m-2 4h2"/></g>'
1946
+ },
1947
+ "external-link": {
1948
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 13v4a2.1 2.1 0 01-2 2H7a2.1 2.1 0 01-2-2V7a2.1 2.1 0 012-2h4m5-2h5v5m-8 3 8-8"/>'
1949
+ },
1950
+ extract: {
1951
+ body: '<path fill="none" d="M0 0h24v24H0z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M8 10h8m-8 4h5"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.001 8.999v-4h-4M16 19.003h4v-4M8 5.001H4v4m-.001 6.002v4h4"/><circle cx="2" cy="2" r="2" fill="currentColor" transform="translate(18 17)"/>'
1952
+ },
1953
+ "eye-off": {
1954
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-miterlimit="10" d="M13.5 6.112a10.1 10.1 0 00-1.442-.111h-.011a9.124 9.124 0 00-3.87.8 8.187 8.187 0 00-3.25 2.727 7.261 7.261 0 00-.9 1.663.448.448 0 000 .282 7.584 7.584 0 001.543 2.528m4.929 3.888a10.438 10.438 0 001.47.111 9.252 9.252 0 003.919-.8 7.919 7.919 0 003.226-2.736 6.94 6.94 0 00.865-1.671.456.456 0 000-.283A8 8 0 0018.396 10"/><path stroke-linecap="round" d="M4 20 20 4"/></g>'
1955
+ },
1956
+ "eye-on": {
1957
+ body: '<g fill="none" stroke-linejoin="round"><path d="M20.973 11.836A8.925 8.925 0 0019.096 8.9a9.017 9.017 0 00-2.764-2 10.152 10.152 0 00-4.336-.9 10.15 10.15 0 00-4.332.9A9.161 9.161 0 004.03 9.964a8.142 8.142 0 00-1.007 1.868.51.51 0 000 .317A8.512 8.512 0 004.847 15.1a8.8 8.8 0 002.76 2A10.364 10.364 0 0012 18a10.364 10.364 0 004.393-.9 8.883 8.883 0 003.615-3.07 7.788 7.788 0 00.969-1.874.51.51 0 00-.004-.32Z"/><path fill="currentColor" d="M11.994 8c-1.288 0-2.46.241-3.484.718a7.094 7.094 0 00-2.838 2.4c-.244.345-.421.66-.543.9a7.1 7.1 0 001.182 1.715 6.8 6.8 0 002.135 1.548C9.478 15.758 10.674 16 12 16c1.326 0 2.521-.242 3.554-.719a6.93 6.93 0 002.802-2.382c.232-.34.4-.646.514-.882a7.55 7.55 0 00-1.229-1.743 7.015 7.015 0 00-2.153-1.557C14.465 8.241 13.293 8 12.006 8h-.012m0-2h.012c1.723 0 3.155.36 4.326.904a9.017 9.017 0 012.764 1.998c1.37 1.453 1.862 2.892 1.877 2.934a.51.51 0 01.003.317c-.01.033-.27.852-.969 1.874a8.883 8.883 0 01-3.614 3.07C15.213 17.642 13.76 18 12 18c-1.76 0-3.213-.358-4.393-.903a8.8 8.8 0 01-2.76-2.001c-1.354-1.457-1.809-2.9-1.823-2.943a.51.51 0 01.003-.317c.011-.032.292-.848 1.008-1.868a9.16 9.16 0 013.633-3.064C8.838 6.36 10.271 6 11.994 6Z"/><g stroke="currentColor" stroke-width="2" transform="translate(9 9)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2"/></g></g>'
1958
+ },
1959
+ fail: {
1960
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" transform="translate(3.998 4.004)"><rect width="4" height="10" rx="2" transform="translate(13.002)"/><path stroke-linecap="round" d="M1.185 8.087h.885l-.069.48h-.816a1.188 1.188 0 000 2.375h1.961l2.853.055s-.617 4.308 2 5.754c1.683.834 2-.754 2-.754v-3l1-1s2-1.856 2-3.019V1.997a1.868 1.868 0 00-2-2H2.814a1.188 1.188 0 000 2.375h.08l-.069.481H2a1.188 1.188 0 000 2.375h.482l-.069.481H1.185a1.188 1.188 0 000 2.375Z"/></g>'
1961
+ },
1962
+ "fast-back": {
1963
+ body: '<g fill="none"><path d="M13.993 16.723v-.379l4 2.381a2.049 2.049 0 003-2V7.282a2.051 2.051 0 00-3-2l-4 2.389v-.385a2.054 2.054 0 00-3-2L3.073 10a2.4 2.4 0 000 4l7.92 4.725a1.867 1.867 0 00.961.275 2.165 2.165 0 002.039-2.277Z"/><path fill="currentColor" d="M11.937 16.96a.441.441 0 00.058-.237v-3.897l6.942 4.132a.448.448 0 00.056-.235V7.279a.447.447 0 00-.057-.236l-6.941 4.145V7.279a.441.441 0 00-.058-.239l-7.84 4.68c-.057.034-.099.155-.1.282 0 .129.045.253.1.286l7.84 4.672m.017 2.038c-.32 0-.648-.086-.963-.273l-7.918-4.72c-1.434-.857-1.434-3.15 0-4.003l7.918-4.727c1.361-.81 3.004.286 3.004 2.004v.385l4-2.389c1.355-.81 2.998.286 2.998 2.004v9.444c0 1.718-1.643 2.814-2.998 2.002l-4-2.381v.379c0 1.322-.973 2.275-2.041 2.275Z"/><path d="M10.074 10.006a2.4 2.4 0 000 4l7.923 4.722a2.053 2.053 0 003-2V7.28a2.053 2.053 0 00-3-2Z"/><path fill="currentColor" d="M10.998 12.003c0 .128.043.25.1.284l7.841 4.676a.436.436 0 00.058-.237V7.28a.436.436 0 00-.058-.237l-7.84 4.676c-.058.035-.101.157-.101.284m-2 0c0-.787.358-1.573 1.076-2.002l7.92-4.723c1.359-.81 3.003.286 3.003 2.002v9.446c0 1.717-1.644 2.813-3.003 2.002l-7.92-4.723c-.718-.428-1.076-1.215-1.076-2.002Z"/></g>'
1964
+ },
1965
+ "fast-forward": {
1966
+ body: '<g fill="none"><path d="M10 16.719v-.381l-4 2.383a2.049 2.049 0 01-3-2V7.276a2.051 2.051 0 013-2l4 2.389V7.28a2.054 2.054 0 013-2l7.918 4.727a2.4 2.4 0 010 4L13 18.728a1.867 1.867 0 01-.963.273A2.165 2.165 0 0110 16.719Z"/><path fill="currentColor" d="m12.059 16.957 7.836-4.674c.058-.035.103-.158.101-.287 0-.127-.04-.248-.1-.283L12.06 7.035a.432.432 0 00-.059.238v3.909L5.059 7.037a.45.45 0 00-.057.236v9.446c0 .113.027.19.057.234L12 12.818v3.9c0 .116.03.194.059.239m-.018 2.037c-1.068 0-2.041-.953-2.041-2.275v-.381L6 18.72c-.313.187-.64.273-.96.273-1.065 0-2.038-.953-2.038-2.275V7.273c0-1.322.973-2.275 2.039-2.275.318 0 .646.084.959.272l4 2.388v-.385c0-1.322.973-2.275 2.041-2.275.32 0 .648.084.963.272l7.918 4.726c1.433.854 1.433 3.147 0 4.004l-7.918 4.72a1.867 1.867 0 01-.963.274Z"/></g><g fill="none"><path d="M13.922 9.995a2.4 2.4 0 010 4l-7.92 4.723a2.054 2.054 0 01-3-2V7.274a2.054 2.054 0 013-2Z"/><path fill="currentColor" d="M12.999 11.997c0-.127-.044-.25-.101-.284L5.057 7.037a.436.436 0 00-.058.237v9.447c0 .116.03.192.058.237l7.84-4.676c.058-.035.102-.157.102-.285m2 0c0 .787-.36 1.574-1.077 2.002l-7.92 4.724c-1.359.81-3.003-.286-3.003-2.002V7.274c0-1.717 1.644-2.813 3.003-2.002l7.92 4.723c.718.428 1.077 1.215 1.077 2.002Z"/></g>'
1967
+ },
1968
+ file: {
1969
+ body: '<g stroke-linejoin="round"><g fill="none"><path d="M18.999 7.629V19a1.856 1.856 0 01-2 2h-10a1.856 1.856 0 01-2-2V5a1.856 1.856 0 012-2h7.158Z"/><path fill="currentColor" d="M7 5v14h10V8.484L13.354 5H7m0-2h7.158L19 7.63V19c0 1.243-.775 2-2 2H7c-1.224 0-2-.757-2-2V5c0-1.243.776-2 2-2Z"/></g><path fill="currentColor" stroke="currentColor" stroke-width="2" d="M16.999 8h-3V5Z"/></g>'
1970
+ },
1971
+ "file-add": {
1972
+ body: '<g stroke-linejoin="round"><g fill="none"><path d="M19 7.629V19a1.856 1.856 0 01-2 2H7a1.856 1.856 0 01-2-2V5a1.856 1.856 0 012-2h7.158Z"/><path fill="currentColor" d="M7 5v14h10V8.484L13.356 5H7m0-2h7.158L19 7.63V19c0 1.243-.775 2-2 2H7c-1.224 0-2-.757-2-2V5c0-1.243.776-2 2-2Z"/></g><path fill="currentColor" stroke="currentColor" stroke-width="2" d="M17 8h-3V5Z"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M10 13h4"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M12 11v4"/>'
1973
+ },
1974
+ "file-duplicate": {
1975
+ body: '<g stroke-linejoin="round"><path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-width="2" d="M5.715 21C5.361 21 5 20.906 5 20.223V7.776c0-.686.361-.777.715-.777H9V3.778c0-.686.365-.777.715-.777h5.729l3.561 3.529v9.689c0 .689-.365.777-.715.777H15v3.227c0 .684-.359.777-.709.777Z"/><g fill="none"><path d="M16 10.115v10.107A1.621 1.621 0 0114.286 22H5.715a1.621 1.621 0 01-1.714-1.778V7.778A1.621 1.621 0 015.715 6h6.135Z"/><path fill="currentColor" d="M6 8v12h8v-9.052L11.027 8H6m-.285-2h6.135L16 10.115v10.107C16 21.327 15.335 22 14.286 22H5.715C4.665 22 4 21.327 4 20.222V7.778C4 6.673 4.665 6 5.715 6Z"/></g><path fill="currentColor" stroke="currentColor" stroke-width="2" d="M14.287 10.444h-2.571V7.778Z"/><path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-width="2" d="M18.286 6.444h-2.571V3.778Z"/></g>'
1976
+ },
1977
+ "file-remove": {
1978
+ body: '<g stroke-linejoin="round"><g fill="none"><path d="M19 7.629V19a1.856 1.856 0 01-2 2H7a1.856 1.856 0 01-2-2V5a1.856 1.856 0 012-2h7.158Z"/><path fill="currentColor" d="M7 5v14h10V8.484L13.356 5H7m0-2h7.158L19 7.63V19c0 1.243-.775 2-2 2H7c-1.224 0-2-.757-2-2V5c0-1.243.776-2 2-2Z"/></g><path fill="currentColor" stroke="currentColor" stroke-width="2" d="M17 8h-3V5Z"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M10 13h4"/>'
1979
+ },
1980
+ "file-required": {
1981
+ body: '<g stroke-linejoin="round"><g fill="none"><path d="M16 10.115v10.107A1.621 1.621 0 0114.286 22H5.715a1.621 1.621 0 01-1.714-1.778V7.778A1.621 1.621 0 015.715 6h6.135Z"/><path fill="currentColor" d="M6 8v12h8v-9.052L11.027 8H6m-.285-2h6.135L16 10.115v10.107C16 21.327 15.335 22 14.286 22H5.715C4.665 22 4 21.327 4 20.222V7.778C4 6.673 4.665 6 5.715 6Z"/></g><path fill="currentColor" stroke="currentColor" stroke-width="2" d="M14.287 10.444h-2.571V7.778Z"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" d="M18.5 3v6M21 4.5l-5 3m5 0-5-3"/>'
1982
+ },
1983
+ filter: {
1984
+ body: '<g fill="none" stroke-linejoin="round"><path d="M6.603 3.003h10.793a1.5 1.5 0 011.368 2.283l-3.586 5.955a1.139 1.139 0 00-.185.621v8.191a1.019 1.019 0 01-1.655.733l-3.627-2.49a1.854 1.854 0 01-.737-1.465v-4.8a1.8 1.8 0 00-.184-.795L5.232 5.287a1.5 1.5 0 011.371-2.284Z"/><path fill="currentColor" d="m16.6 5-9.204.003 3.101 5.184c.455.736.478 1.659.478 1.84v4.706l2.018 1.386v-6.261c0-.592.168-1.17.485-1.674L16.6 5m.796-2c1.249 0 2.017 1.282 1.369 2.283l-3.586 5.954a1.139 1.139 0 00-.186.62v8.192c0 .803-.995 1.242-1.655.733l-3.627-2.49a1.854 1.854 0 01-.736-1.465v-4.8c0-.219-.063-.61-.184-.796L5.233 5.283c-.645-1.002.123-2.28 1.37-2.28L17.396 3Z"/></g>'
1985
+ },
1986
+ "filter-2": {
1987
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5 6h14M5 12h14M5 18h14"/><g fill="none" stroke="currentColor" transform="translate(6 4)"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1.5"/></g><g fill="none" stroke="currentColor" transform="translate(14 10)"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1.5"/></g><g fill="none" stroke="currentColor" transform="translate(10 16)"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1.5"/></g>'
1988
+ },
1989
+ "filter-active": {
1990
+ body: '<g fill="currentColor" stroke-linejoin="round"><path d="M13.976 20a.037.037 0 01-.026-.01l-.023-.017-.023-.016-3.6-2.471a.852.852 0 01-.329-.66v-4.8c0-.295-.07-.9-.332-1.318L6.091 4.769l-.008-.014-.009-.014a.41.41 0 01-.019-.44.6.6 0 01.548-.298L17.397 4a.6.6 0 01.548.299.41.41 0 01-.02.44l-.009.013-.008.015-3.579 5.942c-.22.346-.336.743-.336 1.149v8.14a.077.077 0 01-.017.002Z"/><path d="m16.6 5-9.204.003 3.101 5.184c.455.736.478 1.659.478 1.84v4.706l2.018 1.386v-6.261c0-.592.168-1.17.485-1.674L16.6 5m.796-2c1.249 0 2.017 1.282 1.369 2.283l-3.586 5.954a1.139 1.139 0 00-.186.62v8.192c0 .803-.995 1.242-1.655.733l-3.627-2.49a1.854 1.854 0 01-.736-1.465v-4.8c0-.219-.063-.61-.184-.796L5.233 5.283c-.645-1.002.123-2.28 1.37-2.28L17.396 3Z"/></g>'
1991
+ },
1992
+ flag: {
1993
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-miterlimit="10" d="M15.397 14.002c2.289.538 3.6 1.754 3.6 3.338 0 2.053-3.075 3.662-7 3.662s-7-1.608-7-3.662c0-1.584 1.314-2.8 3.6-3.338"/><path stroke-linejoin="round" d="M12 17V4h8l-3 3 3 3h-8"/></g>'
1994
+ },
1995
+ folder: {
1996
+ body: '<g fill="none"><path d="M4 19a2 2 0 01-2-2V6a2.018 2.018 0 011.711-2h6.834l1.377 2H20a2 2 0 012 2v9a2 2 0 01-2 2Z"/><path fill="currentColor" d="m20 17 .002-8.998C20 8.002 20 8 20 8h-9.123l-1.38-2.004L4.01 6c-.004.006-.006.014-.008.02V17H20m0 2H4.002c-1.11 0-2-.896-2-2V6c0-1 .853-1.994 1.71-2l6.005-.004.834.004 1.377 2H20a2 2 0 012 2v9a2 2 0 01-2 2Z"/></g><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="m4 18 3-7h13"/>'
1997
+ },
1998
+ "full-width": {
1999
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 7v10"/><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 6h16v12H4z" stroke="none"/><path d="M5 7h14v10H5z"/></g>'
2000
+ },
2001
+ "go-to-back": {
2002
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M8 6.001H5a1.881 1.881 0 00-1.5.5 1.883 1.883 0 00-.5 1.5v8a1.886 1.886 0 00.5 1.5 1.881 1.881 0 001.5.5h14a1.881 1.881 0 001.5-.5 1.881 1.881 0 00.5-1.5v-8a1.881 1.881 0 00-.5-1.5 1.881 1.881 0 00-1.5-.5h-3"/><g stroke-miterlimit="10"><path d="M8.635 19.001h6.724l.575 1.062c.245.452-.224.938-.906.938H8.971c-.68 0-1.149-.484-.907-.936Z"/><path fill="currentColor" d="M8.635 19.001h6.724l.575 1.062c.245.452-.224.938-.906.938H8.971c-.68 0-1.149-.484-.907-.936l.571-1.064Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 11.001 3 3 3-3m-3 2v-7"/></g>'
2003
+ },
2004
+ grid: {
2005
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(4 4)"><rect width="7" height="7" rx="2" stroke="none"/><rect width="5" height="5" x="1" y="1" rx="1"/></g><g transform="translate(4 13)"><rect width="7" height="7" rx="2" stroke="none"/><rect width="5" height="5" x="1" y="1" rx="1"/></g><g transform="translate(13 4)"><rect width="7" height="7" rx="2" stroke="none"/><rect width="5" height="5" x="1" y="1" rx="1"/></g><g transform="translate(13 13)"><rect width="7" height="7" rx="2" stroke="none"/><rect width="5" height="5" x="1" y="1" rx="1"/></g></g>'
2006
+ },
2007
+ group: {
2008
+ body: '<g fill="none" stroke="currentColor" stroke-width="2" transform="translate(2 5)"><rect width="10" height="10" rx="5" stroke="none"/><rect width="8" height="8" x="1" y="1" rx="4"/></g><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M3 20a4 4 0 014-4 4 4 0 014 4m4 0a3 3 0 013-3 3 3 0 013 3"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(14 8)"><rect width="8.001" height="8.001" rx="4" stroke="none"/><rect width="6.001" height="6.001" x="1" y="1" rx="3"/></g>'
2009
+ },
2010
+ "group-add": {
2011
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M15 6h6m-3-3v6"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(11 11)"><rect width="7" height="7" rx="3.5" stroke="none"/><rect width="5" height="5" x="1" y="1" rx="2.5"/></g><path fill="none" stroke="currentColor" stroke-width="2" d="M12 22c0-1.657.865-3 2.5-3s2.5 1.343 2.5 3"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(2 10)"><rect width="8" height="8" rx="4" stroke="none"/><rect width="6" height="6" x="1" y="1" rx="3"/></g><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M3 22a3 3 0 013-3 3 3 0 013 3"/>'
2012
+ },
2013
+ heart: {
2014
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M15.976 5a5.114 5.114 0 00-3.553 1.406l-.423.4-.423-.4A5.113 5.113 0 008.024 5a5.113 5.113 0 00-3.553 1.406A4.663 4.663 0 003 9.799a4.662 4.662 0 001.471 3.394l6.843 6.536a.991.991 0 00.686.272.994.994 0 00.686-.272l6.842-6.536A4.663 4.663 0 0021 9.799a4.662 4.662 0 00-1.471-3.394A5.114 5.114 0 0015.976 5Z"/><path fill="currentColor" d="M8.024 7c-.825 0-1.596.303-2.171.852A2.68 2.68 0 005 9.799c0 .73.303 1.422.853 1.947L12 17.618l6.147-5.871A2.68 2.68 0 0019 9.799a2.68 2.68 0 00-.853-1.947A3.122 3.122 0 0015.976 7a3.12 3.12 0 00-2.171.852L12 9.575l-1.805-1.723A3.121 3.121 0 008.025 7m0-2c1.341 0 2.603.5 3.552 1.406L12 6.81l.423-.404A5.114 5.114 0 0115.976 5c1.342 0 2.604.5 3.553 1.406.948.906 1.471 2.11 1.471 3.393a4.665 4.665 0 01-1.471 3.394l-6.843 6.535A.994.994 0 0112 20a.99.99 0 01-.686-.272l-6.843-6.535C3.523 12.287 3 11.082 3 9.799c0-1.281.523-2.487 1.471-3.393A5.113 5.113 0 018.024 5Z"/></g>'
2015
+ },
2016
+ "heart-active": {
2017
+ body: '<g fill="currentColor" stroke-miterlimit="10"><path d="m12 19-6.838-6.53A3.671 3.671 0 014 9.8c0-1.007.413-1.955 1.162-2.671A4.117 4.117 0 018.024 6c1.084 0 2.1.4 2.862 1.129l.423.404.691.66.69-.66.424-.404A4.117 4.117 0 0115.976 6c1.083 0 2.1.4 2.862 1.129A3.671 3.671 0 0120 9.799a3.672 3.672 0 01-1.162 2.67L12 19Z"/><path d="M8.024 7c-.825 0-1.596.303-2.171.852A2.68 2.68 0 005 9.799c0 .73.303 1.422.853 1.947L12 17.618l6.147-5.871A2.68 2.68 0 0019 9.799a2.68 2.68 0 00-.853-1.947A3.122 3.122 0 0015.976 7a3.12 3.12 0 00-2.171.852L12 9.575l-1.805-1.723A3.121 3.121 0 008.025 7m0-2c1.341 0 2.603.5 3.552 1.406L12 6.81l.423-.404A5.114 5.114 0 0115.976 5c1.342 0 2.604.5 3.553 1.406.948.906 1.471 2.11 1.471 3.393a4.665 4.665 0 01-1.471 3.394l-6.843 6.535A.994.994 0 0112 20a.99.99 0 01-.686-.272l-6.843-6.535C3.523 12.287 3 11.082 3 9.799c0-1.281.523-2.487 1.471-3.393A5.113 5.113 0 018.024 5Z"/></g>'
2018
+ },
2019
+ highlighter: {
2020
+ body: '<path fill="none" d="M0 0h24v24H0z"/><g stroke="currentColor" stroke-linejoin="round"><path fill="none" stroke-width="2" d="m6 13.001 5 5 9-9-5-5Z"/><path fill="none" stroke-width="2" d="m7 14.001 3 3-2 2H6l-1-1v-2Z"/><path fill="currentColor" d="M4.5 18.001 3 19.334l1.5.667L6 18.668Z"/></g>'
2021
+ },
2022
+ home: {
2023
+ body: '<g fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M10 20.001H7.62a1.634 1.634 0 01-1.627-1.63v-7.459H3.168l.023-.02 8.034-6.634C11.427 4.093 11.703 4 12 4c.297 0 .574.093.78.261l8.031 6.632a.965.965 0 01.022.019h-2.826v7.46A1.634 1.634 0 0116.38 20H14v-5h-3l-1-.001V20Z"/><path fill="currentColor" d="M9 19v-5.002l6 .003v5h1.377a.632.632 0 00.63-.629v-8.46h1.046l-5.908-4.878A.267.267 0 0012 5a.266.266 0 00-.144.034L5.948 9.912h1.045v8.458c0 .347.283.63.627.63H9m2 2.001H7.62a2.636 2.636 0 01-2.627-2.629v-6.46H3.196a1.842 1.842 0 01-.576-.08.919.919 0 01-.488-.345.758.758 0 01-.132-.429.966.966 0 01.175-.533c.093-.138.213-.266.378-.403l8.036-6.636A2.228 2.228 0 0111.999 3c.528 0 1.03.173 1.414.487l8.035 6.635c.162.134.282.262.376.403a.966.966 0 01.176.533.758.758 0 01-.133.429.846.846 0 01-.312.271c-.207.106-.431.152-.751.154h-1.797v6.46A2.636 2.636 0 0116.381 21H13v-5h-2v5Z"/></g>'
2024
+ },
2025
+ hourglass: {
2026
+ body: '<path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M14 12c0-.4 1.311-1.236 2-2a7.576 7.576 0 002-5V3H6v2a7.572 7.572 0 002 5c.689.765 2 1.6 2 2s-1.311 1.235-2 2a7.573 7.573 0 00-2 5v2h12v-2a7.58 7.58 0 00-2-5c-.689-.765-2-1.603-2-2Z"/><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" d="M18 7H6"/><ellipse cx="3" cy="2" fill="currentColor" rx="3" ry="2" transform="translate(9 18)"/>'
2027
+ },
2028
+ image: {
2029
+ body: '<g fill="none" stroke="currentColor" stroke-width="2" transform="translate(3.375 5.25)"><g stroke-miterlimit="10" transform="rotate(90 9.938 8.688)"><rect width="16" height="20" rx="2" stroke="none"/><rect width="14" height="18" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m2.625 13.75 9-9 6 6"/><circle cx="1" cy="1" r="1" stroke-linecap="round" stroke-linejoin="round" transform="translate(3.625 3.75)"/><path stroke-linecap="round" stroke-linejoin="round" d="m8.625 8.75 2 2 3-3"/></g>'
2030
+ },
2031
+ "info-badge": {
2032
+ body: '<g transform="translate(3 3)"><circle cx="10" cy="10" r="10" fill="currentColor" transform="translate(-1 -1)"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M9 15V8m0-4V3"/></g>'
2033
+ },
2034
+ information: {
2035
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M12 7v1m0 4v5"/><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g></g>'
2036
+ },
2037
+ italic: {
2038
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 5h-8m4 14H6m8-14-4 14"/>'
2039
+ },
2040
+ key: {
2041
+ body: '<g transform="translate(-945.502 -1893.502)"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="m948.496 1910.504 7.076-7.076a6.1 6.1 0 114 4l-1.076 1.078-1 1h-2.006v2h-2v2.006l-1 1-4 .006Z"/><circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(960.502 1899.502)"/></g>'
2042
+ },
2043
+ language: {
2044
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(3 3)"><circle cx="9" cy="9" r="9" stroke="none"/><circle cx="9" cy="9" r="8"/></g><path stroke-miterlimit="10" d="M4 9h16M4 15h16"/><path d="M11 20s-3-4-3-8 3-8 3-8m2 16s3-4 3-8-3-8-3-8"/></g>'
2045
+ },
2046
+ "learning-path": {
2047
+ body: '<path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="m3.995 17.84 1.151-4.282a.184.184 0 01.331-.053 2.041 2.041 0 10.8-2.961.183.183 0 01-.259-.211L7.169 6.05l4.3 1.148a.183.183 0 00.212-.26 2.021 2.021 0 01-.141-1.428 2.045 2.045 0 113.113 2.221.183.183 0 00.053.33l4.289 1.149L15.831 21Z"/>'
2048
+ },
2049
+ "light-off": {
2050
+ body: '<path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" d="M16 4.227A6.485 6.485 0 0012.176 3 6.435 6.435 0 007.82 4.656 5.462 5.462 0 006 8.691a9 9 0 00.906 3.9c.066.139.144.272.215.408M9 18.829a2.972 2.972 0 00.884 1.3 3.868 3.868 0 004.889 0 2.86 2.86 0 001.05-2.181v-2.089a15.222 15.222 0 002.237-3.33A9.881 9.881 0 0019 9.002"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 20 20 4"/>'
2051
+ },
2052
+ "light-on": {
2053
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M19 8.53a6.3 6.3 0 00-2.063-4.63A7.243 7.243 0 0012 2a7.243 7.243 0 00-4.937 1.9A6.3 6.3 0 005 8.53a10.429 10.429 0 001.027 4.475 16.335 16.335 0 002.328 3.526v2.234a3.061 3.061 0 001.095 2.313A3.883 3.883 0 0012 22a3.883 3.883 0 002.55-.923 3.061 3.061 0 001.095-2.313v-2.217a16.179 16.179 0 002.334-3.535A10.478 10.478 0 0019 8.53Z"/><path fill="currentColor" d="M12 4c-1.357 0-2.627.485-3.577 1.367C7.505 6.217 6.999 7.34 7 8.531c0 1.234.274 2.42.838 3.624.463.987 1.134 1.998 2.05 3.09l.468.557v2.964c0 .392.252.668.405.801.322.28.762.433 1.239.433.477 0 .917-.154 1.242-.436.15-.13.403-.406.402-.8v-2.947l.47-.558c.917-1.09 1.589-2.102 2.052-3.093.562-1.204.835-2.393.834-3.637 0-1.189-.505-2.311-1.424-3.163C14.627 4.486 13.357 4 12 4m0-2c1.92 0 3.668.723 4.937 1.9C18.206 5.076 19 6.717 19 8.53c0 1.633-.388 3.123-1.022 4.482-.598 1.281-1.417 2.445-2.334 3.535v2.217c.001.916-.43 1.74-1.094 2.313-.664.577-1.566.923-2.55.923-.984 0-1.886-.346-2.55-.923-.664-.574-1.095-1.397-1.094-2.313V16.53c-.914-1.088-1.73-2.25-2.329-3.526C5.39 11.645 5 10.157 5 8.53c0-1.813.795-3.454 2.063-4.63C8.332 2.723 10.08 2 12 2Z"/></g><path stroke="currentColor" stroke-miterlimit="10" stroke-width="2" d="M9 16h6"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m14 10-2 3m-2-2.997 2 3v3"/></g>'
2054
+ },
2055
+ link: {
2056
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M10 13.14a4.584 4.584 0 006.446.936 4.555 4.555 0 00.5-.434l2.762-2.783a4.659 4.659 0 00-.113-6.557 4.582 4.582 0 00-6.4 0l-1.583 1.586"/><path d="M14 10.86a4.584 4.584 0 00-6.446-.936 4.56 4.56 0 00-.5.434l-2.762 2.783a4.659 4.659 0 00.113 6.557 4.582 4.582 0 006.4 0l1.575-1.585"/></g>'
2057
+ },
2058
+ lock: {
2059
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-miterlimit="10" d="M12 14.998v2"/><g stroke-miterlimit="10" transform="translate(4 10)"><rect width="16" height="12" rx="3" stroke="none"/><rect width="14" height="10" x="1" y="1" rx="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M8.005 10V7.4c0-1.878 1.791-3.4 4-3.4h0c2.209 0 4 1.523 4 3.4V10"/></g>'
2060
+ },
2061
+ login: {
2062
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3h4a2.406 2.406 0 012 2v14a2.41 2.41 0 01-2 2h-4m-5-4 5-5-5-5m4 5H3"/>'
2063
+ },
2064
+ logout: {
2065
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3H5a2.406 2.406 0 00-2 2v14a2.41 2.41 0 002 2h4m7-4 5-5-5-5m4 5H9"/>'
2066
+ },
2067
+ maximize: {
2068
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" transform="translate(2 4)"><rect width="20" height="16" rx="2" stroke="none"/><rect width="18" height="14" x="1" y="1" rx="1"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6.999 13v2h2m8.003-4V9h-2"/>'
2069
+ },
2070
+ menu: {
2071
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5 16h11M5 12h8M5 8h14"/>'
2072
+ },
2073
+ merge: {
2074
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><g stroke-miterlimit="10" transform="translate(4 15)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2"/></g><g stroke-miterlimit="10" transform="translate(14 15)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2"/></g><path stroke-linejoin="round" d="m16 8-4-4-4 4m4-4v9"/><path stroke-miterlimit="10" d="m8.999 16 3-3 3 3"/></g>'
2075
+ },
2076
+ minimize: {
2077
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" transform="translate(2 14)"><rect width="9" height="6" rx="1" stroke="none"/><path d="M1 1h7v4H1z"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.999 8V5h-4M17 19h4v-3M7 5H3v3"/>'
2078
+ },
2079
+ "mixed-class": {
2080
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5.001 15a1.845 1.845 0 01-2-2V5a1.845 1.845 0 012-2h14a1.845 1.845 0 012 2v8a1.845 1.845 0 01-2 2"/><path stroke="currentColor" stroke-width="2" d="M10 21a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M10 16a2 2 0 11.586 1.414A2 2 0 0110 16Z"/><path fill="currentColor" d="M12 14c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 0112 18a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0112 14Z"/></g><path stroke="currentColor" stroke-width="2" d="M14 13a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M14 8a2 2 0 11.586 1.414A2 2 0 0114 8Z"/><path fill="currentColor" d="M16 6c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 0116 10a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0116 6Z"/></g><path stroke="currentColor" stroke-width="2" d="M6 13a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M6 8a2 2 0 11.586 1.414A2 2 0 016 8Z"/><path fill="currentColor" d="M8 6c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 018 10a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 018 6Z"/></g></g>'
2081
+ },
2082
+ "more-horizontal": {
2083
+ body: '<g fill="currentColor" transform="rotate(90 4.125 14.625)"><circle cx="2" cy="2" r="2" transform="translate(-.5 -1.25)"/><circle cx="2" cy="2" r="2" transform="translate(-.5 4.75)"/><circle cx="2" cy="2" r="2" transform="translate(-.5 10.75)"/></g>'
2084
+ },
2085
+ "more-vertical": {
2086
+ body: '<g fill="currentColor" transform="translate(10.5 5.25)"><circle cx="2" cy="2" r="2" transform="translate(-.5 -1.25)"/><circle cx="2" cy="2" r="2" transform="translate(-.5 4.75)"/><circle cx="2" cy="2" r="2" transform="translate(-.5 10.75)"/></g>'
2087
+ },
2088
+ news: {
2089
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path d="m7 9-4 .041v9.6C3 20.052 3.759 21 5 21a1.773 1.773 0 002-2V5h14v14s.317 2-2 2H5"/><path stroke-linecap="round" d="M11 17h3m-3-8h6m-6 4h6"/></g>'
2090
+ },
2091
+ "no-prerequisites": {
2092
+ body: '<g transform="translate(4.883 7)"><rect width="8" height="4" fill="none" stroke="currentColor" stroke-width="2" rx=".5" transform="translate(7.117 -1.998)"/><rect width="8" height="4" fill="none" stroke="currentColor" stroke-width="2" rx=".5" transform="translate(7.117 8)"/><path fill="currentColor" d="M-.795 2.091h.944V-.775l-1.032.254v-.976l2.165-.5v4.091h.835v.909H-.794Zm-.077 9.859a1.333 1.333 0 01.858-1.385l.908-.456a.481.481 0 00.271-.514v-.263c0-.257-.109-.373-.338-.373h-.44c-.231 0-.341.112-.341.373v.533h-.93v-.479A1.2 1.2 0 01.434 8.002h.341a1.2 1.2 0 011.317 1.367v.264a1.322 1.322 0 01-.857 1.368l-.9.458a.446.446 0 00-.279.456v.16H2.12v.926H-.868Z"/></g>'
2093
+ },
2094
+ notes: {
2095
+ body: '<path fill="none" d="M0 0h24v24H0z"/><g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M8 8h8m-8 4h5"/><g transform="translate(3 3)"><rect width="18" height="18" rx="2" stroke="none"/><rect width="16" height="16" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M5 20c2.65 0 4-4 4-4l10 3.945L5 20Z"/></g>'
2096
+ },
2097
+ "number-code": {
2098
+ body: '<defs><path id="svgIDa" d="M13.014 9v5m2-3.75-4 2.5m4 0-4-2.5"/></defs><g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(7 6)"><rect width="10" height="8" rx="3" stroke="none"/><rect width="8" height="6" x="1" y="1" rx="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M10.005 6V4.7a1.869 1.869 0 012-1.7h0a1.869 1.869 0 012 1.7V6"/></g><use xlink:href="#svgIDa" fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(-7.014 7)"/><use xlink:href="#svgIDa" fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(-1.014 7)"/><use xlink:href="#svgIDa" fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(4.986 7)"/>'
2099
+ },
2100
+ "numbered-list": {
2101
+ body: '<path fill="none" d="M0 0h24v24H0z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M7.999 16.998h5m-5-4.999h12M7.999 7h8"/><path fill="currentColor" stroke="rgba(0,0,0,0)" d="M4.044 7.455h.472v-1.72L4 5.886v-.585l1.083-.3v2.455H5.5v.545H4.044Zm-.04 4.914a.824.824 0 01.429-.831l.454-.274c.1-.063.135-.14.135-.308v-.158c0-.154-.055-.224-.169-.224h-.22c-.116 0-.171.067-.171.224v.32h-.458v-.287c0-.558.235-.83.659-.83h.171c.427 0 .658.276.658.82v.159a.816.816 0 01-.428.821l-.452.275a.277.277 0 00-.139.274v.1h1.031v.556h-1.5Zm1.495 4.726v.09c0 .545-.225.817-.649.817h-.2c-.425 0-.65-.271-.65-.806v-.242h.456v.276c0 .14.057.21.169.21h.245c.111 0 .17-.073.17-.22v-.257c0-.142-.05-.215-.158-.215h-.363v-.519h.337c.107 0 .157-.07.157-.214v-.236c0-.145-.057-.215-.165-.215h-.206c-.107 0-.163.068-.163.205v.251h-.458v-.216c0-.533.224-.8.648-.8h.157c.423 0 .647.269.647.817v.074c0 .314-.118.531-.344.59.246.042.37.284.37.61Z"/>'
2102
+ },
2103
+ "on-site": {
2104
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5.001 15a1.845 1.845 0 01-2-2V5a1.845 1.845 0 012-2h14a1.845 1.845 0 012 2v8a1.845 1.845 0 01-2 2"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m8 12 2-2h3l3-3"/><path stroke="currentColor" stroke-width="2" d="M10 21.001a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M10 16a2 2 0 11.586 1.414A2 2 0 0110 16Z"/><path fill="currentColor" d="M12 14c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 0112 18a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0112 14Z"/></g></g>'
2105
+ },
2106
+ "order-down": {
2107
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5 6h14M5 10h10M5 14h7m-7 4h3"/>'
2108
+ },
2109
+ "order-up": {
2110
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5 18h14M5 14h10M5 10h7M5 6h3"/>'
2111
+ },
2112
+ paste: {
2113
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(8 2)"><rect width="12" height="16" rx="2" stroke="none"/><rect width="10" height="14" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-miterlimit="10" d="M15 21H7.377C6.064 21 5 19.616 5 17.91V8"/><path stroke-linecap="round" d="M13 7h2m-2 4h2"/></g>'
2114
+ },
2115
+ pausa: {
2116
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M9 5v14m6-14v14"/>'
2117
+ },
2118
+ pdf: {
2119
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-miterlimit="10" d="M21 8h-8m8 3.999h-8M21 17H3"/><path stroke-linejoin="round" d="M3 7h6v6H3z"/></g>'
2120
+ },
2121
+ phone: {
2122
+ body: '<g transform="translate(5.42 2)"><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(-.42)"><rect width="14" height="20" rx="2.999" stroke="none"/><rect width="12" height="18" x="1" y="1" rx="1.999"/></g><circle cx="2" cy="2" r="2" fill="currentColor" transform="translate(4.58 13)"/><rect width="6" height="3" fill="currentColor" rx="1" transform="translate(3.58)"/></g>'
2123
+ },
2124
+ pin: {
2125
+ body: '<g fill="none" stroke="currentColor" stroke-width="2" transform="translate(9 6)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2"/></g><g fill="none"><path d="M12 2a7 7 0 017 7c0 6.009-7 13-7 13S5 15.005 5 9a7 7 0 017-7Z"/><path fill="currentColor" d="M12 4C9.243 4 7 6.243 7 9c0 2.03 1.073 4.642 3.102 7.553a34.014 34.014 0 001.899 2.465 34.08 34.08 0 001.86-2.412C15.916 13.674 17 11.044 17 9c0-2.757-2.243-5-5-5m0-2a7 7 0 017 7c0 6.009-7 13-7 13S5 15.005 5 9a7 7 0 017-7Z"/></g>'
2126
+ },
2127
+ "pin-map": {
2128
+ body: '<g fill="currentColor"><path d="M12.002 20.535a35.386 35.386 0 01-2.68-3.357C6.576 13.264 6 10.57 6 9a6.01 6.01 0 016.002-6.002c3.309 0 6 2.693 6 6.002 0 1.57-.576 4.264-3.318 8.18a35.794 35.794 0 01-2.682 3.355Zm0-15.535c-2.205 0-4 1.795-4 4s1.795 4 4 4A4.004 4.004 0 0016 9c0-2.205-1.793-4-3.998-4Z"/><path d="M12.002 19.016a34.253 34.253 0 001.861-2.409c2.024-2.89 3.139-5.591 3.139-7.607a5.006 5.006 0 00-5-5.002A5.008 5.008 0 007 9c0 2.016 1.115 4.715 3.14 7.604a33.634 33.634 0 001.862 2.412m0-15.016A5.004 5.004 0 0117 9c0 2.758-2.242 5-4.998 5-2.758 0-5-2.242-5-5s2.242-5 5-5m0 18v-.002a35.204 35.204 0 01-3.5-4.248C6.904 15.473 5 12.105 5 9a7.01 7.01 0 017.002-7.002c3.86 0 7 3.14 7 7.002 0 3.102-1.902 6.473-3.5 8.754a35.478 35.478 0 01-3.5 4.244V22Zm0-16c-1.654 0-3 1.346-3 3s1.346 3 3 3A3.002 3.002 0 0015 9c0-1.654-1.344-3-2.998-3Z"/></g>'
2129
+ },
2130
+ pizza: {
2131
+ body: '<path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m15.01 3 5.989 18-17.966-6S1.74 3 15.01 3Z"/><path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M4.677 14.791a9.664 9.664 0 01.016-2.2 9.591 9.591 0 01.981-1.986 9.765 9.765 0 011.018-1.97 10.428 10.428 0 011.785-1.384 10.291 10.291 0 011.809-1.356 10.872 10.872 0 012.239-.506 10.571 10.571 0 012.247-.47"/><path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-width="2" d="M6 14.996c.3-1.14 2.338-1.365 3.387-1a2.773 2.773 0 011.613 3m8-1.072c-.661.308-1.484-.321-1.839-1.4s-.106-2.21.555-2.518"/><path fill="currentColor" d="M12.835 8.259a1.885 1.885 0 00-2.578 2.58.627.627 0 00.465.3.644.644 0 00.539-.184l.144-.123.811 1.164 1.78-1.78-1.166-.83.123-.127a.645.645 0 00.184-.54.626.626 0 00-.3-.464Z"/>'
2132
+ },
2133
+ play: {
2134
+ body: '<g fill="none"><path d="M18.9 10.257a2 2 0 010 3.486l-9.921 5.58A2 2 0 016 17.58V6.42a2 2 0 012.981-1.743Z"/><path fill="currentColor" d="M17.92 12 8 6.42v11.16L17.92 12m2 0c0 .68-.34 1.36-1.019 1.743l-9.92 5.58C7.647 20.073 6 19.11 6 17.58V6.42c0-1.53 1.647-2.493 2.98-1.743l9.921 5.58A1.98 1.98 0 0119.921 12Z"/></g>'
2135
+ },
2136
+ "plug-in": {
2137
+ body: '<g fill="none"><path d="M4.002 19a2 2 0 01-2-2v-7a2 2 0 012-2V7a2 2 0 012-2h3a2 2 0 012 2v1h2V7a2 2 0 012-2h3a2 2 0 012 2v1a2 2 0 012 2v7a2 2 0 01-2 2Z"/><path fill="currentColor" d="M20.002 17v-6.998h-2v-3H15v3H9.004v-3H6.002v1l-.004 2.002H4L4.002 17h16m0 2h-16A2 2 0 012 17V9.998a2 2 0 012.002-1.996V6.998c0-1.105.895-1.996 2.002-1.996h2.998c1.107 0 2.002.89 2.002 1.996v1.004H13V6.998c0-1.105.895-1.996 2-1.996h3c1.106 0 2.002.89 2.002 1.996v1.004c1.105 0 2 .894 2 1.996V17a2 2 0 01-2 2Z"/></g>'
2138
+ },
2139
+ pointer: {
2140
+ body: '<g stroke="currentColor"><g fill="none" stroke-width="2" transform="translate(4 4)"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7"/></g><g transform="translate(9 9)"><circle cx="3" cy="3" r="3" fill="currentColor" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g></g>'
2141
+ },
2142
+ printer: {
2143
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M19.553 8H4.5A1.524 1.524 0 003 9.5v7A1.5 1.5 0 004.5 18H6v1.5A1.527 1.527 0 007.5 21h9a1.525 1.525 0 001.5-1.5V18h1.5a1.526 1.526 0 001.5-1.5V9.489A1.469 1.469 0 0019.553 8Z"/><path fill="currentColor" d="M5 9.999v6h3v3h8v-3h3V10H5m-.5-2h15.053C20.352 8 21 8.667 21 9.49v7.005c0 .823-.701 1.504-1.5 1.504H18v1.5c0 .818-.7 1.5-1.495 1.5H7.497c-.794 0-1.497-.682-1.497-1.5v-1.5H4.5a1.5 1.5 0 01-1.5-1.5v-7c0-.822.701-1.5 1.5-1.5Z"/></g><g stroke-miterlimit="10"><path d="M6 13.999h12v5.716a1.333 1.333 0 01-1.375 1.287h-9.25A1.333 1.333 0 016 19.715Z"/><path fill="currentColor" d="M8 15.999v3h8v-3H8m-2-2h12v5.713c0 .71-.615 1.287-1.375 1.287h-9.25c-.76 0-1.375-.576-1.375-1.287v-5.713Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M14 12h2"/><g stroke="currentColor" stroke-width="2"><path stroke-linejoin="round" d="M16.001 5.998h-2v-2Z"/><path stroke-miterlimit="10" d="M8 9V5.195A1.2 1.2 0 019.21 4h4.912L16 5.813V9"/></g></g>'
2144
+ },
2145
+ profile: {
2146
+ body: '<path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-width="2" d="M12 14a4.963 4.963 0 01-4-2 3 3 0 003-3 3 3 0 00-3-3 4.963 4.963 0 014-2 4.964 4.964 0 014 2 3.006 3.006 0 00-3 3 3 3 0 003 3 4.958 4.958 0 01-4 2Z"/><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M6 22a6 6 0 016-6 6 6 0 016 6"/><g fill="rgba(0,0,0,0)" stroke="currentColor" stroke-width="2" transform="translate(4 5)"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(12 5)"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3"/></g>'
2147
+ },
2148
+ "profile-add": {
2149
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M15.001 6h6m-3-3v6"/><g fill="rgba(0,0,0,0)"><path d="M8 16a3.997 3.997 0 01-3.333-1.788l-.166-.25-.277-.117a1.998 1.998 0 01-1.222-1.844c0-.807.48-1.53 1.222-1.844l.278-.117.166-.25A3.994 3.994 0 018.001 8c1.344 0 2.59.67 3.335 1.79l.167.25.277.118A1.998 1.998 0 0113 12c0 .806-.48 1.53-1.222 1.843l-.276.117-.167.25A3.997 3.997 0 018 16Z"/><path fill="currentColor" d="M8 15a3 3 0 002.503-1.342l.333-.5.554-.235a1 1 0 000-1.844l-.554-.235-.333-.5a3 3 0 00-5.002-.001l-.333.501-.555.234a.999.999 0 00-.61.923 1 1 0 00.61.923l.554.234.333.5A2.999 2.999 0 008 15.001m0 2a4.995 4.995 0 01-4.165-2.235 3 3 0 01.001-5.53A4.993 4.993 0 018 7c1.74 0 3.272.889 4.168 2.237a3 3 0 010 5.529A4.996 4.996 0 018 17Z"/></g><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M4.001 22a4 4 0 018 0"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(2 9)"><rect width="6" height="6.001" rx="3" stroke="none"/><rect width="4" height="4.001" x="1" y="1" rx="2"/></g><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(8.001 9)"><rect width="6" height="6.001" rx="3" stroke="none"/><rect width="4" height="4.001" x="1" y="1" rx="2"/></g>'
2150
+ },
2151
+ "push-pin-off": {
2152
+ body: '<defs><clipPath id="svgIDa"><path fill="none" stroke="#000" d="M0 0h17.997v17.996H0z"/></clipPath></defs><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g clip-path="url(#svgIDa)" transform="translate(3 3)"><path d="M8.955 4.786 7.143 2.975A.821.821 0 016.9 2.4V1.395a.4.4 0 00-.681-.279L1.114 6.224a.4.4 0 00.279.68H2.4a.808.808 0 01.574.239l1.812 1.812m2.463 6.021a7.548 7.548 0 001.111 1.731.822.822 0 001.16.092.63.63 0 00.047-.043l7.191-7.191a.824.824 0 000-1.164l-.045-.041a7.552 7.552 0 00-1.732-1.111"/></g><path stroke-linecap="round" d="m17 17 3 3M4 20 20 4"/></g>'
2153
+ },
2154
+ "push-pin-on": {
2155
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path d="M19.711 11.362c-2.283-1.92-4.212-1.7-5.044-1.466a.818.818 0 01-.806-.206l-3.715-3.714a.816.816 0 01-.24-.574V4.396a.4.4 0 00-.681-.279L4.117 9.225a.4.4 0 00.279.68h1.006a.816.816 0 01.574.239l3.715 3.715a.818.818 0 01.206.806c-.235.832-.454 2.762 1.466 5.044a.823.823 0 001.207.049l7.191-7.191a.823.823 0 00-.05-1.205Z"/><path stroke-linecap="round" d="m17 17 3 3"/></g>'
2156
+ },
2157
+ qrcode: {
2158
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2)"><rect width="6" height="6" rx="2" stroke="none"/><rect width="4" height="4" x="1" y="1" rx="1"/></g><g stroke-miterlimit="10" transform="translate(2 16)"><rect width="6" height="6" rx="2" stroke="none"/><rect width="4" height="4" x="1" y="1" rx="1"/></g><g stroke-miterlimit="10" transform="translate(16 2)"><rect width="6" height="6" rx="2" stroke="none"/><rect width="4" height="4" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M3 12h8v2m1-11v5m-1 11v2h4v-6m2-3h4v3m-2 6h2v-2"/></g>'
2159
+ },
2160
+ "question-badge": {
2161
+ body: '<g transform="translate(2 2)"><circle cx="10" cy="10" r="10" fill="currentColor"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 6.671a4.15 4.15 0 015.25-2.444A4.005 4.005 0 0114 8.004c0 2.665-4.116 4-4.116 4"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M10 17v-1"/></g>'
2162
+ },
2163
+ radio: {
2164
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(2.001 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g>'
2165
+ },
2166
+ redo: {
2167
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-miterlimit="10" d="M17.999 8H9.036A5.011 5.011 0 004 12.986v.027A5.011 5.011 0 009.036 18h3.981"/><path stroke-linejoin="round" d="m17 5 3 3-3 3"/></g>'
2168
+ },
2169
+ relations: {
2170
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-linecap="round" stroke-miterlimit="10" transform="translate(2 6.75)"><path d="m3 1.25 2 2"/><circle cx="1" cy="1" r="1" transform="translate(1 -.75)"/></g><g stroke-linecap="round" stroke-miterlimit="10" transform="translate(10 4.75)"><path d="M2 2.25v2"/><circle cx="1" cy="1" r="1" transform="translate(1 -.75)"/></g><g stroke-linecap="round" stroke-miterlimit="10" transform="translate(17 6)"><path d="M2 2 0 4"/><circle cx="1" cy="1" r="1" transform="translate(2)"/></g><path stroke-linejoin="round" d="M9 22a3 3 0 013-3 3 3 0 013 3"/><g transform="translate(9 12)"><rect width="6.001" height="6.001" rx="3" stroke="none"/><rect width="4.001" height="4.001" x="1" y="1" rx="2"/></g></g>'
2171
+ },
2172
+ reload: {
2173
+ body: '<g fill="none" stroke="currentColor"><path d="M17 16.754A6.869 6.869 0 0111.92 19 6.96 6.96 0 015 12m2-5.18A7.252 7.252 0 0111.826 5 7.089 7.089 0 0119 12"/><path d="m7 13-2-2-2 2m14-2 2 2 2-2"/></g>'
2174
+ },
2175
+ remove: {
2176
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 12h16"/>'
2177
+ },
2178
+ "remove-circle": {
2179
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g><path stroke-linecap="round" d="M7 12h10"/></g>'
2180
+ },
2181
+ reorder: {
2182
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-miterlimit="10" d="M4 14h16M4 10h16"/><path stroke-linejoin="round" d="m14.001 6.001-2-2-2 2M9.999 18l2 2 2-2"/></g>'
2183
+ },
2184
+ repeat: {
2185
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="m17 4 3 3-3 3M7 20l-3-3 3-3"/><path d="M4 11V9a2.184 2.184 0 012.332-2H18m2 6v2a2.184 2.184 0 01-2.332 2H6"/></g>'
2186
+ },
2187
+ repository: {
2188
+ body: '<g fill="none"><path d="M4 21.002a2 2 0 01-2-2V6.27c0-1.133.859-2.26 1.717-2.264l6-.006.834.006L11.93 6.27H20a2 2 0 012 2v10.732a2 2 0 01-2 2Z"/><path fill="currentColor" d="m20 19.002.002-10.73C20 8.272 20 8.27 20 8.27h-9.195l-.586-.96L9.422 6l-5.346.006a.603.603 0 00-.078.264L3.996 19c.002 0 .002.002.002.002H20m0 2H3.998c-1.103 0-2-.896-2-2V6.27c0-1.133.86-2.26 1.717-2.264l6-.006.834.006 1.379 2.264H20a2 2 0 012 2v10.732a2 2 0 01-2 2Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m17 14-2-2-2 2m2-1v4"/></g>'
2189
+ },
2190
+ "request-form": {
2191
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(3.5 3.5)"><path d="M12.5 9.632a4.163 4.163 0 01-2.866 2.866m0-8A4.165 4.165 0 0112.5 7.366m-8 0a4.166 4.166 0 012.866-2.867m0 8a4.161 4.161 0 01-2.868-2.866m11.001.87c-.518 3.465-2.1 4.465-5 5m0-14a5.77 5.77 0 015 5m-14 0a5.777 5.777 0 015-5m0 14a5.629 5.629 0 01-5-5"/><rect width="4" height="5" rx="1.333" transform="translate(6.5 12.5)"/><rect width="5" height="4" rx="1.333" transform="translate(12.5 6.5)"/><rect width="5" height="4" rx="1.333" transform="translate(-.5 6.5)"/><rect width="4" height="5" rx="1.333" transform="translate(6.5 -.5)"/></g>'
2192
+ },
2193
+ "resize-100": {
2194
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21.001 8.998v-4h-4M17 19.001h4v-4M7 4.999H3v4m-.001 6.003v4h4"/><path fill="currentColor" d="M6.121 16h3.877v-1.243H8.787V8l-2.789.824v1.333l1.494-.461v5.062H6.121Zm7.998 0h3.877v-1.243h-1.211V8l-2.789.824v1.333l1.494-.461v5.062h-1.371ZM11 10.964h1V9.501h-1Zm0 3.537h1v-1.464h-1Z"/>'
2195
+ },
2196
+ "resize-height": {
2197
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-linejoin="round" d="m14 9-2-2-2 2m-.001 6.002 2 2 2-2"/><path d="M4 3h16M4 21h16"/></g>'
2198
+ },
2199
+ "resize-width": {
2200
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-linejoin="round" d="m14.999 14 2-2-2-2m-6.002-.001-2 2 2 2"/><path d="M20.999 4v16m-18-16v16"/></g>'
2201
+ },
2202
+ search: {
2203
+ body: '<g stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path fill="currentColor" stroke-linecap="round" d="m15 15 6 6"/><g fill="none" transform="translate(3 3)"><circle cx="7" cy="7" r="7" stroke="none"/><circle cx="7" cy="7" r="6"/></g></g>'
2204
+ },
2205
+ "sequential-prerequisites": {
2206
+ body: '<g transform="translate(4.884 5.999)"><rect width="8" height="4" fill="none" stroke="currentColor" stroke-width="2" rx=".5" transform="translate(7.117 -1.998)"/><path fill="currentColor" d="M-.795 2.091h.944V-.775l-1.032.254v-.976l2.165-.5v4.091h.835v.909H-.794Zm-.077 9.859a1.333 1.333 0 01.858-1.385l.908-.456a.481.481 0 00.271-.514v-.263c0-.257-.109-.373-.338-.373h-.44c-.231 0-.341.112-.341.373v.533h-.93v-.479A1.2 1.2 0 01.434 8.002h.341a1.2 1.2 0 011.317 1.367v.264a1.322 1.322 0 01-.857 1.368l-.9.458a.446.446 0 00-.279.456v.16H2.12v.926H-.868Z"/><g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(7.115 9)"><rect width="8" height="6" rx="2" stroke="none"/><rect width="6" height="4" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M9.12 9V7.7a1.869 1.869 0 012-1.7h0a1.869 1.869 0 012 1.7V9"/></g></g>'
2207
+ },
2208
+ settings: {
2209
+ body: '<g fill="none" stroke-linecap="round" stroke-linejoin="round" transform="translate(3.75 3.762)"><path d="M7.235 16.238h2.029l.248-1.992.344-.095a6.075 6.075 0 001.436-.595l.311-.18 1.585 1.237 1.437-1.437-1.237-1.585.18-.312a6.093 6.093 0 00.595-1.436l.095-.343 1.992-.247V7.222l-1.991-.247-.095-.344a6.082 6.082 0 00-.6-1.436l-.18-.311 1.237-1.585-1.432-1.438-1.586 1.238-.311-.18a6.087 6.087 0 00-1.435-.597l-.344-.095L9.265.236h-2.03l-.248 1.991-.344.095a6.087 6.087 0 00-1.435.6l-.311.18-1.586-1.241-1.437 1.437 1.237 1.586-.18.312a6.071 6.071 0 00-.6 1.435l-.095.345-1.986.246v2.03l1.991.248.095.344a6.071 6.071 0 00.6 1.435l.18.312-1.242 1.586 1.437 1.437 1.585-1.237.311.18a6.087 6.087 0 001.436.595l.344.095Z"/><path fill="currentColor" d="m9.265 16.238.248-1.992.344-.095c.512-.14.995-.34 1.435-.594l.311-.18 1.586 1.237 1.437-1.437-1.237-1.586.18-.312a6.06 6.06 0 00.595-1.435l.095-.343 1.991-.248v-2.03l-1.991-.248-.095-.344a6.082 6.082 0 00-.595-1.436l-.18-.311 1.237-1.586-1.437-1.437L11.603 3.1l-.31-.18a6.087 6.087 0 00-1.436-.595l-.344-.095L9.265.238h-2.03l-.248 1.991-.344.095c-.512.14-.994.34-1.435.595l-.311.18L3.31 1.861 1.874 3.298l1.237 1.586-.18.312c-.254.44-.455.923-.595 1.435l-.095.344-1.991.248v2.03l1.991.248.095.344c.14.512.34.994.595 1.434l.18.312-1.237 1.586 1.437 1.437 1.586-1.237.31.18c.442.254.924.454 1.436.594l.344.095.248 1.992h2.03m0 2h-2.03a2 2 0 01-1.984-1.753l-.091-.73a8.062 8.062 0 01-.04-.016l-.579.452a2 2 0 01-2.644-.163L.46 14.591a2 2 0 01-.163-2.644l.452-.579a8.046 8.046 0 01-.017-.04l-.73-.09A2 2 0 01-1.75 9.252v-2.03A2 2 0 01.004 5.238l.728-.09a8.03 8.03 0 01.017-.04l-.452-.58A2 2 0 01.46 1.885L1.897.447A2 2 0 014.542.285l.578.451.04-.016.09-.73a2 2 0 011.985-1.752h2.03a2 2 0 011.984 1.753l.091.729.04.016.578-.451a2 2 0 012.645.162l1.437 1.437a2 2 0 01.163 2.645l-.452.578.017.04.728.091a2 2 0 011.754 1.985v2.03a2 2 0 01-1.753 1.984l-.73.091a7.995 7.995 0 01-.016.04l.452.579a2 2 0 01-.163 2.644l-1.437 1.437a2 2 0 01-2.644.163l-.58-.452a8.12 8.12 0 01-.039.017l-.09.73a2 2 0 01-1.985 1.752Z"/><circle cx="3" cy="3" r="3" stroke="currentColor" stroke-width="2" transform="translate(5.25 5.238)"/></g>'
2210
+ },
2211
+ share: {
2212
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(4.207 3.75) translate(-.207 5.25)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2"/></g><g stroke-miterlimit="10" transform="translate(4.207 3.75) translate(9.793 11.25)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2"/></g><g stroke-miterlimit="10" transform="translate(4.207 3.75) translate(9.793 -.75)"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m15 17-6-4m6-6-6 4"/></g>'
2213
+ },
2214
+ sketch: {
2215
+ body: '<path fill="none" d="M0 0h24v24H0z"/><g fill="none"><path d="M15.33 4a2 2 0 011.743 1.019l3.375 6a2 2 0 010 1.961l-3.375 6A2 2 0 0115.33 20H8.67a2 2 0 01-1.743-1.019l-3.375-6a2 2 0 010-1.961l3.375-6A2 2 0 018.67 4Z"/><path fill="currentColor" d="m8.67 6-3.375 6 3.375 6h6.66l3.375-6-3.375-6H8.67m0-2h6.66a2 2 0 011.743 1.02l3.375 6a2 2 0 010 1.96l-3.375 6A2 2 0 0115.33 20H8.67a2 2 0 01-1.743-1.02l-3.375-6a2 2 0 010-1.96l3.375-6A2 2 0 018.67 4Z"/></g>'
2216
+ },
2217
+ skills: {
2218
+ body: '<g transform="translate(2.988 2.25)"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M6.012 19.75a3 3 0 013-3 3 3 0 013 3"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(6.012 9.75)"><rect width="6.001" height="6.001" rx="3" stroke="none"/><rect width="4.001" height="4.001" x="1" y="1" rx="2"/></g><rect width="5" height="5" fill="currentColor" rx="1" transform="translate(-.988 3.75)"/><path fill="currentColor" d="M14.648 4.231a1 1 0 011.728 0l1.759 3.019a1 1 0 01-.864 1.5h-3.518a1 1 0 01-.864-1.5ZM8.405.214a1 1 0 011.214 0l1.839 1.4a1 1 0 01.348 1.09l-.722 2.346a1 1 0 01-.955.7H7.896a1 1 0 01-.955-.7l-.723-2.342a1 1 0 01.348-1.09Z"/></g>'
2219
+ },
2220
+ "skip-back": {
2221
+ body: '<g fill="none"><path d="M5.039 13.736a2 2 0 010-3.473l7.969-4.554A2 2 0 0116 7.446v9.108a2 2 0 01-2.992 1.736Z"/><path fill="currentColor" d="M6.031 12 14 16.554V7.446L6.031 12m-2 0a1.98 1.98 0 011.008-1.736l7.969-4.554C14.34 4.948 16 5.91 16 7.446v9.108c0 1.535-1.659 2.498-2.992 1.736l-7.97-4.554A1.981 1.981 0 014.032 12Z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M19 6v12"/></g>'
2222
+ },
2223
+ "skip-forward": {
2224
+ body: '<g fill="none"><path d="M18.961 10.264a2 2 0 010 3.473l-7.969 4.554A2 2 0 018 16.554V7.446a2 2 0 012.992-1.736Z"/><path fill="currentColor" d="m17.969 12-7.97-4.554v9.108L17.968 12m2 0a1.98 1.98 0 01-1.008 1.736l-7.969 4.554c-1.333.762-2.992-.2-2.992-1.736V7.446c0-1.535 1.659-2.498 2.992-1.736l7.97 4.554A1.981 1.981 0 0119.968 12Z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 6v12"/></g>'
2225
+ },
2226
+ sms: {
2227
+ body: '<g fill="none"><path d="M5 4h14a3 3 0 013 3v8a3 3 0 01-3 3H5a3 3 0 01-3-3V7a3 3 0 013-3Z"/><path fill="currentColor" d="M4.999 6c-.55 0-1 .449-1 1v8c0 .552.45 1 1 1H19a1 1 0 001-1V7c0-.551-.448-1-1-1H5m0-2h14a3 3 0 013 3v8a3 3 0 01-3 3H5a3 3 0 01-3-3V7a3 3 0 013-3Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 9h8m-8 4.001h5"/><path d="M6 17h4l-4 4Z"/><path fill="currentColor" d="M5.999 17h4l-4 4v-4Z"/></g>'
2228
+ },
2229
+ "sso-access": {
2230
+ body: '<g fill="none"><g stroke-linecap="round"><path d="M18.002 18.002h-12a4 4 0 01-1.977-7.479 5 5 0 014.977-4.52 4.783 4.783 0 01.5.025 6 6 0 0110.5 3.974c0 .176-.008.35-.021.521a4 4 0 01-1.979 7.479Z"/><path fill="currentColor" d="M18 16a1.999 1.999 0 001.998-1.996c0-.72-.387-1.389-1.012-1.744l-1.103-.63.1-1.267a4.001 4.001 0 00-6.979-3.01l-.684.772-1.025-.11a2.986 2.986 0 00-3.28 2.695l-.097 1.034-.9.514a2.015 2.015 0 00-1.014 1.746C4.004 15.106 4.9 16 6.002 16H18m0 2H6.002a3.999 3.999 0 01-3.998-3.996c0-1.492.814-2.793 2.021-3.482a4.998 4.998 0 015.48-4.495 5.987 5.987 0 014.497-2.023 5.996 5.996 0 015.975 6.518 4 4 0 012.021 3.482A3.996 3.996 0 0118 18Z"/></g><g stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-miterlimit="10" d="M11.999 11v3"/><g transform="translate(9.999 8)"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1"/></g></g></g>'
2231
+ },
2232
+ star: {
2233
+ body: '<path fill="none" stroke="currentColor" d="m12 4 1.889 6.111H20l-4.944 3.778L16.944 20 12 16.223 7.056 20l1.888-6.111L4 10.111h6.111Z"/>'
2234
+ },
2235
+ "star-active": {
2236
+ body: '<path fill="currentColor" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="m12 4 1.889 6.111H20l-4.944 3.778L16.944 20 12 16.223 7.056 20l1.888-6.111L4 10.111h6.111Z"/>'
2237
+ },
2238
+ success: {
2239
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" transform="translate(2.751 3)"><rect width="4" height="10" rx="2" transform="translate(.25 7.001)"/><path stroke-linecap="round" d="M16.066 8.914h-.885l.069-.48h.816a1.188 1.188 0 000-2.375h-1.959L11.253 6s.617-4.309-2-5.754c-1.683-.834-2 .754-2 .754v3l-1 1s-2 1.856-2 3.019V15a1.868 1.868 0 002 2h8.185a1.188 1.188 0 000-2.375h-.08l.069-.481h.825a1.188 1.188 0 000-2.375h-.486l.069-.481h1.231a1.188 1.188 0 000-2.375Z"/></g>'
2240
+ },
2241
+ sun: {
2242
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(7 7)"><circle cx="5" cy="5" r="5" stroke="none"/><circle cx="5" cy="5" r="4"/></g><path stroke-linecap="round" d="M12 4V3m0 18v-1m8-8h1M3 12h1m14 6.001 1 1M5 4.999l1 1m12 0 1-1M5 19.001l1-1"/></g>'
2243
+ },
2244
+ sunrise: {
2245
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M6 17a6 6 0 016-6 6 6 0 016 6Z"/><path fill="currentColor" d="M15.464 15A4.003 4.003 0 0012 13a4.003 4.003 0 00-3.463 2h6.927m2.537 2H6a6 6 0 016-6 6 6 0 016 6Z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 8V7m-9 9h18M5.001 8.999l1 1m11.999 0 1-1"/></g>'
2246
+ },
2247
+ support: {
2248
+ body: '<g stroke="currentColor" stroke-linejoin="round" transform="translate(5.25 4.75)"><path fill="none" stroke-linecap="round" stroke-width="2" d="M1.75 4.251a5 5 0 0110 0"/><g fill="none" stroke-width="2" transform="translate(-1.25 4.25)"><rect width="6" height="7" rx="2.004" stroke="none"/><rect width="4" height="5" x="1" y="1" rx="1.004"/></g><g fill="none" stroke-width="2" transform="translate(8.75 4.25)"><rect width="6" height="7" rx="2.004" stroke="none"/><rect width="4" height="5" x="1" y="1" rx="1.004"/></g><path fill="none" stroke-linecap="round" stroke-width="2" d="M11.747 10.25v2a2.8 2.8 0 01-2.522 3H8.75"/><circle cx="1" cy="1" r="1" fill="currentColor" stroke-linecap="round" transform="translate(6.75 14.25)"/></g>'
2249
+ },
2250
+ survey: {
2251
+ body: '<g fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M20 2H8a.881.881 0 00-1 1v6a.88.88 0 001 1h2l.5 1.5c.266.7.573.528.8.3L13 10h7a.88.88 0 001-1V3a.881.881 0 00-1-1Z"/><path fill="currentColor" d="M9 4v4h1a2 2 0 011.5.677l.048-.052A2 2 0 0113 8h6V4H9M8 2h12c.673 0 1 .332 1 1v6c0 .67-.327 1-1 1h-7l-1.703 1.797c-.228.227-.535.404-.8-.3L10 10H8c-.673 0-1-.33-1-1V3c0-.668.327-1 1-1Z"/></g><path fill="currentColor" d="M12.99 5.74a.123.123 0 00-.049-.053.175.175 0 00-.065-.022l-.421-.064a.2.2 0 01-.085-.04.211.211 0 01-.063-.072l-.188-.4a.183.183 0 00-.045-.062.112.112 0 00-.073-.027.112.112 0 00-.073.029.184.184 0 00-.045.062l-.188.4a.212.212 0 01-.063.072.2.2 0 01-.085.04l-.421.064a.162.162 0 00-.084.036.118.118 0 00-.03.039.117.117 0 00-.011.05.137.137 0 00.015.061.2.2 0 00.036.049l.3.31a.205.205 0 01.041.07.26.26 0 01.017.088.142.142 0 010 .024l-.072.438a.217.217 0 000 .037.143.143 0 00.029.091.108.108 0 00.04.031.112.112 0 00.047.01.166.166 0 00.079-.023l.376-.207a.2.2 0 01.091-.02.2.2 0 01.091.02l.377.207a.165.165 0 00.079.023.112.112 0 00.047-.01.112.112 0 00.053-.052.154.154 0 00.015-.07.222.222 0 000-.037l-.072-.438a.143.143 0 010-.023.262.262 0 01.017-.088.2.2 0 01.041-.07l.3-.31a.2.2 0 00.036-.049.137.137 0 00.015-.061.119.119 0 00-.009-.053Zm4 0a.123.123 0 00-.049-.053.175.175 0 00-.065-.022l-.421-.064a.2.2 0 01-.085-.04.211.211 0 01-.063-.072l-.188-.4a.183.183 0 00-.045-.062.112.112 0 00-.073-.027.112.112 0 00-.073.029.184.184 0 00-.045.062l-.188.4a.212.212 0 01-.063.072.2.2 0 01-.085.04l-.421.064a.162.162 0 00-.084.036.118.118 0 00-.03.039.117.117 0 00-.011.05.137.137 0 00.015.061.2.2 0 00.036.049l.3.31a.205.205 0 01.041.07.26.26 0 01.017.088.142.142 0 010 .024l-.072.438a.217.217 0 000 .037.143.143 0 00.029.091.108.108 0 00.04.031.112.112 0 00.047.01.166.166 0 00.079-.023l.376-.207a.2.2 0 01.091-.02.2.2 0 01.091.02l.377.207a.165.165 0 00.079.023.112.112 0 00.047-.01.112.112 0 00.053-.052.154.154 0 00.015-.07.222.222 0 000-.037l-.072-.438a.143.143 0 010-.023.262.262 0 01.017-.088.2.2 0 01.041-.07l.3-.31a.2.2 0 00.036-.049.137.137 0 00.015-.061.119.119 0 00-.009-.053Z"/><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M4 22a3 3 0 013-3 3 3 0 013 3"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(4 12)"><rect width="6.001" height="6.001" rx="3" stroke="none"/><rect width="4.001" height="4.001" x="1" y="1" rx="2"/></g>'
2252
+ },
2253
+ table: {
2254
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g transform="translate(2 5)"><rect width="20" height="14" rx="2" stroke="none"/><rect width="18" height="12" x="1" y="1" rx="1"/></g><path d="M9 5v13m-7-8h20M2 14h20"/></g>'
2255
+ },
2256
+ "tematic-channels": {
2257
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" d="M12 4v17m4 0H8"/><path d="M12 5h6.412L20 6.833 18.412 9H12Zm0 7H5.588L4 10.167 5.588 8H12Z"/></g>'
2258
+ },
2259
+ test: {
2260
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(3 4)"><rect width="7" height="7" rx="1.996" stroke="none"/><rect width="5" height="5" x="1" y="1" rx=".996"/></g><g stroke-miterlimit="10" transform="translate(3 13)"><rect width="7" height="7" rx="1.996" stroke="none"/><rect width="5" height="5" x="1" y="1" rx=".996"/></g><path stroke-linejoin="round" d="m-19.121-33.411-2.844 10.626.674 3.286 2.224-2.51 2.844-10.627Z"/></g>'
2261
+ },
2262
+ "text-body": {
2263
+ body: '<path fill="currentColor" d="M3.265 18.07h2.953V7.67l-3.217.992v-2.07l5.41-1.591V18.07h2.59v1.931H3.265Zm10 0h2.953V7.67l-3.217.992v-2.07l5.41-1.591V18.07h2.59v1.931h-7.736Z"/>'
2264
+ },
2265
+ "text-edit": {
2266
+ body: '<path fill="currentColor" d="M7.56 14.951H4.445L3.867 17H2l2.706-9h2.593l2.7 9H8.133Zm-.38-1.35-.551-1.961c-.209-.76-.4-1.459-.63-2.34-.221.882-.42 1.581-.624 2.34l-.55 1.961Zm9.821-2.061v5.351H15.72l-.156-.642-1.013.426a3.829 3.829 0 01-1.47.326 2.015 2.015 0 01-2.079-2.28v-.129c0-1.345.851-2.121 2.757-2.121h1.552v-1.122c0-.585-.209-.912-.863-.912h-.561c-.556 0-.857.179-.857.689v.562h-1.716v-.462c0-1.423.956-2.225 2.594-2.225h.51c1.598 0 2.583.684 2.583 2.539Zm-1.691 2.188h-1.593c-.667 0-.979.2-.979.685v.461c0 .487.248.729.672.729a2.017 2.017 0 00.77-.167l1.124-.339ZM20.001 4h2v16h-2Z"/>'
2267
+ },
2268
+ "text-style": {
2269
+ body: '<path fill="currentColor" d="M9.646 15.041H5.363L4.563 18H2L5.721 5h3.566L13 18h-2.566Zm-.523-1.95-.756-2.832c-.288-1.1-.553-2.108-.866-3.381-.3 1.273-.577 2.283-.858 3.381l-.756 2.832Zm12.876-1.92v6.688h-1.706l-.208-.8-1.351.532a5.372 5.372 0 01-1.961.408 2.592 2.592 0 01-2.771-2.85v-.161c0-1.68 1.135-2.651 3.674-2.651h2.068v-1.4c0-.731-.278-1.14-1.15-1.14h-.748c-.742 0-1.142.224-1.142.863v.7H14.42v-.576c0-1.78 1.274-2.782 3.458-2.782h.678c2.131-.002 3.443.854 3.443 3.169Zm-2.254 2.736h-2.122c-.887 0-1.3.246-1.3.855v.577a.811.811 0 00.895.91 2.832 2.832 0 001.027-.209l1.5-.423Z"/>'
2270
+ },
2271
+ time: {
2272
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m14 10-2 2 3 3"/></g>'
2273
+ },
2274
+ "toilet-paper": {
2275
+ body: '<g transform="translate(3.709 3.6)"><ellipse cx="2.5" cy="6" fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" rx="2.5" ry="6" transform="translate(12.291 .4)"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.291.4h-12a2.652 2.652 0 00-3 3v14h13v-10"/><path fill="none" stroke="currentColor" stroke-linecap="round" d="M5.291 10.4h1m-4 0h1m5 0h1"/><ellipse cx=".5" cy="1" fill="currentColor" rx=".5" ry="1" transform="translate(14.291 5.401)"/></g>'
2276
+ },
2277
+ "training-points": {
2278
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g transform="translate(2 6)"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7"/></g><g transform="translate(6 10)"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3"/></g><path stroke-linecap="round" d="m10 14 7-7"/><path stroke-linejoin="round" d="m19 3-2 2-.001 2h2l2-2Z"/></g>'
2279
+ },
2280
+ trash: {
2281
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path d="M5 4.999h14v13a3 3 0 01-3 3H8a3 3 0 01-3-3v-13Z" stroke="none"/><path d="M7 5.999h10a1 1 0 011 1v11a2 2 0 01-2 2H8a2 2 0 01-2-2v-11a1 1 0 011-1Z"/><path stroke-linecap="round" d="M4 6h16"/><path d="M14.998 6h-6V4a1 1 0 011-1h4a1 1 0 011 1v2Z" stroke="none"/><path d="M13.998 5h-4V4h4v1Z"/><path stroke-linecap="round" d="M10 10v6m4-6v6"/></g>'
2282
+ },
2283
+ underline: {
2284
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 6v5a4 4 0 108 0V6M6 19h12"/>'
2285
+ },
2286
+ undo: {
2287
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-miterlimit="10" d="M6.001 8.001h8.966a5.012 5.012 0 015.036 4.986v.027a5.012 5.012 0 01-5.036 4.987h-3.984"/><path stroke-linejoin="round" d="M7 5 4 8l3 3"/></g>'
2288
+ },
2289
+ unlock: {
2290
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="m8.033 11-.993-.993a3.484 3.484 0 010-4.966h0a3.484 3.484 0 014.967 0l.993.993"/><path stroke-linecap="round" stroke-miterlimit="10" d="M12 14.998v2"/><g stroke-miterlimit="10" transform="translate(4 10)"><rect width="16" height="12" rx="3" stroke="none"/><rect width="14" height="10" x="1" y="1" rx="2"/></g></g>'
2291
+ },
2292
+ upload: {
2293
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m15 7-3-3-3 3m3-3v10m8 1v3H4v-3"/>'
2294
+ },
2295
+ user: {
2296
+ body: '<rect width="10" height="10" fill="none" stroke="currentColor" stroke-width="2" rx="5" transform="translate(7 4)"/><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M6 22a6 6 0 016-6 6 6 0 016 6"/>'
2297
+ },
2298
+ "user-add": {
2299
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M15 6h6m-3-3v6"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(3 7)"><rect width="10" height="10.001" rx="5" stroke="none"/><rect width="8" height="8.001" x="1" y="1" rx="4"/></g><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M4 22a4 4 0 018 0"/>'
2300
+ },
2301
+ "user-badge": {
2302
+ body: '<path fill="currentColor" d="m12.624 3.539 1.537-1.306a.975.975 0 011.58.537l.509 2a1 1 0 001.009.768l1.977-.112a1.028 1.028 0 01.977 1.406L19.5 8.765a1.061 1.061 0 00.386 1.242l1.662 1.125a1.061 1.061 0 010 1.738l-1.662 1.126a1.061 1.061 0 00-.386 1.24l.713 1.932a1.028 1.028 0 01-.977 1.406l-1.977-.112a1 1 0 00-1.009.768l-.509 2a.975.975 0 01-1.58.537l-1.537-1.306a.955.955 0 00-1.248 0l-1.537 1.306a.975.975 0 01-1.58-.537l-.509-2a1 1 0 00-1.009-.768l-1.977.112a1.028 1.028 0 01-.977-1.406l.713-1.932a1.061 1.061 0 00-.386-1.242l-1.662-1.125a1.061 1.061 0 010-1.738l1.662-1.125A1.061 1.061 0 004.5 8.765l-.713-1.932a1.028 1.028 0 01.977-1.406l1.977.112a1 1 0 001.009-.768l.509-2a.975.975 0 011.58-.537l1.537 1.306a.955.955 0 001.248-.001Z"/><path fill="none" stroke="currentColor" stroke-width="2" d="M12 7a3 3 0 11-3 3 3 3 0 013-3Z"/><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M9.001 17a3 3 0 013-3 3 3 0 013 3"/>'
2303
+ },
2304
+ "video-off": {
2305
+ body: '<path fill="currentColor" d="M5 15.242V8h7.243l2-2H4.868A1.8 1.8 0 003 7.715v8.569a1.584 1.584 0 00.2.758Zm10-1.515V16h-2.273l-2 2h4.4A1.8 1.8 0 0017 16.284v-4.557Z"/><path fill="currentColor" d="M21.351 8a.642.642 0 00-.373.121l-1.3.925-3.44 3.443c.013.01.018.026.031.035l4.709 3.356A.646.646 0 0022 15.356v-6.71A.646.646 0 0021.351 8"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 20 20 4"/>'
2306
+ },
2307
+ "video-on": {
2308
+ body: '<g stroke-linecap="round" stroke-linejoin="round"><g fill="currentColor"><path d="M21 14.666 17.257 12l3.741-2.666v5.332Z"/><path d="M20 11.275 18.98 12l1.018.726v-1.451M21.351 8c.335 0 .648.265.648.646v6.71a.646.646 0 01-1.02.523l-4.71-3.355a.642.642 0 010-1.047l4.71-3.356a.638.638 0 01.372-.12Z"/></g><g fill="none"><path d="M4.868 5.999h10.264A1.8 1.8 0 0117 7.714v8.57a1.8 1.8 0 01-1.868 1.715H4.868A1.8 1.8 0 013 16.284v-8.57a1.8 1.8 0 011.868-1.715Z"/><path fill="currentColor" d="M5 7.999v8h10v-8H5m-.132-2h10.264c1.032 0 1.868.768 1.868 1.715v8.57c0 .947-.836 1.715-1.868 1.715H4.868C3.836 17.999 3 17.231 3 16.284v-8.57C3 6.767 3.836 6 4.868 6Z"/></g></g>'
2309
+ },
2310
+ "video-rec": {
2311
+ body: '<g transform="translate(3.709 5.695)"><g stroke-linecap="round" stroke-linejoin="round"><g fill="currentColor"><path d="m17.29 8.971-3.74-2.666 3.74-2.665v5.332Z"/><path d="m16.29 5.58-1.018.725 1.018.726V5.58m1.352-3.275c.335 0 .648.265.648.646v6.71a.646.646 0 01-1.02.523L12.56 6.83a.642.642 0 010-1.047l4.71-3.356a.638.638 0 01.372-.12Z"/></g><g fill="none"><path d="M1.159.304h10.264a1.8 1.8 0 011.868 1.715v8.57a1.8 1.8 0 01-1.868 1.715H1.159a1.8 1.8 0 01-1.868-1.715v-8.57A1.8 1.8 0 011.159.304Z"/><path fill="currentColor" d="M1.291 2.304v8h10v-8h-10m-.132-2h10.264c1.032 0 1.868.768 1.868 1.715v8.57c0 .947-.836 1.715-1.868 1.715H1.16c-1.032 0-1.868-.768-1.868-1.715v-8.57c0-.947.836-1.715 1.868-1.715Z"/></g></g><circle cx="2.5" cy="2.5" r="2.5" fill="currentColor" transform="translate(-1.709 -.695)"/></g>'
2312
+ },
2313
+ view: {
2314
+ body: '<g fill="none" stroke="currentColor" stroke-width="2" transform="translate(5.25 6.75)"><path d="M12.75 13.25h-8a3 3 0 01-3-3v-1h7a3 3 0 003-3v-4h1a3 3 0 013 3v5a3 3 0 01-3 3Z"/><rect width="14" height="11" stroke-miterlimit="10" rx="3" transform="translate(-2.25 -1.75)"/></g>'
2315
+ },
2316
+ "view-card": {
2317
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(2 8)"><rect width="11" height="9" rx="2" stroke="none"/><rect width="9" height="7" x="1" y="1" rx="1"/></g><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(15 8)"><rect width="7" height="6" rx="2" stroke="none"/><rect width="5" height="4" x="1" y="1" rx="1"/></g>'
2318
+ },
2319
+ "view-list": {
2320
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(2 5)"><rect width="6" height="6" rx="2" stroke="none"/><rect width="4" height="4" x="1" y="1" rx="1"/></g><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(2 13)"><rect width="6" height="6" rx="2" stroke="none"/><rect width="4" height="4" x="1" y="1" rx="1"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M11 10h5m-5 8h5M11 6h10m-10 8h10"/>'
2321
+ },
2322
+ "voice-off": {
2323
+ body: '<path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" d="M12.001 17.5V21"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M9.001 21h6"/><path fill="currentColor" stroke="rgba(0,0,0,0)" d="M11.001 8.743V5a1 1 0 012 0v1.743l1.976-1.976A2.992 2.992 0 009.001 5v5.743Zm3.047 5.438c.046-.043.091-.088.134-.134Zm-7.877-.608 1.83-1.83V11a1 1 0 00-2 0v1.386a5.867 5.867 0 00.17 1.188"/><path fill="currentColor" stroke="rgba(0,0,0,0)" d="M16.001 12.227v.083a3.835 3.835 0 01-3.755 3.672l-1.845 1.845a5.521 5.521 0 001.365.173h.2a5.862 5.862 0 006.035-5.653V11a.978.978 0 00-.2-.571Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m4.001 20 16-16"/>'
2324
+ },
2325
+ "voice-on": {
2326
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(9 2.001)"><rect width="6" height="13" rx="3" stroke="none"/><rect width="4" height="11" x="1" y="1" rx="2"/></g><path stroke-linecap="round" d="M17 11v1.348a4.836 4.836 0 01-5 4.653h0a4.836 4.836 0 01-5-4.653V11"/><path d="M12 17.001v3"/><path stroke-linecap="round" d="M9 21.001h6"/></g>'
2327
+ },
2328
+ "volume-down": {
2329
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M19.002 9.999a2.552 2.552 0 010 4"/><g stroke-linejoin="round"><path d="M3 14.517a1.671 1.671 0 001.479 1.48h4.76a1.387 1.387 0 01.837.276l3.776 2.446A1.326 1.326 0 0016 17.794v-11.6a1.326 1.326 0 00-2.148-.925l-3.776 2.446a1.387 1.387 0 01-.837.276h-4.76A1.688 1.688 0 003 9.491Z"/><path fill="currentColor" d="M14 16.435v-8.87L11.211 9.37a3.407 3.407 0 01-1.972.63h-4.24v4h4.24c.708 0 1.404.222 1.972.628L14 16.435M14.681 19c-.285 0-.576-.087-.83-.278l-3.775-2.446A1.387 1.387 0 009.239 16h-4.76c-.725 0-1.48-.818-1.48-1.48V9.496C3 8.834 3.755 8 4.48 8h4.76c.306 0 .602-.098.837-.277l3.776-2.446c.855-.647 2.148-.09 2.148.925v11.595c0 .715-.64 1.203-1.319 1.203Z"/></g></g>'
2330
+ },
2331
+ "volume-off": {
2332
+ body: '<g fill="none"><g stroke-linejoin="round"><path d="M2.001 13.853a1.886 1.886 0 001.5 1.384h3.5a1.227 1.227 0 01.708.219l3.292 2.32c.724.513 2 .086 2-.719V6.947c0-.8-1.276-1.239-2-.726l-3 2.332a2.338 2.338 0 01-1 .214h-3.5a1.882 1.882 0 00-1.5 1.385Z"/><path fill="currentColor" d="M11 15.33V8.754l-1.772 1.378a1.978 1.978 0 01-.069.051c-.782.556-1.935.584-2.158.584H4v2.47h3c.667 0 1.328.208 1.861.585L11 15.33m.75 2.67c-.267 0-.533-.07-.75-.224l-3.292-2.32A1.23 1.23 0 007 15.237H3.505C2.89 15.237 2 14.378 2 13.853v-3.7c0-.525.887-1.386 1.5-1.386H7c.259 0 .8-.073 1-.214l3-2.332c.724-.513 2-.079 2 .726v10.11c0 .564-.626.942-1.25.942Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="m16 14 4-4m-4 0 4 4"/></g>'
2333
+ },
2334
+ "volume-up": {
2335
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M15.001 8.999a5.075 5.075 0 010 6m4.001-7a8.593 8.593 0 010 8"/><g stroke-linejoin="round"><path d="M2.001 13.853a1.886 1.886 0 001.5 1.384h3.5a1.227 1.227 0 01.708.219l3.292 2.32c.724.513 2 .086 2-.719V6.947c0-.8-1.276-1.239-2-.726l-3 2.332a2.338 2.338 0 01-1 .214h-3.5a1.882 1.882 0 00-1.5 1.385Z"/><path fill="currentColor" d="M11 15.33V8.754l-1.772 1.378a1.978 1.978 0 01-.069.051c-.782.556-1.935.584-2.158.584H4v2.47h3c.667 0 1.328.208 1.861.585L11 15.33m.75 2.67c-.267 0-.533-.07-.75-.224l-3.292-2.32A1.23 1.23 0 007 15.237H3.505C2.89 15.237 2 14.378 2 13.853v-3.7c0-.525.887-1.386 1.5-1.386H7c.259 0 .8-.073 1-.214l3-2.332c.724-.513 2-.079 2 .726v10.11c0 .564-.626.942-1.25.942Z"/></g></g>'
2336
+ },
2337
+ warning: {
2338
+ body: '<g fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M10.577 3.833a1.632 1.632 0 012.846 0l4.177 7.334 4.178 7.334a1.666 1.666 0 01-1.423 2.5H3.645a1.666 1.666 0 01-1.423-2.5L6.4 11.167Z"/><path fill="currentColor" d="M12 5.375 4.24 19h15.52L12 5.375M12 3c.553 0 1.107.278 1.423.833l8.354 14.668C22.41 19.612 21.619 21 20.354 21H3.645c-1.264 0-2.055-1.388-1.423-2.5l8.355-14.666c.316-.555.87-.833 1.423-.833Z"/><path stroke="currentColor" stroke-width="2" d="M12 9v4m0 4h0"/></g>'
2339
+ },
2340
+ webinar: {
2341
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M15 14.5a1.5 1.5 0 11.44 1.06A1.5 1.5 0 0115 14.5Z"/><path fill="currentColor" d="M16.5 13c.415 0 .788.167 1.06.439.273.272.44.646.44 1.061 0 .415-.167.788-.44 1.06a1.495 1.495 0 01-2.12 0A1.497 1.497 0 0116.5 13Z"/><path d="M8 19.5a1.5 1.5 0 11.44 1.06A1.5 1.5 0 018 19.5Z"/><path fill="currentColor" d="M9.5 18c.415 0 .788.167 1.06.439.273.272.44.646.44 1.061 0 .415-.167.788-.44 1.06a1.495 1.495 0 01-2.12 0A1.497 1.497 0 019.5 18Z"/><path d="M13 19.5a1.5 1.5 0 11.44 1.06A1.5 1.5 0 0113 19.5Z"/><path fill="currentColor" d="M14.5 18c.415 0 .788.167 1.06.439.273.272.44.646.44 1.061 0 .415-.167.788-.44 1.06a1.495 1.495 0 01-2.12 0A1.497 1.497 0 0114.5 18Z"/><path d="M10.5 14.5a1.5 1.5 0 11.44 1.06 1.5 1.5 0 01-.44-1.06Z"/><path fill="currentColor" d="M12 13c.415 0 .788.167 1.06.439.273.272.44.646.44 1.061 0 .415-.167.788-.44 1.06a1.495 1.495 0 01-2.12 0A1.497 1.497 0 0112 13Z"/><path d="M6 14.5a1.5 1.5 0 11.44 1.06A1.5 1.5 0 016 14.5Z"/><path fill="currentColor" d="M7.5 13c.415 0 .788.167 1.06.439.273.272.44.646.44 1.061 0 .415-.167.788-.44 1.06a1.495 1.495 0 01-2.12 0A1.497 1.497 0 017.5 13Z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M3.001 13V5a1.845 1.845 0 012-2h14a1.845 1.845 0 012 2v8"/></g>'
2342
+ },
2343
+ whiteboard: {
2344
+ body: '<path fill="none" d="M0 0h24v24H0z"/><g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" d="m4 20 4-6m4 6v-6m8 6-4-6"/><g stroke-miterlimit="10" transform="translate(2.998 3)"><rect width="18.005" height="12" rx="3" stroke="none"/><rect width="16.005" height="10" x="1" y="1" rx="2"/></g><path d="M6.999 10.182c1.425-1 3.163-3.181 6-3.181-1.206 3.762 2.527 4.983 4 3.181"/></g>'
2345
+ },
2346
+ wine: {
2347
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2"><path stroke-linecap="round" d="M17.919 15.986C20.986 14.639 19.757 9 19.757 9h-5.513s-1.23 5.639 1.838 6.986a1.7 1.7 0 00.4.014h1.062a1.46 1.46 0 00.375-.014ZM16.999 17v4M19 21h-4"/><path d="M4.952 21a1.219 1.219 0 01-.652-.3A1 1 0 014 20v-9c.015-.318 0-1 0-1l1.5-3V3h3v4l1.5 3c.01.009-.015.682 0 1v9a1 1 0 01-.3.7.851.851 0 01-.7.3Z"/><path d="M4 12.001h3v6H4z"/></g>'
2348
+ },
2349
+ zip: {
2350
+ body: '<g stroke="currentColor"><path fill="currentColor" d="M18.001 17a1 1 0 101 1 1 1 0 00-1-1Z"/><path fill="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 5v4m4-4v4m4-4v4"/><g fill="none" stroke-miterlimit="10" stroke-width="2" transform="translate(15 4)"><rect width="6" height="6" rx="1" stroke="none"/><path d="M1 1h4v4H1z"/></g><path fill="none" stroke-linejoin="round" stroke-width="2" d="M17.918 21a2.781 2.781 0 01-2.912-3.108L15.984 13h4.033l.978 4.892A2.781 2.781 0 0118.083 21Z"/></g>'
2351
+ },
2352
+ "zoom-in": {
2353
+ body: '<g stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path fill="currentColor" stroke-linecap="round" d="m15 15 6 6"/><g fill="none" transform="translate(3 3)"><circle cx="7" cy="7" r="7" stroke="none"/><circle cx="7" cy="7" r="6"/></g><path fill="none" stroke-linecap="round" d="M8 10h4m-2-2v4"/></g>'
2354
+ },
2355
+ "zoom-out": {
2356
+ body: '<g stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path fill="currentColor" stroke-linecap="round" d="m15 15 6 6"/><g fill="none" transform="translate(3 3)"><circle cx="7" cy="7" r="7" stroke="none"/><circle cx="7" cy="7" r="6"/></g><path fill="none" stroke-linecap="round" d="M8 10h4"/></g>'
2357
+ }
2358
+ }, L0 = 24, _0 = 24, J0 = {
2359
+ prefix: H0,
2360
+ lastModified: V0,
2361
+ icons: j0,
2362
+ width: L0,
2363
+ height: _0
2364
+ }, S0 = "detailed", $0 = 1668011046, B0 = {
2365
+ add: {
2366
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 15.999h24m-12-12v24"/>'
2367
+ },
2368
+ "add-circle": {
2369
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(2 2)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/><path stroke-linecap="round" d="M9 14h10m-5-5v10"/></g>'
2370
+ },
2371
+ "align-center": {
2372
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23 13H9m18-6H5m22 12H5m18 6H9"/>'
2373
+ },
2374
+ "align-justify": {
2375
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M27 13H5m22-6H5m22 12H5m22 6H5"/>'
2376
+ },
2377
+ "align-left": {
2378
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 13H5m22-6H5m22 12H5m16 6H5"/>'
2379
+ },
2380
+ "align-right": {
2381
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M26.999 13h-16M27 7H5m22 12H5m21.999 6h-16"/>'
2382
+ },
2383
+ analysis: {
2384
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(2 16)"><rect width="7" height="12" rx="2" stroke="none"/><rect width="5" height="10" x="1" y="1" rx="1"/></g><g transform="translate(12 6)"><rect width="8" height="22" rx="2" stroke="none"/><rect width="6" height="20" x="1" y="1" rx="1"/></g><g transform="translate(23 12)"><rect width="7" height="16" rx="2" stroke="none"/><rect width="5" height="14" x="1" y="1" rx="1"/></g></g>'
2385
+ },
2386
+ "analysis-2": {
2387
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M17.657 6.001a.674.674 0 00-.473.2.671.671 0 00-.2.474l.012 10.331H6.665a.673.673 0 00-.473.2.67.67 0 00-.2.473 12.284 12.284 0 0012 12.328 12 12 0 0012-12A12.3 12.3 0 0017.657 6.001Z"/><path fill="currentColor" d="M18.99 8.087 19.004 19l-10.916.004a10.572 10.572 0 002.868 5.93c1.906 1.978 4.408 3.067 7.045 3.067a9.934 9.934 0 007.072-2.93A9.936 9.936 0 0028 18.002c0-2.637-1.091-5.14-3.072-7.045a10.596 10.596 0 00-5.937-2.869m-1.334-2.086C24.287 6 30 11.37 30 18c0 6.627-5.37 12-12 12-6.627 0-12-5.7-12-12.328a.67.67 0 01.67-.668L17 17l-.01-10.33a.671.671 0 01.668-.67Z"/><path d="M14.8 14.8a.7.7 0 00.2-.488V3.692a.7.7 0 00-.2-.489.7.7 0 00-.488-.2A11.312 11.312 0 003 14.311a.7.7 0 00.2.488.7.7 0 00.488.2h10.62a.7.7 0 00.492-.199Z"/><path fill="currentColor" d="M13 13V5.092A9.333 9.333 0 005.092 13H13m1.31 2H3.69a.695.695 0 01-.69-.69C3.001 8.065 8.064 3 14.31 3c.182 0 .36.074.488.202a.698.698 0 01.202.489v10.62c0 .181-.074.36-.202.487a.695.695 0 01-.487.202Z"/></g>'
2388
+ },
2389
+ "analysis-3": {
2390
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-linejoin="round" d="m4 24 10-10 4 4 7-6"/><path stroke-miterlimit="10" d="M29 24.999H3v-18"/></g>'
2391
+ },
2392
+ apple: {
2393
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M16.017 28.843a6.762 6.762 0 011.364.164 7.462 7.462 0 011.364.532l.032.015c.168.079.342.161.521.236a2.332 2.332 0 00.924.211 3.513 3.513 0 001.429-.42 6.044 6.044 0 002.269-1.911 18.881 18.881 0 002.5-4.141c.132-.292.232-.533.318-.755a14.883 14.883 0 00.907-9.257 7.167 7.167 0 00-2.9-4.254.662.662 0 01-.063-.044 4.959 4.959 0 00-1-.614 6.1 6.1 0 00-2.607-.6h-.148a8.727 8.727 0 00-2.967.768l-.586.223c-.255.1-.849.3-.855.3a.694.694 0 01-.234.04h-.22a.25.25 0 00-.043 0h-.032a.388.388 0 00-.045.005h-.221a.7.7 0 01-.232-.039s-.6-.205-.857-.3l-.579-.22A8.794 8.794 0 0011.077 8h-.16a6.174 6.174 0 00-2.593.6 5 5 0 00-1 .615.581.581 0 01-.06.043 7.289 7.289 0 00-2.887 4.186 14.879 14.879 0 00.867 9.273c.125.325.238.58.342.808a18.805 18.805 0 002.5 4.141 6 6 0 002.188 1.877 3.823 3.823 0 001.517.453 2.339 2.339 0 00.917-.209c.176-.073.347-.153.512-.231l.031-.015a7.634 7.634 0 011.376-.536 6.433 6.433 0 011.372-.164h.025Z"/><path fill="currentColor" d="M20.222 27.999c.106-.022.403-.153.625-.251.488-.214.9-.577 1.52-1.34.83-1.022 1.578-2.268 2.226-3.704.11-.245.198-.451.275-.65l.018-.049.021-.047c1.815-4.068.815-7.88.804-7.918l-.014-.055-.012-.056c-.388-1.835-1.9-2.897-2.02-2.98a2.538 2.538 0 01-.184-.127l-.063-.049a3.006 3.006 0 00-.604-.365 4.091 4.091 0 00-1.746-.407h-.1c-.689.017-1.398.29-2.296.636l-.008.003-.597.227c-.26.097-.786.277-.897.315a2.69 2.69 0 01-.89.151h-.561c-.307 0-.608-.05-.894-.151l-.05-.018a49.59 49.59 0 01-.843-.298l-.015-.005-.585-.223c-.935-.36-1.612-.619-2.303-.636L10.917 10c-.556 0-1.187.149-1.737.41a3.053 3.053 0 00-.603.365 2.59 2.59 0 01-.215.156c-.107.075-1.667 1.187-2.03 2.925l-.01.054-.015.054c-.043.16-1.022 3.942.761 7.94l.021.048.019.048c.11.284.206.503.295.698l.004.009c.645 1.432 1.393 2.677 2.224 3.7.612.754 1.016 1.12 1.438 1.306l.008.004c.262.114.585.256.704.28a.998.998 0 00.148-.053c.136-.057.282-.125.42-.19l.065-.03c.486-.228 1.037-.485 1.717-.656.516-.13 1.105-.204 1.802-.224l.118-.001.034.001c.444.015 1.112.055 1.784.224.688.173 1.264.443 1.727.661l.064.03c.144.068.28.132.407.184l.01.004a.93.93 0 00.145.052M20.221 30c-.29 0-.584-.067-.924-.21-.179-.075-.352-.157-.52-.236l-.032-.015c-.426-.2-.866-.407-1.364-.532-.487-.122-1.018-.152-1.364-.164h-.025c-.547.016-.995.07-1.372.164-.502.127-.943.334-1.376.536l-.031.015c-.165.078-.336.158-.512.231-.338.142-.63.209-.917.209-.486 0-.915-.19-1.517-.453-.856-.377-1.495-1.023-2.188-1.876-.94-1.157-1.78-2.551-2.495-4.141a14.05 14.05 0 01-.342-.808c-2.03-4.55-.99-8.813-.867-9.273.544-2.608 2.782-4.117 2.887-4.186a.58.58 0 00.06-.043 5 5 0 011.002-.615 6.173 6.173 0 012.753-.6c1.037.025 1.935.37 2.974.768l.578.22c.262.098.855.302.857.303a.7.7 0 00.233.04h.22c.017-.004.033-.005.046-.006h.032a.25.25 0 01.043.005h.22a.692.692 0 00.233-.04c.006-.002.6-.205.855-.3l.586-.223c1.038-.4 1.935-.743 2.967-.768h.147c.878 0 1.78.207 2.607.6.387.184.715.385.999.614.02.016.04.032.063.045.023.015 2.314 1.463 2.904 4.254.077.28 1.178 4.584-.907 9.258-.086.222-.186.463-.318.755-.718 1.591-1.558 2.985-2.497 4.14-.693.854-1.342 1.506-2.269 1.912-.554.244-.954.42-1.43.42Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16.173 10.001s-1.01-4.452 1.825-6m1.999 9.998a4.786 4.786 0 012 4"/></g>'
2394
+ },
2395
+ "arrow-down": {
2396
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m6 18.002 10 10 10-10m-10 8v-22"/>'
2397
+ },
2398
+ "arrow-left": {
2399
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m14.001 6-10 10 10 10m-8-10h22"/>'
2400
+ },
2401
+ "arrow-right": {
2402
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m18.001 26 10-10-10-10m8 10h-22"/>'
2403
+ },
2404
+ "arrow-up": {
2405
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m26.001 13.999-10-10-10 10m9.999-8v22"/>'
2406
+ },
2407
+ attachment: {
2408
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m28.003 15.251-11.347 10.7a7.732 7.732 0 01-10.484 0 6.714 6.714 0 010-9.886l11.348-10.7a5.156 5.156 0 016.989 0 4.477 4.477 0 010 6.592l-11.361 10.7a2.574 2.574 0 01-3.493 0 2.235 2.235 0 010-3.295l10.483-9.875"/>'
2409
+ },
2410
+ "back-to-front": {
2411
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m24 3-4 4 4 4"/><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M10 7H6a3.008 3.008 0 00-2.278.709A2.636 2.636 0 003 9.834v11.334a2.64 2.64 0 00.722 2.125A3.007 3.007 0 006 24h20a3.007 3.007 0 002.278-.707A2.634 2.634 0 0029 21.168V9.834a2.634 2.634 0 00-.722-2.125A3.008 3.008 0 0026 7h-4"/><g stroke-miterlimit="10"><path d="M11.795 25h8.4l.719 1.594c.306.678-.28 1.406-1.132 1.406H12.21c-.85 0-1.436-.726-1.134-1.4Z"/><path fill="currentColor" d="M11.795 25H20.2l.719 1.594c.305.677-.28 1.406-1.132 1.406h-7.572c-.85 0-1.436-.726-1.134-1.404L11.795 25Z"/></g></g>'
2412
+ },
2413
+ bell: {
2414
+ body: '<path fill="currentColor" d="M13 26.161a2.924 2.924 0 003 2.841 2.924 2.924 0 003-2.841v-.159h-6Z"/><g fill="none" stroke-miterlimit="10"><path d="M18.018 3.277a7.483 7.483 0 015.876 7.128v3.959a9.094 9.094 0 003.538 7.261c.057.046.114.094.171.139a1.268 1.268 0 01.4.915 1.371 1.371 0 01-1.416 1.322H5.418a1.371 1.371 0 01-1.416-1.322 1.269 1.269 0 01.4-.915c.057-.045.114-.093.171-.139a9.1 9.1 0 003.538-7.261v-3.963a7.464 7.464 0 015.667-7.073 7.909 7.909 0 014.24-.051Z"/><path fill="currentColor" d="M16.123 5.001a6.77 6.77 0 00-1.75.24l-.022.007-.05.013c-1.203.33-2.283 1.024-3.038 1.952-.757.929-1.157 2.033-1.157 3.192v3.96c0 1.744-.373 3.391-1.109 4.896A11.202 11.202 0 017.096 22h17.808a11.203 11.203 0 01-1.9-2.74c-.737-1.505-1.11-3.152-1.11-4.897v-3.959c0-2.422-1.79-4.554-4.354-5.186l-.069-.017-.067-.022A4.19 4.19 0 0016.123 5m0-2c.602 0 1.259.07 1.895.276 3.382.834 5.876 3.708 5.876 7.128v3.96c0 2.897 1.236 5.395 3.538 7.26l.171.14c.245.236.397.558.397.914 0 .73-.634 1.322-1.416 1.322H5.416C4.634 24 4 23.408 4 22.678c0-.356.152-.678.397-.915.057-.045.113-.092.17-.139 2.303-1.865 3.54-4.363 3.54-7.26v-3.96c0-3.348 2.392-6.175 5.666-7.072 0 0 1.044-.332 2.35-.332Z"/></g>'
2415
+ },
2416
+ "bell-active": {
2417
+ body: '<g fill="currentColor"><path d="M13 26.16a2.924 2.924 0 003 2.841 2.924 2.924 0 003-2.841v-.159h-6Z"/><g stroke-miterlimit="10"><path d="M26.584 23H5.416C5.19 23 5 22.852 5 22.678c0-.073.034-.132.07-.173l.064-.052.062-.05c2.558-2.073 3.91-4.853 3.91-8.04v-3.959c0-1.392.478-2.714 1.381-3.824.886-1.088 2.147-1.9 3.55-2.284l.02-.005.018-.006A7.726 7.726 0 0116.123 4c.586 0 1.12.077 1.588.227l.034.011.034.009c3.012.742 5.115 3.274 5.115 6.157v3.96c0 3.186 1.352 5.966 3.909 8.037l.06.05.067.054c.036.041.07.1.07.173 0 .174-.19.322-.416.322Z"/><path d="M16.123 5a6.77 6.77 0 00-1.75.24l-.022.007-.05.013c-1.203.33-2.283 1.024-3.038 1.952-.757.929-1.157 2.033-1.157 3.192v3.96c0 1.744-.373 3.391-1.109 4.896A11.202 11.202 0 017.096 22h17.808a11.203 11.203 0 01-1.9-2.74c-.737-1.505-1.11-3.152-1.11-4.897v-3.959c0-2.422-1.79-4.554-4.354-5.186l-.07-.018-.067-.022A4.19 4.19 0 0016.123 5m0-2c.602 0 1.259.07 1.895.276 3.382.834 5.876 3.708 5.876 7.128v3.96c0 2.897 1.236 5.395 3.538 7.26l.171.14c.245.236.397.558.397.914 0 .73-.634 1.322-1.416 1.322H5.416C4.634 24 4 23.408 4 22.678c0-.356.152-.678.397-.915.057-.045.113-.092.17-.139 2.303-1.865 3.54-4.363 3.54-7.26v-3.96c0-3.348 2.392-6.175 5.666-7.072 0 0 1.044-.332 2.35-.332Z"/></g></g>'
2418
+ },
2419
+ bold: {
2420
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 5h10a5.525 5.525 0 010 11H8Zm0 11h11.076a5.534 5.534 0 010 11H8Z"/>'
2421
+ },
2422
+ bookmark: {
2423
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M10 5.206v23.461a.3.3 0 00.527.23l5.323-6.285a.191.191 0 01.3 0l5.324 6.285a.3.3 0 00.526-.23V5.206A2.109 2.109 0 0020 3h-8a2.109 2.109 0 00-2 2.206Z"/><path fill="currentColor" d="M12.058 5a.347.347 0 00-.058.206V24.06l2.32-2.74a2.192 2.192 0 013.355-.004L20 24.059V5.206A.347.347 0 0019.942 5h-7.884m-.061-2h8.006C21.106 3 22 3.988 22 5.206v23.457c0 .305-.338.453-.527.23l-5.324-6.285a.191.191 0 00-.299 0l-5.323 6.285c-.189.223-.527.075-.527-.23V5.206C10 3.988 10.894 3 11.997 3Z"/></g>'
2424
+ },
2425
+ "bookmark-active": {
2426
+ body: '<g fill="currentColor" stroke-miterlimit="10"><path d="m21 26.787-4.088-4.826a1.193 1.193 0 00-1.827.002L11 26.787V5.207C11 4.54 11.447 4 11.997 4h8.006c.55 0 .997.541.997 1.206v21.581Z"/><path d="M12.058 5a.347.347 0 00-.058.206V24.06l2.324-2.744a2.192 2.192 0 013.351 0L20 24.059V5.206A.347.347 0 0019.942 5h-7.884m-.061-2h8.006C21.106 3 22 3.988 22 5.206v23.457c0 .305-.338.453-.527.23l-5.324-6.285a.191.191 0 00-.299 0l-5.323 6.285c-.19.223-.527.075-.527-.23V5.206C10 3.988 10.894 3 11.997 3Z"/></g>'
2427
+ },
2428
+ building: {
2429
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M4 29.001h24M18 4V3h-4v1"/><path stroke-linecap="round" d="M16 28.001v-3m-5-15h2m-2 4h2m-2 4h2m6-8h2m-2 4h2m-2 4h2"/><g transform="translate(6 4.001)"><rect width="20" height="26" rx="2" stroke="none"/><rect width="18" height="24" x="1" y="1" rx="1"/></g></g>'
2430
+ },
2431
+ "bullet-list": {
2432
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-miterlimit="10" d="M12 22h6m-6-6h15m-15-6h10"/><g transform="translate(4 8.334) translate(0 -.334)"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1"/></g><g transform="translate(4 8.334) translate(0 5.666)"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1"/></g><g transform="translate(4 8.334) translate(0 11.666)"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1"/></g></g>'
2433
+ },
2434
+ calendar: {
2435
+ body: '<g fill="none" stroke="currentColor" stroke-width="2" transform="translate(2 5)"><path stroke-linecap="round" stroke-miterlimit="10" d="M8-1v4m12-4v4M1 6h26M6 11h2m5 0h2m-9 7h2m5 0h2m5-7h2m-2 7h2"/><rect width="28" height="24" rx="3" stroke="none"/><rect width="26" height="22" x="1" y="1" rx="2"/></g>'
2436
+ },
2437
+ "camera-off": {
2438
+ body: '<path fill="currentColor" d="M27.198 27H9.243l2-2h15.955a.927.927 0 00.8-.752V10.504a.929.929 0 00-.8-.756h-.7l1.768-1.768a2.9 2.9 0 011.739 2.518v13.75A2.9 2.9 0 0127.198 27ZM2.311 25.445A2.54 2.54 0 012 24.252v-13.75a2.884 2.884 0 012.8-2.75h2.8L10.4 5h8.4l2.392 1.566-1.445 1.445-1.543-1.012H11.22l-2.8 2.752H4.806a.925.925 0 00-.8.75v13.258l-1.687 1.686Z"/><path fill="currentColor" d="M14.998 23.002a6.021 6.021 0 01-1.552-.2l1.8-1.8a4.007 4.007 0 003.738-3.74l1.809-1.809a6 6 0 01-5.8 7.557Zm-5.8-4.447a6 6 0 017.353-7.35l-1.8 1.8a4 4 0 00-3.744 3.744l-1.8 1.8Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 28 28 4"/>'
2439
+ },
2440
+ "camera-on": {
2441
+ body: '<path fill="none" d="M0 0h32v32H0z"/><g fill="none" stroke-miterlimit="10"><path d="M27.2 7.75H23L18.8 5h-8.4L7.6 7.75H4.8A2.9 2.9 0 002 10.5v13.75A2.9 2.9 0 004.8 27h22.4a2.9 2.9 0 002.8-2.75V10.5a2.9 2.9 0 00-2.8-2.75Z"/><path fill="currentColor" d="m11.218 7-2.8 2.75H4.803c-.352 0-.802.423-.803.75v13.747c0 .33.451.753.8.753h22.397c.352 0 .803-.423.803-.75V10.503c0-.33-.45-.752-.8-.753h-4.796L18.204 7h-6.986M10.4 5h8.4L23 7.75h4.2c1.448.003 2.798 1.304 2.8 2.75v13.75c-.002 1.446-1.352 2.748-2.8 2.75H4.8c-1.448-.002-2.798-1.304-2.8-2.75V10.5c.002-1.446 1.352-2.747 2.8-2.75h2.8L10.4 5Z"/><g stroke="currentColor" stroke-width="2" transform="translate(9 11)"><circle cx="6" cy="6" r="6" stroke="none"/><circle cx="6" cy="6" r="5"/></g></g>'
2442
+ },
2443
+ catalog: {
2444
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10"><path d="M8 2h16a1 1 0 011 1v26a1 1 0 01-1 1H8a3 3 0 01-3-3V5a3 3 0 013-3Z" stroke="none"/><path d="M8 3h16v26H8a2 2 0 01-2-2V5a2 2 0 012-2Z"/></g><path stroke-linecap="round" stroke-miterlimit="10" d="M10 13h10m-10 4h10m-10 4h5"/><path d="M6 8h18"/></g>'
2445
+ },
2446
+ certificate: {
2447
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-miterlimit="22.926" d="M16.001 3.998a8 8 0 11-8 8 8 8 0 018-8Z"/><path stroke-miterlimit="22.926" d="M16 9.001a3 3 0 11-3 3 3 3 0 013-3Z"/><path stroke-linecap="round" stroke-linejoin="round" d="m9 18-4 4h3v3h3v3l5-5 5 5v-3h3v-3h3l-4-4"/></g>'
2448
+ },
2449
+ chat: {
2450
+ body: '<path fill="none" stroke="currentColor" stroke-width="2" d="M14.998 23.002h-3c-4.9 0-9-3.238-9-8 0-4.738 4.1-8 9-8h8c4.9 0 9 3.262 9 8 0 4.762-4.7 8-9 8l-1 4Z"/>'
2451
+ },
2452
+ check: {
2453
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m7 15.001 7 7 12-12"/>'
2454
+ },
2455
+ "check-badge": {
2456
+ body: '<path fill="currentColor" d="m16.873 4.154 2.151-1.828a1.365 1.365 0 012.212.752l.713 2.8a1.394 1.394 0 001.413 1.075l2.768-.157a1.439 1.439 0 011.37 1.97l-1 2.7a1.485 1.485 0 00.54 1.738l2.327 1.575a1.486 1.486 0 010 2.433l-2.327 1.584a1.485 1.485 0 00-.54 1.738l1 2.7a1.439 1.439 0 01-1.368 1.969l-2.768-.157a1.394 1.394 0 00-1.413 1.075l-.713 2.8a1.365 1.365 0 01-2.212.752l-2.152-1.828a1.337 1.337 0 00-1.746 0l-2.152 1.828a1.365 1.365 0 01-2.212-.752l-.713-2.8a1.394 1.394 0 00-1.413-1.075l-2.768.157a1.439 1.439 0 01-1.37-1.968l1-2.7a1.485 1.485 0 00-.54-1.738l-2.327-1.575a1.486 1.486 0 010-2.433l2.327-1.575a1.485 1.485 0 00.54-1.738l-1-2.7a1.439 1.439 0 011.369-1.98l2.768.157a1.394 1.394 0 001.413-1.074l.713-2.8a1.365 1.365 0 012.212-.752l2.152 1.828a1.337 1.337 0 001.746-.001Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m11 16.999 3 3 7-7"/>'
2457
+ },
2458
+ "check-circle": {
2459
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m12 16 3 3 6-6"/></g>'
2460
+ },
2461
+ checkbox: {
2462
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(2 2)"><rect width="28" height="28" rx="3" stroke="none"/><rect width="26" height="26" x="1" y="1" rx="2"/></g>'
2463
+ },
2464
+ "chevron-down": {
2465
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m6 11 10 10 10-10"/>'
2466
+ },
2467
+ "chevron-down-circle": {
2468
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2.001)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m11 14 5 5 5-5"/></g>'
2469
+ },
2470
+ "chevron-left": {
2471
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 6 11 16l10 10"/>'
2472
+ },
2473
+ "chevron-left-circle": {
2474
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m18.001 11-5 5 5 5"/></g>'
2475
+ },
2476
+ "chevron-right-circle": {
2477
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m12 26 10-10L12 6"/>'
2478
+ },
2479
+ "chevron-up": {
2480
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M26 20 16 10 6 20"/>'
2481
+ },
2482
+ "chevron-up-circle": {
2483
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2.001)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m11.001 18 5-5 5 5"/></g>'
2484
+ },
2485
+ classroom: {
2486
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 14h24M4 28h24"/><path stroke="currentColor" stroke-width="2" d="M8 13a3 3 0 013-3 3 3 0 013 3"/><g stroke-miterlimit="10"><path d="M8 5.999a3 3 0 11.879 2.121A2.994 2.994 0 018 5.999Z"/><path fill="currentColor" d="M11 4.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293A.981.981 0 0012 5.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0111 8.999a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 018 5.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0111 2.999Z"/></g><path stroke="currentColor" stroke-width="2" d="M13 27a3 3 0 013-3 3 3 0 013 3"/><g stroke-miterlimit="10"><path d="M13 19.999a3 3 0 11.879 2.121A2.994 2.994 0 0113 19.999Z"/><path fill="currentColor" d="M16 18.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293a.981.981 0 00.293-.707.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 19.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 16.999Z"/></g><path stroke="currentColor" stroke-width="2" d="M18 13a3 3 0 013-3 3 3 0 013 3"/><g stroke-miterlimit="10"><path d="M18 5.999a3 3 0 11.879 2.121A2.994 2.994 0 0118 5.999Z"/><path fill="currentColor" d="M21 4.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293A.981.981 0 0022 5.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0121 8.999a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0118 5.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0121 2.999Z"/></g></g>'
2487
+ },
2488
+ "clear-field": {
2489
+ body: '<g stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(3 3)"><circle cx="13" cy="13" r="13" fill="currentColor" stroke="none"/><circle cx="13" cy="13" r="12" fill="none"/></g><path fill="none" stroke-linecap="round" d="m12 20 8-8m-8 0 8 8"/></g>'
2490
+ },
2491
+ "clear-style": {
2492
+ body: '<path fill="currentColor" d="M18 28h-4a1 1 0 010-2h1v-4.76l2-2V26h1a1 1 0 110 2Zm-3-15.244V8H8v1a1 1 0 01-2 0V5a.99.99 0 011-1 1 1 0 011 1v1h13.75l-2 2H17v2.754l-2 2Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5 27 27 5"/>'
2493
+ },
2494
+ close: {
2495
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M8 24 24 8M8 8l16 16"/>'
2496
+ },
2497
+ "close-circle": {
2498
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(2 2.001)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g><path stroke-linecap="round" d="m11 21.001 10-10m-10 0 10 10"/></g>'
2499
+ },
2500
+ "close-loader": {
2501
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="m12 20 8-8m-8 0 8 8"/>'
2502
+ },
2503
+ coffee: {
2504
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-linejoin="round"><path d="M7 10.999h16a1 1 0 011 1v7a8 8 0 01-8 8h-2a8 8 0 01-8-8v-7a1 1 0 011-1Z" stroke="none"/><path d="M7 11.999h16v7a7 7 0 01-7 7h-2a7 7 0 01-7-7v-7Z"/></g><g stroke-linejoin="round"><path d="M22.001 18.999v-8h3a3 3 0 013 3v2a3 3 0 01-3 3h-3Z" stroke="none"/><path d="M23.001 17.999v-6h2a2 2 0 012 2v2a2 2 0 01-2 2h-2Z"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M4 26.999h22"/><path stroke-linecap="round" d="M10 7.999v-2m5 2v-2m5 2v-2"/></g>'
2505
+ },
2506
+ color: {
2507
+ body: '<defs><radialGradient id="svgIDa" cx=".5" cy=".5" r=".5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="currentColor"/><stop offset=".148" stop-color="currentColor"/><stop offset=".32" stop-color="currentColor"/><stop offset=".493" stop-color="currentColor"/><stop offset=".66" stop-color="currentColor"/><stop offset=".833" stop-color="currentColor"/><stop offset="1" stop-color="currentColor"/></radialGradient></defs><g fill="url(#svgIDa)" stroke="currentColor" transform="translate(4 4)"><circle cx="12" cy="12" r="12" stroke="none"/><circle cx="12" cy="12" r="11.5" fill="none"/></g>'
2508
+ },
2509
+ "contact-us": {
2510
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M24 16.001v-3.808c0-3.934-3.513-8.192-8-8.192s-8 4.257-8 8.192v1.8"/><path d="M21 12.001v3.912a7.6 7.6 0 01-2 5.588m-9.001-14.5c0 2.143 7.7 5 11 5M13 10.5c-.862.606-1.949 3.279-2 4.889v1.222a6.65 6.65 0 002 4.889m5.999 5.501a1.113 1.113 0 01-1.2 1h-.6a1.113 1.113 0 01-1.2-1h0a1.112 1.112 0 011.2-1h.6a1.114 1.114 0 011.2 1Zm.002-.003h.469c2.493.021 4.522-4.31 4.531-9.671v-.328"/><path d="M25 14h-1v4h1a.95.95 0 001-.889v-2.223A.951.951 0 0025 14Zm-18 .002h1v4H7a.949.949 0 01-1-.887v-2.223a.949.949 0 011-.89h0Z"/></g>'
2511
+ },
2512
+ copy: {
2513
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(10.001 3)"><rect width="16" height="22" rx="2" stroke="none"/><rect width="14" height="20" x="1" y="1" rx="1"/></g><path stroke-linecap="round" d="M19 28h-9a2.665 2.665 0 01-3-3V10"/></g>'
2514
+ },
2515
+ courses: {
2516
+ body: '<path fill="currentColor" d="M28 13h2v7a1 1 0 01-1 1 1 1 0 01-1-1v-7Z"/><g fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M22 25.996H10a2.003 2.003 0 01-2.001-2v-8.344l-.524-.283-4.387-2.373L16 6.012l12.913 6.984-4.387 2.373-.524.283v8.344c0 1.103-.897 2-2 2Z"/><path fill="currentColor" d="M22 24.996c.552 0 1.001-.45 1.001-1v-8.94l1.049-.568 2.76-1.492-10.811-5.848-10.81 5.848 3.809 2.06v8.94c0 .55.449 1 1 1H22m0 2H10a3 3 0 01-3.001-3v-7.748l-4.523-2.445a.92.92 0 010-1.612L15.584 5.1a.892.892 0 01.83 0l13.11 7.092a.92.92 0 010 1.612L25 16.248v7.748c0 1.656-1.344 3-3 3Z"/></g><g fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M16 19.98 3.088 12.996l12.914-6.983 12.913 6.983-12.913 6.982Z"/><path fill="currentColor" d="m16 18.842 10.812-5.845L16 7.15 5.19 12.997 16 18.842m0 2.155a.874.874 0 01-.416-.106L2.476 13.803c-.634-.343-.634-1.27 0-1.613l13.108-7.088c.26-.14.573-.14.833 0l13.109 7.088c.633.343.633 1.27 0 1.613L16.417 20.89a.874.874 0 01-.416.106Z"/></g>'
2517
+ },
2518
+ dashboard: {
2519
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(5 3)"><rect width="10" height="10" rx="2" stroke="none"/><rect width="8" height="8" x="1" y="1" rx="1"/></g><g transform="translate(17 19)"><rect width="10" height="10" rx="2" stroke="none"/><rect width="8" height="8" x="1" y="1" rx="1"/></g><g transform="translate(17 3)"><rect width="10" height="14" rx="2" stroke="none"/><rect width="8" height="12" x="1" y="1" rx="1"/></g><g transform="translate(5 15)"><rect width="10" height="14" rx="2" stroke="none"/><rect width="8" height="12" x="1" y="1" rx="1"/></g></g>'
2520
+ },
2521
+ download: {
2522
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m12 15 4 4 4-4m-4 4V5m12 18.001v4H4v-4"/>'
2523
+ },
2524
+ drag: {
2525
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M21 3.999v24m-5-24v24m-5-24v24"/>'
2526
+ },
2527
+ duplicate: {
2528
+ body: '<g stroke-miterlimit="10"><g fill="rgba(0,0,0,0)"><path d="M16.998 29H5a2 2 0 01-1.999-2V14.997c0-1.103.896-2 1.999-2h8.001V5.003a2 2 0 011.999-2h11.998c1.103 0 2 .896 2 2v11.998a2.002 2.002 0 01-2 1.998h-8v8.002a2.002 2.002 0 01-2 1.998Z"/><path fill="currentColor" d="M16.998 28a1 1 0 001-.999v-9.002h9a1 1 0 001-.998V5.003c0-.55-.448-1-1-1H15c-.55 0-.999.45-.999 1v8.994H5c-.55 0-.999.45-.999 1v12.004a1 1 0 00.999.998h11.998m0 2H5a2.998 2.998 0 01-2.999-2.998V14.997c0-1.652 1.343-3 2.999-3h7.001V5.003c0-1.658 1.343-3 2.999-3h11.998a3 3 0 013 3v11.998a2.998 2.998 0 01-3 2.998h-7v7.002a2.998 2.998 0 01-3 2.998Z"/></g><g fill="rgba(0,0,0,0)" stroke="currentColor" stroke-width="2" transform="translate(12 2.001)"><rect width="18" height="18" rx="3" stroke="none"/><rect width="16" height="16" x="1" y="1" fill="none" rx="2"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M18 11.001h6m-3-3v6"/></g>'
2529
+ },
2530
+ edit: {
2531
+ body: '<g fill="none" stroke-miterlimit="10"><path d="m25.129 3.672 3.175 3.169a2.371 2.371 0 01.008 3.348l-16.735 16.88a2.369 2.369 0 01-1.2.654l-6 1.254a1.143 1.143 0 01-1.354-1.354l1.3-6.114a2.37 2.37 0 01.656-1.2L21.89 3.659a2.3 2.3 0 013.239.013Z"/><path fill="currentColor" d="M23.506 5a.295.295 0 00-.21.086L6.385 21.736a.37.37 0 00-.103.188l-1.027 4.825 4.712-.985a.37.37 0 00.19-.104L26.891 8.78a.372.372 0 000-.524l-3.176-3.169a.292.292 0 00-.21-.087m0-2a2.29 2.29 0 011.623.672l3.175 3.169a2.37 2.37 0 01.008 3.347l-16.734 16.88a2.369 2.369 0 01-1.202.654L4.38 28.976a1.143 1.143 0 01-1.355-1.356l1.3-6.113a2.37 2.37 0 01.656-1.198L21.892 3.66A2.296 2.296 0 0123.506 3Z"/><path stroke="currentColor" stroke-width="2" d="m20 8 4 4M8 19l5 5"/></g>'
2532
+ },
2533
+ elearning: {
2534
+ body: '<g transform="translate(4.001 5.332)"><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(-2 -3.332)"><rect width="28" height="18" rx="3" stroke="none"/><rect width="26" height="16" x="1" y="1" rx="2"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M-.001 20.668h24"/><circle cx="3" cy="3" r="3" fill="currentColor" transform="translate(3 17.668)"/><path fill="currentColor" d="M15.21 4.775a1 1 0 010 1.789l-4.764 2.381a1 1 0 01-1.447-.894V3.287a1 1 0 011.447-.894Z"/></g>'
2535
+ },
2536
+ email: {
2537
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="rotate(90 12 18.001)"><rect width="20" height="28" rx="3" stroke="none"/><rect width="18" height="26" x="1" y="1" rx="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m4 8.001 12 9 12-9"/></g>'
2538
+ },
2539
+ error: {
2540
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M16 9v7m0 5v2"/><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g></g>'
2541
+ },
2542
+ "error-2": {
2543
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 5v13m0 6v3"/>'
2544
+ },
2545
+ exercise: {
2546
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M9.879 29.572a1.115 1.115 0 01-1.758 0C6.944 28.11 5 25.558 5 24.633V4.404a2.347 2.347 0 012.287-2.4h3.425A2.347 2.347 0 0113 4.404v20.229c0 .925-1.944 3.477-3.121 4.939Z"/><path fill="currentColor" d="M9 27.457c1.308-1.694 1.86-2.645 2-2.993V4.404c0-.238-.152-.404-.288-.404H7.287c-.136.001-.287.166-.287.404v20.06c.14.348.692 1.3 2 2.993M9 30c-.325 0-.649-.142-.879-.428C6.944 28.11 5 25.558 5 24.632V4.405C5 3.076 6.024 2 7.287 2h3.425C11.976 2 13 3.075 13 4.403v20.229c0 .925-1.944 3.477-3.121 4.939a1.125 1.125 0 01-.88.428Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M6 9h6"/><path d="M17 2h10v28H17Z"/><path fill="currentColor" d="M19 4v24h6V4h-6m-2-2h10v28H17V2Z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M18 9h3m-3 7h3m-3 7h3"/></g>'
2547
+ },
2548
+ "external-link": {
2549
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M24 19.433v5.71A3 3 0 0121.143 28H6.857A3 3 0 014 25.143V10.857A3 3 0 016.857 8h5.714M19 5h8v8m-13 5L26 6"/>'
2550
+ },
2551
+ extract: {
2552
+ body: '<g transform="translate(5.833 7.166)"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M3.667 6.334h14m-14 6h8"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22.668 5.334v-7h-7m0 21.997h7v-7m-17-14.996h-7v7m-.001 8.003v7h7"/><circle cx="3" cy="3" r="3" fill="currentColor" transform="translate(18.667 17.334)"/></g>',
2553
+ width: 33,
2554
+ height: 33
2555
+ },
2556
+ "eye-off": {
2557
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-miterlimit="10" d="M19 8.168a16.765 16.765 0 00-2.277-.167h-.017a15.052 15.052 0 00-6.112 1.207 12.771 12.771 0 00-5.132 4.093 10.707 10.707 0 00-1.424 2.492.64.64 0 000 .423 11.254 11.254 0 002.441 3.785M13 23.833a17.331 17.331 0 002.32.167 15.265 15.265 0 006.188-1.207 12.343 12.343 0 005.093-4.1 10.208 10.208 0 001.366-2.511.652.652 0 000-.424A11.887 11.887 0 0025.473 12"/><path stroke-linecap="round" d="m5 26.999 22-22"/></g>'
2558
+ },
2559
+ "eye-on": {
2560
+ body: '<g fill="none" stroke="currentColor" stroke-width="2" transform="translate(3 7.333)"><path d="M25.961 8.42a13.5 13.5 0 00-2.712-4.4 13.06 13.06 0 00-3.993-3 14.206 14.206 0 00-6.26-1.354 14.2 14.2 0 00-6.257 1.356 13.386 13.386 0 00-5.243 4.596 12.391 12.391 0 00-1.455 2.8.793.793 0 00-.006.475 12.89 12.89 0 002.634 4.415 12.747 12.747 0 003.987 3 14.5 14.5 0 006.34 1.358 14.5 14.5 0 006.345-1.355 12.986 12.986 0 005.221-4.6 11.871 11.871 0 001.4-2.812.793.793 0 00-.001-.479Z"/><circle cx="5" cy="5" r="5" transform="translate(8 3.667)"/></g>'
2561
+ },
2562
+ fail: {
2563
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" transform="translate(4 4)"><rect width="6" height="14" rx="2.005" transform="translate(18)"/><path stroke-linecap="round" d="M1.64 11.42h1.226l-.1.678h-1.13a1.677 1.677 0 000 3.354h2.715l3.951.083s-.855 6.084 2.775 8.125c2.33 1.177 2.764-1.065 2.764-1.065v-4.237l1.385-1.412s2.771-2.62 2.771-4.264V2.825a2.622 2.622 0 00-2.768-2.828H3.896a1.678 1.678 0 000 3.354h.111l-.1.679H2.769a1.677 1.677 0 000 3.353h.668l-.1.679h-1.7a1.677 1.677 0 000 3.354Z"/></g>'
2564
+ },
2565
+ "fast-back": {
2566
+ body: '<g fill="none"><path d="M18.999 22.074V21.2l6 3.448a2.728 2.728 0 004-2.574V9.926a2.732 2.732 0 00-4-2.578l-6 3.452v-.873a2.731 2.731 0 00-4-2.578L4.436 13.425a3.031 3.031 0 000 5.152l10.563 6.071a2.566 2.566 0 001.28.352 2.825 2.825 0 002.72-2.926Z"/><path fill="currentColor" d="M16.279 23c.302 0 .72-.322.72-.926v-4.33l8.995 5.172a.56.56 0 00.283.083c.303 0 .722-.321.722-.925V9.926c0-.605-.421-.927-.725-.927a.558.558 0 00-.281.082l-8.994 5.176V9.926c0-.605-.42-.927-.724-.927a.564.564 0 00-.283.082l-10.56 6.074c-.403.234-.434.706-.434.845 0 .14.03.611.43.842l10.562 6.072a.576.576 0 00.289.086m0 2c-.427 0-.866-.111-1.284-.352L4.432 18.576c-1.912-1.105-1.912-4.047 0-5.152l10.563-6.076c1.813-1.04 4.004.369 4.004 2.578v.873l5.996-3.451C26.804 6.308 29 7.717 29 9.926v12.148c0 2.211-2.195 3.617-4.004 2.574L19 21.201v.873C19 23.775 17.703 25 16.28 25Z"/><path d="M14.435 13.425a3.027 3.027 0 000 5.149l10.564 6.076a2.729 2.729 0 004-2.575V9.925a2.729 2.729 0 00-4-2.575Z"/><path fill="currentColor" d="M14.999 16c0 .139.031.61.433.841l10.56 6.075a.534.534 0 00.573 0c.102-.058.434-.293.434-.841V9.925c0-.548-.332-.783-.434-.842a.534.534 0 00-.573 0l-10.56 6.076c-.402.23-.433.702-.433.841m-2 0c0-1.012.479-2.024 1.436-2.575l10.56-6.075c1.812-1.042 4.004.368 4.004 2.575v12.15c0 2.207-2.192 3.617-4.004 2.575l-10.56-6.075c-.957-.55-1.436-1.563-1.436-2.575Z"/></g>'
2567
+ },
2568
+ "fast-forward": {
2569
+ body: '<g fill="none"><path d="M13 22.074v-.873l-6 3.447a2.728 2.728 0 01-4-2.574V9.926a2.732 2.732 0 014-2.578l6 3.451v-.873a2.731 2.731 0 014-2.578l10.563 6.076a3.031 3.031 0 010 5.152L17 24.648a2.566 2.566 0 01-1.284.352A2.825 2.825 0 0113 22.074Z"/><path fill="currentColor" d="M15.72 23a.563.563 0 00.287-.086l10.559-6.07c.403-.233.435-.706.435-.844 0-.14-.032-.612-.432-.842L16.01 9.082A.582.582 0 0015.723 9c-.303 0-.723.32-.723.925v4.332L6.007 9.082A.55.55 0 005.725 9c-.305 0-.726.32-.726.925v12.149c0 .361.144.584.264.709.133.136.3.217.457.217a.558.558 0 00.286-.086L15 17.744v4.33c0 .603.418.926.72.926m0 2C14.295 25 13 23.775 13 22.074V21.2l-5.997 3.447c-1.809 1.043-4.004-.363-4.004-2.574V9.925C3 7.716 5.193 6.31 7.003 7.347L13 10.798v-.873c0-2.21 2.191-3.615 4.003-2.578l10.563 6.076c1.913 1.106 1.913 4.047 0 5.153l-10.563 6.072c-.418.24-.856.352-1.284.352Z"/><path d="M17.564 13.426a3.027 3.027 0 010 5.149L7 24.651a2.729 2.729 0 01-4-2.575V9.926a2.729 2.729 0 014-2.575Z"/><path fill="currentColor" d="M17 16.001c0-.139-.031-.61-.433-.841L6.007 9.085a.534.534 0 00-.573 0c-.102.058-.434.293-.434.841v12.15c0 .548.332.783.434.842.285.165.502.04.573 0l10.56-6.076c.402-.23.433-.702.433-.841m2 0c0 1.012-.479 2.024-1.436 2.575L7.004 24.65C5.192 25.693 3 24.283 3 22.076V9.926c0-2.207 2.192-3.617 4.004-2.575l10.56 6.075c.957.55 1.436 1.563 1.436 2.575Z"/></g>'
2570
+ },
2571
+ file: {
2572
+ body: '<g stroke-linejoin="round"><g fill="none"><path d="M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z"/><path fill="currentColor" d="M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z"/></g><path fill="currentColor" stroke="currentColor" stroke-width="2" d="M24.999 10h-6V4Z"/></g>'
2573
+ },
2574
+ "file-add": {
2575
+ body: '<g stroke-linejoin="round"><g fill="none"><path d="M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z"/><path fill="currentColor" d="M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z"/></g><path fill="currentColor" stroke="currentColor" stroke-width="2" d="M24.999 10h-6V4Z"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M13 17.999h6"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M16 15v6"/>'
2576
+ },
2577
+ "file-duplicate": {
2578
+ body: '<path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M6 28c-.489 0-1-.117-1-1V11c0-.885.506-1 1-1h7V5c0-.885.506-1 1-1h8.016l4.982 5v12c0 .881-.506 1-1 1h-7v5c0 .885-.507 1-1 1Z"/><g stroke="currentColor" stroke-linejoin="round" stroke-width="2"><path fill="rgba(0,0,0,0)" d="M18 28H6c-.495 0-1-.119-1-1V11c0-.881.505-1 1-1h8.013L19 15v12c0 .881-.505 1-1 1Z"/><path fill="currentColor" d="M18 14.999h-4v-4ZM25.999 9h-4V5Z"/></g>'
2579
+ },
2580
+ "file-remove": {
2581
+ body: '<g stroke-linejoin="round"><g fill="none"><path d="M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z"/><path fill="currentColor" d="M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z"/></g><path fill="currentColor" stroke="currentColor" stroke-width="2" d="M24.999 10h-6V4Z"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M13 18h6"/>'
2582
+ },
2583
+ "file-required": {
2584
+ body: '<g stroke-linejoin="round"><g fill="none"><path d="M21 11.172v15.161A2.431 2.431 0 0118.429 29H5.572a2.431 2.431 0 01-2.571-2.667V7.667A2.431 2.431 0 015.572 5h9.2Z"/><path fill="currentColor" d="M5.572 7c-.25 0-.392.054-.441.105-.06.062-.13.246-.13.562v18.666c0 .316.07.5.13.562.05.05.191.105.44.105H18.43c.25 0 .392-.054.441-.105.06-.062.13-.246.13-.562V12.006L13.952 7h-8.38m0-2h9.203L21 11.172v15.161C21 27.99 20.003 29 18.43 29H5.572C3.998 29 3 27.99 3 26.333V7.667C3 6.01 3.998 5 5.572 5Z"/></g><path fill="currentColor" stroke="currentColor" stroke-width="2" d="M19 11.002h-4v-4Z"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M26 3v8m3-6-6 4m6 0-6-4"/>'
2585
+ },
2586
+ filter: {
2587
+ body: '<g fill="none" stroke-linejoin="round"><path d="M8.29 3.004h15.419a2.154 2.154 0 011.955 3.271l-5.4 8.737a1.636 1.636 0 00-.265.89V27.64a1.455 1.455 0 01-2.364 1.051l-4.583-3.81a2.66 2.66 0 01-1.052-2.1v-6.88a2.589 2.589 0 00-.262-1.139l-5.4-8.487A2.154 2.154 0 018.29 3.004Z"/><path fill="currentColor" d="m23.71 5-15.42.004c-.248 0-.29.154-.29.154a.133.133 0 00.02.039l5.402 8.483c.562.876.578 2.083.578 2.218v6.88c0 .192.101.381.278.518l.053.043L18 26.389V15.898c0-.692.198-1.367.572-1.955l5.39-8.723.022-.034c.012-.018.016-.03.016-.028 0-.001-.04-.158-.29-.158m0-2c1.783 0 2.88 1.837 1.954 3.271l-5.4 8.737a1.636 1.636 0 00-.264.89v11.739c0 1.15-1.422 1.78-2.364 1.05l-4.584-3.81a2.66 2.66 0 01-1.052-2.1v-6.88c0-.312-.09-.872-.262-1.139L6.333 6.271c-.92-1.435.176-3.267 1.957-3.267L23.71 3Z"/></g>'
2588
+ },
2589
+ "filter-2": {
2590
+ body: '<g stroke="currentColor"><path fill="none" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5 7.999h22m-22 8h22m-22 8h22"/><g transform="translate(6.667 5.333) translate(.333 -.334)"><circle cx="3" cy="3" r="3" fill="currentColor" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g><g transform="translate(6.667 5.333) translate(12.333 7.666)"><circle cx="3" cy="3" r="3" fill="currentColor" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g><g transform="translate(6.667 5.333) translate(7.333 15.666)"><circle cx="3" cy="3" r="3" fill="currentColor" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g></g>'
2591
+ },
2592
+ "filter-active": {
2593
+ body: '<g fill="currentColor" stroke-linejoin="round"><path d="M18.547 28a.476.476 0 01-.289-.096l-4.566-3.796-.014-.011-.013-.01a1.658 1.658 0 01-.665-1.31v-6.88c0-.354-.088-1.16-.42-1.677L7.177 5.734a1.022 1.022 0 01-.044-1.08c.222-.407.655-.65 1.157-.65L23.71 4c.503 0 .936.243 1.158.651a1.02 1.02 0 01-.044 1.078l-.005.008-.006.009-5.394 8.729c-.274.428-.419.92-.419 1.423v11.739c0 .247-.27.363-.453.363Z"/><path d="m23.71 5-15.42.004c-.248 0-.29.154-.29.154a.133.133 0 00.02.039l5.402 8.483c.562.876.578 2.083.578 2.218v6.88c0 .192.101.381.278.518l.053.043L18 26.389V15.898c0-.692.198-1.367.572-1.955l5.39-8.723.022-.034c.012-.018.016-.03.016-.028 0-.001-.04-.158-.29-.158m0-2c1.783 0 2.88 1.837 1.954 3.271l-5.4 8.737a1.636 1.636 0 00-.264.89v11.739c0 1.15-1.422 1.78-2.364 1.05l-4.584-3.81a2.66 2.66 0 01-1.052-2.1v-6.88c0-.312-.09-.872-.262-1.139L6.333 6.271c-.92-1.435.176-3.267 1.957-3.267L23.71 3Z"/></g>'
2594
+ },
2595
+ flag: {
2596
+ body: '<g transform="translate(6.667 5.333)"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M15.158 13.666c3.925.769 6.176 2.506 6.176 4.769 0 2.933-5.271 5.231-12 5.231s-12-2.3-12-5.231c0-2.263 2.252-4 6.176-4.769"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.333 13.666v-16h10l-4 4 4 4h-10"/><ellipse cx="3" cy="1.5" fill="currentColor" rx="3" ry="1.5" transform="translate(6.333 16.666)"/></g>'
2597
+ },
2598
+ folder: {
2599
+ body: '<g fill="none"><path d="M4 26a2 2 0 01-2-2V7.407a2.53 2.53 0 012.287-2.401H13.4L15.7 8H28a2 2 0 012 2v14a2 2 0 01-2 2Z"/><path fill="currentColor" d="M28 24V9.999H14.71l-2.3-2.997h-.127l-7.946.004c-.131.053-.322.279-.337.405V24h24m0 2H4a2 2 0 01-2-2.001V7.407c0-1.2 1.145-2.393 2.287-2.4l7.998-.005 1.114.004L15.696 8H28a2 2 0 012 2v13.999a2 2 0 01-2 2Z"/><path stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="m3.999 23.999 5-9h20"/></g>'
2600
+ },
2601
+ "full-width": {
2602
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M20 8v16"/><path d="M2 6h28v20H2z" stroke="none"/><path d="M3 7h26v18H3z"/></g>'
2603
+ },
2604
+ "go-to-back": {
2605
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M10 7H6a3.008 3.008 0 00-2.278.709A2.636 2.636 0 003 9.834v11.334a2.64 2.64 0 00.722 2.125A3.007 3.007 0 006 24h20a3.007 3.007 0 002.278-.707A2.634 2.634 0 0029 21.168V9.834a2.634 2.634 0 00-.722-2.125A3.008 3.008 0 0026 7h-4"/><g stroke-miterlimit="10"><path d="M11.794 24.999h8.4l.719 1.594c.306.678-.28 1.406-1.132 1.406h-7.572c-.85 0-1.436-.726-1.134-1.4Z"/><path fill="currentColor" d="M11.794 24.999H20.2l.719 1.594c.305.677-.28 1.406-1.132 1.406h-7.573c-.85 0-1.436-.726-1.134-1.404L11.794 25Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m12 14.667 4 4 4-4m-4 2.331v-9"/></g>'
2606
+ },
2607
+ grid: {
2608
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(3 2.999)"><rect width="12" height="12" rx="2" stroke="none"/><rect width="10" height="10" x="1" y="1" rx="1"/></g><g transform="translate(3 16.999)"><rect width="12" height="12" rx="2" stroke="none"/><rect width="10" height="10" x="1" y="1" rx="1"/></g><g transform="translate(17 2.999)"><rect width="12" height="12" rx="2" stroke="none"/><rect width="10" height="10" x="1" y="1" rx="1"/></g><g transform="translate(17 16.999)"><rect width="12" height="12" rx="2" stroke="none"/><rect width="10" height="10" x="1" y="1" rx="1"/></g></g>'
2609
+ },
2610
+ group: {
2611
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g transform="translate(3 7.001)"><rect width="12" height="12" rx="6" stroke="none"/><rect width="10" height="10" x="1" y="1" rx="5"/></g><path stroke-linejoin="round" d="M3.001 25.999a6 6 0 016-6 6 6 0 016 6M19 25.998a5 5 0 015-5 5 5 0 015 5"/><g transform="translate(19 10.001)"><rect width="10" height="10" rx="5" stroke="none"/><rect width="8" height="8" x="1" y="1" rx="4"/></g></g>'
2612
+ },
2613
+ "group-add": {
2614
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-miterlimit="10" d="M19 8h10m-5-5v10"/><g transform="translate(3 14)"><rect width="10" height="10" rx="5" stroke="none"/><rect width="8" height="8" x="1" y="1" rx="4"/></g><path stroke-linejoin="round" d="M3 30a5 5 0 015-5 5 5 0 015 5"/><g transform="translate(14 17)"><rect width="8" height="8" rx="4" stroke="none"/><rect width="6" height="6" x="1" y="1" rx="3"/></g><path stroke-linejoin="round" d="M14 30a4 4 0 014-4 4 4 0 014 4"/></g>'
2615
+ },
2616
+ heart: {
2617
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M22.184 4a7.837 7.837 0 00-5.527 2.249l-.658.646-.658-.646A7.836 7.836 0 009.815 4a7.836 7.836 0 00-5.527 2.249A7.563 7.563 0 002 11.679a7.561 7.561 0 002.289 5.43l10.645 10.46a1.518 1.518 0 001.066.434 1.523 1.523 0 001.068-.434l10.644-10.457A7.563 7.563 0 0030 11.679a7.561 7.561 0 00-2.289-5.43A7.837 7.837 0 0022.184 4Z"/><path fill="currentColor" d="M9.816 6c-1.56 0-3.026.595-4.125 1.676A5.576 5.576 0 004 11.679c0 1.51.6 2.932 1.69 4.003L16 25.81l10.31-10.128A5.577 5.577 0 0028 11.679c0-1.51-.6-2.932-1.69-4.003A5.847 5.847 0 0022.183 6c-1.56 0-3.025.595-4.124 1.675L16 9.7l-2.06-2.023A5.846 5.846 0 009.816 6m0-2c2.087 0 4.05.799 5.526 2.249l.658.646.658-.646A7.837 7.837 0 0122.184 4c2.088 0 4.051.799 5.527 2.249A7.561 7.561 0 0130 11.679c0 2.05-.813 3.98-2.289 5.43L17.068 27.565A1.523 1.523 0 0116 28c-.4 0-.784-.156-1.066-.434L4.289 17.108A7.561 7.561 0 012 11.678c0-2.05.813-3.98 2.289-5.43A7.836 7.836 0 019.816 4Z"/></g>'
2618
+ },
2619
+ "heart-active": {
2620
+ body: '<g fill="currentColor" stroke-miterlimit="10"><path d="M16 27a.521.521 0 01-.364-.146L4.99 16.395A6.569 6.569 0 013 11.68c0-1.781.707-3.456 1.99-4.717A6.84 6.84 0 019.816 5a6.84 6.84 0 014.825 1.962l.658.647.701.688.7-.688.659-.647A6.84 6.84 0 0122.184 5c1.824 0 3.538.697 4.826 1.962A6.57 6.57 0 0129 11.68a6.57 6.57 0 01-1.99 4.716L16.367 26.852A.526.526 0 0116 27Z"/><path d="M9.816 6c-1.56 0-3.026.595-4.125 1.676A5.576 5.576 0 004 11.679c0 1.51.6 2.932 1.69 4.003L16 25.81l10.31-10.128A5.577 5.577 0 0028 11.679c0-1.51-.6-2.932-1.69-4.003A5.847 5.847 0 0022.183 6c-1.56 0-3.025.595-4.124 1.676L16 9.699l-2.06-2.023A5.846 5.846 0 009.816 6m0-2c2.087 0 4.05.799 5.526 2.249l.658.646.658-.646A7.837 7.837 0 0122.184 4c2.088 0 4.051.799 5.527 2.249A7.561 7.561 0 0130 11.679c0 2.05-.813 3.98-2.289 5.43L17.068 27.565A1.523 1.523 0 0116 28c-.4 0-.784-.156-1.066-.434L4.289 17.108A7.561 7.561 0 012 11.678c0-2.05.813-3.98 2.289-5.429A7.836 7.836 0 019.816 4Z"/></g>'
2621
+ },
2622
+ highlighter: {
2623
+ body: '<g stroke="currentColor" stroke-linejoin="round"><path fill="none" stroke-width="2" d="m8 16.624 7.368 7.377L28 11.337l-7.368-7.336Zm.8 2.378 4.2 4.2-2.8 2.8H7.4l-1.4-1.4v-2.8Z"/><path fill="currentColor" d="m6 25.002-2 2 2 1 2-2Z"/></g>'
2624
+ },
2625
+ home: {
2626
+ body: '<g fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M14 28h-4c-.715-.002-1.467-.344-2.062-.939C7.343 26.466 7 25.714 7 25v-9.872H3.693a1.54 1.54 0 01-.486-.063c-.13-.045-.16-.089-.174-.11a.143.143 0 01-.015-.05V14.9c0-.027 0-.099.087-.234.076-.117.183-.233.336-.363l.005-.005.005-.004 11.225-9.831A2.047 2.047 0 0116.002 4c.5 0 .971.166 1.327.465l11.237 9.705.002.002.003.002c.148.126.258.246.337.365.075.119.085.188.086.235a.13.13 0 01-.015.053.202.202 0 01-.079.067c-.102.054-.244.103-.585.106l-2.32-.003-1.003-.001.001 1.002L25 25c0 .714-.342 1.466-.937 2.061-.596.595-1.348.937-2.065.938h-3.997V21h-1l-2-.001h-1v7Z"/><path fill="currentColor" d="M13 27v-7.002l6.001.003v6.998h2.996c.954-.001 2.002-1.048 2.003-1.998l-.008-11.006 2.845.003-10.156-8.772A1.067 1.067 0 0016 5c-.263 0-.502.08-.677.223L5.16 14.127H8v10.87c0 .954 1.048 2 2 2.002h3m2 2h-5c-2.055-.003-3.999-1.946-4-4v-8.872H3.693a2.52 2.52 0 01-.807-.116 1.286 1.286 0 01-.683-.5 1.121 1.121 0 01-.185-.618c.002-.262.082-.513.246-.769.13-.202.298-.388.528-.583l11.232-9.838A3.064 3.064 0 0116 3a3.06 3.06 0 011.978.704l11.242 9.709c.223.19.396.381.528.583.163.255.243.506.246.769a1.12 1.12 0 01-.186.62 1.2 1.2 0 01-.437.391c-.29.154-.605.22-1.052.224l-2.326-.003L26 25c-.001 2.053-1.946 3.996-4 4h-5v-7l-2-.001v7Z"/></g>'
2627
+ },
2628
+ hourglass: {
2629
+ body: '<g stroke="currentColor" stroke-width="2"><path fill="none" stroke-linejoin="round" stroke-miterlimit="10" d="M18.999 15.999c0-.572 1.967-1.785 3-2.889a10.728 10.728 0 003-7.222V2.999h-18v2.889a10.723 10.723 0 003 7.222c1.033 1.1 3 2.317 3 2.889s-1.967 1.785-3 2.889a10.724 10.724 0 00-3 7.222v2.889h18V26.11a10.734 10.734 0 00-3-7.222c-1.033-1.105-3-2.315-3-2.889Z"/><path fill="none" stroke-miterlimit="10" d="M24 9.999H8"/><path fill="currentColor" d="M9.999 27.999c0-1.657 2.686-3 6-3s6 1.343 6 3"/></g>'
2630
+ },
2631
+ image: {
2632
+ body: '<g fill="none" stroke="currentColor" stroke-width="2" transform="translate(2.667 5.333)"><g stroke-miterlimit="10" transform="rotate(90 13.333 14)"><rect width="20" height="28" rx="2" stroke="none"/><rect width="18" height="26" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m4.333 19.667 13-13 9 9"/><circle cx="2" cy="2" r="2" stroke-linecap="round" stroke-linejoin="round" transform="translate(4.333 5.666)"/><path stroke-linecap="round" stroke-linejoin="round" d="m12.334 11.666 4 4 5-5"/></g>'
2633
+ },
2634
+ "info-badge": {
2635
+ body: '<g transform="translate(3.2 3.2)"><circle cx="14" cy="14" r="14" fill="currentColor" transform="translate(-1.2 -1.199)"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M12.8 21.801v-10m0-6v-2"/></g>'
2636
+ },
2637
+ information: {
2638
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M16 9v2m0 5v7"/><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g></g>'
2639
+ },
2640
+ italic: {
2641
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M26 5.001H12m8 22H6M20 5l-8 22"/>'
2642
+ },
2643
+ key: {
2644
+ body: '<path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M3 29v-5l10.419-10.424a8 8 0 115.026 5.01l-1.218 1.242-.228.174h-2v2h-2l-1 1v2h-2v2l-2 2Z"/><circle cx="2.5" cy="2.5" r="2.5" fill="currentColor" transform="translate(20 7)"/>'
2645
+ },
2646
+ language: {
2647
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g><path stroke-miterlimit="10" d="M4 11h24M4 21h24"/><path d="M15 29s-5-6.5-5-13 5-13 5-13m2 26s5-6.5 5-13-5-13-5-13"/></g>'
2648
+ },
2649
+ "learning-path": {
2650
+ body: '<path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="m4 24.167 1.765-6.548a.282.282 0 01.507-.081 3.125 3.125 0 101.223-4.53.28.28 0 01-.4-.322l1.765-6.55 6.59 1.756a.281.281 0 00.324-.4 3.084 3.084 0 01-.216-2.184 3.135 3.135 0 016.084 1.51 3.1 3.1 0 01-1.311 1.888.279.279 0 00.082.5l6.588 1.756L22.14 29Z"/>'
2651
+ },
2652
+ "light-off": {
2653
+ body: '<path fill="currentColor" d="M16 29a4.968 4.968 0 01-3.277-1.2 3.99 3.99 0 01-1.406-2.875l2-2v1.863a2.006 2.006 0 00.728 1.5 3.084 3.084 0 003.92 0 2.032 2.032 0 00.723-1.5v-3.605l.465-.559a18.957 18.957 0 002.718-4.15 12.184 12.184 0 00.97-3.072l2.158-2.158v.245a13.8 13.8 0 01-1.314 5.826 21.077 21.077 0 01-3 4.6v2.883a4.02 4.02 0 01-1.409 3.01A4.968 4.968 0 0116 29ZM9.052 18.7a16.34 16.34 0 01-.732-1.4 13.785 13.785 0 01-1.319-5.816 8.21 8.21 0 012.653-6.02 9.4 9.4 0 0112.664-.029l-1.416 1.416a7.4 7.4 0 00-9.882.074 6.219 6.219 0 00-2.019 4.559 11.622 11.622 0 001.136 4.977c.122.262.251.521.386.77l-1.469 1.467Z"/><path fill="currentColor" d="M20 23h-6.756l2-2H20v2Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 28 28 4"/>'
2654
+ },
2655
+ "light-on": {
2656
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M25 11.489a8.232 8.232 0 00-2.653-6.018A9.255 9.255 0 0016 3.001a9.256 9.256 0 00-6.347 2.47A8.232 8.232 0 007 11.489a13.682 13.682 0 001.321 5.817 21.257 21.257 0 002.994 4.584v2.9a4 4 0 001.407 3.007A4.96 4.96 0 0016 29.001a4.96 4.96 0 003.278-1.2 4 4 0 001.407-3.007v-2.882a21.054 21.054 0 003-4.6A13.746 13.746 0 0025 11.489Z"/><path fill="currentColor" d="M16 5.001c-1.885 0-3.653.685-4.98 1.93C9.717 8.151 9 9.771 9 11.491c0 1.697.37 3.324 1.135 4.974.618 1.332 1.507 2.689 2.718 4.148l.461.556v3.628c0 .753.453 1.262.727 1.502.516.453 1.212.702 1.959.702.747 0 1.443-.25 1.962-.705.27-.237.724-.746.724-1.501v-3.606l.462-.556c1.214-1.458 2.104-2.817 2.722-4.154.761-1.65 1.131-3.281 1.13-4.99 0-1.718-.717-3.337-2.021-4.56C19.653 5.686 17.885 5.001 16 5.001m0-2c2.47 0 4.716.94 6.347 2.47 1.632 1.528 2.654 3.663 2.653 6.018.001 2.125-.498 4.061-1.314 5.828-.77 1.665-1.821 3.179-3 4.595v2.883c0 1.19-.554 2.26-1.408 3.007-.854.75-2.012 1.199-3.278 1.199s-2.424-.45-3.278-1.2c-.854-.745-1.409-1.816-1.408-3.006v-2.904c-1.174-1.416-2.224-2.926-2.993-4.584-.82-1.767-1.322-3.701-1.321-5.818-.001-2.355 1.022-4.49 2.653-6.018 1.631-1.53 3.878-2.47 6.347-2.47Z"/></g><path stroke="currentColor" stroke-miterlimit="10" stroke-width="2" d="M12 22.001h8"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 13.001-3 4m-3-3.997 3 4v4"/></g>'
2657
+ },
2658
+ link: {
2659
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M13 17.521a6.344 6.344 0 008.79 1.248 6.17 6.17 0 00.68-.579l3.767-3.71a6.115 6.115 0 00-.154-8.743 6.351 6.351 0 00-8.725 0l-2.16 2.114"/><path d="M19 14.479a6.344 6.344 0 00-8.79-1.248 6.186 6.186 0 00-.68.579l-3.767 3.71a6.115 6.115 0 00.155 8.743 6.351 6.351 0 008.725 0l2.148-2.114"/></g>'
2660
+ },
2661
+ lock: {
2662
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-miterlimit="10" d="M16 18.999v4"/><g stroke-miterlimit="10" transform="translate(4 11.999)"><rect width="24" height="18" rx="3" stroke="none"/><rect width="22" height="16" x="1" y="1" rx="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M11.005 11.999V8.535a4.785 4.785 0 015-4.536h0a4.784 4.784 0 015 4.536v3.464"/></g>'
2663
+ },
2664
+ login: {
2665
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M20 4h5.333A3.208 3.208 0 0128 6.667v18.666A3.213 3.213 0 0125.333 28H20"/><path d="m16 21.999 6-6-6-6M20 16H4"/></g>'
2666
+ },
2667
+ logout: {
2668
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4H6.667A3.208 3.208 0 004 6.667v18.666A3.213 3.213 0 006.667 28H12m10-6.001 6-6-6-6M26 16H10"/>'
2669
+ },
2670
+ maximaze: {
2671
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2"><g transform="translate(2 6)"><rect width="28" height="20" rx="2" stroke="none"/><rect width="26" height="18" x="1" y="1" rx="1"/></g><path stroke-linecap="round" d="M7 17v4h4m14-6v-4h-4"/></g>'
2672
+ },
2673
+ menu: {
2674
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5 20h18M5 16h14M5 12h22"/>'
2675
+ },
2676
+ merge: {
2677
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><g stroke-miterlimit="10" transform="translate(5.333 5.334) translate(-.333 15.666)"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3"/></g><g stroke-miterlimit="10" transform="translate(5.333 5.334) translate(13.666 15.666)"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3"/></g><path stroke-linejoin="round" d="m20 8.334-4-4-4 4M16 6v11"/><path stroke-miterlimit="10" d="m11 22.001 5-5 5 5"/></g>'
2678
+ },
2679
+ minimize: {
2680
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2"><g transform="translate(3 17.001)"><rect width="11" height="9" rx="1" stroke="none"/><path d="M1 1h9v7H1z"/></g><path stroke-linecap="round" d="M28 10.999v-4h-6m0 18.002h6v-4m-18-14H4v4"/></g>'
2681
+ },
2682
+ "mixed-class": {
2683
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5.888 21.001a2.717 2.717 0 01-2.889-3v-12a2.717 2.717 0 012.889-3h20.223a2.717 2.717 0 012.889 3v12a2.717 2.717 0 01-2.889 3"/><path fill="none" stroke="currentColor" stroke-width="2" d="M13 30a3 3 0 013-3 3 3 0 013 3"/><g fill="currentColor" stroke-miterlimit="10"><path d="M16 24.999a1.992 1.992 0 01-1.415-.587A1.99 1.99 0 0114 22.999c0-.534.209-1.037.587-1.416A1.99 1.99 0 0116 20.999a1.99 1.99 0 011.415.586c.377.377.585.88.585 1.414 0 .534-.208 1.036-.586 1.414a1.991 1.991 0 01-1.414.586Z"/><path d="M16 21.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0016 24c.341 0 .574-.16.707-.293A.981.981 0 0017 23a.981.981 0 00-.291-.706A.986.986 0 0016 22m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0116 26a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 22.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 19.999Z"/></g><g fill="none"><path stroke="currentColor" stroke-width="2" d="M8 17a3 3 0 013-3 3 3 0 013 3"/><g stroke-miterlimit="10"><path d="M8 9.999a3 3 0 11.879 2.121A2.994 2.994 0 018 9.999Z"/><path fill="currentColor" d="M11 8.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0011 11c.341 0 .574-.16.707-.293A.981.981 0 0012 9.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 018 9.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0111 6.999Z"/></g></g><g fill="none"><path stroke="currentColor" stroke-width="2" d="M18 17a3 3 0 013-3 3 3 0 013 3"/><g stroke-miterlimit="10"><path d="M18 9.999a3 3 0 11.879 2.121A2.994 2.994 0 0118 9.999Z"/><path fill="currentColor" d="M21 8.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0021 11c.341 0 .574-.16.707-.293A.981.981 0 0022 9.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0118 9.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0121 6.999Z"/></g></g>'
2684
+ },
2685
+ "more-horizontal": {
2686
+ body: '<g fill="currentColor" transform="rotate(90 8.9 22.767)"><circle cx="3" cy="3" r="3" transform="translate(-.867 3.666)"/><circle cx="3" cy="3" r="3" transform="translate(-.867 12.666)"/><circle cx="3" cy="3" r="3" transform="translate(-.867 21.667)"/></g>'
2687
+ },
2688
+ "more-vertical": {
2689
+ body: '<g fill="currentColor" transform="translate(13.333 5.333)"><circle cx="3" cy="3" r="3" transform="translate(-.333 -1.334)"/><circle cx="3" cy="3" r="3" transform="translate(-.333 7.666)"/><circle cx="3" cy="3" r="3" transform="translate(-.333 16.666)"/></g>'
2690
+ },
2691
+ news: {
2692
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path d="m9 12-5 .055V25c0 1.879.845 3 2.5 3S9 26.879 9 25V6h19v19a2.94 2.94 0 01-3 3H7"/><path stroke-linecap="round" d="M14 22h5m-5-10h9m-9 5h9"/></g>'
2693
+ },
2694
+ "no-prerequisites": {
2695
+ body: '<g transform="translate(8.883 9)"><rect width="10" height="5.002" fill="none" stroke="currentColor" stroke-width="2" rx=".5" transform="translate(7.117 -1)"/><rect width="10" height="5" fill="none" stroke="currentColor" stroke-width="2" rx=".5" transform="translate(7.117 10)"/><path fill="currentColor" d="M-3.765 3.728h1.258V-.285l-1.376.353v-1.365l2.887-.7v5.728H.118v1.272h-3.882Zm-.102 10.798a1.875 1.875 0 011.144-1.939l1.211-.639a.681.681 0 00.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309 0-.455.157-.455.522v.747h-1.235v-.67c0-1.3.626-1.937 1.758-1.937h.455c1.139 0 1.756.643 1.756 1.914v.37a1.859 1.859 0 01-1.142 1.916l-1.206.641a.629.629 0 00-.372.639v.224H.121v1.3h-3.984Z"/></g>'
2696
+ },
2697
+ notes: {
2698
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M8 9h16M8 15h9"/><g transform="translate(2 2)"><rect width="28" height="28" rx="2" stroke="none"/><rect width="26" height="26" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M4 29c4.543 0 6.857-7 6.857-7L28 28.9 4 29Z"/></g>'
2699
+ },
2700
+ "number-code": {
2701
+ body: '<defs><path id="svgIDa" d="M2 0v5m2-3.75-4 2.5m4 0-4-2.5"/></defs><g fill="none" stroke="currentColor"><g stroke-width="2"><g stroke-miterlimit="10" transform="translate(8 9)"><rect width="16" height="11" rx="3" stroke="none"/><rect width="14" height="9" x="1" y="1" rx="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M12.005 9V6.835c0-1.565 1.791-2.835 4-2.835h0c2.209 0 4 1.269 4 2.835V9"/></g><use xlink:href="#svgIDa" stroke-linecap="round" transform="translate(6 23)"/><use xlink:href="#svgIDa" stroke-linecap="round" transform="translate(14 23)"/><use xlink:href="#svgIDa" stroke-linecap="round" transform="translate(22 23)"/></g>'
2702
+ },
2703
+ "numbered-list": {
2704
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M12 22h6m-6-5.999h15M12 10h10"/><path fill="currentColor" stroke="rgba(0,0,0,0)" d="M6.059 11.275h.629V8.981l-.688.2V8.4L7.443 8v3.273H8V12H6.059Zm-.054 5.884a1.1 1.1 0 01.572-1.108l.606-.365c.134-.085.181-.187.181-.411v-.21c0-.205-.073-.3-.226-.3h-.293c-.154 0-.227.089-.227.3v.427h-.62v-.383c0-.744.313-1.107.879-1.107h.227c.569 0 .878.367.878 1.094v.211a1.087 1.087 0 01-.571 1.095l-.6.366a.369.369 0 00-.186.365v.128h1.38v.741h-2ZM8 22.793v.12c0 .727-.3 1.089-.865 1.089h-.269c-.566 0-.866-.361-.866-1.074v-.323h.608v.364c0 .186.076.28.225.28h.326c.148 0 .227-.1.227-.293v-.343c0-.189-.066-.287-.211-.287h-.484v-.692h.449c.143 0 .209-.093.209-.286v-.314c0-.194-.075-.287-.22-.287h-.275c-.143 0-.217.091-.217.274v.335h-.611v-.287c0-.711.3-1.07.864-1.07h.21c.564 0 .863.359.863 1.089v.1c0 .418-.157.707-.459.786.331.062.496.385.496.819Z"/>'
2705
+ },
2706
+ "on-site": {
2707
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5.888 21.001a2.717 2.717 0 01-2.889-3v-12a2.717 2.717 0 012.889-3h20.223a2.717 2.717 0 012.889 3v12a2.717 2.717 0 01-2.889 3"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 16 4-4h6l4-4"/><path fill="none" stroke="currentColor" stroke-width="2" d="M13 30a3 3 0 013-3 3 3 0 013 3"/><g fill="currentColor" stroke-miterlimit="10"><path d="M16 24.999a1.992 1.992 0 01-1.415-.587A1.99 1.99 0 0114 22.999c0-.534.209-1.037.587-1.416A1.99 1.99 0 0116 20.999a1.99 1.99 0 011.415.586c.377.377.585.88.585 1.414 0 .534-.208 1.036-.586 1.414a1.991 1.991 0 01-1.414.586Z"/><path d="M16 21.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0016 24c.341 0 .574-.16.707-.293A.981.981 0 0017 23a.981.981 0 00-.291-.706A.986.986 0 0016 22m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0116 26a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 22.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 19.999Z"/></g>'
2708
+ },
2709
+ "order-down": {
2710
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5 7h22M5 13h16M5 19h10M5 25h4"/>'
2711
+ },
2712
+ "order-up": {
2713
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5 25h22M5 19h16M5 13h10M5 7h4"/>'
2714
+ },
2715
+ paste: {
2716
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(10.001 3)"><rect width="16" height="22" rx="2" stroke="none"/><rect width="14" height="20" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-miterlimit="10" d="M19 28h-9a2.665 2.665 0 01-3-3V10"/><path stroke-linecap="round" d="M15 10h6m-6 5h6"/></g>'
2717
+ },
2718
+ pausa: {
2719
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M12 6v20m8-20v20"/>'
2720
+ },
2721
+ pdf: {
2722
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-miterlimit="10" d="M29 10H16m13 6H16m13 7H3"/><path stroke-linejoin="round" d="M3 9h8v8H3z"/></g>'
2723
+ },
2724
+ phone: {
2725
+ body: '<g transform="translate(8.666 2.667)"><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(-1.665 -.666)"><rect width="18" height="28" rx="2.999" stroke="none"/><rect width="16" height="26" x="1" y="1" rx="1.999"/></g><circle cx="2" cy="2" r="2" fill="currentColor" transform="translate(5.334 19.334)"/><rect width="6" height="3" fill="currentColor" rx="1" transform="translate(4.334 .334)"/></g>'
2726
+ },
2727
+ pin: {
2728
+ body: '<g fill="none"><g stroke="currentColor" stroke-width="2" transform="translate(12 7.999)"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3"/></g><path d="M16 2.001a9.9 9.9 0 0110 9.8c0 8.412-10 18.2-10 18.2s-10-9.793-10-18.2a9.9 9.9 0 0110-9.8Z"/><path fill="currentColor" d="M16 4.001c-4.411 0-8 3.5-8 7.8 0 3.005 1.587 6.822 4.59 11.038A49.357 49.357 0 0016 27.086a49.281 49.281 0 003.373-4.193C22.4 18.657 24 14.82 24 11.8 24 7.5 20.411 4 16 4m0-2c5.523 0 10 4.388 10 9.8C26 20.212 16 30 16 30S6 20.207 6 11.8C6 6.388 10.477 2 16 2Z"/></g>'
2729
+ },
2730
+ "pin-map": {
2731
+ body: '<g fill="currentColor"><path d="M16 28.56a51.066 51.066 0 01-4.186-5.088c-1.413-1.977-2.536-3.89-3.338-5.688-.979-2.193-1.475-4.206-1.475-5.982 0-4.852 4.037-8.8 8.999-8.8 4.961 0 8.998 3.948 8.998 8.8 0 1.777-.496 3.79-1.475 5.984-.803 1.798-1.925 3.711-3.338 5.688A51.036 51.036 0 0116 28.56ZM16 7a5.006 5.006 0 00-4.999 5c0 2.758 2.243 5 5 5 2.756 0 5-2.242 5-5 0-2.756-2.244-5-5-5Z"/><path d="M16 27.08a49.525 49.525 0 003.372-4.188c1.373-1.922 2.463-3.777 3.237-5.513.922-2.065 1.389-3.941 1.389-5.577 0-4.3-3.588-7.8-7.998-7.8s-8 3.5-8 7.8c0 1.635.468 3.51 1.39 5.575.774 1.736 1.864 3.591 3.238 5.514A49.566 49.566 0 0016 27.08M16 6c3.309 0 6 2.691 6 6 0 3.308-2.691 6-6 6a6.007 6.007 0 01-5.999-6c0-3.309 2.692-6 6-6M16 30c-.026-.026-2.547-2.514-5-5.947-1.451-2.03-2.607-4.003-3.437-5.861-1.037-2.323-1.562-4.473-1.562-6.39 0-5.403 4.485-9.8 9.999-9.8 5.513 0 9.998 4.397 9.998 9.8 0 1.919-.526 4.07-1.562 6.392-.83 1.858-1.986 3.83-3.437 5.861-2.451 3.43-4.973 5.92-4.998 5.944H16Zm0-22a4.004 4.004 0 00-3.999 4c0 2.206 1.794 4 4 4 2.205 0 4-1.794 4-4 0-2.205-1.795-4-4-4Z"/></g>'
2732
+ },
2733
+ pizza: {
2734
+ body: '<path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.349 3 29 29 3.05 20.333S1.182 3 20.349 3Z"/><path fill="rgba(0,0,0,0)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M6.093 21a15.119 15.119 0 01.023-3.338 14.759 14.759 0 011.449-3.019 15.007 15.007 0 011.5-2.994 15.465 15.465 0 012.637-2.1 15.242 15.242 0 012.671-2.061 15.667 15.667 0 013.306-.77A15.224 15.224 0 0121 6"/><path fill="currentColor" d="M18.546 10.324a2.356 2.356 0 00-3.223 3.225.784.784 0 00.581.38.8.8 0 00.674-.23l.18-.154L17.772 15l2.225-2.229-1.455-1.041.154-.158a.806.806 0 00.23-.675.783.783 0 00-.38-.58Z"/><path fill="none" stroke="currentColor" stroke-width="2" d="M9.335 22.135s-.3-4.227 4.7-2.865S16.856 25 16.856 25m10.154-2.117s-1.859 2.126-3.428-.727a2.637 2.637 0 011.455-3.947"/>'
2735
+ },
2736
+ play: {
2737
+ body: '<g fill="none"><path d="M26.753 14.241a2 2 0 010 3.517L8.953 27.4A2 2 0 016 25.642V6.358A2 2 0 018.953 4.6Z"/><path fill="currentColor" d="M25.8 16 8 6.358v19.284L25.8 16m2 0c0 .69-.348 1.38-1.047 1.759L8.953 27.4C7.62 28.123 6 27.158 6 25.642V6.358c0-1.516 1.62-2.48 2.953-1.759l17.8 9.642A1.98 1.98 0 0127.801 16Z"/></g>'
2738
+ },
2739
+ "plug-in": {
2740
+ body: '<g fill="none"><path d="M4 26.002a2 2 0 01-2-2v-12a2 2 0 012-2h1v-2a2 2 0 012-2h5a2 2 0 012 2v2h4v-2a2 2 0 012-2h5a2 2 0 012 2v2h1a2 2 0 012 2v12a2 2 0 01-2 2Z"/><path fill="currentColor" d="M28 24.002v-12h-3v-4h-5v4h-8v-4H7v4H4.003v12H28m0 2H4.003a2 2 0 01-2-2v-12a2 2 0 012-2H5v-2a2 2 0 012-2h5a2 2 0 012 2v2h4v-2a2 2 0 012-2h5a2 2 0 012 2v2h1a2 2 0 012 2v12a2 2 0 01-2 2Z"/></g>'
2741
+ },
2742
+ pointer: {
2743
+ body: '<g stroke="currentColor"><g fill="none" stroke-width="2" transform="translate(4 3.999)"><circle cx="12" cy="12" r="12" stroke="none"/><circle cx="12" cy="12" r="11"/></g><g transform="translate(12 11.999)"><circle cx="4" cy="4" r="4" fill="currentColor" stroke="none"/><circle cx="4" cy="4" r="3.5" fill="none"/></g></g>'
2744
+ },
2745
+ printer: {
2746
+ body: '<g fill="none"><g stroke-miterlimit="10"><path d="M28 8.999H4a1.836 1.836 0 00-2 2v11a1.812 1.812 0 002 2h3v3a1.843 1.843 0 002 2h14a1.843 1.843 0 002-2v-3h3a1.836 1.836 0 002-2v-11a1.836 1.836 0 00-2-2Z"/><path fill="currentColor" d="M4 11v11h5v5h14v-5h5V11H4m0-2h24c1.243 0 2 .734 2 2v11c0 1.265-.757 2-2 2h-3v3c0 1.257-.764 2-2 2H9c-1.236 0-2-.743-2-2v-3H4c-1.299-.004-2-.735-2-2V11c0-1.266.757-2 2-2Z"/></g><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M21 15h3"/><g stroke="currentColor" stroke-width="2"><path stroke-linejoin="round" d="M21.001 5.998h-2v-2Z"/><path stroke-miterlimit="10" d="M11 10V6a1.8 1.8 0 012-2h6l2 2v4"/></g><g stroke-miterlimit="10"><path d="M7 20h18v7a2.3 2.3 0 01-2.25 2H9.25A2.3 2.3 0 017 27Z"/><path fill="currentColor" d="M9 22v4.852c.067.07.186.143.25.148h13.497a.537.537 0 00.253-.15V22H9m-2-2h18v7c0 .997-1.125 2-2.25 2H9.25C8.125 29 7 28.003 7 27v-7Z"/></g></g>'
2747
+ },
2748
+ profile: {
2749
+ body: '<g stroke="currentColor" stroke-width="2" transform="translate(8 5.334)"><path fill="rgba(0,0,0,0)" d="M2.2 10.588a4 4 0 010-7.84 7.005 7.005 0 0111.6 0 4 4 0 010 7.84 7 7 0 01-11.6 0Z"/><path fill="none" stroke-linejoin="round" d="M-1 24.666a9 9 0 019-9 9 9 0 019 9"/><rect width="8" height="8" fill="none" rx="4" transform="translate(-1 2.666)"/><rect width="8" height="8" fill="none" rx="4" transform="translate(9 2.666)"/></g>'
2750
+ },
2751
+ "profile-add": {
2752
+ body: '<g stroke="currentColor" stroke-width="2"><path fill="none" stroke-linecap="round" stroke-miterlimit="10" d="M19 8h10m-5-5v10"/><g transform="translate(4 5.332)"><path fill="rgba(0,0,0,0)" d="M1.624 11.334a3 3 0 010-5.328 6 6 0 0110.761 0 3 3 0 010 5.328 6 6 0 01-10.752 0Z"/><path fill="none" stroke-linejoin="round" d="M-1 24.666a8 8 0 018-8 8 8 0 018 8"/><rect width="6" height="6" fill="rgba(0,0,0,0)" rx="3" transform="translate(0 5.668)"/><rect width="6" height="6" fill="rgba(0,0,0,0)" rx="3" transform="translate(8 5.668)"/></g></g>'
2753
+ },
2754
+ "push-pin-off": {
2755
+ body: '<path fill="currentColor" d="M15.982 29.004a2.22 2.22 0 01-1.7-.791 11.534 11.534 0 01-2.264-3.984l1.664-1.664c.011.074.021.146.036.23a8.977 8.977 0 002.095 4.131.216.216 0 00.173.076.239.239 0 00.165-.066l10.788-10.789a.22.22 0 00.066-.172.228.228 0 00-.08-.164 8.88 8.88 0 00-4.362-2.127l1.665-1.664a11.609 11.609 0 013.984 2.26 2.23 2.23 0 01.138 3.283L17.566 28.352a2.239 2.239 0 01-1.584.652Zm-5.938-11.289L6.255 13.93a.215.215 0 00-.155-.066l-1.509-.008a1.6 1.6 0 01-1.123-2.725l7.655-7.66a1.6 1.6 0 012.729 1.123l.009 1.508a.219.219 0 00.066.16l3.786 3.785-1.414 1.414-3.787-3.783a2.244 2.244 0 01-.652-1.566v-.541l-6.292 6.293h.545a2.217 2.217 0 011.563.652l3.788 3.787-1.414 1.412Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="m23 23 5 5"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 28 28 4"/>'
2756
+ },
2757
+ "push-pin-on": {
2758
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path d="M27.567 15.045c-3.424-2.88-6.319-2.55-7.566-2.2a1.227 1.227 0 01-1.209-.309l-5.573-5.571a1.224 1.224 0 01-.359-.86l-.007-1.509a.6.6 0 00-1.02-.418l-7.657 7.656a.6.6 0 00.418 1.02l1.509.007a1.224 1.224 0 01.86.359l5.572 5.572a1.227 1.227 0 01.309 1.209c-.352 1.248-.682 4.142 2.2 7.566a1.235 1.235 0 001.811.074l10.786-10.785a1.235 1.235 0 00-.074-1.811Z"/><path stroke-linecap="round" d="m23 23 5 5"/></g>'
2759
+ },
2760
+ qrcode: {
2761
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2.001)"><rect width="9" height="9" rx="2" stroke="none"/><rect width="7" height="7" x="1" y="1" rx="1"/></g><g stroke-miterlimit="10" transform="translate(2 20.999)"><rect width="9" height="9" rx="2" stroke="none"/><rect width="7" height="7" x="1" y="1" rx="1"/></g><g stroke-miterlimit="10" transform="translate(21 2.001)"><rect width="9" height="9" rx="2" stroke="none"/><rect width="7" height="7" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M3 16h12v3m1-15.999v7m13 4v8m-13.999 4.333V29h5v-8M20 16h5v3m1 10h3v-3"/></g>'
2762
+ },
2763
+ "question-badge": {
2764
+ body: '<g transform="translate(2.667 2.667)"><circle cx="14" cy="14" r="14" fill="currentColor" transform="translate(-.667 -.666)"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.333 7.531a5.2 5.2 0 016.557-2.916 4.5 4.5 0 013.442 4.859c0 3.236-5 4.859-5 4.859"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M13.333 22.334v-2"/></g>'
2765
+ },
2766
+ radio: {
2767
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(2 2)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g>'
2768
+ },
2769
+ redo: {
2770
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-miterlimit="10" d="M26 12H11c-4.37 0-7 2.68-7 5.984V18c0 3.305 2.629 6 7 6h5.1"/><path stroke-linejoin="round" d="m21.999 6 6 6-6 6"/></g>'
2771
+ },
2772
+ relations: {
2773
+ body: '<g fill="none"><g stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" transform="translate(4.267 7.534)"><path d="m2.733 3.467 3 3"/><circle cx="2" cy="2" r="2" transform="translate(-1.267 -.533)"/></g><g stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" transform="translate(14.934 5.334)"><path d="M1.066 2.666v4"/><circle cx="2" cy="2" r="2" transform="translate(-.934 -1.334)"/></g><g stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" transform="translate(21.4 6.534)"><path d="m3.6 4.467-3 3"/><circle cx="2" cy="2" r="2" transform="translate(3.6 .467)"/></g><path stroke="currentColor" stroke-width="2" d="M12 29a4 4 0 014-4 4 4 0 014 4"/><g stroke-miterlimit="10"><path d="M12 19.999a4 4 0 111.172 2.828A3.992 3.992 0 0112 19.999Z"/><path fill="currentColor" d="M16 17.999a1.996 1.996 0 00-2 2c0 .532.208 1.034.586 1.414.38.378.882.586 1.414.586.533 0 1.035-.209 1.414-.586.378-.378.586-.88.586-1.414 0-.535-.208-1.038-.584-1.414A1.993 1.993 0 0016 18m0-2c1.106 0 2.102.446 2.828 1.17A3.984 3.984 0 0120 19.999a3.98 3.98 0 01-1.172 2.828A3.987 3.987 0 0116 23.999a3.988 3.988 0 01-2.828-1.172A3.988 3.988 0 0112 19.999c0-1.106.448-2.104 1.172-2.83A3.986 3.986 0 0116 15.999Z"/></g></g>'
2774
+ },
2775
+ reload: {
2776
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-miterlimit="10" d="M23 22.791A9.7 9.7 0 0115.804 26a9.9 9.9 0 01-9.8-10M9 8.6A10.225 10.225 0 0115.837 6 10.083 10.083 0 0126 16"/><path stroke-linejoin="round" d="m9 17-3-3-3 3m20-1.999 3 3 3-3"/></g>'
2777
+ },
2778
+ remove: {
2779
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 16h24"/>'
2780
+ },
2781
+ "remove-circle": {
2782
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(2 2.001)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g><path stroke-linecap="round" d="M11 16.001h10"/></g>'
2783
+ },
2784
+ reorder: {
2785
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-miterlimit="10" d="M4 18h24M4 14h24"/><path stroke-linejoin="round" d="m20 8-4-4-4 4m0 16 4 4 4-4"/></g>'
2786
+ },
2787
+ repeat: {
2788
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="m22.999 4.999 4 4-4 4M9 27l-4-4 4-4"/><path d="M5 14.999v-3a3.177 3.177 0 013.331-3H25m2 8v3a3.177 3.177 0 01-3.331 3H7"/></g>'
2789
+ },
2790
+ repository: {
2791
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m24 16.001-3-3-3 3m2.999-1v6"/><path d="M4 26a2 2 0 01-2-2V7.407a2.53 2.53 0 012.287-2.401H13.4L15.7 8H28a2 2 0 012 2v14a2 2 0 01-2 2Z"/><path fill="currentColor" d="M28 24V9.999H14.71l-2.3-2.997h-.127l-7.946.004c-.131.053-.322.279-.337.405V24h24m0 2H4a2 2 0 01-2-2.001V7.407c0-1.2 1.145-2.393 2.287-2.4l7.998-.005 1.114.004L15.696 8H28a2 2 0 012 2v13.999a2 2 0 01-2 2Z"/></g>'
2792
+ },
2793
+ "request-form": {
2794
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(4 4)"><path d="M18 14.001a5.461 5.461 0 01-4 4m0-12a5.459 5.459 0 014 4m-12 0a5.46 5.46 0 014-4m0 12a5.454 5.454 0 01-4-4m16.994 1.142c-.814 5.444-3.307 7.016-7.856 7.856m0-22c4.456.92 7.018 3.384 7.856 7.856m-22 0C1.914 4.404 4.382 1.839 8.85.999m0 22c-4.55-.846-7-3.308-7.856-7.856"/><rect width="6" height="8" rx="1.333" transform="translate(9 17)"/><rect width="8" height="6" rx="1.333" transform="translate(17 9)"/><rect width="8" height="6" rx="1.333" transform="translate(-1 9)"/><rect width="6" height="8" rx="1.333" transform="translate(9 -1)"/></g>'
2795
+ },
2796
+ "resize-100": {
2797
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M29 11V5h-6m0 22.001h6v-6M9 4.999H3v6m-.001 10.003v6h6"/><path fill="currentColor" d="M6.999 21h6v-2h-2v-8l-4 1v2l2-.65v5.668l-2-.018Zm11.998 0h6v-2h-2v-8l-4 1v2l2-.65v5.668l-2-.018ZM15 14.999h2v-2h-2Zm0 4h2v-2h-2Z"/>'
2798
+ },
2799
+ "resize-height": {
2800
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-linejoin="round" d="m20 11.001-4-4-4 4m0 10.003 4 4 4-4"/><path d="M5 3h22M5 29h22"/></g>'
2801
+ },
2802
+ "resize-width": {
2803
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-linejoin="round" d="m21 20.001 4-4-4-4M10.999 12l-4 4 4 4"/><path d="M29 5v22M3 5v22"/></g>'
2804
+ },
2805
+ search: {
2806
+ body: '<g stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path fill="currentColor" stroke-linecap="round" d="m18 18 10 10"/><g fill="none" transform="translate(3 3)"><circle cx="9" cy="9" r="9" stroke="none"/><circle cx="9" cy="9" r="8"/></g></g>'
2807
+ },
2808
+ "sequential-prerequisites": {
2809
+ body: '<g transform="translate(4.333 5.333)"><rect width="10" height="5" fill="none" stroke="currentColor" stroke-width="2" rx=".5" transform="translate(11.667 .666)"/><path fill="currentColor" d="M.785 5.394h1.258V1.381l-1.376.353V.369l2.887-.7v5.728h1.114v1.272H.786Zm-.101 14.8a1.875 1.875 0 011.144-1.939l1.211-.639a.681.681 0 00.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309 0-.455.156-.455.522v.747H.672v-.67c0-1.3.626-1.937 1.758-1.937h.455c1.139 0 1.756.643 1.756 1.914v.37a1.859 1.859 0 01-1.142 1.916l-1.206.641a.629.629 0 00-.372.639v.224h2.751v1.3H.688Z"/><g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(11.667 13.667)"><rect width="10" height="8" rx="2" stroke="none"/><rect width="8" height="6" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M14.672 13.668v-1.3a1.869 1.869 0 012-1.7h0a1.869 1.869 0 012 1.7v1.3"/></g></g>'
2810
+ },
2811
+ settings: {
2812
+ body: '<g fill="none" stroke-linecap="round" stroke-linejoin="round" transform="translate(4 4.001)"><path d="M10.478 24h3.044l.372-2.988.516-.142a9.112 9.112 0 002.153-.892l.467-.269 2.378 1.856 2.156-2.156-1.856-2.378.271-.468a9.139 9.139 0 00.892-2.153l.142-.515L24 13.522v-3.045l-2.987-.371-.142-.516a9.123 9.123 0 00-.893-2.155l-.269-.467 1.856-2.378-2.157-2.155-2.378 1.857-.467-.271a9.131 9.131 0 00-2.153-.892l-.516-.145-.372-2.987h-3.044l-.372 2.987-.516.142a9.131 9.131 0 00-2.153.892l-.467.271-2.378-1.854-2.156 2.156 1.856 2.378-.269.468a9.106 9.106 0 00-.893 2.152l-.142.517L0 10.477v3.045l2.987.372.142.516a9.106 9.106 0 00.893 2.152l.269.468-1.855 2.378 2.156 2.156 2.378-1.856.467.269a9.131 9.131 0 002.153.892l.516.142Z"/><path fill="currentColor" d="m13.522 24 .372-2.988.516-.142a9.112 9.112 0 002.153-.892l.467-.27 2.378 1.856 2.156-2.156-1.856-2.378.27-.468a9.14 9.14 0 00.893-2.153l.142-.515L24 13.522v-3.045l-2.987-.37-.142-.517a9.123 9.123 0 00-.893-2.154l-.27-.467 1.856-2.378-2.156-2.156-2.378 1.857-.467-.27a9.13 9.13 0 00-2.153-.893l-.516-.142L13.522 0h-3.044l-.372 2.987-.516.142a9.13 9.13 0 00-2.153.892l-.467.27-2.378-1.856L2.436 4.59l1.856 2.378-.27.468a9.106 9.106 0 00-.893 2.152l-.142.517L0 10.477v3.045l2.987.372.142.516c.21.768.511 1.492.893 2.152l.27.468-1.856 2.378 2.156 2.156 2.378-1.856.467.27a9.13 9.13 0 002.153.892l.516.142.372 2.988h3.044m0 2h-3.044a2 2 0 01-1.985-1.753l-.21-1.691a11.24 11.24 0 01-1.119-.463l-1.342 1.048a2 2 0 01-2.645-.163l-2.155-2.155a2 2 0 01-.163-2.645l1.048-1.342a11.113 11.113 0 01-.464-1.119l-1.69-.21A2 2 0 01-2 13.521v-3.045A2 2 0 01-.246 8.492l1.689-.21c.135-.383.29-.757.464-1.119L.859 5.821a2 2 0 01.163-2.645l2.155-2.155A2 2 0 015.822.858l1.342 1.048c.362-.174.735-.328 1.119-.463l.21-1.69A2 2 0 0110.479-2h3.044a2 2 0 011.984 1.753l.211 1.69c.384.135.758.29 1.12.463l1.34-1.048a2 2 0 012.646.163l2.155 2.155a2 2 0 01.163 2.645l-1.047 1.342c.173.362.328.736.463 1.12l1.69.21A2 2 0 0126 10.476v3.045a2 2 0 01-1.753 1.984l-1.69.211c-.135.383-.29.757-.463 1.119l1.047 1.342a2 2 0 01-.163 2.645l-2.155 2.155a2 2 0 01-2.645.163l-1.342-1.047c-.36.172-.735.327-1.119.462l-.21 1.691A2 2 0 0113.522 26Z"/><circle cx="5" cy="5" r="5" stroke="currentColor" stroke-width="2" transform="translate(7 6.999)"/></g>'
2813
+ },
2814
+ share: {
2815
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(4.333 4) translate(-.333 8)"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3"/></g><g stroke-miterlimit="10" transform="translate(4.333 4) translate(14.667 17)"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3"/></g><g stroke-miterlimit="10" transform="translate(4.333 4) translate(14.667 -1)"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m20 24-9-7m9-8-9 6"/></g>'
2816
+ },
2817
+ sketch: {
2818
+ body: '<g fill="none"><path d="M21.309 4.002a2 2 0 011.759 1.047l5.417 10a2 2 0 010 1.905l-5.417 10a2 2 0 01-1.759 1.048H10.691a2 2 0 01-1.759-1.047l-5.417-10a2 2 0 010-1.905l5.417-10a2 2 0 011.759-1.048Z"/><path fill="currentColor" d="m10.691 6.002-5.416 10 5.416 10H21.31l5.416-10-5.416-10H10.69m0-2h10.62a2 2 0 011.758 1.047l5.417 10a2 2 0 010 1.906l-5.417 10a2 2 0 01-1.758 1.047H10.69a2 2 0 01-1.758-1.047l-5.417-10a2 2 0 010-1.906l5.417-10a2 2 0 011.758-1.047Z"/></g>'
2819
+ },
2820
+ skills: {
2821
+ body: '<g transform="translate(2.667 1.666)"><rect width="6" height="6" fill="currentColor" rx="1" transform="translate(1.333 6.334)"/><path fill="currentColor" d="M21.465 6.853a1 1 0 011.736 0l2.277 3.981a1 1 0 01-.868 1.5h-4.554a1 1 0 01-.868-1.5Zm-8.739-5.055a1 1 0 011.214 0l1.839 1.4a1 1 0 01.348 1.09l-.722 2.346a1 1 0 01-.955.7h-2.233a1 1 0 01-.955-.7l-.723-2.342a1 1 0 01.348-1.09Z"/><g fill="none"><path stroke="currentColor" stroke-width="2" d="M9.333 27.334a4 4 0 014-4 4 4 0 014 4"/><g stroke-miterlimit="10"><path d="M9.333 18.333a4 4 0 111.172 2.828 3.992 3.992 0 01-1.172-2.828Z"/><path fill="currentColor" d="M13.333 16.333a1.996 1.996 0 00-2 2c0 .532.208 1.034.586 1.414.38.378.882.586 1.414.586.533 0 1.035-.209 1.414-.586.378-.378.586-.88.586-1.414 0-.535-.208-1.038-.584-1.414a1.993 1.993 0 00-1.416-.586m0-2c1.106 0 2.102.446 2.828 1.17a3.984 3.984 0 011.172 2.83 3.98 3.98 0 01-1.172 2.828 3.987 3.987 0 01-2.828 1.172 3.988 3.988 0 01-2.828-1.172 3.988 3.988 0 01-1.172-2.828c0-1.106.448-2.104 1.172-2.83a3.986 3.986 0 012.828-1.17Z"/></g></g></g>'
2822
+ },
2823
+ "skip-back": {
2824
+ body: '<g fill="none"><path d="M6.186 18.752a2 2 0 010-3.5l13.85-7.617A2 2 0 0123 9.383v15.234a2 2 0 01-2.964 1.753Z"/><path fill="currentColor" d="M7.15 17 21 24.617V9.383L7.15 17m-2 0a1.98 1.98 0 011.036-1.752l13.85-7.618C21.37 6.897 23 7.861 23 9.383v15.234c0 1.522-1.63 2.486-2.964 1.753l-13.85-7.618A1.98 1.98 0 015.15 17Z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M26 8v18"/></g>'
2825
+ },
2826
+ "skip-forward": {
2827
+ body: '<g fill="none"><path d="M25.814 14.248a2 2 0 010 3.5l-13.85 7.617A2 2 0 019 23.617V8.383a2 2 0 012.964-1.753Z"/><path fill="currentColor" d="M24.85 16 11 8.383v15.234L24.85 16m2 0a1.98 1.98 0 01-1.036 1.752l-13.85 7.618C10.631 26.103 9 25.139 9 23.617V8.383c0-1.522 1.63-2.486 2.964-1.753l13.85 7.618A1.98 1.98 0 0126.85 16Z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M6 6.999v18"/></g>'
2828
+ },
2829
+ sms: {
2830
+ body: '<g fill="none"><g stroke="currentColor" stroke-width="2" transform="translate(2 6.001)"><rect width="28" height="18" rx="3" stroke="none"/><rect width="26" height="16" x="1" y="1" rx="2"/></g><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 13h16M8 17.001h10"/><path d="M8 23h5l-5 5Z"/><path fill="currentColor" d="M8 23h5l-5 5v-5Z"/></g>'
2831
+ },
2832
+ "sso-access": {
2833
+ body: '<g fill="none"><path d="M24 24H8.757a3.207 3.207 0 01-.322-.017c-.144.011-.29.017-.437.017a6 6 0 01-1.951-11.676 5 5 0 016.516-4.073A8 8 0 0126.997 12.8a6 6 0 01-2.692 11.192c-.073 0-.146.008-.221.008Z"/><path fill="currentColor" d="m24.083 21.999.088-.003.033-.002a3.995 3.995 0 003.798-3.993 4.018 4.018 0 00-2.006-3.47l-.972-.561-.027-1.121a5.968 5.968 0 00-1.807-4.143A5.96 5.96 0 0019 6.998a5.95 5.95 0 00-4.83 2.44l-.857 1.163-1.374-.45a3.005 3.005 0 00-3.91 2.44l-.166 1.222-1.165.4a4.003 4.003 0 001.587 7.774l.176-.012.175.017c.042.005.083.007.12.007h15.327m0 2H8.757c-.109 0-.216-.006-.322-.017A5.998 5.998 0 012 18.001a6.007 6.007 0 014.047-5.678 4.998 4.998 0 016.516-4.073A7.987 7.987 0 0119 4.998a8 8 0 017.996 7.8A6.002 6.002 0 0124.083 24Z"/></g><g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-miterlimit="10" d="M16 14v5"/><g transform="translate(14 13)"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1"/></g></g>'
2834
+ },
2835
+ star: {
2836
+ body: '<path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="m16 3 3.069 9.931H29l-8.034 6.138L24.034 29 16 22.862 7.966 29l3.069-9.931L3 12.931h9.931Z"/>'
2837
+ },
2838
+ "star-active": {
2839
+ body: '<path fill="currentColor" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="m16 3 3.069 9.931H29l-8.034 6.138L24.034 29 16 22.862 7.966 29l3.069-9.931L3 12.931h9.931Z"/>'
2840
+ },
2841
+ success: {
2842
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" transform="translate(3.001 4.005)"><rect width="6" height="14" rx="2.005" transform="translate(.999 9.995)"/><path stroke-linecap="round" d="M23.359 12.575h-1.226l.1-.678h1.13a1.678 1.678 0 000-3.354h-2.719l-3.951-.083s.855-6.084-2.775-8.125C11.588-.842 11.154 1.4 11.154 1.4v4.237L9.769 7.049s-2.771 2.62-2.771 4.264v9.857a2.622 2.622 0 002.772 2.82h11.333a1.678 1.678 0 000-3.354h-.111l.1-.679h1.143a1.677 1.677 0 000-3.353h-.668l.1-.679h1.7a1.678 1.678 0 000-3.354Z"/></g>'
2843
+ },
2844
+ sun: {
2845
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(8 8)"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7"/></g><path stroke-linecap="round" d="M16 5V3m0 26v-2m11-11h2M3 16h2m20 9 1 1M6 6l1 1m18 0 1-1M6 26l1-1"/></g>'
2846
+ },
2847
+ sunrise: {
2848
+ body: '<g fill="none" stroke-miterlimit="10"><path d="M8 23a8 8 0 018-8 8 8 0 018 8Z"/><path fill="currentColor" d="M21.658 21A6.01 6.01 0 0016 17a6.01 6.01 0 00-5.657 4h11.315m2.343 2H8a8 8 0 018-8 8 8 0 018 8Z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M16 11.999v-3m-13 13h26m-23-10 2 2m16 0 2-2"/></g>'
2849
+ },
2850
+ support: {
2851
+ body: '<g stroke="currentColor" stroke-linejoin="round" transform="translate(5.333 4.335)"><path fill="none" stroke-linecap="round" stroke-width="2" d="M3.667 6.666c0-3.314 3.134-6 7-6s7 2.686 7 6"/><g fill="none" stroke-width="2" transform="translate(-.333 6.666)"><rect width="8" height="10" rx="2.004" stroke="none"/><rect width="6" height="8" x="1" y="1" rx="1.004"/></g><g fill="none" stroke-width="2" transform="translate(13.667 6.666)"><rect width="8" height="10" rx="2.004" stroke="none"/><rect width="6" height="8" x="1" y="1" rx="1.004"/></g><path fill="none" stroke-linecap="round" stroke-width="2" d="M17.667 15.666v2.4a3.5 3.5 0 01-3.363 3.6h-.633"/><circle cx="2" cy="2" r="2" fill="currentColor" stroke-linecap="round" transform="translate(9.667 19.666)"/></g>'
2852
+ },
2853
+ survey: {
2854
+ body: '<g fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M27 3.193H12c-1.5 0-2 .5-2 2v8c0 1.5.5 2 2 2h2l.465 2.389c.261 1 1.242-.071 1.535-.389l2-2h9c1.5 0 2-.5 2-2v-8c0-1.503-.5-2-2-2Z"/><path fill="currentColor" d="M12 5.193v8h2a2 2 0 011.873 1.299l.713-.713A2 2 0 0118 13.193h9v-8H12m0-2h15c1.496 0 2 .497 2 2v8c0 1.5-.504 2-2 2h-9l-2 2c-.293.318-1.274 1.393-1.535.39L14 15.192h-2c-1.5 0-2-.504-2-2v-8c0-1.504.5-2 2-2Z"/></g><path fill="currentColor" d="M17.982 8.112a.185.185 0 00-.073-.079.263.263 0 00-.1-.033l-.632-.1a.3.3 0 01-.127-.06.317.317 0 01-.094-.108l-.282-.6a.277.277 0 00-.068-.093.168.168 0 00-.11-.043.168.168 0 00-.11.043.277.277 0 00-.068.093l-.282.6a.317.317 0 01-.094.108.3.3 0 01-.127.06l-.632.1a.243.243 0 00-.125.054.178.178 0 00-.045.059.175.175 0 00-.017.075.206.206 0 00.023.092.292.292 0 00.054.074l.457.466a.308.308 0 01.061.1.391.391 0 01.025.132.217.217 0 010 .035l-.108.657a.322.322 0 000 .055.215.215 0 00.043.137.162.162 0 00.06.046.168.168 0 00.07.015.248.248 0 00.119-.034l.565-.31a.3.3 0 01.137-.03.3.3 0 01.137.03l.565.31a.247.247 0 00.119.034.169.169 0 00.071-.015.169.169 0 00.08-.078.233.233 0 00.023-.1.336.336 0 000-.055l-.108-.658a.214.214 0 010-.035.393.393 0 01.026-.132.3.3 0 01.062-.1l.457-.466a.293.293 0 00.054-.074.206.206 0 00.023-.092.178.178 0 00-.029-.08Zm6 0a.185.185 0 00-.073-.079.263.263 0 00-.1-.033l-.632-.1a.3.3 0 01-.127-.06.317.317 0 01-.094-.108l-.282-.6a.277.277 0 00-.068-.093.168.168 0 00-.11-.043.168.168 0 00-.11.043.277.277 0 00-.068.093l-.282.6a.317.317 0 01-.094.108.3.3 0 01-.127.06l-.632.1a.243.243 0 00-.125.054.178.178 0 00-.045.059.175.175 0 00-.017.075.206.206 0 00.023.092.292.292 0 00.054.074l.457.466a.308.308 0 01.061.1.391.391 0 01.025.132.217.217 0 010 .035l-.108.657a.322.322 0 000 .055.215.215 0 00.043.137.162.162 0 00.06.046.168.168 0 00.07.015.248.248 0 00.119-.034l.565-.31a.3.3 0 01.137-.03.3.3 0 01.137.03l.565.31a.247.247 0 00.119.034.169.169 0 00.071-.015.169.169 0 00.08-.078.233.233 0 00.023-.1.336.336 0 000-.055l-.108-.658a.214.214 0 010-.035.393.393 0 01.026-.132.3.3 0 01.062-.1l.457-.466a.293.293 0 00.054-.074.206.206 0 00.023-.092.178.178 0 00-.029-.08Z"/><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M4.001 30a4 4 0 014-4 4 4 0 014 4"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(4 17)"><rect width="8" height="8" rx="4" stroke="none"/><rect width="6" height="6" x="1" y="1" rx="3"/></g>'
2855
+ },
2856
+ table: {
2857
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g transform="translate(2 6)"><rect width="28" height="20" rx="2" stroke="none"/><rect width="26" height="18" x="1" y="1" rx="1"/></g><path d="M11 6v20M3 13h26M3 19h26"/></g>'
2858
+ },
2859
+ "tematic-channels": {
2860
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" d="M16 4v24m6 0H10"/><path d="M16 6.999h8.816L27 9.291l-2.184 2.708H16ZM15.999 16H7.183l-2.184-2.292L7.183 11h8.816Z"/></g>'
2861
+ },
2862
+ test: {
2863
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(4 4)"><rect width="10" height="10" rx="1.996" stroke="none"/><rect width="8" height="8" x="1" y="1" rx=".996"/></g><g stroke-miterlimit="10" transform="translate(4 18)"><rect width="10" height="10" rx="1.996" stroke="none"/><rect width="8" height="8" x="1" y="1" rx=".996"/></g><path stroke-linejoin="round" d="M22.657 5.008 18.19 21.704l1.196 5.202 3.634-3.91L27.487 6.3Z"/></g>'
2864
+ },
2865
+ "text-body": {
2866
+ body: '<path fill="currentColor" d="M4.363 23.427h4.06V9.565L4 10.888V8.124l7.434-2.122v17.425H15v2.575H4.363Zm12.999 0h4.06V9.565l-4.423 1.323V8.124l7.434-2.122v17.425h3.566v2.575H17.362Z"/>'
2867
+ },
2868
+ "text-edit": {
2869
+ body: '<path fill="currentColor" d="M11.645 19.27H7.362l-.795 2.731H4l3.721-12h3.565l3.714 12h-2.567Zm-.522-1.8-.758-2.614c-.288-1.013-.553-1.945-.866-3.121-.3 1.175-.577 2.108-.858 3.121l-.756 2.614Zm12.878-2.977v7.358h-1.708l-.208-.883-1.351.586a4.976 4.976 0 01-1.961.448c-1.692 0-2.773-1.143-2.773-3.135v-.177c0-1.85 1.135-2.917 3.676-2.917h2.072V14.23c0-.8-.278-1.253-1.151-1.253h-.749c-.742 0-1.143.246-1.143.948v.772h-2.287v-.632c0-1.957 1.274-3.059 3.459-3.059h.68c2.131-.004 3.444.937 3.444 3.487Zm-2.253 3.009h-2.125c-.889 0-1.3.272-1.3.942v.634c0 .67.331 1 .9 1a2.62 2.62 0 001.027-.23l1.5-.467ZM26 4h2v24h-2Z"/>'
2870
+ },
2871
+ "text-style": {
2872
+ body: '<path fill="currentColor" d="M13.731 20.358H8.28L7.268 24H4L8.736 8h4.538L18 24h-3.265Zm-.666-2.4-.965-3.486c-.367-1.351-.7-2.594-1.1-4.161-.387 1.567-.734 2.81-1.092 4.161l-.963 3.486Zm14.932-2.832v8.695H26.08l-.234-1.043-1.52.692a5.358 5.358 0 01-2.207.53c-1.9 0-3.118-1.351-3.118-3.7v-.21c0-2.184 1.277-3.447 4.135-3.447h2.328v-1.828c0-.951-.312-1.482-1.294-1.482h-.843c-.835 0-1.286.291-1.286 1.121v.911H19.47v-.749c0-2.314 1.434-3.616 3.892-3.616h.763c2.399 0 3.872 1.113 3.872 4.126Zm-2.537 3.557h-2.385c-1 0-1.468.32-1.468 1.112v.751c0 .792.373 1.183 1.007 1.183a2.821 2.821 0 001.155-.271l1.685-.55Z"/>'
2873
+ },
2874
+ time: {
2875
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(2 2.001)"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13"/></g><path stroke-linecap="round" stroke-linejoin="round" d="m19.001 13-3 3 5 5"/></g>'
2876
+ },
2877
+ "toilet-piper": {
2878
+ body: '<g transform="translate(4 5.333)"><ellipse cx="4" cy="9" fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" rx="4" ry="9" transform="translate(17 -2.334)"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21-2.333H4.4Q0-2.333 0 2.255v21.412h17.067V8.374"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M13 13.666h1m-6 0h1m-6 0h1"/><ellipse cx="1" cy="2" fill="currentColor" rx="1" ry="2" transform="translate(20 4.666)"/></g>'
2879
+ },
2880
+ "training-points": {
2881
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><g transform="translate(2.667 4) translate(-.667 4)"><circle cx="11" cy="11" r="11" stroke="none"/><circle cx="11" cy="11" r="10"/></g><g transform="translate(2.667 4) translate(4.333 9)"><circle cx="6" cy="6" r="6" stroke="none"/><circle cx="6" cy="6" r="5"/></g><path stroke-linecap="round" d="M13 19 23 9"/><path stroke-linejoin="round" d="m26.001 3-3 3v3h3l3-3Z"/></g>'
2882
+ },
2883
+ trash: {
2884
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path d="M7 4.999h18v21a3 3 0 01-3 3H10a3 3 0 01-3-3v-21Z" stroke="none"/><path d="M9 5.999h14a1 1 0 011 1v19a2 2 0 01-2 2H10a2 2 0 01-2-2v-19a1 1 0 011-1Z"/><path stroke-linecap="round" d="M5 6h22"/><path d="M18.999 6h-6V4a1 1 0 011-1h4a1 1 0 011 1v2Z" stroke="none"/><path d="M17.999 5h-4V4h4v1Z"/><path stroke-linecap="round" d="M13 13v8m6-8v8"/></g>'
2885
+ },
2886
+ underline: {
2887
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 5v10c0 5.1 3.583 8 8 8s8-2.9 8-8V5M6 27h20"/>'
2888
+ },
2889
+ undo: {
2890
+ body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2"><path stroke-miterlimit="10" d="M6 12.001h15c4.37 0 7 2.68 7 5.984v.016c0 3.305-2.629 6-7 6h-5.1"/><path stroke-linejoin="round" d="m10 6.001-6 6 6 6"/></g>'
2891
+ },
2892
+ unlock: {
2893
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="m10.614 13-1.277-1.277a4.48 4.48 0 010-6.385h0a4.479 4.479 0 016.386 0l1.273 1.276"/><path stroke-linecap="round" stroke-miterlimit="10" d="M16 19v4"/><g stroke-miterlimit="10" transform="translate(4 12.001)"><rect width="24" height="18" rx="3" stroke="none"/><rect width="22" height="16" x="1" y="1" rx="2"/></g></g>'
2894
+ },
2895
+ upload: {
2896
+ body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19.999 9-4-4-4 4M16 5v14m12 4.001v4H4v-4"/>'
2897
+ },
2898
+ user: {
2899
+ body: '<g fill="none" stroke="currentColor" stroke-width="2" transform="translate(8 5.333)"><rect width="14" height="14" rx="7" transform="translate(1 -.334)"/><path stroke-linejoin="round" d="M-1 24.666a9 9 0 019-9 9 9 0 019 9"/></g>'
2900
+ },
2901
+ "user-add": {
2902
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-miterlimit="10" d="M19 8h10m-5-5v10"/><g transform="translate(4 7)"><rect width="14" height="14" rx="7" stroke="none"/><rect width="12" height="12" x="1" y="1" rx="6"/></g><path stroke-linejoin="round" d="M3 30a8 8 0 1116 0"/></g>'
2903
+ },
2904
+ "user-badge": {
2905
+ body: '<path fill="currentColor" d="m16.874 4.154 2.151-1.828a1.365 1.365 0 012.212.752l.713 2.8a1.394 1.394 0 001.413 1.075l2.768-.157a1.439 1.439 0 011.369 1.97l-1 2.7a1.485 1.485 0 00.54 1.738l2.327 1.575a1.486 1.486 0 010 2.433l-2.326 1.584a1.485 1.485 0 00-.54 1.738l1 2.7a1.439 1.439 0 01-1.368 1.969l-2.768-.157a1.394 1.394 0 00-1.413 1.075l-.713 2.8a1.365 1.365 0 01-2.212.752l-2.152-1.828a1.337 1.337 0 00-1.747 0l-2.153 1.831a1.365 1.365 0 01-2.212-.752l-.713-2.8a1.394 1.394 0 00-1.413-1.075l-2.768.157a1.439 1.439 0 01-1.369-1.97l1-2.7a1.485 1.485 0 00-.54-1.738l-2.327-1.575a1.486 1.486 0 010-2.433l2.327-1.575a1.485 1.485 0 00.54-1.738l-1-2.7a1.439 1.439 0 011.369-1.981l2.768.157a1.394 1.394 0 001.413-1.074l.713-2.8a1.365 1.365 0 012.212-.752l2.152 1.828a1.337 1.337 0 001.747-.001Z"/><path fill="none" stroke="currentColor" stroke-width="2" d="M16 9a4 4 0 11-4 4 4 4 0 014-4Z"/><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M11 23.001a5 5 0 015-5 5 5 0 015 5"/>'
2906
+ },
2907
+ "video-off": {
2908
+ body: '<g fill="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="m28 19.886-5.819-3.888 5.82-3.887v7.775Z"/><path d="m27 13.982-3.019 2.016 3.02 2.017v-4.033m1.134-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z"/></g><path fill="currentColor" d="M20 22.998h-6.759l2-2H20v-4.76l2-2v6.76a2 2 0 01-2 2Zm-14.983-.256A2 2 0 014 20.998v-10a2 2 0 012-2h12.759l-2 2H6v10h.759l-1.741 1.74Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 28 28 4"/>'
2909
+ },
2910
+ "video-on": {
2911
+ body: '<g fill="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="m28 19.887-5.819-3.888 5.82-3.887v7.775Z"/><path d="m27 13.983-3.019 2.016 3.02 2.017v-4.033m1.135-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z"/></g><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(4 9.001)"><rect width="18" height="14" rx="2" stroke="none"/><rect width="16" height="12" x="1" y="1" rx="1"/></g>'
2912
+ },
2913
+ "video-rec": {
2914
+ body: '<g transform="translate(7.709 9.695)"><g fill="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="m20.291 10.19-5.819-3.887 5.82-3.887v7.775Z"/><path d="m19.291 4.287-3.019 2.016 3.02 2.017V4.287m1.135-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z"/></g><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(-3.709 -.695)"><rect width="18" height="14" rx="2" stroke="none"/><rect width="16" height="12" x="1" y="1" rx="1"/></g><circle cx="2.5" cy="2.5" r="2.5" fill="currentColor" transform="translate(-4.709 -1.695)"/></g>'
2915
+ },
2916
+ view: {
2917
+ body: '<g fill="none" stroke="currentColor" stroke-width="2" transform="translate(4 5.667)"><path d="M21 19.334H7a3 3 0 01-3-3v-1h13a3 3 0 003-3v-7h1a3 3 0 013 3v8a3 3 0 01-3 3Z"/><rect width="20" height="14" rx="3" transform="translate(0 1.334)"/></g>'
2918
+ },
2919
+ "view-card": {
2920
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(2 9.999)"><rect width="16" height="12" rx="2" stroke="none"/><rect width="14" height="10" x="1" y="1" rx="1"/></g><g transform="translate(20 13.999)"><rect width="10" height="8" rx="2" stroke="none"/><rect width="8" height="6" x="1" y="1" rx="1"/></g></g>'
2921
+ },
2922
+ "view-list": {
2923
+ body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(2 9) translate(0 -2)"><rect width="8" height="8" rx="2" stroke="none"/><rect width="6" height="6" x="1" y="1" rx="1"/></g><g transform="translate(2 9) translate(0 8)"><rect width="8" height="8" rx="2" stroke="none"/><rect width="6" height="6" x="1" y="1" rx="1"/></g><path stroke-linecap="round" d="M13 13h8m-8 10h8M13 9h16M13 19h16"/></g>'
2924
+ },
2925
+ "voice-off": {
2926
+ body: '<path fill="none" d="M.001 0h32v32h-32z"/><path fill="currentColor" d="m16.253 19.99 3.737-3.736a4 4 0 01-3.736 3.738Zm-4.251-4.234V6a4 4 0 118 0v1.76l-2 2V6a2 2 0 00-4 0v7.758l-2 2Z"/><path fill="currentColor" d="M16.001 24a8.711 8.711 0 01-3.174-.588l1.6-1.594a6.866 6.866 0 001.578.182c3.309 0 6-2.334 6-5.205V15a1 1 0 112 0v1.795a6.807 6.807 0 01-2.389 5.135A8.42 8.42 0 0116.001 24Zm-7.52-4.725a6.559 6.559 0 01-.482-2.479V15a1 1 0 112 0v1.795a4.508 4.508 0 00.086.879l-1.6 1.6Z"/><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" d="M16.001 23v6"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M12.001 29h8"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m4.001 28 24-24"/>',
2927
+ width: 32.001
2928
+ },
2929
+ "voice-on": {
2930
+ body: '<path fill="none" d="M0 0h32v32H0z"/><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(12 1.999)"><rect width="8" height="18" rx="4" stroke="none"/><rect width="6" height="16" x="1" y="1" rx="3"/></g><path stroke-linecap="round" d="M22.999 15v1.8c0 3.426-3.134 6.2-7 6.2h0c-3.866 0-7-2.777-7-6.2V15"/><path d="M16 23v6"/><path stroke-linecap="round" d="M12 28.999h8"/></g>'
2931
+ },
2932
+ "volume-down": {
2933
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M26.003 13.001a5.075 5.075 0 010 6"/><g stroke-linejoin="round"><path d="M3.999 19.999a2.193 2.193 0 002 2h7a1.421 1.421 0 011 .35l5.025 3.254a1.828 1.828 0 002.975-1.321V7.717a1.828 1.828 0 00-2.975-1.321l-5.025 3.3a1.383 1.383 0 01-1 .3h-7a2.193 2.193 0 00-2 2Z"/><path fill="currentColor" d="M19.999 23.851V8.15l-4.844 3.185c-.787.585-1.53.665-2.156.665H6.102a.51.51 0 00-.103.107v7.786a.51.51 0 00.103.107H13c.826 0 1.494.22 2.152.713L20 23.852M20.173 26c-.395 0-.798-.124-1.149-.397L14 22.349c-.326-.255-.576-.35-1-.35H6c-1.003 0-2-1.053-2-2v-8c0-.946.997-2 2-2h7c.424 0 .674-.043 1-.298l5.025-3.305C20.21 5.471 22 6.266 22 7.717v16.565C22 25.303 21.113 26 20.174 26Z"/></g></g>'
2934
+ },
2935
+ "volume-off": {
2936
+ body: '<path fill="none" d="M0 0h32v32H0z"/><g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="m21 19 6-6m-6 0 6 6"/><g stroke-linejoin="round"><path d="M4 18.999a2.177 2.177 0 002 2h5a2.085 2.085 0 011 .5l3.454 3.207c.921.684 2.546.114 2.546-.958V8.262c0-1.073-1.624-1.652-2.546-.968L12 10.5a2.088 2.088 0 01-1 .5H6a2.151 2.151 0 00-2 2Z"/><path fill="currentColor" d="M16 22.48V9.517l-2.64 2.45a1.85 1.85 0 01-.166.139c-.42.312-1.2.893-2.194.893H6.085a.403.403 0 00-.085.085v5.819a.468.468 0 00.098.096H11c.996 0 1.775.58 2.194.892a2 2 0 01.167.139L16 22.48m.41 2.52c-.34 0-.68-.093-.956-.298L12 21.495c-.254-.188-.67-.496-1-.496H6c-.97 0-2-1-2-2v-6c0-1 1-2 2-2h5c.33 0 .746-.31 1-.498l3.454-3.206C16.376 6.61 18 7.19 18 8.262v15.482c0 .751-.797 1.255-1.59 1.255Z"/></g></g>'
2937
+ },
2938
+ "volume-up": {
2939
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M22.001 11.999a8.593 8.593 0 010 8m4-8.999a13.111 13.111 0 010 10"/><g stroke-linejoin="round"><path d="M4 18.999a2.177 2.177 0 002 2h5a2.085 2.085 0 011 .5l3.454 3.207c.921.684 2.546.114 2.546-.958V8.262c0-1.073-1.624-1.652-2.546-.968L12 10.5a2.088 2.088 0 01-1 .5H6a2.151 2.151 0 00-2 2Z"/><path fill="currentColor" d="M16 22.48V9.517l-2.64 2.45a1.85 1.85 0 01-.166.139c-.42.312-1.2.893-2.194.893H6.085a.403.403 0 00-.085.085v5.819a.468.468 0 00.098.096H11c.996 0 1.775.58 2.194.892a2 2 0 01.167.139L16 22.48m.41 2.52c-.34 0-.68-.093-.956-.298L12 21.495c-.254-.188-.67-.496-1-.496H6c-.97 0-2-1-2-2v-6c0-1 1-2 2-2h5c.33 0 .746-.31 1-.498l3.454-3.206C16.376 6.61 18 7.19 18 8.262v15.482c0 .751-.797 1.255-1.59 1.255Z"/></g></g>'
2940
+ },
2941
+ warning: {
2942
+ body: '<g fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="currentColor" stroke-width="2" d="M16 11v6m0 6v-2"/><path d="M14.008 5.111a2.343 2.343 0 013.985 0l5.848 9.78 5.849 9.779a2.223 2.223 0 01-1.992 3.332H4.3a2.223 2.223 0 01-1.992-3.332l5.849-9.779Z"/><path fill="currentColor" d="M16 6.001c-.089 0-.208.024-.276.137L4.028 25.695c-.022.037-.05.083-.003.165.037.065.115.142.279.142h23.392c.164 0 .242-.077.279-.142.046-.082.019-.128-.003-.164L16.277 6.138C16.207 6.025 16.087 6 16 6m0-2c.775 0 1.55.37 1.992 1.11l11.697 19.56c.885 1.481-.222 3.332-1.993 3.332H4.304c-1.77 0-2.878-1.85-1.993-3.332L14.008 5.11C14.45 4.37 15.225 4 16 4Z"/></g>'
2943
+ },
2944
+ webinar: {
2945
+ body: '<g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M3.001 19V5.814c0-1.992.2-2.811 2-2.811h21.11c1.8 0 2.889 1.208 2.889 3.2v12.8"/><path stroke="currentColor" stroke-width="2" d="M6 20.999a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M6 15.999a2 2 0 11.586 1.414A2 2 0 016 15.999Z"/><path fill="currentColor" d="M8 13.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 018 17.999a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 018 13.999Z"/></g><path stroke="currentColor" stroke-width="2" d="M10 29.999a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M10 24.999a2 2 0 11.586 1.414A2 2 0 0110 24.999Z"/><path fill="currentColor" d="M12 22.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0112 22.999Z"/></g><path stroke="currentColor" stroke-width="2" d="M18 29.999a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M18 24.999a2 2 0 11.586 1.414A2 2 0 0118 24.999Z"/><path fill="currentColor" d="M20 22.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0120 22.999Z"/></g><path stroke="currentColor" stroke-width="2" d="M14 20.999a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M14 15.999a2 2 0 11.586 1.414A2 2 0 0114 15.999Z"/><path fill="currentColor" d="M16 13.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0116 13.999Z"/></g><path stroke="currentColor" stroke-width="2" d="M22 20.999a2 2 0 012-2 2 2 0 012 2"/><g stroke-miterlimit="10"><path d="M22 15.999a2 2 0 11.586 1.414A2 2 0 0122 15.999Z"/><path fill="currentColor" d="M24 13.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0124 13.999Z"/></g></g>'
2946
+ },
2947
+ whiteboard: {
2948
+ body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" d="m4 29 7-9m5 9v-9m12 9-7-9"/><g stroke-miterlimit="10" transform="translate(2 3)"><rect width="28" height="18" rx="3" stroke="none"/><rect width="26" height="16" x="1" y="1" rx="2"/></g><path d="M9 13.769c1.995-1.507 4.428-4.772 8.4-4.772-1.689 5.643 3.537 7.475 5.6 4.772"/></g>'
2949
+ },
2950
+ wine: {
2951
+ body: '<g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2"><path stroke-linecap="round" d="M23.226 21.973c4.09-1.922 2.45-9.973 2.45-9.973h-7.351s-1.64 8.05 2.45 9.973a2.123 2.123 0 00.539.02h1.411a1.82 1.82 0 00.501-.02ZM22 23v5m3 0h-6"/><path d="M7.266 29a1.624 1.624 0 01-.869-.4 1.335 1.335 0 01-.4-.933C6.02 13.576 6.006 13 5.997 13l2-4V3h3.994v6l2 4c.014.012-.021.576 0 14.667a1.335 1.335 0 01-.4.933 1.133 1.133 0 01-.933.4Z"/><path d="M6 16.001h4v8H6z"/></g>'
2952
+ },
2953
+ zip: {
2954
+ body: '<path fill="currentColor" d="M25.001 23.999a1 1 0 101 1 1 1 0 00-1-1Z"/><path fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 6v6m6-6v6m6-6v6"/><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2" transform="translate(21 5)"><rect width="8" height="8" rx="1" stroke="none"/><path d="M1 1h6v6H1z"/></g><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M24.883 29c-4.239 0-3.876-5-3.876-5l.985-7h6l1 7s.349 5-3.89 5Z"/>'
2955
+ },
2956
+ "zoom-in": {
2957
+ body: '<g stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path fill="none" stroke-linecap="round" d="M9 12h6m-3-3v6"/><path fill="currentColor" stroke-linecap="round" d="m18 18 10 10"/><g fill="none" transform="translate(3 3)"><circle cx="9" cy="9" r="9" stroke="none"/><circle cx="9" cy="9" r="8"/></g></g>'
2958
+ },
2959
+ "zoom-out": {
2960
+ body: '<g stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path fill="currentColor" stroke-linecap="round" d="m18 18 10 10"/><g fill="none" transform="translate(3 3)"><circle cx="9" cy="9" r="9" stroke="none"/><circle cx="9" cy="9" r="8"/></g></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M9 11.999h6"/>'
2961
+ }
2962
+ }, z0 = 32, O0 = 32, X0 = {
2963
+ prefix: S0,
2964
+ lastModified: $0,
2965
+ icons: B0,
2966
+ width: z0,
2967
+ height: O0
2968
+ };
2969
+ export {
2970
+ E1 as VvAccordion,
2971
+ N0 as VvAccordionGroup,
2972
+ E0 as VvBadge,
2973
+ F0 as VvBreadcrumb,
2974
+ P0 as VvButton,
2975
+ R0 as VvButtonGroup,
2976
+ U0 as VvCard,
2977
+ a0 as VvCheck,
2978
+ K0 as VvCheckGroup,
2979
+ Q0 as VvDialog,
2980
+ T0 as VvDropdown,
2981
+ J as VvIcon,
2982
+ X0 as iconsDetailed,
2983
+ J0 as iconsNormal,
2984
+ W0 as iconsSimple
2985
+ };