@fibery/ui-kit 4.2.0 → 4.3.0

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 (896) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +9 -11
  3. package/src/antd/input-number.tsx +4 -4
  4. package/src/antd/input.tsx +1 -1
  5. package/src/apca.lc-low.test.ts +1 -3
  6. package/src/apca.test.ts +42 -43
  7. package/src/apca.ts +38 -39
  8. package/src/app-icon-with-fallback.tsx +6 -2
  9. package/src/avatar-colors.ts +71 -0
  10. package/src/avatar.tsx +2 -10
  11. package/src/banner/banner.tsx +1 -2
  12. package/src/box.tsx +26 -16
  13. package/src/button/back-button.tsx +2 -2
  14. package/src/button/make-button-colors.ts +13 -13
  15. package/src/button/select-button.tsx +2 -2
  16. package/src/canvas-colors.ts +71 -118
  17. package/src/checkbox.tsx +3 -3
  18. package/src/collapsible-section.tsx +3 -3
  19. package/src/color-filter.test.ts +13 -0
  20. package/src/color-filter.ts +26 -3
  21. package/src/color-utils.ts +9 -2
  22. package/src/command-menu/nested-command-menu.tsx +2 -2
  23. package/src/date-picker/date-range-picker-popup-content.tsx +3 -2
  24. package/src/date-picker/date-range-picker.tsx +23 -1
  25. package/src/date-picker/relative-date-picker.tsx +3 -2
  26. package/src/date-picker/single-date-picker-popup-content.tsx +3 -2
  27. package/src/date-picker/single-date-picker.tsx +19 -2
  28. package/src/design-system/alpha-coefficients.ts +235 -0
  29. package/src/design-system/alpha.ts +10 -1
  30. package/src/design-system/colors-enum.dark.neutral.test.ts +168 -168
  31. package/src/design-system/colors-enum.dark.warm.test.ts +168 -168
  32. package/src/design-system/colors-enum.light.neutral.test.ts +168 -168
  33. package/src/design-system/colors-enum.light.warm.test.ts +168 -168
  34. package/src/design-system/colors.ts +231 -154
  35. package/src/design-system/fns.avatarPlaceholder.dark.neutral.test.ts +52 -0
  36. package/src/design-system/fns.avatarPlaceholder.dark.warm.test.ts +52 -0
  37. package/src/design-system/fns.avatarPlaceholder.light.neutral.test.ts +52 -0
  38. package/src/design-system/fns.avatarPlaceholder.light.warm.test.ts +52 -0
  39. package/src/design-system/fns.enum.ts +2 -0
  40. package/src/design-system/fns.icon.ts +1 -1
  41. package/src/design-system/fns.ts +43 -13
  42. package/src/design-system/theme.test.ts +4 -6
  43. package/src/design-system/theme.ts +22 -13
  44. package/src/design-system/vars.test.ts +2 -2
  45. package/src/design-system/vars.ts +3 -3
  46. package/src/design-system.ts +3 -1
  47. package/src/dot.tsx +1 -0
  48. package/src/double-apply.ts +2 -2
  49. package/src/emoji-picker/primitives/footer.tsx +1 -1
  50. package/src/emoji-picker/utils/frequently.ts +1 -1
  51. package/src/favorites-icon.tsx +2 -2
  52. package/src/fibermoji-placeholder.tsx +23 -56
  53. package/src/fibery-brand-logo.tsx +82 -0
  54. package/src/field-container.tsx +2 -2
  55. package/src/field-type-icon.tsx +18 -18
  56. package/src/file-item/file-menu-items.tsx +1 -1
  57. package/src/file-item/file-preview-actions.tsx +1 -1
  58. package/src/format-date-from-now.ts +10 -5
  59. package/src/header-layout.tsx +41 -24
  60. package/src/highlight-colors.test.ts +1 -1
  61. package/src/highlight-colors.ts +27 -0
  62. package/src/icons/ast/appearance-auto.ts +1 -1
  63. package/src/icons/ast/architect.ts +12 -0
  64. package/src/icons/ast/arrow-back.ts +12 -0
  65. package/src/icons/ast/arrow-down.ts +12 -0
  66. package/src/icons/ast/{send-arrow.ts → arrow-send.ts} +3 -3
  67. package/src/icons/ast/arrow-up.ts +12 -0
  68. package/src/icons/ast/avatar.ts +12 -0
  69. package/src/icons/ast/backlog.ts +12 -0
  70. package/src/icons/ast/{check-circle-filled.ts → circle-check-filled.ts} +3 -3
  71. package/src/icons/ast/{check-circle.ts → circle-check.ts} +3 -3
  72. package/src/icons/ast/{error-circle-filled.ts → circle-cross-filled.ts} +3 -3
  73. package/src/icons/ast/circle-cross.ts +12 -0
  74. package/src/icons/ast/{info-circle-filled.ts → circle-info-filled.ts} +3 -3
  75. package/src/icons/ast/{info-circle.ts → circle-info.ts} +3 -3
  76. package/src/icons/ast/circle-pause.ts +12 -0
  77. package/src/icons/ast/circle-play.ts +12 -0
  78. package/src/icons/ast/comments.ts +12 -0
  79. package/src/icons/ast/credits-filled.ts +1 -1
  80. package/src/icons/ast/{add-database.ts → database-add.ts} +3 -3
  81. package/src/icons/ast/database-outline.ts +12 -0
  82. package/src/icons/ast/eye-off.ts +12 -0
  83. package/src/icons/ast/favorites-filled.ts +12 -0
  84. package/src/icons/ast/{switch-to-mention.ts → field-units-large.ts} +3 -3
  85. package/src/icons/ast/files.ts +12 -0
  86. package/src/icons/ast/{smart-folder.ts → folder-smart.ts} +3 -3
  87. package/src/icons/ast/fullscreen-mode-off.ts +12 -0
  88. package/src/icons/ast/fullscreen-mode-on.ts +1 -1
  89. package/src/icons/ast/{add-group.ts → group-add.ts} +3 -3
  90. package/src/icons/ast/{image-xmark.ts → image-error.ts} +3 -3
  91. package/src/icons/ast/index.tsx +132 -217
  92. package/src/icons/ast/{add-integration.ts → integration-add.ts} +3 -3
  93. package/src/icons/ast/integration-discourse.ts +12 -0
  94. package/src/icons/ast/integration-fibery.ts +12 -0
  95. package/src/icons/ast/integration-figma.ts +12 -0
  96. package/src/icons/ast/integration-github.ts +12 -0
  97. package/src/icons/ast/integration-gitlab.ts +12 -0
  98. package/src/icons/ast/integration-google-drive.ts +12 -0
  99. package/src/icons/ast/integration-google-map.ts +12 -0
  100. package/src/icons/ast/integration-intercom.ts +12 -0
  101. package/src/icons/ast/integration-jira.ts +12 -0
  102. package/src/icons/ast/integration-loom.ts +12 -0
  103. package/src/icons/ast/integration-miro.ts +12 -0
  104. package/src/icons/ast/integration-mixpanel.ts +12 -0
  105. package/src/icons/ast/integration-slack.ts +12 -0
  106. package/src/icons/ast/{suggest-integration.ts → integration-suggest.ts} +3 -3
  107. package/src/icons/ast/integration-twitter.ts +12 -0
  108. package/src/icons/ast/integration-unsplash.ts +12 -0
  109. package/src/icons/ast/integration-youtube.ts +12 -0
  110. package/src/icons/ast/integration-zendesk.ts +12 -0
  111. package/src/icons/ast/limits.ts +12 -0
  112. package/src/icons/ast/lock-filled.ts +12 -0
  113. package/src/icons/ast/lock.ts +1 -1
  114. package/src/icons/ast/move-down.ts +12 -0
  115. package/src/icons/ast/move-up.ts +12 -0
  116. package/src/icons/ast/open-in-panel.ts +12 -0
  117. package/src/icons/ast/open-link.ts +12 -0
  118. package/src/icons/ast/people-all.ts +12 -0
  119. package/src/icons/ast/people-group-remove.ts +12 -0
  120. package/src/icons/ast/people-group.ts +12 -0
  121. package/src/icons/ast/{invite-people.ts → people-invite.ts} +3 -3
  122. package/src/icons/ast/{remove-people.ts → people-remove.ts} +3 -3
  123. package/src/icons/ast/people-role.ts +12 -0
  124. package/src/icons/ast/people-x.ts +12 -0
  125. package/src/icons/ast/plus.ts +12 -0
  126. package/src/icons/ast/preferences.ts +12 -0
  127. package/src/icons/ast/propagate.ts +12 -0
  128. package/src/icons/ast/{add-reactions.ts → reactions-add.ts} +3 -3
  129. package/src/icons/ast/redo.ts +12 -0
  130. package/src/icons/ast/references.ts +12 -0
  131. package/src/icons/ast/richeditor-block-callout.ts +1 -1
  132. package/src/icons/ast/richeditor-block-code.ts +1 -1
  133. package/src/icons/ast/richeditor-block-embed.ts +1 -1
  134. package/src/icons/ast/richeditor-block-entity.ts +1 -1
  135. package/src/icons/ast/richeditor-block-file.ts +1 -1
  136. package/src/icons/ast/richeditor-block-h1.ts +1 -1
  137. package/src/icons/ast/richeditor-block-h2.ts +1 -1
  138. package/src/icons/ast/richeditor-block-h3.ts +1 -1
  139. package/src/icons/ast/richeditor-block-h4.ts +1 -1
  140. package/src/icons/ast/richeditor-block-mention.ts +1 -1
  141. package/src/icons/ast/richeditor-block-paragraph.ts +1 -1
  142. package/src/icons/ast/richeditor-block-quote.ts +1 -1
  143. package/src/icons/ast/richeditor-checklist-create.ts +1 -1
  144. package/src/icons/ast/richeditor-image-align-center.ts +1 -1
  145. package/src/icons/ast/richeditor-image-align-left.ts +1 -1
  146. package/src/icons/ast/richeditor-image-align-right.ts +1 -1
  147. package/src/icons/ast/richeditor-image.ts +12 -0
  148. package/src/icons/ast/richeditor-linkedhighlight-create.ts +1 -1
  149. package/src/icons/ast/richeditor-list-bullet.ts +1 -1
  150. package/src/icons/ast/richeditor-list-indent.ts +1 -1
  151. package/src/icons/ast/richeditor-list-ordered.ts +1 -1
  152. package/src/icons/ast/richeditor-list-unindent.ts +1 -1
  153. package/src/icons/ast/richeditor-mark-code.ts +1 -1
  154. package/src/icons/ast/richeditor-mark-em.ts +1 -1
  155. package/src/icons/ast/richeditor-mark-highlight.ts +1 -1
  156. package/src/icons/ast/richeditor-mark-strike.ts +1 -1
  157. package/src/icons/ast/richeditor-mark-strong.ts +1 -1
  158. package/src/icons/ast/richeditor-mark-text-background-color.ts +1 -1
  159. package/src/icons/ast/richeditor-mark-underline.ts +1 -1
  160. package/src/icons/ast/richeditor-table-create.ts +1 -1
  161. package/src/icons/ast/richeditor-video-upload.ts +1 -1
  162. package/src/icons/ast/{bolt.ts → rule.ts} +3 -3
  163. package/src/icons/ast/simple-compass.ts +1 -1
  164. package/src/icons/ast/space-add.ts +12 -0
  165. package/src/icons/ast/{move-space.ts → space-move.ts} +3 -3
  166. package/src/icons/ast/type-button.ts +1 -1
  167. package/src/icons/ast/type-checkbox.ts +1 -1
  168. package/src/icons/ast/type-date.ts +1 -1
  169. package/src/icons/ast/type-email.ts +1 -1
  170. package/src/icons/ast/type-emoji.ts +1 -1
  171. package/src/icons/ast/type-formula.ts +1 -1
  172. package/src/icons/ast/type-location.ts +1 -1
  173. package/src/icons/ast/type-lookup.ts +1 -1
  174. package/src/icons/ast/type-money.ts +1 -1
  175. package/src/icons/ast/type-multi-select.ts +1 -1
  176. package/src/icons/ast/type-number.ts +1 -1
  177. package/src/icons/ast/type-percent.ts +1 -1
  178. package/src/icons/ast/type-phone.ts +1 -1
  179. package/src/icons/ast/type-relation.ts +1 -1
  180. package/src/icons/ast/type-rich-text.ts +1 -1
  181. package/src/icons/ast/type-single-select.ts +1 -1
  182. package/src/icons/ast/type-text.ts +1 -1
  183. package/src/icons/ast/undo.ts +12 -0
  184. package/src/icons/ast/units-avatar.ts +1 -1
  185. package/src/icons/ast/units-collection.ts +1 -1
  186. package/src/icons/ast/units-counter.ts +1 -1
  187. package/src/icons/ast/units-date.ts +1 -1
  188. package/src/icons/ast/units-field-icon-button.ts +1 -1
  189. package/src/icons/ast/units-field.ts +1 -1
  190. package/src/icons/ast/units-input.ts +1 -1
  191. package/src/icons/ast/units-normal.ts +12 -0
  192. package/src/icons/ast/units-progress-bar.ts +1 -1
  193. package/src/icons/ast/units-rich-text.ts +1 -1
  194. package/src/icons/ast/units-snippet.ts +1 -1
  195. package/src/icons/ast/unlock.ts +12 -0
  196. package/src/icons/ast/{clear-value.ts → value-clear.ts} +3 -3
  197. package/src/icons/ast/view-app.ts +12 -0
  198. package/src/icons/ast/workflow.ts +12 -0
  199. package/src/icons/react/{anthropic.tsx → architect.tsx} +5 -5
  200. package/src/icons/react/arrow-back.tsx +18 -0
  201. package/src/icons/react/arrow-down.tsx +18 -0
  202. package/src/icons/react/arrow-send.tsx +18 -0
  203. package/src/icons/react/{app-wiki.tsx → arrow-up.tsx} +5 -5
  204. package/src/icons/react/avatar.tsx +18 -0
  205. package/src/icons/react/backlog.tsx +18 -0
  206. package/src/icons/react/circle-check-filled.tsx +18 -0
  207. package/src/icons/react/{add-database.tsx → circle-check.tsx} +5 -5
  208. package/src/icons/react/circle-cross-filled.tsx +18 -0
  209. package/src/icons/react/circle-cross.tsx +18 -0
  210. package/src/icons/react/circle-info-filled.tsx +18 -0
  211. package/src/icons/react/circle-info.tsx +18 -0
  212. package/src/icons/react/circle-pause.tsx +18 -0
  213. package/src/icons/react/circle-play.tsx +18 -0
  214. package/src/icons/react/comments.tsx +18 -0
  215. package/src/icons/react/database-add.tsx +18 -0
  216. package/src/icons/react/database-outline.tsx +18 -0
  217. package/src/icons/react/{chat-ai.tsx → eye-off.tsx} +5 -5
  218. package/src/icons/react/favorites-filled.tsx +18 -0
  219. package/src/icons/react/field-units-large.tsx +18 -0
  220. package/src/icons/react/{apple.tsx → files.tsx} +5 -5
  221. package/src/icons/react/folder-smart.tsx +18 -0
  222. package/src/icons/react/fullscreen-mode-off.tsx +18 -0
  223. package/src/icons/react/{app-store.tsx → group-add.tsx} +5 -5
  224. package/src/icons/react/image-error.tsx +18 -0
  225. package/src/icons/react/index.tsx +132 -217
  226. package/src/icons/react/{add-integration.tsx → integration-add.tsx} +5 -5
  227. package/src/icons/react/integration-discourse.tsx +18 -0
  228. package/src/icons/react/integration-fibery.tsx +18 -0
  229. package/src/icons/react/integration-figma.tsx +18 -0
  230. package/src/icons/react/integration-github.tsx +18 -0
  231. package/src/icons/react/integration-gitlab.tsx +18 -0
  232. package/src/icons/react/integration-google-drive.tsx +18 -0
  233. package/src/icons/react/integration-google-map.tsx +18 -0
  234. package/src/icons/react/{automations-disabled.tsx → integration-intercom.tsx} +5 -5
  235. package/src/icons/react/integration-jira.tsx +18 -0
  236. package/src/icons/react/integration-loom.tsx +18 -0
  237. package/src/icons/react/integration-miro.tsx +18 -0
  238. package/src/icons/react/{extension-references.tsx → integration-mixpanel.tsx} +5 -5
  239. package/src/icons/react/integration-slack.tsx +18 -0
  240. package/src/icons/react/integration-suggest.tsx +18 -0
  241. package/src/icons/react/integration-twitter.tsx +18 -0
  242. package/src/icons/react/integration-unsplash.tsx +18 -0
  243. package/src/icons/react/integration-youtube.tsx +18 -0
  244. package/src/icons/react/integration-zendesk.tsx +18 -0
  245. package/src/icons/react/{notifications.tsx → limits.tsx} +5 -5
  246. package/src/icons/react/lock-filled.tsx +18 -0
  247. package/src/icons/react/{add-group.tsx → move-down.tsx} +5 -5
  248. package/src/icons/react/move-up.tsx +18 -0
  249. package/src/icons/react/open-in-panel.tsx +18 -0
  250. package/src/icons/react/{ai-search.tsx → open-link.tsx} +5 -5
  251. package/src/icons/react/people-all.tsx +18 -0
  252. package/src/icons/react/people-group-remove.tsx +18 -0
  253. package/src/icons/react/people-group.tsx +18 -0
  254. package/src/icons/react/{add-reactions.tsx → people-invite.tsx} +5 -5
  255. package/src/icons/react/people-remove.tsx +18 -0
  256. package/src/icons/react/people-role.tsx +18 -0
  257. package/src/icons/react/people-x.tsx +18 -0
  258. package/src/icons/react/{chat.tsx → plus.tsx} +5 -5
  259. package/src/icons/react/preferences.tsx +18 -0
  260. package/src/icons/react/propagate.tsx +18 -0
  261. package/src/icons/react/reactions-add.tsx +18 -0
  262. package/src/icons/react/{csv.tsx → redo.tsx} +5 -5
  263. package/src/icons/react/references.tsx +18 -0
  264. package/src/icons/react/richeditor-block-callout.tsx +1 -1
  265. package/src/icons/react/richeditor-block-code.tsx +1 -1
  266. package/src/icons/react/richeditor-block-embed.tsx +1 -1
  267. package/src/icons/react/richeditor-block-entity.tsx +1 -1
  268. package/src/icons/react/richeditor-block-file.tsx +1 -1
  269. package/src/icons/react/richeditor-block-h1.tsx +1 -1
  270. package/src/icons/react/richeditor-block-h2.tsx +1 -1
  271. package/src/icons/react/richeditor-block-h3.tsx +1 -1
  272. package/src/icons/react/richeditor-block-h4.tsx +1 -1
  273. package/src/icons/react/richeditor-block-mention.tsx +1 -1
  274. package/src/icons/react/richeditor-block-paragraph.tsx +1 -1
  275. package/src/icons/react/richeditor-block-quote.tsx +1 -1
  276. package/src/icons/react/richeditor-checklist-create.tsx +1 -1
  277. package/src/icons/react/richeditor-image-align-center.tsx +1 -1
  278. package/src/icons/react/richeditor-image-align-left.tsx +1 -1
  279. package/src/icons/react/richeditor-image-align-right.tsx +1 -1
  280. package/src/icons/react/richeditor-image.tsx +18 -0
  281. package/src/icons/react/richeditor-linkedhighlight-create.tsx +1 -1
  282. package/src/icons/react/richeditor-list-bullet.tsx +1 -1
  283. package/src/icons/react/richeditor-list-indent.tsx +1 -1
  284. package/src/icons/react/richeditor-list-ordered.tsx +1 -1
  285. package/src/icons/react/richeditor-list-unindent.tsx +1 -1
  286. package/src/icons/react/richeditor-mark-code.tsx +1 -1
  287. package/src/icons/react/richeditor-mark-em.tsx +1 -1
  288. package/src/icons/react/richeditor-mark-highlight.tsx +1 -1
  289. package/src/icons/react/richeditor-mark-strike.tsx +1 -1
  290. package/src/icons/react/richeditor-mark-strong.tsx +1 -1
  291. package/src/icons/react/richeditor-mark-text-background-color.tsx +1 -1
  292. package/src/icons/react/richeditor-mark-underline.tsx +1 -1
  293. package/src/icons/react/richeditor-table-create.tsx +1 -1
  294. package/src/icons/react/richeditor-video-upload.tsx +1 -1
  295. package/src/icons/react/{back.tsx → rule.tsx} +5 -5
  296. package/src/icons/react/{ai-avatar.tsx → space-add.tsx} +5 -5
  297. package/src/icons/react/space-move.tsx +18 -0
  298. package/src/icons/react/type-button.tsx +1 -1
  299. package/src/icons/react/type-checkbox.tsx +1 -1
  300. package/src/icons/react/type-date.tsx +1 -1
  301. package/src/icons/react/type-email.tsx +1 -1
  302. package/src/icons/react/type-emoji.tsx +1 -1
  303. package/src/icons/react/type-formula.tsx +1 -1
  304. package/src/icons/react/type-location.tsx +1 -1
  305. package/src/icons/react/type-lookup.tsx +1 -1
  306. package/src/icons/react/type-money.tsx +1 -1
  307. package/src/icons/react/type-multi-select.tsx +1 -1
  308. package/src/icons/react/type-number.tsx +1 -1
  309. package/src/icons/react/type-percent.tsx +1 -1
  310. package/src/icons/react/type-phone.tsx +1 -1
  311. package/src/icons/react/type-relation.tsx +1 -1
  312. package/src/icons/react/type-rich-text.tsx +1 -1
  313. package/src/icons/react/type-single-select.tsx +1 -1
  314. package/src/icons/react/type-text.tsx +1 -1
  315. package/src/icons/react/{bolt.tsx → undo.tsx} +5 -5
  316. package/src/icons/react/units-avatar.tsx +1 -1
  317. package/src/icons/react/units-collection.tsx +1 -1
  318. package/src/icons/react/units-counter.tsx +1 -1
  319. package/src/icons/react/units-date.tsx +1 -1
  320. package/src/icons/react/units-field-icon-button.tsx +1 -1
  321. package/src/icons/react/units-field.tsx +1 -1
  322. package/src/icons/react/units-input.tsx +1 -1
  323. package/src/icons/react/units-normal.tsx +18 -0
  324. package/src/icons/react/units-progress-bar.tsx +1 -1
  325. package/src/icons/react/units-rich-text.tsx +1 -1
  326. package/src/icons/react/units-snippet.tsx +1 -1
  327. package/src/icons/react/unlock.tsx +18 -0
  328. package/src/icons/react/value-clear.tsx +18 -0
  329. package/src/icons/react/view-app.tsx +18 -0
  330. package/src/icons/react/workflow.tsx +18 -0
  331. package/src/icons/svg/appearance-auto.svg +1 -1
  332. package/src/icons/svg/{arrow-bottom.svg → arrow-down.svg} +1 -1
  333. package/src/icons/svg/arrow-forward.svg +1 -1
  334. package/src/icons/svg/arrow-left.svg +1 -1
  335. package/src/icons/svg/arrow-right.svg +1 -1
  336. package/src/icons/svg/{arrow-top.svg → arrow-up.svg} +1 -1
  337. package/src/icons/svg/asterisk.svg +2 -2
  338. package/src/icons/svg/{automations-error.svg → circle-cross.svg} +1 -1
  339. package/src/icons/svg/{automations-not-started.svg → circle-pause.svg} +1 -1
  340. package/src/icons/svg/{automations-in-progress.svg → circle-play.svg} +1 -1
  341. package/src/icons/svg/collapse-all-horizontal.svg +1 -1
  342. package/src/icons/svg/collapse-all.svg +1 -1
  343. package/src/icons/svg/credits-filled.svg +1 -1
  344. package/src/icons/svg/entity-create.svg +1 -1
  345. package/src/icons/svg/expand-all-horizontal.svg +1 -1
  346. package/src/icons/svg/fullscreen-mode-on.svg +2 -3
  347. package/src/icons/svg/go-to.svg +1 -1
  348. package/src/icons/svg/integration-unsplash.svg +3 -0
  349. package/src/icons/svg/layout-double.svg +1 -1
  350. package/src/icons/svg/layout-single.svg +1 -1
  351. package/src/icons/svg/limits.svg +3 -0
  352. package/src/icons/svg/lock-filled.svg +4 -0
  353. package/src/icons/svg/lock.svg +5 -4
  354. package/src/icons/svg/page-regular-mode.svg +3 -3
  355. package/src/icons/svg/page-wide-mode.svg +3 -3
  356. package/src/icons/svg/{user-group.svg → people-group.svg} +1 -1
  357. package/src/icons/svg/{user-role.svg → people-role.svg} +1 -1
  358. package/src/icons/svg/{richeditor/list/indent.svg → richeditor-list-indent.svg} +1 -1
  359. package/src/icons/svg/richeditor-mark-code.svg +5 -0
  360. package/src/icons/svg/richeditor-mark-em.svg +3 -0
  361. package/src/icons/svg/richeditor-mark-highlight.svg +3 -0
  362. package/src/icons/svg/richeditor-mark-strike.svg +3 -0
  363. package/src/icons/svg/richeditor-mark-strong.svg +3 -0
  364. package/src/icons/svg/simple-compass.svg +2 -2
  365. package/src/icons/svg/space-app.svg +1 -1
  366. package/src/icons/svg/space-generate.svg +1 -1
  367. package/src/icons/svg/space-scratch.svg +1 -1
  368. package/src/icons/svg/space-template.svg +1 -1
  369. package/src/icons/svg/value-edit.svg +1 -1
  370. package/src/icons/svg/view-app.svg +6 -0
  371. package/src/icons/svg/view-gantt.svg +3 -3
  372. package/src/icons/svg/warning-triangle-filled.svg +1 -1
  373. package/src/images-gallery/slide-buttons.tsx +3 -3
  374. package/src/mobile-drawer.tsx +104 -0
  375. package/src/number-input/types.ts +1 -1
  376. package/src/palettes/common.ts +3 -3
  377. package/src/palettes/diff-colors.test.ts +134 -0
  378. package/src/palettes/diff-colors.ts +135 -1
  379. package/src/palettes/inspect.canvas-colors.test.ts +63 -63
  380. package/src/palettes/inspect.defs.colors.neutral-arch.test.ts +196 -64
  381. package/src/palettes/inspect.defs.colors.neutral-user.test.ts +196 -64
  382. package/src/palettes/inspect.defs.colors.warm-arch.test.ts +196 -64
  383. package/src/palettes/inspect.defs.colors.warm-user.test.ts +196 -64
  384. package/src/palettes/show-colors.test.ts +3 -3
  385. package/src/palettes/testkit.test.ts +6 -0
  386. package/src/palettes/testkit.ts +78 -22
  387. package/src/phone.ts +27 -0
  388. package/src/reactions/reaction-picker.tsx +3 -3
  389. package/src/rich-text-embed-error.tsx +2 -2
  390. package/src/root-theme-provider.test.tsx +2 -3
  391. package/src/select/select-in-popover.tsx +41 -25
  392. package/src/select/util.ts +1 -1
  393. package/src/thematic.tsx +10 -9
  394. package/src/theme-provider.test.tsx +18 -18
  395. package/src/theme-provider.tsx +3 -7
  396. package/src/theme-settings-core.ts +118 -0
  397. package/src/theme-settings.ts +2 -117
  398. package/src/theme-snapshots.test.ts +6 -7
  399. package/src/theming.build.ts +21 -15
  400. package/src/theming.generated.css +2162 -2034
  401. package/src/theming.generated.ts +2701 -2549
  402. package/src/toast/toast.tsx +1 -1
  403. package/src/toggle-button/round-toggle-button.tsx +28 -4
  404. package/src/toggle-button/toggle-button.tsx +69 -23
  405. package/src/toggle-on-off.tsx +0 -9
  406. package/src/use-is-phone.tsx +3 -27
  407. package/vitest.config.ts +1 -0
  408. package/src/icons/ast/ai-avatar.ts +0 -12
  409. package/src/icons/ast/ai-search.ts +0 -12
  410. package/src/icons/ast/anthropic.ts +0 -12
  411. package/src/icons/ast/app-details.ts +0 -12
  412. package/src/icons/ast/app-store-one-color.ts +0 -12
  413. package/src/icons/ast/app-store.ts +0 -12
  414. package/src/icons/ast/app-templates.ts +0 -12
  415. package/src/icons/ast/app-webhooks.ts +0 -12
  416. package/src/icons/ast/app-wiki.ts +0 -12
  417. package/src/icons/ast/apple.ts +0 -12
  418. package/src/icons/ast/arrow-bottom.ts +0 -12
  419. package/src/icons/ast/arrow-top.ts +0 -12
  420. package/src/icons/ast/automations-cancelled.ts +0 -12
  421. package/src/icons/ast/automations-disabled.ts +0 -12
  422. package/src/icons/ast/automations-error.ts +0 -12
  423. package/src/icons/ast/automations-in-progress.ts +0 -12
  424. package/src/icons/ast/automations-not-started.ts +0 -12
  425. package/src/icons/ast/automations-success.ts +0 -12
  426. package/src/icons/ast/back.ts +0 -12
  427. package/src/icons/ast/backlog-icon.ts +0 -12
  428. package/src/icons/ast/batch-actions-icon.ts +0 -12
  429. package/src/icons/ast/bell-filled.ts +0 -12
  430. package/src/icons/ast/chat-ai.ts +0 -12
  431. package/src/icons/ast/chat.ts +0 -12
  432. package/src/icons/ast/clean.ts +0 -12
  433. package/src/icons/ast/color-coding-filled.ts +0 -12
  434. package/src/icons/ast/create.ts +0 -12
  435. package/src/icons/ast/cross-circle.ts +0 -12
  436. package/src/icons/ast/csv.ts +0 -12
  437. package/src/icons/ast/database-off.ts +0 -12
  438. package/src/icons/ast/database-stroke.ts +0 -12
  439. package/src/icons/ast/demo.ts +0 -12
  440. package/src/icons/ast/dependency.ts +0 -12
  441. package/src/icons/ast/dividers.ts +0 -12
  442. package/src/icons/ast/document.ts +0 -12
  443. package/src/icons/ast/double-arrow-left.ts +0 -12
  444. package/src/icons/ast/double-arrow-right.ts +0 -12
  445. package/src/icons/ast/double-line.ts +0 -12
  446. package/src/icons/ast/drag-block-handle-single.ts +0 -12
  447. package/src/icons/ast/edit-value.ts +0 -12
  448. package/src/icons/ast/extension-assignments.ts +0 -12
  449. package/src/icons/ast/extension-avatar.ts +0 -12
  450. package/src/icons/ast/extension-comments.ts +0 -12
  451. package/src/icons/ast/extension-files.ts +0 -12
  452. package/src/icons/ast/extension-references.ts +0 -12
  453. package/src/icons/ast/extension-workflow.ts +0 -12
  454. package/src/icons/ast/favorites-checked.ts +0 -12
  455. package/src/icons/ast/fibery-desktop-app.ts +0 -12
  456. package/src/icons/ast/field-unit.ts +0 -12
  457. package/src/icons/ast/figma.ts +0 -12
  458. package/src/icons/ast/file-broken.ts +0 -12
  459. package/src/icons/ast/fullscreen-mode-off-icon.ts +0 -12
  460. package/src/icons/ast/fullscreen-mode-on-icon.ts +0 -12
  461. package/src/icons/ast/gauge.ts +0 -12
  462. package/src/icons/ast/github.ts +0 -12
  463. package/src/icons/ast/gitlab.ts +0 -12
  464. package/src/icons/ast/globe.ts +0 -12
  465. package/src/icons/ast/google-drive.ts +0 -12
  466. package/src/icons/ast/google-map.ts +0 -12
  467. package/src/icons/ast/hide.ts +0 -12
  468. package/src/icons/ast/integrations-integration-discourse-color.ts +0 -12
  469. package/src/icons/ast/integrations-integration-intercom-color.ts +0 -12
  470. package/src/icons/ast/integrations-integration-slack-color.ts +0 -12
  471. package/src/icons/ast/integrations-integration-zendesk-color.ts +0 -12
  472. package/src/icons/ast/intercom.ts +0 -12
  473. package/src/icons/ast/jira.ts +0 -12
  474. package/src/icons/ast/left-panel.ts +0 -12
  475. package/src/icons/ast/level-plus.ts +0 -12
  476. package/src/icons/ast/lock-outline.ts +0 -12
  477. package/src/icons/ast/loom.ts +0 -12
  478. package/src/icons/ast/loupe-zoom.ts +0 -12
  479. package/src/icons/ast/many-people.ts +0 -12
  480. package/src/icons/ast/message-plus-square.ts +0 -12
  481. package/src/icons/ast/miro.ts +0 -12
  482. package/src/icons/ast/mixpanel.ts +0 -12
  483. package/src/icons/ast/move-bottom.ts +0 -12
  484. package/src/icons/ast/move-top.ts +0 -12
  485. package/src/icons/ast/network-add.ts +0 -12
  486. package/src/icons/ast/network.ts +0 -12
  487. package/src/icons/ast/notifications.ts +0 -12
  488. package/src/icons/ast/open-ai.ts +0 -12
  489. package/src/icons/ast/open-as-page.ts +0 -12
  490. package/src/icons/ast/popup.ts +0 -12
  491. package/src/icons/ast/posts.ts +0 -12
  492. package/src/icons/ast/quick-filter-personal.ts +0 -12
  493. package/src/icons/ast/quick-filter.ts +0 -12
  494. package/src/icons/ast/reply.ts +0 -12
  495. package/src/icons/ast/restore.ts +0 -12
  496. package/src/icons/ast/richeditor-actions-more.ts +0 -12
  497. package/src/icons/ast/richeditor-comment-create.ts +0 -12
  498. package/src/icons/ast/richeditor-entity-link-create.ts +0 -12
  499. package/src/icons/ast/richeditor-history-redo.ts +0 -12
  500. package/src/icons/ast/richeditor-history-undo.ts +0 -12
  501. package/src/icons/ast/richeditor-image-upload.ts +0 -12
  502. package/src/icons/ast/richeditor-image-wrap-center.ts +0 -12
  503. package/src/icons/ast/richeditor-image-wrap-left.ts +0 -12
  504. package/src/icons/ast/richeditor-image-wrap-right.ts +0 -12
  505. package/src/icons/ast/richeditor-image-zoom.ts +0 -12
  506. package/src/icons/ast/richeditor-link-create.ts +0 -12
  507. package/src/icons/ast/richeditor-open-link.ts +0 -12
  508. package/src/icons/ast/richeditor-unlink.ts +0 -12
  509. package/src/icons/ast/right-panel.ts +0 -12
  510. package/src/icons/ast/rule-scheduled.ts +0 -12
  511. package/src/icons/ast/settings-off.ts +0 -12
  512. package/src/icons/ast/shared.ts +0 -12
  513. package/src/icons/ast/sidebar-fields-opened.ts +0 -12
  514. package/src/icons/ast/sidebar-fields.ts +0 -12
  515. package/src/icons/ast/sidebar.ts +0 -12
  516. package/src/icons/ast/slack-icon.ts +0 -12
  517. package/src/icons/ast/slack.ts +0 -12
  518. package/src/icons/ast/slide-menu-close.ts +0 -12
  519. package/src/icons/ast/slide-menu-open.ts +0 -12
  520. package/src/icons/ast/sort-on-bottom.ts +0 -12
  521. package/src/icons/ast/sort-on-top.ts +0 -12
  522. package/src/icons/ast/space-list.ts +0 -12
  523. package/src/icons/ast/success.ts +0 -12
  524. package/src/icons/ast/template.ts +0 -12
  525. package/src/icons/ast/thumbs-down.ts +0 -12
  526. package/src/icons/ast/thumbs-up.ts +0 -12
  527. package/src/icons/ast/twitter.ts +0 -12
  528. package/src/icons/ast/type-boolean.ts +0 -12
  529. package/src/icons/ast/type-function.ts +0 -12
  530. package/src/icons/ast/type-id.ts +0 -12
  531. package/src/icons/ast/type-rule.ts +0 -12
  532. package/src/icons/ast/type-url.ts +0 -12
  533. package/src/icons/ast/units-db-badge-abbr.ts +0 -12
  534. package/src/icons/ast/units-db-badge-full.ts +0 -12
  535. package/src/icons/ast/units-db-icon.ts +0 -12
  536. package/src/icons/ast/unlock-outline.ts +0 -12
  537. package/src/icons/ast/upgrade.ts +0 -12
  538. package/src/icons/ast/user-check.ts +0 -12
  539. package/src/icons/ast/user-group-remove.ts +0 -12
  540. package/src/icons/ast/user-group.ts +0 -12
  541. package/src/icons/ast/user-role.ts +0 -12
  542. package/src/icons/ast/user-x.ts +0 -12
  543. package/src/icons/ast/windows.ts +0 -12
  544. package/src/icons/ast/workspace-map.ts +0 -12
  545. package/src/icons/ast/youtube.ts +0 -12
  546. package/src/icons/ast/zoom-in.ts +0 -12
  547. package/src/icons/ast/zoom-out.ts +0 -12
  548. package/src/icons/react/app-details.tsx +0 -18
  549. package/src/icons/react/app-store-one-color.tsx +0 -18
  550. package/src/icons/react/app-templates.tsx +0 -18
  551. package/src/icons/react/app-webhooks.tsx +0 -18
  552. package/src/icons/react/arrow-bottom.tsx +0 -18
  553. package/src/icons/react/arrow-top.tsx +0 -18
  554. package/src/icons/react/automations-cancelled.tsx +0 -18
  555. package/src/icons/react/automations-error.tsx +0 -18
  556. package/src/icons/react/automations-in-progress.tsx +0 -18
  557. package/src/icons/react/automations-not-started.tsx +0 -18
  558. package/src/icons/react/automations-success.tsx +0 -18
  559. package/src/icons/react/backlog-icon.tsx +0 -18
  560. package/src/icons/react/batch-actions-icon.tsx +0 -18
  561. package/src/icons/react/bell-filled.tsx +0 -18
  562. package/src/icons/react/check-circle-filled.tsx +0 -18
  563. package/src/icons/react/check-circle.tsx +0 -18
  564. package/src/icons/react/clean.tsx +0 -18
  565. package/src/icons/react/clear-value.tsx +0 -18
  566. package/src/icons/react/color-coding-filled.tsx +0 -18
  567. package/src/icons/react/create.tsx +0 -18
  568. package/src/icons/react/cross-circle.tsx +0 -18
  569. package/src/icons/react/database-off.tsx +0 -18
  570. package/src/icons/react/database-stroke.tsx +0 -18
  571. package/src/icons/react/demo.tsx +0 -18
  572. package/src/icons/react/dependency.tsx +0 -18
  573. package/src/icons/react/dividers.tsx +0 -18
  574. package/src/icons/react/document.tsx +0 -18
  575. package/src/icons/react/double-arrow-left.tsx +0 -18
  576. package/src/icons/react/double-arrow-right.tsx +0 -18
  577. package/src/icons/react/double-line.tsx +0 -18
  578. package/src/icons/react/drag-block-handle-single.tsx +0 -18
  579. package/src/icons/react/edit-value.tsx +0 -18
  580. package/src/icons/react/error-circle-filled.tsx +0 -18
  581. package/src/icons/react/extension-assignments.tsx +0 -18
  582. package/src/icons/react/extension-avatar.tsx +0 -18
  583. package/src/icons/react/extension-comments.tsx +0 -18
  584. package/src/icons/react/extension-files.tsx +0 -18
  585. package/src/icons/react/extension-workflow.tsx +0 -18
  586. package/src/icons/react/favorites-checked.tsx +0 -18
  587. package/src/icons/react/fibery-desktop-app.tsx +0 -18
  588. package/src/icons/react/field-unit.tsx +0 -18
  589. package/src/icons/react/figma.tsx +0 -18
  590. package/src/icons/react/file-broken.tsx +0 -18
  591. package/src/icons/react/fullscreen-mode-off-icon.tsx +0 -18
  592. package/src/icons/react/fullscreen-mode-on-icon.tsx +0 -18
  593. package/src/icons/react/gauge.tsx +0 -18
  594. package/src/icons/react/github.tsx +0 -18
  595. package/src/icons/react/gitlab.tsx +0 -18
  596. package/src/icons/react/globe.tsx +0 -18
  597. package/src/icons/react/google-drive.tsx +0 -18
  598. package/src/icons/react/google-map.tsx +0 -18
  599. package/src/icons/react/hide.tsx +0 -18
  600. package/src/icons/react/image-xmark.tsx +0 -18
  601. package/src/icons/react/info-circle-filled.tsx +0 -18
  602. package/src/icons/react/info-circle.tsx +0 -18
  603. package/src/icons/react/integrations-integration-discourse-color.tsx +0 -18
  604. package/src/icons/react/integrations-integration-intercom-color.tsx +0 -18
  605. package/src/icons/react/integrations-integration-slack-color.tsx +0 -18
  606. package/src/icons/react/integrations-integration-zendesk-color.tsx +0 -18
  607. package/src/icons/react/intercom.tsx +0 -18
  608. package/src/icons/react/invite-people.tsx +0 -18
  609. package/src/icons/react/jira.tsx +0 -18
  610. package/src/icons/react/left-panel.tsx +0 -18
  611. package/src/icons/react/level-plus.tsx +0 -18
  612. package/src/icons/react/lock-outline.tsx +0 -18
  613. package/src/icons/react/loom.tsx +0 -18
  614. package/src/icons/react/loupe-zoom.tsx +0 -18
  615. package/src/icons/react/many-people.tsx +0 -18
  616. package/src/icons/react/message-plus-square.tsx +0 -18
  617. package/src/icons/react/miro.tsx +0 -18
  618. package/src/icons/react/mixpanel.tsx +0 -18
  619. package/src/icons/react/move-bottom.tsx +0 -18
  620. package/src/icons/react/move-space.tsx +0 -18
  621. package/src/icons/react/move-top.tsx +0 -18
  622. package/src/icons/react/network-add.tsx +0 -18
  623. package/src/icons/react/network.tsx +0 -18
  624. package/src/icons/react/open-ai.tsx +0 -18
  625. package/src/icons/react/open-as-page.tsx +0 -18
  626. package/src/icons/react/popup.tsx +0 -18
  627. package/src/icons/react/posts.tsx +0 -18
  628. package/src/icons/react/quick-filter-personal.tsx +0 -18
  629. package/src/icons/react/quick-filter.tsx +0 -18
  630. package/src/icons/react/remove-people.tsx +0 -18
  631. package/src/icons/react/reply.tsx +0 -18
  632. package/src/icons/react/restore.tsx +0 -18
  633. package/src/icons/react/richeditor-actions-more.tsx +0 -18
  634. package/src/icons/react/richeditor-comment-create.tsx +0 -18
  635. package/src/icons/react/richeditor-entity-link-create.tsx +0 -18
  636. package/src/icons/react/richeditor-history-redo.tsx +0 -18
  637. package/src/icons/react/richeditor-history-undo.tsx +0 -18
  638. package/src/icons/react/richeditor-image-upload.tsx +0 -18
  639. package/src/icons/react/richeditor-image-wrap-center.tsx +0 -18
  640. package/src/icons/react/richeditor-image-wrap-left.tsx +0 -18
  641. package/src/icons/react/richeditor-image-wrap-right.tsx +0 -18
  642. package/src/icons/react/richeditor-image-zoom.tsx +0 -18
  643. package/src/icons/react/richeditor-link-create.tsx +0 -18
  644. package/src/icons/react/richeditor-open-link.tsx +0 -18
  645. package/src/icons/react/richeditor-unlink.tsx +0 -18
  646. package/src/icons/react/right-panel.tsx +0 -18
  647. package/src/icons/react/rule-scheduled.tsx +0 -18
  648. package/src/icons/react/send-arrow.tsx +0 -18
  649. package/src/icons/react/settings-off.tsx +0 -18
  650. package/src/icons/react/shared.tsx +0 -18
  651. package/src/icons/react/sidebar-fields-opened.tsx +0 -18
  652. package/src/icons/react/sidebar-fields.tsx +0 -18
  653. package/src/icons/react/sidebar.tsx +0 -18
  654. package/src/icons/react/slack-icon.tsx +0 -18
  655. package/src/icons/react/slack.tsx +0 -18
  656. package/src/icons/react/slide-menu-close.tsx +0 -18
  657. package/src/icons/react/slide-menu-open.tsx +0 -18
  658. package/src/icons/react/smart-folder.tsx +0 -18
  659. package/src/icons/react/sort-on-bottom.tsx +0 -18
  660. package/src/icons/react/sort-on-top.tsx +0 -18
  661. package/src/icons/react/space-list.tsx +0 -18
  662. package/src/icons/react/success.tsx +0 -18
  663. package/src/icons/react/suggest-integration.tsx +0 -18
  664. package/src/icons/react/switch-to-mention.tsx +0 -18
  665. package/src/icons/react/template.tsx +0 -18
  666. package/src/icons/react/thumbs-down.tsx +0 -18
  667. package/src/icons/react/thumbs-up.tsx +0 -18
  668. package/src/icons/react/twitter.tsx +0 -18
  669. package/src/icons/react/type-boolean.tsx +0 -18
  670. package/src/icons/react/type-function.tsx +0 -18
  671. package/src/icons/react/type-id.tsx +0 -18
  672. package/src/icons/react/type-rule.tsx +0 -18
  673. package/src/icons/react/type-url.tsx +0 -18
  674. package/src/icons/react/units-db-badge-abbr.tsx +0 -18
  675. package/src/icons/react/units-db-badge-full.tsx +0 -18
  676. package/src/icons/react/units-db-icon.tsx +0 -18
  677. package/src/icons/react/unlock-outline.tsx +0 -18
  678. package/src/icons/react/upgrade.tsx +0 -18
  679. package/src/icons/react/user-check.tsx +0 -18
  680. package/src/icons/react/user-group-remove.tsx +0 -18
  681. package/src/icons/react/user-group.tsx +0 -18
  682. package/src/icons/react/user-role.tsx +0 -18
  683. package/src/icons/react/user-x.tsx +0 -18
  684. package/src/icons/react/windows.tsx +0 -18
  685. package/src/icons/react/workspace-map.tsx +0 -18
  686. package/src/icons/react/youtube.tsx +0 -18
  687. package/src/icons/react/zoom-in.tsx +0 -18
  688. package/src/icons/react/zoom-out.tsx +0 -18
  689. package/src/icons/svg/ai-avatar.svg +0 -3
  690. package/src/icons/svg/ai-search.svg +0 -3
  691. package/src/icons/svg/anthropic.svg +0 -3
  692. package/src/icons/svg/app-store-one-color.svg +0 -4
  693. package/src/icons/svg/app-store.svg +0 -4
  694. package/src/icons/svg/app-webhooks.svg +0 -2
  695. package/src/icons/svg/app-wiki.svg +0 -2
  696. package/src/icons/svg/apple.svg +0 -4
  697. package/src/icons/svg/automations-cancelled.svg +0 -3
  698. package/src/icons/svg/automations-disabled.svg +0 -3
  699. package/src/icons/svg/automations-success.svg +0 -3
  700. package/src/icons/svg/batch-actions-icon.svg +0 -4
  701. package/src/icons/svg/bell-filled.svg +0 -4
  702. package/src/icons/svg/chat-ai.svg +0 -5
  703. package/src/icons/svg/chat.svg +0 -3
  704. package/src/icons/svg/clean.svg +0 -6
  705. package/src/icons/svg/color-coding-filled.svg +0 -3
  706. package/src/icons/svg/create.svg +0 -3
  707. package/src/icons/svg/cross-circle.svg +0 -4
  708. package/src/icons/svg/csv.svg +0 -3
  709. package/src/icons/svg/database-off.svg +0 -3
  710. package/src/icons/svg/demo.svg +0 -2
  711. package/src/icons/svg/dependency.svg +0 -3
  712. package/src/icons/svg/document.svg +0 -4
  713. package/src/icons/svg/double-arrow-left.svg +0 -2
  714. package/src/icons/svg/double-arrow-right.svg +0 -2
  715. package/src/icons/svg/double-line.svg +0 -3
  716. package/src/icons/svg/drag-block-handle-single.svg +0 -5
  717. package/src/icons/svg/edit-value.svg +0 -5
  718. package/src/icons/svg/extension/assignments.svg +0 -7
  719. package/src/icons/svg/file-broken.svg +0 -3
  720. package/src/icons/svg/fullscreen-mode-on-icon.svg +0 -3
  721. package/src/icons/svg/gauge.svg +0 -5
  722. package/src/icons/svg/globe.svg +0 -3
  723. package/src/icons/svg/integrations/integration-slack-color.svg +0 -10
  724. package/src/icons/svg/intercom.svg +0 -3
  725. package/src/icons/svg/left-panel.svg +0 -11
  726. package/src/icons/svg/level-plus.svg +0 -4
  727. package/src/icons/svg/lock-outline.svg +0 -5
  728. package/src/icons/svg/loupe-zoom.svg +0 -3
  729. package/src/icons/svg/message-plus-square.svg +0 -4
  730. package/src/icons/svg/network-add.svg +0 -5
  731. package/src/icons/svg/notifications.svg +0 -2
  732. package/src/icons/svg/open-ai.svg +0 -3
  733. package/src/icons/svg/open-as-page.svg +0 -3
  734. package/src/icons/svg/posts.svg +0 -3
  735. package/src/icons/svg/quick-filter-personal.svg +0 -3
  736. package/src/icons/svg/quick-filter.svg +0 -3
  737. package/src/icons/svg/reply.svg +0 -2
  738. package/src/icons/svg/restore.svg +0 -2
  739. package/src/icons/svg/richeditor/actions/more.svg +0 -2
  740. package/src/icons/svg/richeditor/comment/create.svg +0 -5
  741. package/src/icons/svg/richeditor/entity-link/create.svg +0 -2
  742. package/src/icons/svg/richeditor/image/wrap-center.svg +0 -2
  743. package/src/icons/svg/richeditor/image/wrap-left.svg +0 -2
  744. package/src/icons/svg/richeditor/image/wrap-right.svg +0 -2
  745. package/src/icons/svg/richeditor/image/zoom.svg +0 -5
  746. package/src/icons/svg/richeditor/link/create.svg +0 -9
  747. package/src/icons/svg/richeditor/mark/code.svg +0 -5
  748. package/src/icons/svg/richeditor/mark/em.svg +0 -3
  749. package/src/icons/svg/richeditor/mark/highlight.svg +0 -3
  750. package/src/icons/svg/richeditor/mark/strike.svg +0 -3
  751. package/src/icons/svg/richeditor/mark/strong.svg +0 -3
  752. package/src/icons/svg/richeditor/unlink.svg +0 -10
  753. package/src/icons/svg/right-panel.svg +0 -11
  754. package/src/icons/svg/rule-scheduled.svg +0 -5
  755. package/src/icons/svg/settings-off.svg +0 -4
  756. package/src/icons/svg/shared.svg +0 -7
  757. package/src/icons/svg/sidebar-fields-opened.svg +0 -3
  758. package/src/icons/svg/sidebar-fields.svg +0 -6
  759. package/src/icons/svg/sidebar.svg +0 -2
  760. package/src/icons/svg/slack-icon.svg +0 -3
  761. package/src/icons/svg/slide-menu-close.svg +0 -4
  762. package/src/icons/svg/slide-menu-open.svg +0 -4
  763. package/src/icons/svg/sort-on-bottom.svg +0 -4
  764. package/src/icons/svg/sort-on-top.svg +0 -4
  765. package/src/icons/svg/space-list.svg +0 -4
  766. package/src/icons/svg/success.svg +0 -4
  767. package/src/icons/svg/template.svg +0 -3
  768. package/src/icons/svg/thumbs-down.svg +0 -3
  769. package/src/icons/svg/thumbs-up.svg +0 -3
  770. package/src/icons/svg/type/boolean.svg +0 -2
  771. package/src/icons/svg/type/function.svg +0 -2
  772. package/src/icons/svg/type/id.svg +0 -3
  773. package/src/icons/svg/type/rule.svg +0 -2
  774. package/src/icons/svg/type/url.svg +0 -9
  775. package/src/icons/svg/units/db-badge-abbr.svg +0 -4
  776. package/src/icons/svg/units/db-badge-full.svg +0 -4
  777. package/src/icons/svg/units/db-icon.svg +0 -4
  778. package/src/icons/svg/upgrade.svg +0 -2
  779. package/src/icons/svg/user-check.svg +0 -3
  780. package/src/icons/svg/windows.svg +0 -15
  781. package/src/icons/svg/workspace-map.svg +0 -3
  782. package/src/icons/svg/zoom-out.svg +0 -7
  783. /package/src/icons/svg/{dividers.svg → architect.svg} +0 -0
  784. /package/src/icons/svg/{back.svg → arrow-back.svg} +0 -0
  785. /package/src/icons/svg/{send-arrow.svg → arrow-send.svg} +0 -0
  786. /package/src/icons/svg/{extension/avatar.svg → avatar.svg} +0 -0
  787. /package/src/icons/svg/{backlog-icon.svg → backlog.svg} +0 -0
  788. /package/src/icons/svg/{check-circle-filled.svg → circle-check-filled.svg} +0 -0
  789. /package/src/icons/svg/{check-circle.svg → circle-check.svg} +0 -0
  790. /package/src/icons/svg/{error-circle-filled.svg → circle-cross-filled.svg} +0 -0
  791. /package/src/icons/svg/{info-circle-filled.svg → circle-info-filled.svg} +0 -0
  792. /package/src/icons/svg/{info-circle.svg → circle-info.svg} +0 -0
  793. /package/src/icons/svg/{extension/comments.svg → comments.svg} +0 -0
  794. /package/src/icons/svg/{add-database.svg → database-add.svg} +0 -0
  795. /package/src/icons/svg/{database-stroke.svg → database-outline.svg} +0 -0
  796. /package/src/icons/svg/{hide.svg → eye-off.svg} +0 -0
  797. /package/src/icons/svg/{favorites-checked.svg → favorites-filled.svg} +0 -0
  798. /package/src/icons/svg/{switch-to-mention.svg → field-units-large.svg} +0 -0
  799. /package/src/icons/svg/{extension/files.svg → files.svg} +0 -0
  800. /package/src/icons/svg/{smart-folder.svg → folder-smart.svg} +0 -0
  801. /package/src/icons/svg/{fullscreen-mode-off-icon.svg → fullscreen-mode-off.svg} +0 -0
  802. /package/src/icons/svg/{add-group.svg → group-add.svg} +0 -0
  803. /package/src/icons/svg/{image-xmark.svg → image-error.svg} +0 -0
  804. /package/src/icons/svg/{add-integration.svg → integration-add.svg} +0 -0
  805. /package/src/icons/svg/{integrations/integration-discourse-color.svg → integration-discourse.svg} +0 -0
  806. /package/src/icons/svg/{fibery-desktop-app.svg → integration-fibery.svg} +0 -0
  807. /package/src/icons/svg/{figma.svg → integration-figma.svg} +0 -0
  808. /package/src/icons/svg/{github.svg → integration-github.svg} +0 -0
  809. /package/src/icons/svg/{gitlab.svg → integration-gitlab.svg} +0 -0
  810. /package/src/icons/svg/{google-drive.svg → integration-google-drive.svg} +0 -0
  811. /package/src/icons/svg/{google-map.svg → integration-google-map.svg} +0 -0
  812. /package/src/icons/svg/{integrations/integration-intercom-color.svg → integration-intercom.svg} +0 -0
  813. /package/src/icons/svg/{jira.svg → integration-jira.svg} +0 -0
  814. /package/src/icons/svg/{loom.svg → integration-loom.svg} +0 -0
  815. /package/src/icons/svg/{miro.svg → integration-miro.svg} +0 -0
  816. /package/src/icons/svg/{mixpanel.svg → integration-mixpanel.svg} +0 -0
  817. /package/src/icons/svg/{slack.svg → integration-slack.svg} +0 -0
  818. /package/src/icons/svg/{suggest-integration.svg → integration-suggest.svg} +0 -0
  819. /package/src/icons/svg/{twitter.svg → integration-twitter.svg} +0 -0
  820. /package/src/icons/svg/{youtube.svg → integration-youtube.svg} +0 -0
  821. /package/src/icons/svg/{integrations/integration-zendesk-color.svg → integration-zendesk.svg} +0 -0
  822. /package/src/icons/svg/{move-bottom.svg → move-down.svg} +0 -0
  823. /package/src/icons/svg/{move-top.svg → move-up.svg} +0 -0
  824. /package/src/icons/svg/{popup.svg → open-in-panel.svg} +0 -0
  825. /package/src/icons/svg/{richeditor/open-link.svg → open-link.svg} +0 -0
  826. /package/src/icons/svg/{many-people.svg → people-all.svg} +0 -0
  827. /package/src/icons/svg/{user-group-remove.svg → people-group-remove.svg} +0 -0
  828. /package/src/icons/svg/{invite-people.svg → people-invite.svg} +0 -0
  829. /package/src/icons/svg/{remove-people.svg → people-remove.svg} +0 -0
  830. /package/src/icons/svg/{user-x.svg → people-x.svg} +0 -0
  831. /package/src/icons/svg/{zoom-in.svg → plus.svg} +0 -0
  832. /package/src/icons/svg/{app-details.svg → preferences.svg} +0 -0
  833. /package/src/icons/svg/{network.svg → propagate.svg} +0 -0
  834. /package/src/icons/svg/{add-reactions.svg → reactions-add.svg} +0 -0
  835. /package/src/icons/svg/{richeditor/history/redo.svg → redo.svg} +0 -0
  836. /package/src/icons/svg/{extension/references.svg → references.svg} +0 -0
  837. /package/src/icons/svg/{richeditor/block/callout.svg → richeditor-block-callout.svg} +0 -0
  838. /package/src/icons/svg/{richeditor/block/code.svg → richeditor-block-code.svg} +0 -0
  839. /package/src/icons/svg/{richeditor/block/embed.svg → richeditor-block-embed.svg} +0 -0
  840. /package/src/icons/svg/{richeditor/block/entity.svg → richeditor-block-entity.svg} +0 -0
  841. /package/src/icons/svg/{richeditor/block/file.svg → richeditor-block-file.svg} +0 -0
  842. /package/src/icons/svg/{richeditor/block/h1.svg → richeditor-block-h1.svg} +0 -0
  843. /package/src/icons/svg/{richeditor/block/h2.svg → richeditor-block-h2.svg} +0 -0
  844. /package/src/icons/svg/{richeditor/block/h3.svg → richeditor-block-h3.svg} +0 -0
  845. /package/src/icons/svg/{richeditor/block/h4.svg → richeditor-block-h4.svg} +0 -0
  846. /package/src/icons/svg/{richeditor/block/mention.svg → richeditor-block-mention.svg} +0 -0
  847. /package/src/icons/svg/{richeditor/block/paragraph.svg → richeditor-block-paragraph.svg} +0 -0
  848. /package/src/icons/svg/{richeditor/block/quote.svg → richeditor-block-quote.svg} +0 -0
  849. /package/src/icons/svg/{richeditor/checklist/create.svg → richeditor-checklist-create.svg} +0 -0
  850. /package/src/icons/svg/{richeditor/image/align-center.svg → richeditor-image-align-center.svg} +0 -0
  851. /package/src/icons/svg/{richeditor/image/align-left.svg → richeditor-image-align-left.svg} +0 -0
  852. /package/src/icons/svg/{richeditor/image/align-right.svg → richeditor-image-align-right.svg} +0 -0
  853. /package/src/icons/svg/{richeditor/image/upload.svg → richeditor-image.svg} +0 -0
  854. /package/src/icons/svg/{richeditor/linkedhighlight/create.svg → richeditor-linkedhighlight-create.svg} +0 -0
  855. /package/src/icons/svg/{richeditor/list/bullet.svg → richeditor-list-bullet.svg} +0 -0
  856. /package/src/icons/svg/{richeditor/list/ordered.svg → richeditor-list-ordered.svg} +0 -0
  857. /package/src/icons/svg/{richeditor/list/unindent.svg → richeditor-list-unindent.svg} +0 -0
  858. /package/src/icons/svg/{richeditor/mark/text-background-color.svg → richeditor-mark-text-background-color.svg} +0 -0
  859. /package/src/icons/svg/{richeditor/mark/underline.svg → richeditor-mark-underline.svg} +0 -0
  860. /package/src/icons/svg/{richeditor/table/create.svg → richeditor-table-create.svg} +0 -0
  861. /package/src/icons/svg/{richeditor/video/upload.svg → richeditor-video-upload.svg} +0 -0
  862. /package/src/icons/svg/{bolt.svg → rule.svg} +0 -0
  863. /package/src/icons/svg/{app-templates.svg → space-add.svg} +0 -0
  864. /package/src/icons/svg/{move-space.svg → space-move.svg} +0 -0
  865. /package/src/icons/svg/{type/button.svg → type-button.svg} +0 -0
  866. /package/src/icons/svg/{type/checkbox.svg → type-checkbox.svg} +0 -0
  867. /package/src/icons/svg/{type/date.svg → type-date.svg} +0 -0
  868. /package/src/icons/svg/{type/email.svg → type-email.svg} +0 -0
  869. /package/src/icons/svg/{type/emoji.svg → type-emoji.svg} +0 -0
  870. /package/src/icons/svg/{type/formula.svg → type-formula.svg} +0 -0
  871. /package/src/icons/svg/{type/location.svg → type-location.svg} +0 -0
  872. /package/src/icons/svg/{type/lookup.svg → type-lookup.svg} +0 -0
  873. /package/src/icons/svg/{type/money.svg → type-money.svg} +0 -0
  874. /package/src/icons/svg/{type/multi-select.svg → type-multi-select.svg} +0 -0
  875. /package/src/icons/svg/{type/number.svg → type-number.svg} +0 -0
  876. /package/src/icons/svg/{type/percent.svg → type-percent.svg} +0 -0
  877. /package/src/icons/svg/{type/phone.svg → type-phone.svg} +0 -0
  878. /package/src/icons/svg/{type/relation.svg → type-relation.svg} +0 -0
  879. /package/src/icons/svg/{type/rich-text.svg → type-rich-text.svg} +0 -0
  880. /package/src/icons/svg/{type/single-select.svg → type-single-select.svg} +0 -0
  881. /package/src/icons/svg/{type/text.svg → type-text.svg} +0 -0
  882. /package/src/icons/svg/{richeditor/history/undo.svg → undo.svg} +0 -0
  883. /package/src/icons/svg/{units/avatar.svg → units-avatar.svg} +0 -0
  884. /package/src/icons/svg/{units/collection.svg → units-collection.svg} +0 -0
  885. /package/src/icons/svg/{units/counter.svg → units-counter.svg} +0 -0
  886. /package/src/icons/svg/{units/date.svg → units-date.svg} +0 -0
  887. /package/src/icons/svg/{units/field-icon-button.svg → units-field-icon-button.svg} +0 -0
  888. /package/src/icons/svg/{units/field.svg → units-field.svg} +0 -0
  889. /package/src/icons/svg/{units/input.svg → units-input.svg} +0 -0
  890. /package/src/icons/svg/{field-unit.svg → units-normal.svg} +0 -0
  891. /package/src/icons/svg/{units/progress-bar.svg → units-progress-bar.svg} +0 -0
  892. /package/src/icons/svg/{units/rich-text.svg → units-rich-text.svg} +0 -0
  893. /package/src/icons/svg/{units/snippet.svg → units-snippet.svg} +0 -0
  894. /package/src/icons/svg/{unlock-outline.svg → unlock.svg} +0 -0
  895. /package/src/icons/svg/{clear-value.svg → value-clear.svg} +0 -0
  896. /package/src/icons/svg/{extension/workflow.svg → workflow.svg} +0 -0
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M2.003545,12.588 L1.575905,12.3289 L2.003545,12.588 Z M2.005771,14.5 L2.005771,15 C2.269803,15 2.48833,14.7947 2.5048,14.5312 L2.005771,14.5 Z M14.0013,14.5 L13.6478,14.8536 C13.7415,14.9473 13.8687,15 14.0013,15 L14.0013,14.5 Z M14.0035,12.588 L13.5759,12.8471 L14.0035,12.588 Z M8.00355,2 C8.27969,2 8.50355,1.776142 8.50355,1.5 C8.50355,1.223858 8.27969,1 8.00355,1 L8.00355,2 Z M8.00354,16.5 L8.45075,16.2764 C8.36606,16.107 8.19293,16 8.00354,16 L8.00354,16.5 Z M8.00355,2 C7.72741,2 7.50355,2.223858 7.50355,2.5 C7.50355,2.77614 7.72741,3 8.00355,3 L8.00355,2 Z M2.003542,12.588 L2.43118,12.8471 L2.003542,12.588 Z M2.005771,14.5 L2.005771,14 C1.741739,14 1.523215,14.2053 1.506745,14.4688 L2.005771,14.5 Z M14.0013,14.5 L14.3549,14.1464 C14.2611,14.0527 14.1339,14 14.0013,14 L14.0013,14.5 Z M14.0035,12.588 L13.5759,12.8471 L14.0035,12.588 Z M8.00355,1 C7.7274,1 7.50355,1.223858 7.50355,1.5 C7.50355,1.776142 7.7274,2 8.00355,2 L8.00355,1 Z M8.00354,16.5 L7.55633,16.7236 C7.64102,16.893 7.81416,17 8.00354,17 L8.00354,16.5 Z M2.43118,12.8471 C3.27018,11.46212 4.4873,9.25868 4.50354,6.5 L3.50354,6.5 C3.51978,9.00591 2.40631,10.9584 1.575905,12.3289 L2.43118,12.8471 Z M2.005771,14 C1.769376,14.0029 1.680459,13.9406 1.70443,13.9712 C1.791808,14.0348 1.774825,14.131 1.781848,14.0862 C1.793405,14.0125 1.843395,13.8748 1.96583,13.6435 C2.084543,13.4189 2.243484,13.1569 2.43118,12.8471 L1.575901,12.3289 C1.388203,12.6387 1.2146504,12.9256 1.082051,13.1756 C0.953174,13.419 0.833033,13.6819 0.793922,13.9313 C0.750277,14.2096 0.802087,14.5513 1.116001,14.7798 C1.3650307,14.961 1.696367,15 2.005771,15 L2.005771,14 Z M14.0013,15 C14.3107,15 14.6421,14.961 14.8911,14.7798 C15.205,14.5513 15.2568,14.2096 15.2132,13.9313 C15.1741,13.6819 15.0539,13.419 14.925,13.1756 C14.7924,12.9256 14.6189,12.6387 14.4312,12.3289 L13.5759,12.8471 C13.7636,13.1569 13.9225,13.4189 14.0413,13.6435 C14.1637,13.8748 14.2137,14.0125 14.2252,14.0862 C14.2323,14.131 14.2153,14.0348 14.3027,13.9712 C14.3266,13.9406 14.2377,14.0029 14.0013,14 L14.0013,15 Z M14.4312,12.3289 C13.6008,10.9584 12.4873,9.00591 12.5035,6.5 L11.5035,6.5 C11.5198,9.25868 12.7369,11.46212 13.5759,12.8471 L14.4312,12.3289 Z M4.50354,6.5 C4.50354,4.98928 4.87772,4.1794 5.32517,3.72794 C5.77746,3.2716 6.38883,3.09494 7.05051,3.03251 L6.95658,2.036932 C6.19558,2.108731 5.30696,2.325746 4.61491,3.024 C3.91803,3.72714 3.50354,4.83279 3.50354,6.5 L4.50354,6.5 Z M7.05051,3.03251 C7.39507,2.99945 7.717,3 8.00355,3 L8.00355,2 C7.717,2 7.34806,2.000553 6.95658,2.036932 L7.05051,3.03251 Z M7.4891,2.65404 C7.62358,2.106807 7.91698,2 8.00355,2 L8.00355,1 C7.29012,1 6.71685,1.606155 6.51799,2.415404 L7.4891,2.65404 Z M12.5035,6.5 C12.5035,4.83279 12.0891,3.72714 11.3922,3.024 C10.70014,2.325747 9.81152,2.108732 9.05052,2.036932 L8.95659,3.03251 C9.61826,3.09494 10.22964,3.2716 10.68192,3.72794 C11.12937,4.1794 11.5035,4.98928 11.5035,6.5 L12.5035,6.5 Z M9.05052,2.036932 C8.65904,2.000553 8.2901,2 8.00355,2 L8.00355,3 C8.2901,3 8.61202,2.99945 8.95659,3.03251 L9.05052,2.036932 Z M8.00355,2 C8.09012,2 8.38352,2.10681 8.518,2.65404 L9.48911,2.415404 C9.29024,1.606152 8.71697,1 8.00355,1 L8.00355,2 Z M6.00355,14 L2.005771,14 L2.005771,15 L6.00355,15 L6.00355,14 Z M5.50355,14.5 C5.50355,14.9133 5.62344,15.5222 5.99778,16.0422 C6.39047,16.5876 7.04058,17 8.00354,17 L8.00354,16 C7.3665,16 7.01661,15.7458 6.80931,15.4578 C6.58366,15.1444 6.50355,14.7533 6.50355,14.5 L5.50355,14.5 Z M10.00355,15 L14.0013,15 L14.0013,14 L10.00355,14 L10.00355,15 Z M8.00354,17 C8.9665,17 9.61661,16.5876 10.00931,16.0422 C10.38365,15.5222 10.50355,14.9133 10.50355,14.5 L9.50355,14.5 C9.50355,14.7533 9.42344,15.1444 9.19778,15.4578 C8.99047,15.7458 8.64058,16 8.00354,16 L8.00354,17 Z M6.00355,15 L10.00355,15 L10.00355,14 L6.00355,14 L6.00355,15 Z M1.575905,12.3289 C1.575904,12.3289 1.575902,12.3289 1.575901,12.3289 L2.43118,12.8471 C2.43118,12.8471 2.43118,12.8471 2.43118,12.8471 L1.575905,12.3289 Z M2.5048,14.5312 L1.506745,14.4688 L2.5048,14.5312 Z M14.3549,14.1464 L13.6478,14.8536 L14.3549,14.1464 Z M14.4312,12.3289 C14.4312,12.3289 14.4312,12.3289 14.4312,12.3289 L13.5759,12.8471 C13.5759,12.8471 13.5759,12.8471 13.5759,12.8471 L14.4312,12.3289 Z M8.00355,1 L8.00355,2 L8.00355,1 Z M7.55633,16.7236 L8.45075,16.2764 L7.55633,16.7236 Z" transform="translate(2 1)" class="uiIcons"></path></svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M17.5007 8.41235C17.697 7.82325 17.7651 7.19899 17.7004 6.58143C17.6357 5.96387 17.4396 5.36728 17.1255 4.83169C16.6602 4.02145 15.9497 3.37995 15.0962 2.99972C14.2428 2.61949 13.2907 2.52019 12.3772 2.71615C11.9644 2.25239 11.4576 1.8818 10.8905 1.62902C10.3234 1.37624 9.70903 1.24706 9.08817 1.25005C8.15417 1.24835 7.24371 1.54298 6.48778 2.09154C5.73185 2.6401 5.16942 3.41432 4.8814 4.3028C4.27299 4.42801 3.69822 4.68134 3.19533 5.04594C2.69243 5.41054 2.27294 5.87805 1.96476 6.41737C1.49654 7.22577 1.29689 8.16189 1.39455 9.09098C1.49221 10.0201 1.88215 10.8942 2.50823 11.5876C2.31193 12.1767 2.24385 12.801 2.30858 13.4185C2.3733 14.0361 2.56933 14.6327 2.8835 15.1683C3.34877 15.9787 4.0595 16.6203 4.91313 17.0006C5.76675 17.3808 6.71911 17.48 7.63276 17.2838C8.04476 17.7485 8.55139 18.1198 9.11866 18.3727C9.68592 18.6255 10.3007 18.7541 10.9218 18.7499C11.8562 18.7517 12.767 18.4569 13.5232 17.9079C14.2793 17.359 14.8418 16.5842 15.1295 15.6952C15.7376 15.5697 16.312 15.3163 16.8145 14.9517C17.317 14.5871 17.7362 14.1197 18.0442 13.5806C18.5116 12.7724 18.7107 11.8369 18.6129 10.9084C18.5151 9.9799 18.1253 9.10635 17.4998 8.41332L17.5007 8.41235ZM10.9227 17.6056C10.1554 17.6073 9.41196 17.3388 8.82275 16.8473L8.92678 16.7889L12.4112 14.7765C12.4989 14.7269 12.5717 14.6548 12.6221 14.5676C12.6725 14.4804 12.6987 14.3813 12.698 14.2806V9.36609L14.1709 10.2168C14.1787 10.2203 14.1854 10.2259 14.1904 10.2329C14.1953 10.2399 14.1983 10.2481 14.1991 10.2566V14.3254C14.1983 15.1944 13.853 16.0277 13.2389 16.6426C12.6247 17.2575 11.7918 17.6038 10.9227 17.6056ZM3.8771 14.5956C3.49293 13.9318 3.35457 13.154 3.48627 12.3984L3.58933 12.4597L7.07374 14.4722C7.1605 14.5233 7.25936 14.5503 7.36006 14.5503C7.46076 14.5503 7.55962 14.5233 7.64638 14.4722L11.9008 12.0154V13.7167C11.9009 13.7255 11.899 13.7341 11.8953 13.742C11.8916 13.7499 11.8862 13.7569 11.8794 13.7624L8.35706 15.7963C7.60354 16.2302 6.70867 16.3475 5.86879 16.1224C5.02892 15.8973 4.31263 15.3482 3.8771 14.5956ZM2.95933 6.98903C3.34234 6.32433 3.94706 5.81564 4.66751 5.5521L4.66557 5.67265V9.69762C4.66463 9.79825 4.69064 9.8973 4.7409 9.98449C4.79117 10.0717 4.86385 10.1438 4.9514 10.1934L9.20581 12.6493L7.7329 13.4999C7.72595 13.505 7.71779 13.5081 7.70925 13.5089C7.70071 13.5098 7.6921 13.5084 7.68429 13.5048L4.15905 11.468C3.40699 11.0325 2.85829 10.3166 2.63322 9.47716C2.40816 8.63775 2.52508 7.74335 2.95836 6.99L2.95933 6.98903ZM15.0605 9.80553L10.807 7.34972L12.279 6.49903C12.2862 6.4938 12.2948 6.49066 12.3037 6.48998C12.3126 6.48929 12.3216 6.49108 12.3295 6.49514L15.8519 8.52902C16.3918 8.84046 16.8317 9.29933 17.1202 9.85185C17.4087 10.4044 17.5337 11.0277 17.4807 11.6487C17.4276 12.2697 17.1987 12.8628 16.8206 13.3584C16.4426 13.8539 15.9312 14.2315 15.3463 14.4469V10.3014C15.3474 10.2008 15.3216 10.1018 15.2715 10.0146C15.2214 9.92738 15.1489 9.8552 15.0614 9.80553M16.5275 7.59958L16.4235 7.53833L12.9391 5.52585C12.8522 5.47453 12.7532 5.44746 12.6523 5.44746C12.5514 5.44746 12.4524 5.47453 12.3655 5.52585L8.11207 7.98166V6.28126C8.11175 6.27268 8.11332 6.26414 8.11668 6.25624C8.12004 6.24834 8.12511 6.24128 8.13151 6.23556L11.6548 4.20364C12.1944 3.89229 12.8115 3.74108 13.4339 3.76771C14.0563 3.79433 14.6582 3.99769 15.1692 4.35397C15.6802 4.71026 16.0792 5.20473 16.3194 5.77952C16.5596 6.35431 16.6311 6.98562 16.5256 7.59958M7.31096 10.6329L5.83806 9.78123C5.83008 9.77779 5.82316 9.77229 5.81804 9.76528C5.81291 9.75827 5.80975 9.75001 5.80889 9.74137V5.67168C5.80941 5.04855 5.9874 4.43846 6.32204 3.91281C6.65668 3.38716 7.13411 2.9677 7.69847 2.70353C8.26283 2.43935 8.89076 2.34138 9.50877 2.4211C10.1268 2.50081 10.7093 2.75491 11.1882 3.15365L11.0841 3.21198L7.59971 5.22446C7.51197 5.27396 7.4391 5.34605 7.38866 5.43325C7.33822 5.52044 7.31207 5.61956 7.31291 5.72029L7.30999 10.6319L7.31096 10.6329ZM8.11109 8.90721L10.005 7.81249L11.8988 8.90623V11.0947L10.003 12.1875L8.10915 11.0937V8.90721H8.11109Z" />
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M16.25 3L12 3.00001C11.5858 3.00001 11.25 3.3358 11.25 3.75001C11.25 4.16422 11.5858 4.50001 12 4.50001L14.4393 4.5L4.5 14.4393L4.5 12C4.5 11.5858 4.16421 11.25 3.75 11.25C3.33579 11.25 3 11.5858 3 12L3 16.25C3 16.4489 3.07902 16.6397 3.21968 16.7803C3.36033 16.921 3.55109 17 3.75001 17L8 17C8.41422 17 8.75 16.6642 8.75 16.25C8.75 15.8358 8.41421 15.5 8 15.5L5.56067 15.5L15.5 5.56066L15.5 8C15.5 8.41421 15.8358 8.75 16.25 8.75C16.6642 8.75 17 8.41421 17 8L17 3.75C17 3.55109 16.921 3.36032 16.7803 3.21967C16.6397 3.07902 16.4489 3 16.25 3Z" fill="black"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.25 4.5C3.83579 4.5 3.5 4.83579 3.5 5.25V7C3.5 7.41421 3.83579 7.75 4.25 7.75H15.75C16.1642 7.75 16.5 7.41421 16.5 7V5.25C16.5 4.83579 16.1642 4.5 15.75 4.5H4.25ZM2 5.25C2 4.00736 3.00736 3 4.25 3H15.75C16.9926 3 18 4.00736 18 5.25V7C18 8.24264 16.9926 9.25 15.75 9.25H4.25C3.00736 9.25 2 8.24264 2 7V5.25ZM4.25 12.25C3.83579 12.25 3.5 12.5858 3.5 13V14.75C3.5 15.1642 3.83579 15.5 4.25 15.5H15.75C16.1642 15.5 16.5 15.1642 16.5 14.75V13C16.5 12.5858 16.1642 12.25 15.75 12.25H4.25ZM2 13C2 11.7574 3.00736 10.75 4.25 10.75H15.75C16.9926 10.75 18 11.7574 18 13V14.75C18 15.9926 16.9926 17 15.75 17H4.25C3.00736 17 2 15.9926 2 14.75V13Z" class="uiIcons" />
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M2.75 11.25C3.16421 11.25 3.5 11.5858 3.5 12V15.25C3.5 15.9404 4.05964 16.5 4.75 16.5H8C8.41421 16.5 8.75 16.8358 8.75 17.25C8.75 17.6642 8.41421 18 8 18H4.75C3.23122 18 2 16.7688 2 15.25V12C2 11.5858 2.33579 11.25 2.75 11.25ZM17.25 11.25C17.6642 11.25 18 11.5858 18 12V15.25C18 16.7688 16.7688 18 15.25 18H12C11.5858 18 11.25 17.6642 11.25 17.25C11.25 16.8358 11.5858 16.5 12 16.5H15.25C15.9404 16.5 16.5 15.9404 16.5 15.25V12C16.5 11.5858 16.8358 11.25 17.25 11.25ZM11.25 12C11.6642 12 12 12.3358 12 12.75C12 13.1642 11.6642 13.5 11.25 13.5H8.75C8.33579 13.5 8 13.1642 8 12.75C8 12.3358 8.33579 12 8.75 12H11.25ZM12.25 9.25C12.6642 9.25 13 9.58579 13 10C13 10.4142 12.6642 10.75 12.25 10.75H7.75C7.33579 10.75 7 10.4142 7 10C7 9.58579 7.33579 9.25 7.75 9.25H12.25ZM8 2C8.41421 2 8.75 2.33579 8.75 2.75C8.75 3.16421 8.41421 3.5 8 3.5H4.75C4.05964 3.5 3.5 4.05964 3.5 4.75V8C3.5 8.41421 3.16421 8.75 2.75 8.75C2.33579 8.75 2 8.41421 2 8V4.75C2 3.23122 3.23122 2 4.75 2H8ZM15.25 2C16.7688 2 18 3.23122 18 4.75V8C18 8.41421 17.6642 8.75 17.25 8.75C16.8358 8.75 16.5 8.41421 16.5 8V4.75C16.5 4.05964 15.9404 3.5 15.25 3.5H12C11.5858 3.5 11.25 3.16421 11.25 2.75C11.25 2.33579 11.5858 2 12 2H15.25ZM13.25 6.5C13.6642 6.5 14 6.83579 14 7.25C14 7.66421 13.6642 8 13.25 8H6.75C6.33579 8 6 7.66421 6 7.25C6 6.83579 6.33579 6.5 6.75 6.5H13.25Z" fill="black"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M15.25 2C16.7688 2 18 3.23122 18 4.75V15.25C18 16.7688 16.7688 18 15.25 18H4.75C3.23122 18 2 16.7688 2 15.25V4.75C2 3.23122 3.23122 2 4.75 2H15.25ZM4.75 3.5C4.05964 3.5 3.5 4.05964 3.5 4.75V15.25C3.5 15.9404 4.05964 16.5 4.75 16.5H15.25C15.9404 16.5 16.5 15.9404 16.5 15.25V4.75C16.5 4.05964 15.9404 3.5 15.25 3.5H4.75ZM11.25 12C11.6642 12 12 12.3358 12 12.75C12 13.1642 11.6642 13.5 11.25 13.5H8.75C8.33579 13.5 8 13.1642 8 12.75C8 12.3358 8.33579 12 8.75 12H11.25ZM12.25 9.25C12.6642 9.25 13 9.58579 13 10C13 10.4142 12.6642 10.75 12.25 10.75H7.75C7.33579 10.75 7 10.4142 7 10C7 9.58579 7.33579 9.25 7.75 9.25H12.25ZM13.25 6.5C13.6642 6.5 14 6.83579 14 7.25C14 7.66421 13.6642 8 13.25 8H6.75C6.33579 8 6 7.66421 6 7.25C6 6.83579 6.33579 6.5 6.75 6.5H13.25Z" fill="black"/>
3
- </svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M 0.5 0C 0.5 -0.276142 0.276142 -0.5 0 -0.5C -0.276142 -0.5 -0.5 -0.276142 -0.5 0L 0.5 0ZM 14 5L 14.3536 5.35355C 14.5488 5.15829 14.5488 4.84171 14.3536 4.64645L 14 5ZM 10.3536 0.646447C 10.1583 0.451184 9.84171 0.451184 9.64645 0.646447C 9.45118 0.841709 9.45118 1.15829 9.64645 1.35355L 10.3536 0.646447ZM 9.64645 8.64645C 9.45118 8.84171 9.45118 9.15829 9.64645 9.35355C 9.84171 9.54882 10.1583 9.54882 10.3536 9.35355L 9.64645 8.64645ZM -0.5 0L -0.5 1L 0.5 1L 0.5 0L -0.5 0ZM 4 5.5L 14 5.5L 14 4.5L 4 4.5L 4 5.5ZM 14.3536 4.64645L 10.3536 0.646447L 9.64645 1.35355L 13.6464 5.35355L 14.3536 4.64645ZM 13.6464 4.64645L 9.64645 8.64645L 10.3536 9.35355L 14.3536 5.35355L 13.6464 4.64645ZM -0.5 1C -0.5 3.48528 1.51472 5.5 4 5.5L 4 4.5C 2.067 4.5 0.5 2.933 0.5 1L -0.5 1Z" transform="translate(4 6)" class="uiIcons"></path></svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M15.3613 11.3477C15.3613 8.94531 13.7383 7.28711 11.0898 7.28711H7.61523L6.27344 7.3457L7.23438 6.54883L8.56445 5.24805C8.70508 5.11328 8.79883 4.94922 8.79883 4.7207C8.79883 4.30469 8.50586 4 8.06641 4C7.87305 4 7.67383 4.08203 7.52148 4.22852L4.22852 7.48633C4.08203 7.62695 4 7.83789 4 8.03711C4 8.24219 4.08203 8.45312 4.22852 8.59375L7.52148 11.8457C7.67383 11.9922 7.87305 12.0801 8.06641 12.0801C8.50586 12.0801 8.79883 11.7695 8.79883 11.3535C8.79883 11.125 8.70508 10.9609 8.56445 10.8262L7.23438 9.52539L6.27344 8.72852L7.61523 8.79297H11.0781C12.8535 8.79297 13.8789 9.83008 13.8789 11.3125C13.8789 12.7891 12.8535 13.8555 11.0781 13.8555H9.68945C9.25 13.8555 8.92773 14.1953 8.92773 14.6113C8.92773 15.0215 9.25 15.3613 9.68945 15.3613H11.1543C13.7617 15.3613 15.3613 13.7793 15.3613 11.3477Z" class="uiIcons"></path></svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M9.875 8C9.52888 8 9.19054 8.10264 8.90275 8.29493C8.61497 8.48722 8.39066 8.76053 8.25821 9.0803C8.12576 9.40007 8.0911 9.75194 8.15862 10.0914C8.22615 10.4309 8.39282 10.7427 8.63756 10.9874C8.8823 11.2322 9.19412 11.3988 9.53359 11.4664C9.87306 11.5339 10.2249 11.4992 10.5447 11.3668C10.8645 11.2343 11.1378 11.01 11.3301 10.7222C11.5224 10.4345 11.625 10.0961 11.625 9.75C11.625 9.28587 11.4406 8.84075 11.1124 8.51256C10.7842 8.18437 10.3391 8 9.875 8ZM3.75 8C3.40388 8 3.06554 8.10264 2.77775 8.29493C2.48997 8.48722 2.26566 8.76053 2.13321 9.0803C2.00076 9.40007 1.9661 9.75194 2.03363 10.0914C2.10115 10.4309 2.26782 10.7427 2.51256 10.9874C2.75731 11.2322 3.06913 11.3988 3.40859 11.4664C3.74806 11.5339 4.09993 11.4992 4.4197 11.3668C4.73947 11.2343 5.01278 11.01 5.20507 10.7222C5.39736 10.4345 5.5 10.0961 5.5 9.75C5.5 9.28587 5.31563 8.84075 4.98744 8.51256C4.65925 8.18437 4.21413 8 3.75 8ZM16 8C15.6539 8 15.3155 8.10264 15.0277 8.29493C14.74 8.48722 14.5157 8.76053 14.3832 9.0803C14.2508 9.40007 14.2161 9.75194 14.2836 10.0914C14.3511 10.4309 14.5178 10.7427 14.7626 10.9874C15.0073 11.2322 15.3191 11.3988 15.6586 11.4664C15.9981 11.5339 16.3499 11.4992 16.6697 11.3668C16.9895 11.2343 17.2628 11.01 17.4551 10.7222C17.6474 10.4345 17.75 10.0961 17.75 9.75C17.75 9.28587 17.5656 8.84075 17.2374 8.51256C16.9092 8.18437 16.4641 8 16 8Z" class="richEditorIcons"></path></svg>
@@ -1,5 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M5.25 7C5.25 6.58579 5.58579 6.25 6 6.25H13.5C13.9142 6.25 14.25 6.58579 14.25 7C14.25 7.41421 13.9142 7.75 13.5 7.75H6C5.58579 7.75 5.25 7.41421 5.25 7Z" />
3
- <path d="M6 9.25C5.58579 9.25 5.25 9.58579 5.25 10C5.25 10.4142 5.58579 10.75 6 10.75H10.5C10.9142 10.75 11.25 10.4142 11.25 10C11.25 9.58579 10.9142 9.25 10.5 9.25H6Z" />
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2 5C2 3.48122 3.23122 2.25 4.75 2.25H15.55C17.1792 2.25 18.5 3.57076 18.5 5.2V12.9107C18.5 14.4295 17.2688 15.6607 15.75 15.6607H14.8793V17.5C14.8793 17.7691 14.7351 18.0176 14.5015 18.1511C14.2679 18.2847 13.9806 18.2828 13.7487 18.1463L9.52832 15.6607H4.75C3.23122 15.6607 2 14.4295 2 12.9107V5ZM4.75 3.75C4.05964 3.75 3.5 4.30964 3.5 5V12.9107C3.5 13.6011 4.05964 14.1607 4.75 14.1607H9.73276C9.86661 14.1607 9.99802 14.1965 10.1134 14.2645L13.3793 16.1879V14.9107C13.3793 14.4965 13.7151 14.1607 14.1293 14.1607H15.75C16.4404 14.1607 17 13.6011 17 12.9107V5.2C17 4.39919 16.3508 3.75 15.55 3.75H4.75Z" />
5
- </svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 13.9902C1 15.6264 1.67505 16.5 3.5 16.5H13.5C13.4634 16.3513 13.4268 16.2539 13.3951 16.1695C13.3402 16.0234 13.3 15.9165 13.3 15.65C13.3 15.3685 13.3449 15.2496 13.4045 15.0914C13.4339 15.0134 13.467 14.9259 13.5 14.8046H3.5029C2.84526 14.8046 2.5 14.5085 2.5 13.894V5.91301C2.5 5.29112 2.84526 5.00238 3.5029 5.00238H15.4971C16.1465 5.00238 16.5 5.29112 16.5 5.91301V11.5C16.5726 11.4883 16.637 11.4769 16.6968 11.4663C16.9009 11.4302 17.052 11.4035 17.3 11.4035C17.5247 11.4035 17.6289 11.4254 17.7759 11.4564C17.8386 11.4696 17.9091 11.4845 18 11.5V5.00238C18 3.37361 17.3332 2.5 15.5 2.5H3.5C1.67505 2.5 1 3.37361 1 5.00238V13.9902ZM14.5 7.75C14.5 7.33577 14.164 7 13.75 7H5.25C4.836 7 4.5 7.33577 4.5 7.75C4.5 8.16423 4.836 8.5 5.25 8.5H13.75C14.164 8.5 14.5 8.16423 14.5 7.75ZM18.1334 13.925V14.7667H18.9667C19.1877 14.7667 19.3997 14.8545 19.556 15.0107C19.7123 15.167 19.8 15.379 19.8 15.6C19.8 15.821 19.7123 16.033 19.556 16.1892C19.3997 16.3455 19.1877 16.4333 18.9667 16.4333H18.1334V17.275C18.1334 17.73 17.7634 18.1 17.3 18.1C17.0805 18.1 16.8698 18.0133 16.7137 17.8589C16.5577 17.7044 16.4689 17.4946 16.4667 17.275V16.4333H15.6334C15.4124 16.4333 15.2004 16.3455 15.0441 16.1892C14.8878 16.033 14.8 15.821 14.8 15.6C14.8 15.379 14.8878 15.167 15.0441 15.0107C15.2004 14.8545 15.4124 14.7667 15.6334 14.7667H16.4667V13.925C16.4667 13.47 16.8367 13.1 17.3 13.1C17.5196 13.1 17.7303 13.1866 17.8864 13.3411C18.0424 13.4956 18.1312 13.7054 18.1334 13.925Z" class="richEditorIcons"></path></svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><g transform="translate(3, 3)" class="richEditorIcons"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.2 5.60001V8.39999H8.8V5.60001H5.2ZM5 4C4.5 4 4 4.44771 4 5.00001V8.99999C4 9.5523 4.5 10 5 10H9C9.5 10 10 9.5523 10 8.99999V5.00001C10 4.44771 9.5 4 9 4H5Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M0 1.15005C0 0.68061 0.38056 0.30005 0.85 0.30005H13.15C13.6194 0.30005 14 0.68061 14 1.15005C14 1.61949 13.6194 2.00005 13.15 2.00005H0.85C0.38056 2.00005 0 1.61949 0 1.15005Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M0 13.15C0 12.6806 0.38056 12.3 0.85 12.3H13.15C13.6194 12.3 14 12.6806 14 13.15C14 13.6195 13.6194 14 13.15 14H0.85C0.38056 14 0 13.6195 0 13.15Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M0 9C0 8.44772 0.5 8 1 8C1.5 8 2 8.44772 2 9C2 9.55228 1.5 10 1 10C0.5 10 0 9.55228 0 9Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M0 5C0 4.44772 0.5 4 1 4C1.5 4 2 4.44772 2 5C2 5.55228 1.5 6 1 6C0.5 6 0 5.55228 0 5Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M12 5C12 4.44772 12.5 4 13 4C13.5 4 14 4.44772 14 5C14 5.55228 13.5 6 13 6C12.5 6 12 5.55228 12 5Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M12 9C12 8.44772 12.5 8 13 8C13.5 8 14 8.44772 14 9C14 9.55228 13.5 10 13 10C12.5 10 12 9.55228 12 9Z" class="richEditorIcons"></path></g></svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><g transform="translate(3, 3)" class="richEditorIcons"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.6 5.6V8.39995H6.4V5.6H1.6ZM1 4C0.44772 4 0 4.44771 0 5V8.99995C0 9.55225 0.44772 9.99995 1 9.99995H7C7.5523 9.99995 8 9.55225 8 8.99995V5C8 4.44771 7.5523 4 7 4H1Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M0 1.15005C0 0.68061 0.38056 0.30005 0.85 0.30005H13.15C13.6194 0.30005 14 0.68061 14 1.15005C14 1.61949 13.6194 2.00005 13.15 2.00005H0.85C0.38056 2.00005 0 1.61949 0 1.15005Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M0 13.15C0 12.6806 0.38056 12.3 0.85 12.3H13.15C13.6194 12.3 14 12.6806 14 13.15C14 13.6195 13.6194 14 13.15 14H0.85C0.38056 14 0 13.6195 0 13.15Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M10 5C10 4.44772 10.5 4 11 4H13C13.5 4 14 4.44772 14 5C14 5.55228 13.5 6 13 6H11C10.5 6 10 5.55228 10 5Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M10 9C10 8.44772 10.5 8 11 8H13C13.5 8 14 8.44772 14 9C14 9.55228 13.5 10 13 10H11C10.5 10 10 9.55228 10 9Z" class="richEditorIcons"></path></g></svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><g transform="translate(3, 3)" class="richEditorIcons"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.6 5.60005V8.4H12.4V5.60005H7.6ZM7 4.00005C6.44772 4.00005 6 4.44776 6 5.00005V9C6 9.5523 6.44772 10 7 10H13C13.5523 10 14 9.5523 14 9V5.00005C14 4.44776 13.5523 4.00005 13 4.00005H7Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M0 1.15005C0 0.68061 0.38056 0.30005 0.85 0.30005H13.15C13.6194 0.30005 14 0.68061 14 1.15005C14 1.61949 13.6194 2.00005 13.15 2.00005H0.85C0.38056 2.00005 0 1.61949 0 1.15005Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M0 13.15C0 12.6806 0.38056 12.3 0.85 12.3H13.15C13.6194 12.3 14 12.6806 14 13.15C14 13.6195 13.6194 14 13.15 14H0.85C0.38056 14 0 13.6195 0 13.15Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M0 5C0 4.44772 0.5 4 1 4H3C3.5 4 4 4.44772 4 5C4 5.55228 3.5 6 3 6L1 6C0.5 6 0 5.55228 0 5Z" class="richEditorIcons"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M0 9C0 8.44772 0.5 8 1 8H3C3.5 8 4 8.44772 4 9C4 9.55228 3.5 10 3 10L1 10C0.5 10 0 9.55228 0 9Z" class="richEditorIcons"></path></g></svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Icon">
3
- <path d="M8.74999 5.75C9.1642 5.75 9.49999 6.08579 9.49999 6.5L9.49999 8H11C11.4142 8 11.75 8.33579 11.75 8.75C11.75 9.16421 11.4142 9.5 11 9.5H9.49998L9.49996 11C9.49996 11.4142 9.16417 11.75 8.74996 11.75C8.33574 11.75 7.99996 11.4142 7.99996 11L7.99998 9.5H6.5C6.08579 9.5 5.75 9.16421 5.75 8.75C5.75 8.33579 6.08579 8 6.5 8H7.99999L7.99999 6.5C7.99999 6.08579 8.33577 5.75 8.74999 5.75Z" class="richEditorIcons"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.1284 14.3205C11.9232 15.2691 10.4027 15.835 8.74999 15.835C4.83706 15.835 1.66499 12.6629 1.66499 8.74998C1.66499 4.83704 4.83706 1.66498 8.74999 1.66498C12.6629 1.66498 15.835 4.83704 15.835 8.74998C15.835 10.4084 15.2652 11.9338 14.3106 13.141L18.0895 16.9087C18.4161 17.2343 18.4169 17.763 18.0913 18.0895C17.7657 18.4161 17.237 18.4169 16.9104 18.0913L13.1284 14.3205ZM8.74999 3.33498C5.75937 3.33498 3.33499 5.75936 3.33499 8.74998C3.33499 11.7406 5.75937 14.165 8.74999 14.165C10.2429 14.165 11.5948 13.5608 12.5743 12.5836C13.557 11.6033 14.165 10.2476 14.165 8.74998C14.165 5.75936 11.7406 3.33498 8.74999 3.33498Z" class="richEditorIcons"/>
5
- </svg>
@@ -1,9 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <g id="type / url">
3
- <g id="Vector">
4
- <path d="M3.98203 8.8621C2.00599 10.8381 2.00599 14.0419 3.98203 16.018C5.95807 17.994 9.16186 17.994 11.1379 16.018L12.3579 14.798C12.6495 14.5064 12.6495 14.0337 12.3579 13.7422C12.0664 13.4506 11.5937 13.4506 11.3021 13.7422L10.0821 14.9622C8.68917 16.3551 6.43076 16.3551 5.03781 14.9622C3.64487 13.5692 3.64487 11.3108 5.03781 9.91788L6.25783 8.69787C6.54938 8.40632 6.54938 7.93363 6.25783 7.64208C5.96628 7.35054 5.49359 7.35054 5.20205 7.64208L3.98203 8.8621Z" />
5
- <path d="M7.03207 11.9121C6.74052 12.2037 6.74052 12.6764 7.03207 12.9679C7.32362 13.2595 7.79631 13.2595 8.08785 12.9679L12.9679 8.08786C13.2595 7.79631 13.2595 7.32362 12.9679 7.03207C12.6764 6.74053 12.2037 6.74053 11.9121 7.03207L7.03207 11.9121Z" />
6
- <path d="M7.64208 5.20205C7.35053 5.49359 7.35053 5.96629 7.64208 6.25783C7.93363 6.54938 8.40632 6.54938 8.69786 6.25783L9.91788 5.03781C11.3108 3.64487 13.5692 3.64487 14.9622 5.03781C16.3551 6.43076 16.3551 8.68917 14.9622 10.0821L13.7422 11.3021C13.4506 11.5937 13.4506 12.0664 13.7422 12.3579C14.0337 12.6495 14.5064 12.6495 14.7979 12.3579L16.018 11.1379C17.994 9.16186 17.994 5.95807 16.018 3.98203C14.0419 2.00599 10.8381 2.00599 8.8621 3.98203L7.64208 5.20205Z" />
7
- </g>
8
- </g>
9
- </svg>
@@ -1,5 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12.2293 3.92508C12.326 3.5223 12.0778 3.11743 11.675 3.02076C11.2723 2.92409 10.8674 3.17224 10.7707 3.57502L7.77071 16.075C7.67405 16.4778 7.9222 16.8827 8.32497 16.9793C8.72775 17.076 9.13263 16.8279 9.22929 16.4251L12.2293 3.92508Z" fill="black"/>
3
- <path d="M6.53033 6.21967C6.82322 6.51256 6.82322 6.98743 6.53033 7.28033L3.81066 10L6.53033 12.7197C6.82322 13.0126 6.82322 13.4874 6.53033 13.7803C6.23744 14.0732 5.76257 14.0732 5.46967 13.7803L2.21967 10.5304C2.07902 10.3897 2 10.1989 2 10C2 9.80111 2.07902 9.61034 2.21967 9.46969L5.46967 6.21967C5.76256 5.92678 6.23743 5.92678 6.53033 6.21967Z" fill="black"/>
4
- <path d="M13.4697 6.21967C13.7626 5.92678 14.2374 5.92678 14.5303 6.21967L17.7803 9.46969C17.921 9.61034 18 9.80111 18 10C18 10.1989 17.921 10.3897 17.7803 10.5304L14.5303 13.7803C14.2374 14.0732 13.7626 14.0732 13.4697 13.7803C13.1768 13.4874 13.1768 13.0126 13.4697 12.7197L16.1893 10L13.4697 7.28033C13.1768 6.98743 13.1768 6.51256 13.4697 6.21967Z" fill="black"/>
5
- </svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M6.89624 4.42857C6.89624 3.91574 7.31224 3.5 7.82481 3.5H13.3962C13.9088 3.5 14.3248 3.91574 14.3248 4.42857C14.3248 4.9414 13.9088 5.35714 13.3962 5.35714H11.8143L9.67039 14.6429H11.5391C12.0516 14.6429 12.4676 15.0586 12.4676 15.5715C12.4676 16.0843 12.0516 16.5 11.5391 16.5H5.96763C5.45506 16.5 5.03906 16.0843 5.03906 15.5715C5.03906 15.0586 5.45506 14.6429 5.96763 14.6429H7.76415L9.90801 5.35714H7.82481C7.31224 5.35714 6.89624 4.9414 6.89624 4.42857Z" fill="black"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M11.5948 3.59463C12.9232 2.26635 15.0769 2.26635 16.4053 3.59463C17.7337 4.92303 17.7336 7.07677 16.4053 8.40521L8.81057 16H16.2501C16.6642 16 16.9999 16.3359 17.0001 16.75C17.0001 17.1642 16.6643 17.5 16.2501 17.5H3.5C2.94772 17.5 2.5 17.0523 2.5 16.5V13C2.50006 12.8011 2.57913 12.6103 2.71973 12.4697L11.5948 3.59463ZM4.00001 13.3105V16H6.68947L13.9024 8.78705L11.2139 6.09758L4.00001 13.3105ZM15.3448 4.65519C14.6022 3.91269 13.3979 3.91269 12.6553 4.65519L12.0977 5.21378L14.7862 7.90326L15.3448 7.34466C16.0873 6.602 16.0874 5.39779 15.3448 4.65519Z" fill="black"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M13.5137 11.625C13.9066 11.494 14.3317 11.7069 14.4629 12.0986C14.5799 12.4506 14.6453 12.8343 14.6553 13.2383C14.6812 14.3091 14.2978 15.2809 13.5469 16.0508C12.6479 16.9718 11.294 17.5 9.83203 17.5H9.83008C6.56233 17.5 5.33399 15.7243 4.87891 14.2334C4.75791 13.8374 4.98094 13.4179 5.37793 13.2969C5.76993 13.1749 6.19345 13.3989 6.31445 13.7959C6.77346 15.2999 7.89107 16.001 9.83105 16.001C10.892 16.001 11.8537 15.6378 12.4727 15.0039C12.9346 14.53 13.1712 13.9322 13.1553 13.2754C13.1493 13.0205 13.11 12.7852 13.04 12.5742C12.9091 12.1813 13.1208 11.7561 13.5137 11.625ZM9.83008 2.5C11.0201 2.50001 13.1728 2.8681 14.2148 5.33398C14.3758 5.71492 14.1973 6.15532 13.8164 6.31738C13.4354 6.47838 12.994 6.29897 12.833 5.91797C12.295 4.64501 11.285 4.00002 9.83008 4C9.22812 4 7.89603 4.21181 7.16699 5.01367C6.77299 5.44767 6.61464 5.99636 6.68164 6.69336C6.72667 7.16169 6.86599 8.58719 9.8623 9.12207C10.0675 9.15849 10.2843 9.20114 10.5068 9.25H15.75C16.164 9.25 16.5 9.586 16.5 10C16.5 10.414 16.164 10.75 15.75 10.75H3.75C3.336 10.75 3 10.414 3 10C3 9.586 3.336 9.25 3.75 9.25H6.4209C5.56966 8.50465 5.26386 7.60952 5.18945 6.83691C5.08247 5.72799 5.3817 4.74884 6.05762 4.00586C7.38662 2.54286 9.58408 2.5 9.83008 2.5Z" fill="black"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7.00901 16.5H11.2162C13.982 16.5 15.6486 15.1126 15.6486 12.8243C15.6486 11.0946 14.4595 9.84234 12.6937 9.64414V9.57207C13.991 9.35586 15.009 8.12162 15.009 6.74324C15.009 4.77928 13.4955 3.5 11.1892 3.5H7.00901C6.37838 3.5 6 3.8964 6 4.54505V15.455C6 16.1036 6.37838 16.5 7.00901 16.5ZM8.01802 9.03153V5.14865H10.7027C12.1622 5.14865 12.991 5.81532 12.991 7.02252C12.991 8.31081 12.027 9.03153 10.2793 9.03153H8.01802ZM8.01802 14.8514V10.5721H10.6847C12.5946 10.5721 13.5856 11.2928 13.5856 12.6982C13.5856 14.1036 12.6216 14.8514 10.8018 14.8514H8.01802Z" fill="black"/>
3
- </svg>
@@ -1,10 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <g id="richeditor / unlink">
3
- <g id="Vector">
4
- <path d="M3.28033 2.21967C2.98744 1.92678 2.51256 1.92678 2.21967 2.21967C1.92678 2.51256 1.92678 2.98744 2.21967 3.28033L8.93932 9.99998L7.01833 11.921C6.72543 12.2139 6.72543 12.6887 7.01833 12.9816C7.31122 13.2745 7.78609 13.2745 8.07899 12.9816L9.99998 11.0606L16.7197 17.7803C17.0126 18.0732 17.4874 18.0732 17.7803 17.7803C18.0732 17.4874 18.0732 17.0126 17.7803 16.7197L3.28033 2.21967Z" />
5
- <path d="M3.9542 8.85685C1.96903 10.842 1.96903 14.0606 3.9542 16.0458C5.93936 18.0309 9.15795 18.0309 11.1431 16.0458L11.7559 15.4329C12.0488 15.14 12.0488 14.6652 11.7559 14.3723C11.463 14.0794 10.9882 14.0794 10.6953 14.3723L10.0825 14.9851C8.68307 16.3845 6.41423 16.3845 5.01486 14.9851C3.61548 13.5857 3.61548 11.3169 5.01486 9.91751L5.62768 9.30469C5.92058 9.01179 5.92058 8.53692 5.62768 8.24402C5.33479 7.95113 4.85992 7.95113 4.56702 8.24402L3.9542 8.85685Z" />
6
- <path d="M8.24398 4.56707C7.95108 4.85996 7.95108 5.33484 8.24398 5.62773C8.53687 5.92062 9.01174 5.92062 9.30464 5.62773L9.91746 5.0149C11.3168 3.61553 13.5857 3.61553 14.9851 5.0149C16.3844 6.41428 16.3844 8.68312 14.9851 10.0825L14.3722 10.6953C14.0793 10.9882 14.0793 11.4631 14.3722 11.756C14.6651 12.0489 15.14 12.0489 15.4329 11.756L16.0457 11.1432C18.0309 9.158 18.0309 5.93941 16.0457 3.95424C14.0606 1.96908 10.842 1.96908 8.8568 3.95424L8.24398 4.56707Z" />
7
- <path d="M11.3081 7.6312C11.0152 7.92409 11.0152 8.39897 11.3081 8.69186C11.601 8.98475 12.0759 8.98475 12.3688 8.69186L12.9816 8.07903C13.2745 7.78614 13.2745 7.31127 12.9816 7.01837C12.6887 6.72548 12.2138 6.72548 11.9209 7.01837L11.3081 7.6312Z" />
8
- </g>
9
- </g>
10
- </svg>
@@ -1,11 +0,0 @@
1
- <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g opacity="0.9">
3
- <mask id="mask0_1091_1079" maskUnits="userSpaceOnUse" x="4" y="2" width="14" height="16">
4
- <path d="M5 2H18V18H4V14H10V5.5H7.5H5V2Z" fill="#C4C4C4"/>
5
- </mask>
6
- <g mask="url(#mask0_1091_1079)">
7
- <path d="M6 14.9209C6 16.2495 6.74561 17 8.06008 17H14.9454C16.2544 17 17 16.2495 17 14.9209V4.0735C17 2.75046 16.2544 2 14.9454 2H8.06008C6.74561 2 6 2.75046 6 4.0735V14.9209ZM7.70661 14.693V4.30698C7.70661 3.91785 7.88335 3.71773 8.29757 3.71773H14.7024C15.1167 3.71773 15.2934 3.91785 15.2934 4.30698V14.693C15.2934 15.0821 15.1167 15.2823 14.7024 15.2823H8.29757C7.88335 15.2823 7.70661 15.0821 7.70661 14.693Z" fill="#65788B"/>
8
- </g>
9
- <path d="M1.88066 9.88138C1.88066 10.2933 2.20901 10.6275 2.59707 10.6275L4.77618 10.6275L6.00006 10.5653L5.38812 11.1172L4.4926 11.9954C4.37319 12.112 4.2911 12.2986 4.2911 12.4851C4.2911 12.8737 4.55976 13.1691 4.93289 13.1691C5.11946 13.1691 5.27618 13.0991 5.41051 12.9514L7.67916 10.4254C7.84334 10.2389 7.91797 10.0835 7.91797 9.88138C7.91797 9.6793 7.84334 9.51608 7.67916 9.33732L5.41051 6.81133C5.27618 6.65589 5.11946 6.58594 4.93289 6.58594C4.55976 6.58594 4.2911 6.88128 4.2911 7.2699C4.2911 7.45643 4.37319 7.64297 4.4926 7.75955L5.39558 8.64559L6.00006 9.19742L4.77618 9.12747L2.59707 9.12747C2.20901 9.12747 1.88066 9.46945 1.88066 9.88138Z" fill="#65788B"/>
10
- </g>
11
- </svg>
@@ -1,5 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <g id="rule-scheduled">
3
- <path id="Vector" d="M13.3334 8.55835L9.16669 6.15002C8.91345 6.00381 8.6262 5.9268 8.33378 5.92673C8.04137 5.92665 7.75408 6.00351 7.50076 6.14959C7.24745 6.29567 7.03702 6.50583 6.89062 6.75895C6.74422 7.01208 6.66699 7.29927 6.66669 7.59169V12.4084C6.66699 12.7006 6.74414 12.9877 6.89041 13.2407C7.03667 13.4938 7.24691 13.7039 7.50002 13.85C7.75339 13.9963 8.0408 14.0733 8.33336 14.0733C8.62592 14.0733 8.91333 13.9963 9.16669 13.85L13.3334 11.4417C13.5859 11.2952 13.7956 11.0849 13.9413 10.8319C14.087 10.5789 14.1637 10.292 14.1637 10C14.1637 9.70804 14.087 9.42118 13.9413 9.16817C13.7956 8.91515 13.5859 8.70486 13.3334 8.55835ZM12.5 10L8.33336 12.4084V7.59169L12.5 10ZM10 1.66669C8.35185 1.66669 6.74068 2.15543 5.37027 3.07111C3.99986 3.98679 2.93176 5.28827 2.30103 6.81099C1.6703 8.33371 1.50527 10.0093 1.82681 11.6258C2.14836 13.2423 2.94203 14.7271 4.10747 15.8926C5.27291 17.058 6.75776 17.8517 8.37427 18.1732C9.99078 18.4948 11.6663 18.3297 13.1891 17.699C14.7118 17.0683 16.0133 16.0002 16.9289 14.6298C17.8446 13.2594 18.3334 11.6482 18.3334 10C18.3334 8.90567 18.1178 7.82204 17.699 6.81099C17.2802 5.79994 16.6664 4.88129 15.8926 4.10746C15.1188 3.33364 14.2001 2.71981 13.1891 2.30102C12.178 1.88224 11.0944 1.66669 10 1.66669ZM10 16.6667C8.68148 16.6667 7.39255 16.2757 6.29622 15.5432C5.19989 14.8106 4.34541 13.7694 3.84083 12.5512C3.33624 11.3331 3.20422 9.99263 3.46146 8.69942C3.71869 7.40621 4.35363 6.21833 5.28598 5.28598C6.21833 4.35363 7.40622 3.71869 8.69942 3.46145C9.99263 3.20422 11.3331 3.33624 12.5512 3.84082C13.7694 4.34541 14.8106 5.19989 15.5432 6.29622C16.2757 7.39255 16.6667 8.68148 16.6667 10C16.6667 11.7681 15.9643 13.4638 14.7141 14.7141C13.4638 15.9643 11.7681 16.6667 10 16.6667Z" />
4
- </g>
5
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2.26833 6.09989L2.75429 5.24906C2.92685 4.95077 3.1744 4.70379 3.47136 4.53202L2.21967 3.28033C1.92678 2.98744 1.92678 2.51256 2.21967 2.21967C2.51256 1.92678 2.98744 1.92678 3.28033 2.21967L17.7803 16.7197C18.0732 17.0126 18.0732 17.4874 17.7803 17.7803C17.4874 18.0732 17.0126 18.0732 16.7197 17.7803L14.5406 15.6013L14.0947 15.5332L12.7783 16.2909L12.3519 17.3921C12.2095 17.7614 11.9588 18.0791 11.6328 18.3036C11.3067 18.5281 10.9205 18.6488 10.5246 18.65H9.49971C9.10383 18.6488 8.71757 18.5281 8.39151 18.3036C8.06573 18.0793 7.81524 17.7619 7.67273 17.393L7.24602 16.2909L5.92961 15.5332L4.74356 15.7142C4.35743 15.7666 3.96443 15.7029 3.61455 15.5314C3.26467 15.3599 2.97371 15.0882 2.7786 14.7509L2.77653 14.7474L2.29262 13.9001C2.09309 13.5585 2.00127 13.1646 2.0292 12.7699C2.05718 12.3745 2.20402 11.9968 2.45046 11.6864L3.17587 10.7618V9.24373L2.42809 8.31605C2.18049 8.00519 2.03296 7.62654 2.0049 7.23012C1.97697 6.83542 2.0688 6.4415 2.26833 6.09989ZM11.8004 15.1231C11.6518 15.2086 11.537 15.3424 11.4751 15.5023L10.9524 16.8523C10.9187 16.9398 10.8593 17.015 10.7822 17.0681C10.7052 17.1211 10.6142 17.1496 10.5209 17.15H9.50338C9.41009 17.1496 9.31905 17.1211 9.24213 17.0681C9.165 17.015 9.10528 16.9389 9.07153 16.8513L8.54916 15.5023C8.48726 15.3424 8.37248 15.2086 8.22391 15.1231L6.45027 14.1022C6.30289 14.0173 6.13106 13.9851 5.96297 14.0107L4.53699 14.2284C4.44725 14.2396 4.35613 14.2244 4.27482 14.1846C4.19256 14.1442 4.124 14.0805 4.0778 14.0012L4.07699 13.9998L3.59317 13.1526L3.58849 13.1447C3.5408 13.0635 3.51881 12.9697 3.52546 12.8758C3.53211 12.7818 3.56709 12.6921 3.62572 12.6185L4.51594 11.4839C4.61956 11.3518 4.67587 11.1888 4.67587 11.0209V8.97909C4.67587 8.80783 4.61727 8.64173 4.50979 8.5084L3.60038 7.38021C3.54237 7.30685 3.50777 7.21765 3.50116 7.12424C3.49451 7.03028 3.51655 6.93655 3.56424 6.85539L4.05349 5.99882C4.0997 5.91956 4.16826 5.85578 4.25052 5.81546C4.33184 5.77559 4.42297 5.76039 4.51272 5.77165L4.7467 5.80736L13.379 14.4397L11.8004 15.1231Z"/>
3
- <path d="M9.49971 1.35001L9.50192 1.35001L10.5003 1.35001C10.8962 1.35118 11.2824 1.47194 11.6085 1.69643C11.9344 1.92081 12.1849 2.23834 12.3274 2.60743L12.754 3.70908L14.0704 4.46681L15.2564 4.28581C15.6426 4.23337 16.0356 4.29707 16.3855 4.46859C16.7353 4.64011 17.0263 4.9118 17.2214 5.24907L17.2235 5.25264L17.7074 6.09989C17.9069 6.4415 17.9987 6.83542 17.9708 7.23012C17.9428 7.62552 17.796 8.00322 17.5495 8.31363L16.8241 9.23819V10.7563L17.5719 11.684C17.8195 11.9948 17.967 12.3735 17.9951 12.7699C18.023 13.1646 17.9312 13.5585 17.7317 13.9001L15.4902 11.4916C15.3827 11.3583 15.3241 11.1922 15.3241 11.0209V8.97909C15.3241 8.81122 15.3804 8.6482 15.4841 8.51613L16.3743 7.3815C16.4329 7.30789 16.4679 7.2182 16.4745 7.12424C16.4812 7.03028 16.4592 6.93652 16.4115 6.85536L16.4068 6.8474L15.923 6.00018L15.9222 5.99879C15.876 5.91955 15.8074 5.85578 15.7252 5.81546C15.6439 5.77559 15.5527 5.76039 15.463 5.77165L14.037 5.98927C13.8689 6.01493 13.6971 5.98269 13.5497 5.89786L11.7761 4.87694C11.6275 4.79143 11.5127 4.6576 11.4508 4.49775L10.9285 3.14867C10.8947 3.06116 10.835 2.98503 10.7579 2.93192C10.681 2.87898 10.59 2.85046 10.4967 2.85001H9.50329C9.41003 2.85046 9.31903 2.87898 9.24213 2.93192C9.165 2.98503 9.10564 3.06024 9.07189 3.14774C8.88182 3.63863 8.75804 4.42508 8.34647 4.78888L7.24691 3.70677L7.67238 2.60797C7.81488 2.23904 8.06573 1.92073 8.39151 1.69643C8.71757 1.47194 9.10383 1.35118 9.49971 1.35001Z"/>
4
- </svg>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Icon">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.3699 11.1489C9.32329 10.672 8.10386 10.5 7 10.5C5.89614 10.5 4.67671 10.672 3.63012 11.1489C2.56985 11.6321 1.64706 12.4514 1.27902 13.7357C1.11798 14.2976 1.12681 14.9805 1.15815 15.4615C1.21837 16.3854 2.00581 17 2.84291 17H11.1571C11.9942 17 12.7816 16.3854 12.8418 15.4615C12.8732 14.9805 12.882 14.2976 12.721 13.7357C12.3529 12.4514 11.4301 11.6321 10.3699 11.1489ZM11.279 14.1489C11.0626 13.3938 10.5228 12.867 9.74787 12.5138C8.95927 12.1545 7.97092 12 7 12C6.02908 12 5.04073 12.1545 4.25213 12.5138C3.4772 12.867 2.93738 13.3938 2.72098 14.1489C2.63557 14.447 2.62539 14.91 2.65498 15.3639C2.65715 15.3972 2.67032 15.4249 2.69879 15.4499C2.72993 15.4773 2.77979 15.5 2.84291 15.5H11.1571C11.2202 15.5 11.2701 15.4773 11.3012 15.4499C11.3297 15.4249 11.3428 15.3972 11.345 15.3639C11.3746 14.91 11.3644 14.447 11.279 14.1489Z" />
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.25 6.25C10.25 4.45507 8.79492 3 6.99999 3C5.20507 3 3.74999 4.45507 3.74999 6.25C3.74999 8.04493 5.20507 9.5 6.99999 9.5C8.79492 9.5 10.25 8.04493 10.25 6.25ZM8.74999 6.25C8.74999 5.2835 7.96649 4.5 6.99999 4.5C6.0335 4.5 5.24999 5.2835 5.24999 6.25C5.24999 7.2165 6.0335 8 6.99999 8C7.96649 8 8.74999 7.2165 8.74999 6.25Z" />
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.8176 5C15.3364 5 16.5676 6.23121 16.5676 7.75C16.5676 9.26879 15.3364 10.5 13.8176 10.5C12.2988 10.5 11.0676 9.26879 11.0676 7.75C11.0676 6.23121 12.2988 5 13.8176 5ZM13.8176 6.5C14.508 6.5 15.0676 7.05965 15.0676 7.75C15.0676 8.44035 14.508 9 13.8176 9C13.1272 9 12.5676 8.44035 12.5676 7.75C12.5676 7.05965 13.1272 6.5 13.8176 6.5Z" />
6
- <path d="M14.0077 12.0151C13.9583 12.4263 14.2515 12.7998 14.6628 12.8493C16.0343 13.0144 17.0221 13.5602 17.2966 14.5182C17.3619 14.7458 17.3723 15.1137 17.3482 15.4902C17.3419 15.4943 17.3292 15.5 17.3096 15.5H15.25C14.8358 15.5 14.5 15.8358 14.5 16.25C14.5 16.6642 14.8358 17 15.25 17H17.3096C18.0688 17 18.7894 16.4416 18.8445 15.5954C18.871 15.1893 18.8799 14.5981 18.7386 14.1049C18.2046 12.2416 16.3833 11.5456 14.842 11.3601C14.4308 11.3106 14.0572 11.6038 14.0077 12.0151Z" />
7
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2 5.25C2 4.00736 3.00736 3 4.25 3H15.75C16.9926 3 18 4.00736 18 5.25V14.75C18 15.9926 16.9926 17 15.75 17H4.25C3.00736 17 2 15.9926 2 14.75V5.25ZM4.25 4.5C3.83579 4.5 3.5 4.83579 3.5 5.25V14.75C3.5 15.1642 3.83579 15.5 4.25 15.5H11V4.5H4.25ZM15 12.25C15.4142 12.25 15.75 12.5858 15.75 13C15.75 13.4142 15.4142 13.75 15 13.75H14C13.5858 13.75 13.25 13.4142 13.25 13C13.25 12.5858 13.5858 12.25 14 12.25H15ZM15.75 10C15.75 9.58579 15.4142 9.25 15 9.25H14C13.5858 9.25 13.25 9.58579 13.25 10C13.25 10.4142 13.5858 10.75 14 10.75H15C15.4142 10.75 15.75 10.4142 15.75 10ZM15 6.25C15.4142 6.25 15.75 6.58579 15.75 7C15.75 7.41421 15.4142 7.75 15 7.75H14C13.5858 7.75 13.25 7.41421 13.25 7C13.25 6.58579 13.5858 6.25 14 6.25H15Z" class="uiIcons" />
3
- </svg>
@@ -1,6 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M15 12.25C15.4142 12.25 15.75 12.5858 15.75 13C15.75 13.4142 15.4142 13.75 15 13.75H14C13.5858 13.75 13.25 13.4142 13.25 13C13.25 12.5858 13.5858 12.25 14 12.25H15Z" class="uiIcons" />
3
- <path d="M15.75 10C15.75 9.58579 15.4142 9.25 15 9.25H14C13.5858 9.25 13.25 9.58579 13.25 10C13.25 10.4142 13.5858 10.75 14 10.75H15C15.4142 10.75 15.75 10.4142 15.75 10Z" class="uiIcons" />
4
- <path d="M15 6.25C15.4142 6.25 15.75 6.58579 15.75 7C15.75 7.41421 15.4142 7.75 15 7.75H14C13.5858 7.75 13.25 7.41421 13.25 7C13.25 6.58579 13.5858 6.25 14 6.25H15Z" class="uiIcons" />
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.25 3C3.00736 3 2 4.00736 2 5.25V14.75C2 15.9926 3.00736 17 4.25 17H15.75C16.9926 17 18 15.9926 18 14.75V5.25C18 4.00736 16.9926 3 15.75 3H4.25ZM3.5 5.25C3.5 4.83579 3.83579 4.5 4.25 4.5H11V15.5H4.25C3.83579 15.5 3.5 15.1642 3.5 14.75V5.25ZM12.5 15.5V4.5H15.75C16.1642 4.5 16.5 4.83579 16.5 5.25V14.75C16.5 15.1642 16.1642 15.5 15.75 15.5H12.5Z" class="uiIcons" />
6
- </svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path fill-rule="evenodd" clip-rule="evenodd" d="M3 5.5C3 4.11929 4.11929 3 5.5 3H14.5C15.8807 3 17 4.11929 17 5.5V14.5C17 15.8807 15.8807 17 14.5 17H5.5C4.11929 17 3 15.8807 3 14.5V5.5ZM13 15.5H14.5C15.0523 15.5 15.5 15.0523 15.5 14.5V5.5C15.5 4.94772 15.0523 4.5 14.5 4.5H13V15.5ZM11.5 4.5V15.5H5.5C4.94771 15.5 4.5 15.0523 4.5 14.5V5.5C4.5 4.94771 4.94772 4.5 5.5 4.5H11.5Z" class="uiIcons"></path></svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M7.59712 3.10698C7.76708 3.03652 7.94929 3.00017 8.13333 3C8.31738 3.00017 8.49958 3.03652 8.66955 3.10698C8.83951 3.17743 8.99391 3.28062 9.12391 3.41063C9.25392 3.54064 9.35699 3.69494 9.42724 3.86471C9.49749 4.03448 9.53354 4.2164 9.53333 4.40008V5.79991H8.13333C7.94931 5.79974 7.76713 5.76339 7.59718 5.69295C7.42723 5.62251 7.27285 5.51935 7.14284 5.38937C7.01284 5.25938 6.90977 5.10512 6.8395 4.93537C6.76924 4.76563 6.73316 4.58374 6.73333 4.40008C6.73313 4.2164 6.76918 4.03448 6.83943 3.86471C6.90968 3.69494 7.01275 3.54064 7.14275 3.41063C7.27276 3.28062 7.42715 3.17743 7.59712 3.10698ZM4.4 6.73347H8.13333C8.31735 6.73364 8.49954 6.76998 8.66949 6.84042C8.83944 6.91086 8.99382 7.01402 9.12382 7.144C9.25382 7.27399 9.3569 7.42826 9.42716 7.598C9.49743 7.76774 9.5335 7.94963 9.53333 8.13329C9.53354 8.31697 9.49749 8.49889 9.42724 8.66866C9.35699 8.83843 9.25392 8.99273 9.12391 9.12275C8.99391 9.25276 8.83951 9.35594 8.66955 9.4264C8.49958 9.49685 8.31738 9.5332 8.13333 9.53337H4.4C4.21596 9.5332 4.03375 9.49685 3.86379 9.4264C3.69382 9.35594 3.53943 9.25276 3.40942 9.12275C3.27942 8.99273 3.17635 8.83843 3.1061 8.66866C3.03585 8.49889 2.9998 8.31697 3 8.13329C2.99983 7.94963 3.03591 7.76774 3.10617 7.598C3.17644 7.42826 3.27951 7.27399 3.40951 7.144C3.53951 7.01402 3.6939 6.91086 3.86385 6.84042C4.03379 6.76998 4.21598 6.73364 4.4 6.73347ZM16.8938 7.598C16.9641 7.76774 17.0002 7.94963 17 8.13329C17.0002 8.31697 16.9642 8.49889 16.8939 8.66866C16.8237 8.83843 16.7206 8.99273 16.5906 9.12275C16.4606 9.25276 16.3062 9.35594 16.1362 9.4264C15.9663 9.49685 15.784 9.5332 15.6 9.53337H14.2V8.13329C14.1998 7.94963 14.2359 7.76774 14.3062 7.598C14.3764 7.42826 14.4795 7.27399 14.6095 7.144C14.7395 7.01402 14.8939 6.91086 15.0638 6.84042C15.2338 6.76998 15.416 6.73364 15.6 6.73347C15.784 6.73364 15.9662 6.76998 16.1362 6.84042C16.3061 6.91086 16.4605 7.01402 16.5905 7.144C16.7205 7.27399 16.8236 7.42826 16.8938 7.598ZM13.2667 4.40008V8.13329C13.2669 8.31697 13.2308 8.49889 13.1606 8.66866C13.0903 8.83843 12.9873 8.99273 12.8572 9.12275C12.7272 9.25276 12.5728 9.35594 12.4029 9.4264C12.2329 9.49685 12.0507 9.5332 11.8667 9.53337C11.6826 9.5332 11.5004 9.49685 11.3305 9.4264C11.1605 9.35594 11.0061 9.25276 10.8761 9.12275C10.7461 8.99273 10.643 8.83843 10.5728 8.66866C10.5025 8.49889 10.4665 8.31697 10.4667 8.13329V4.40008C10.4665 4.2164 10.5025 4.03448 10.5728 3.86471C10.643 3.69494 10.7461 3.54064 10.8761 3.41063C11.0061 3.28062 11.1605 3.17743 11.3305 3.10698C11.5004 3.03652 11.6826 3.00017 11.8667 3C12.0507 3.00017 12.2329 3.03652 12.4029 3.10698C12.5728 3.17743 12.7272 3.28062 12.8572 3.41063C12.9873 3.54064 13.0903 3.69494 13.1606 3.86471C13.2308 4.03448 13.2669 4.2164 13.2667 4.40008ZM11.8667 17C12.0507 16.9998 12.2329 16.9635 12.4029 16.893C12.5729 16.8226 12.7273 16.7194 12.8573 16.5894C12.9873 16.4593 13.0903 16.305 13.1606 16.1353C13.2308 15.9655 13.2669 15.7836 13.2667 15.5999C13.2668 15.4162 13.2308 15.2344 13.1605 15.0646C13.0902 14.8949 12.9872 14.7406 12.8572 14.6106C12.7272 14.4806 12.5728 14.3775 12.4028 14.307C12.2329 14.2366 12.0507 14.2003 11.8667 14.2001H10.4667V15.5999C10.4665 15.7836 10.5025 15.9655 10.5728 16.1353C10.643 16.305 10.7461 16.4593 10.8761 16.5894C11.0061 16.7194 11.1605 16.8226 11.3305 16.893C11.5004 16.9635 11.6826 16.9998 11.8667 17ZM11.8667 13.2665H15.6C15.784 13.2663 15.9662 13.23 16.1362 13.1596C16.3061 13.0891 16.4605 12.986 16.5905 12.856C16.7205 12.726 16.8236 12.5717 16.8938 12.402C16.9641 12.2322 17.0002 12.0504 17 11.8667C17.0002 11.683 16.9642 11.5011 16.8939 11.3313C16.8237 11.1616 16.7206 11.0073 16.5906 10.8772C16.4606 10.7472 16.3062 10.644 16.1362 10.5736C15.9663 10.5031 15.7841 10.4668 15.6 10.4666H11.8667C11.6826 10.4668 11.5004 10.5031 11.3305 10.5736C11.1605 10.644 11.0061 10.7472 10.8761 10.8772C10.7461 11.0073 10.643 11.1616 10.5728 11.3313C10.5025 11.5011 10.4665 11.683 10.4667 11.8667C10.4665 12.0504 10.5026 12.2322 10.5728 12.402C10.6431 12.5717 10.7462 12.726 10.8762 12.856C11.0062 12.986 11.1606 13.0891 11.3305 13.1596C11.5005 13.23 11.6827 13.2663 11.8667 13.2665ZM3.10617 12.402C3.03593 12.2323 2.99985 12.0505 3 11.8668C2.99978 11.6832 3.0358 11.5013 3.10602 11.3315C3.17626 11.1617 3.27932 11.0074 3.40933 10.8773C3.53934 10.7473 3.69374 10.6441 3.86373 10.5736C4.03371 10.5031 4.21594 10.4668 4.4 10.4666H5.8V11.8667C5.80017 12.0504 5.7641 12.2322 5.69383 12.402C5.62357 12.5717 5.52049 12.726 5.39049 12.856C5.26049 12.986 5.10611 13.0891 4.93616 13.1596C4.76621 13.23 4.58402 13.2663 4.4 13.2665C4.21598 13.2663 4.03379 13.23 3.86385 13.1596C3.6939 13.0891 3.53952 12.986 3.40951 12.856C3.27951 12.726 3.17644 12.5717 3.10617 12.402ZM3 11.8668C3 11.8668 3 11.8667 3 11.8667V11.867C3 11.8669 3 11.8669 3 11.8668ZM6.73333 15.5999V11.867C6.73313 11.6833 6.76918 11.5014 6.83943 11.3316C6.90968 11.1618 7.01275 11.0075 7.14275 10.8775C7.27276 10.7475 7.42715 10.6443 7.59712 10.5739C7.76708 10.5034 7.94929 10.467 8.13333 10.4669C8.31738 10.467 8.49958 10.5034 8.66955 10.5739C8.83951 10.6443 8.99391 10.7475 9.12391 10.8775C9.25392 11.0075 9.35699 11.1618 9.42724 11.3316C9.49749 11.5014 9.53354 11.6833 9.53333 11.867V15.5999C9.53354 15.7836 9.49749 15.9655 9.42724 16.1353C9.35699 16.305 9.25392 16.4593 9.12391 16.5894C8.99391 16.7194 8.83951 16.8226 8.66955 16.893C8.49958 16.9635 8.31738 16.9998 8.13333 17C7.94929 16.9998 7.76708 16.9635 7.59712 16.893C7.42715 16.8226 7.27276 16.7194 7.14275 16.5894C7.01275 16.4593 6.90968 16.305 6.83943 16.1353C6.76918 15.9655 6.73313 15.7836 6.73333 15.5999Z" />
3
- </svg>
@@ -1,4 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M14.1614 8.82828C14.4348 8.55491 14.4348 8.11169 14.1614 7.83833C13.8881 7.56496 13.4449 7.56496 13.1715 7.83833L11.5048 9.50499C11.2315 9.77836 11.2315 10.2216 11.5048 10.4949L13.1715 12.1616C13.4449 12.435 13.8881 12.435 14.1614 12.1616C14.4348 11.8882 14.4348 11.445 14.1614 11.1717L12.9898 9.99997L14.1614 8.82828Z" />
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18 5.75C18 4.23122 16.7688 3 15.25 3H4.75C3.23122 3 2 4.23122 2 5.75V14.25C2 15.7688 3.23122 17 4.75 17H15.25C16.7688 17 18 15.7688 18 14.25V5.75ZM15.25 4.5C15.9404 4.5 16.5 5.05964 16.5 5.75V14.25C16.5 14.9404 15.9404 15.5 15.25 15.5H8.75V4.5H15.25ZM7.25 4.5V15.5H4.75C4.05964 15.5 3.5 14.9404 3.5 14.25V5.75C3.5 5.05964 4.05964 4.5 4.75 4.5H7.25Z" />
4
- </svg>
@@ -1,4 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M11.5046 8.82828C11.2312 8.55491 11.2312 8.11169 11.5046 7.83833C11.7779 7.56496 12.2212 7.56496 12.4945 7.83833L14.1612 9.50499C14.4346 9.77836 14.4346 10.2216 14.1612 10.4949L12.4945 12.1616C12.2212 12.435 11.7779 12.435 11.5046 12.1616C11.2312 11.8882 11.2312 11.445 11.5046 11.1717L12.6763 9.99997L11.5046 8.82828Z" />
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18 5.75C18 4.23122 16.7688 3 15.25 3H4.75C3.23122 3 2 4.23122 2 5.75V14.25C2 15.7688 3.23122 17 4.75 17H15.25C16.7688 17 18 15.7688 18 14.25V5.75ZM15.25 4.5C15.9404 4.5 16.5 5.05964 16.5 5.75V14.25C16.5 14.9404 15.9404 15.5 15.25 15.5H8.75V4.5H15.25ZM7.25 4.5V15.5H4.75C4.05964 15.5 3.5 14.9404 3.5 14.25V5.75C3.5 5.05964 4.05964 4.5 4.75 4.5H7.25Z" />
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6.08333 3C6.49755 3 6.83333 3.33579 6.83333 3.75V14.436L8.88634 12.383C9.17923 12.0901 9.6541 12.0901 9.947 12.383C10.2399 12.6759 10.2399 13.1507 9.947 13.4436L6.61366 16.777C6.32077 17.0699 5.8459 17.0699 5.553 16.777L2.21967 13.4436C1.92678 13.1507 1.92678 12.6759 2.21967 12.383C2.51256 12.0901 2.98744 12.0901 3.28033 12.383L5.33333 14.436V3.75C5.33333 3.33579 5.66912 3 6.08333 3ZM8.83331 4.00001C8.83331 3.5858 9.1691 3.25001 9.58331 3.25001H17.25C17.6642 3.25001 18 3.5858 18 4.00001C18 4.41423 17.6642 4.75001 17.25 4.75001H9.58331C9.1691 4.75001 8.83331 4.41423 8.83331 4.00001ZM8.83331 7.00002C8.83331 6.58581 9.1691 6.25002 9.58331 6.25002H15.25C15.6642 6.25002 16 6.58581 16 7.00002C16 7.41424 15.6642 7.75002 15.25 7.75002H9.58331C9.1691 7.75002 8.83331 7.41424 8.83331 7.00002ZM8.83331 10C8.83331 9.5858 9.1691 9.25001 9.58331 9.25001H13.25C13.6642 9.25001 14 9.5858 14 10C14 10.4142 13.6642 10.75 13.25 10.75H9.58331C9.1691 10.75 8.83331 10.4142 8.83331 10Z" class="uiIcons"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6.08333 16.9966C6.49755 16.9966 6.83333 16.6608 6.83333 16.2466V5.56063L8.88634 7.61363C9.17923 7.90652 9.6541 7.90652 9.947 7.61363C10.2399 7.32074 10.2399 6.84586 9.947 6.55297L6.61366 3.21964C6.32077 2.92674 5.8459 2.92674 5.553 3.21964L2.21967 6.55297C1.92678 6.84586 1.92678 7.32074 2.21967 7.61363C2.51256 7.90652 2.98744 7.90652 3.28033 7.61363L5.33333 5.56063V16.2466C5.33333 16.6608 5.66912 16.9966 6.08333 16.9966ZM8.83331 15.9966C8.83331 16.4108 9.1691 16.7466 9.58331 16.7466H17.25C17.6642 16.7466 18 16.4108 18 15.9966C18 15.5824 17.6642 15.2466 17.25 15.2466H9.58331C9.1691 15.2466 8.83331 15.5824 8.83331 15.9966ZM8.83331 12.9966C8.83331 13.4108 9.1691 13.7466 9.58331 13.7466H15.25C15.6642 13.7466 16 13.4108 16 12.9966C16 12.5824 15.6642 12.2466 15.25 12.2466H9.58331C9.1691 12.2466 8.83331 12.5824 8.83331 12.9966ZM8.83331 9.9966C8.83331 10.4108 9.1691 10.7466 9.58331 10.7466H13.25C13.6642 10.7466 14 10.4108 14 9.9966C14 9.58239 13.6642 9.2466 13.25 9.2466H9.58331C9.1691 9.2466 8.83331 9.58239 8.83331 9.9966Z" class="uiIcons" />
4
- </svg>
@@ -1,4 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2 4.25C2 3.00736 3.00736 2 4.25 2H7C8.24264 2 9.25 3.00736 9.25 4.25V7C9.25 8.24264 8.24264 9.25 7 9.25H4.25C3.00736 9.25 2 8.24264 2 7V4.25ZM3.5 4.25C3.5 3.83579 3.83579 3.5 4.25 3.5H7C7.41421 3.5 7.75 3.83579 7.75 4.25V7C7.75 7.41421 7.41421 7.75 7 7.75H4.25C3.83579 7.75 3.5 7.41421 3.5 7V4.25ZM13 10.75C11.7574 10.75 10.75 11.7574 10.75 13V15.75C10.75 16.9926 11.7574 18 13 18H15.75C16.9926 18 18 16.9926 18 15.75V13C18 11.7574 16.9926 10.75 15.75 10.75H13ZM13 12.25C12.5858 12.25 12.25 12.5858 12.25 13V15.75C12.25 16.1642 12.5858 16.5 13 16.5H15.75C16.1642 16.5 16.5 16.1642 16.5 15.75V13C16.5 12.5858 16.1642 12.25 15.75 12.25H13ZM7.19458 10.9001C6.32772 10.0333 4.92228 10.0333 4.05542 10.9001L2.15014 12.8054C1.28329 13.6723 1.28329 15.0777 2.15014 15.9446L4.05542 17.8499C4.92228 18.7167 6.32772 18.7167 7.19458 17.8499L9.09986 15.9446C9.96671 15.0777 9.96671 13.6723 9.09986 12.8054L7.19458 10.9001ZM6.13392 11.9608C5.85285 11.6797 5.39715 11.6797 5.11608 11.9608L3.2108 13.8661C2.92973 14.1472 2.92973 14.6028 3.2108 14.8839L5.11608 16.7892C5.39715 17.0703 5.85285 17.0703 6.13392 16.7892L8.0392 14.8839C8.32027 14.6028 8.32027 14.1472 8.0392 13.8661L6.13392 11.9608ZM16.5 5.5C16.5 6.60457 15.6046 7.5 14.5 7.5C13.3954 7.5 12.5 6.60457 12.5 5.5C12.5 4.39543 13.3954 3.5 14.5 3.5C15.6046 3.5 16.5 4.39543 16.5 5.5ZM18 5.5C18 7.433 16.433 9 14.5 9C12.567 9 11 7.433 11 5.5C11 3.567 12.567 2 14.5 2C16.433 2 18 3.567 18 5.5Z"/>
3
- </svg>
4
-
@@ -1,4 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
2
- <path
3
- d="m12.267 7.325-3.575 3.583-1.375-1.375a.833.833 0 1 0-1.175 1.175L8.1 12.675a.834.834 0 0 0 1.175 0l4.167-4.167a.833.833 0 1 0-1.175-1.183ZM10 1.667a8.333 8.333 0 1 0 0 16.666 8.333 8.333 0 0 0 0-16.666Zm0 15a6.667 6.667 0 1 1 0-13.334 6.667 6.667 0 0 1 0 13.334Z" />
4
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3.5 5.75C3.5 5.33579 3.83579 5 4.25 5H15.75C16.1642 5 16.5 5.33579 16.5 5.75V15.75C16.5 16.1642 16.1642 16.5 15.75 16.5H4.25C3.83579 16.5 3.5 16.1642 3.5 15.75V5.75ZM4.25 2C3.00736 2 2 3.00736 2 4.25V15.75C2 16.9926 3.00736 18 4.25 18H15.75C16.9926 18 18 16.9926 18 15.75V4.25C18 3.00736 16.9926 2 15.75 2H4.25ZM8.47799 7.5C9.31857 6.65942 10.6814 6.65942 11.522 7.5L13.3696 9.34755C14.2101 10.1881 14.2101 11.551 13.3696 12.3916L11.522 14.2391C10.6814 15.0797 9.31857 15.0797 8.47799 14.2391L6.63044 12.3916C5.78985 11.551 5.78985 10.1881 6.63044 9.34755L8.47799 7.5ZM9.50651 8.52852C9.77906 8.25597 10.2209 8.25597 10.4935 8.52852L12.341 10.3761C12.6136 10.6486 12.6136 11.0905 12.341 11.3631L10.4935 13.2106C10.2209 13.4832 9.77906 13.4832 9.50651 13.2106L7.65896 11.3631C7.38641 11.0905 7.38641 10.6486 7.65896 10.3761L9.50651 8.52852Z"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M5.25 3C5.76932 3 6.23419 3.22765 6.55469 3.58691C7.02196 3.22023 7.60973 3 8.25 3H13.9609L14.1934 3.00977C15.3419 3.10665 16.32 3.91543 16.6191 5.0459L17.8096 9.5459L17.8486 9.70898C18.19 11.3953 16.9014 12.9998 15.1523 13H11.8262L12.624 15.167L12.6982 15.4033C13.0137 16.593 12.4564 17.8602 11.335 18.4209C11.0282 18.5741 10.6568 18.4997 10.4326 18.2402L6.16797 13.3037C6.0553 13.173 5.95656 13.0314 5.87109 12.8838C5.67782 12.9573 5.46907 13 5.25 13H3.75C2.7835 13 2 12.2165 2 11.25V4.75C2 3.7835 2.7835 3 3.75 3H5.25ZM8.25 4.5C7.55921 4.5 7 5.05921 7 5.75V11.25C7 11.302 6.99663 11.3534 6.99219 11.4043C6.9967 11.4376 6.99999 11.4714 7 11.5059C7 11.8055 7.10788 12.0961 7.30371 12.3232L11.0889 16.7061C11.2682 16.4426 11.3333 16.1089 11.248 15.7871L11.2158 15.6855L10.0459 12.5088C9.9614 12.2789 9.99473 12.0222 10.1348 11.8213C10.275 11.6201 10.5048 11.5 10.75 11.5H15.1523C15.9214 11.4998 16.4943 10.8172 16.3896 10.0781L16.3604 9.92969L15.1689 5.42969C15.033 4.91615 14.5884 4.54887 14.0664 4.50488L13.9609 4.5H8.25ZM3.75 4.5C3.61193 4.5 3.5 4.61193 3.5 4.75V11.25C3.5 11.3881 3.61193 11.5 3.75 11.5H5.25C5.38807 11.5 5.5 11.3881 5.5 11.25V4.75C5.5 4.61193 5.38807 4.5 5.25 4.5H3.75Z" />
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5234 1.6709C10.7489 1.48518 11.0667 1.44516 11.335 1.5791L11.5518 1.7002C12.5272 2.30812 12.9927 3.48614 12.6982 4.59668L12.624 4.83301L11.8262 7H15.1523C16.9014 7.00021 18.19 8.60471 17.8486 10.291L17.8096 10.4541L16.6191 14.9541C16.3 16.1601 15.2081 17 13.9609 17H8.25C7.60952 17 7.02203 16.779 6.55469 16.4121C6.23418 16.7717 5.76958 17 5.25 17H3.75C2.7835 17 2 16.2165 2 15.25V8.75C2 7.7835 2.7835 7 3.75 7H5.25C5.46895 7 5.67791 7.0418 5.87109 7.11524C5.95646 6.96785 6.05549 6.82772 6.16797 6.69727L10.4326 1.75977L10.5234 1.6709ZM3.75 8.5C3.61193 8.5 3.5 8.61193 3.5 8.75V15.25C3.5 15.3881 3.61193 15.5 3.75 15.5H5.25C5.38807 15.5 5.5 15.3881 5.5 15.25V8.75C5.5 8.61193 5.38807 8.5 5.25 8.5H3.75ZM7.30371 7.67676C7.1079 7.90393 7 8.19449 7 8.49414C6.99999 8.52797 6.99653 8.56111 6.99219 8.59375C6.99675 8.64525 7 8.69732 7 8.75V14.25L7.00684 14.3779C7.07087 15.0085 7.60244 15.5 8.25 15.5H13.9609C14.5277 15.5 15.024 15.1181 15.1689 14.5703L16.3604 10.0703L16.3896 9.92188C16.4943 9.18275 15.9214 8.50021 15.1523 8.5H10.75C10.5048 8.5 10.275 8.37983 10.1348 8.17871C9.99474 7.97777 9.96143 7.72109 10.0459 7.49121L11.2158 4.31446L11.248 4.21289C11.3333 3.8908 11.2685 3.55656 11.0889 3.29297L7.30371 7.67676Z" />
3
- </svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><g class="typeIcons"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 8C14 10.7614 11.7614 13 9 13C6.23858 13 4 10.7614 4 8C4 5.23858 6.23858 3 9 3C11.7614 3 14 5.23858 14 8ZM12 8C12 9.65685 10.6569 11 9 11C7.34315 11 6 9.65685 6 8C6 6.34315 7.34315 5 9 5C10.6569 5 12 6.34315 12 8Z" class="typeIcons"></path><path d="M8.99996 14.5C9.40591 14.5 9.80317 14.4628 10.1885 14.3916C10.6919 14.7734 11.3194 15 12 15C13.6568 15 15 13.6568 15 12C15 11.6231 14.9305 11.2625 14.8036 10.9302C15.1899 10.1666 15.4299 9.31636 15.4868 8.41644C16.4202 9.3248 17 10.5947 17 12C17 14.7614 14.7614 17 12 17C10.086 17 8.42322 15.9246 7.58289 14.3451C8.03904 14.4465 8.51326 14.5 8.99996 14.5Z" class="typeIcons"></path></g></svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.472 15.808C8.664 15.68 8.80267 15.5306 8.888 15.36L10.344 9.40796L10.4904 8.81595H12.199C12.6547 8.81595 13.024 8.44659 13.024 7.99095C13.024 7.53532 12.6547 7.16595 12.199 7.16595H10.9101L11.208 6.03196C11.2827 5.75463 11.4427 5.51996 11.688 5.32796C11.944 5.12529 12.2533 5.02396 12.616 5.02396C12.936 5.02396 13.16 5.09863 13.288 5.24796C13.416 5.39729 13.5173 5.60529 13.592 5.87196C13.656 6.07463 13.7147 6.21863 13.768 6.30396C13.832 6.38929 13.9333 6.43196 14.072 6.43196C14.456 6.43196 14.7067 6.35196 14.824 6.19196C14.952 6.03196 15.016 5.81863 15.016 5.55196C15.016 5.21063 14.9253 4.87463 14.744 4.54396C14.5627 4.21329 14.2907 3.94129 13.928 3.72796C13.5653 3.51463 13.1387 3.40796 12.648 3.40796C11.624 3.40796 10.8293 3.69596 10.264 4.27196C9.70933 4.83729 9.304 5.67463 9.048 6.78396L8.96516 7.16595H7.84905C7.39341 7.16595 7.02405 7.53532 7.02405 7.99095C7.02405 8.44659 7.39341 8.81595 7.84905 8.81595H8.56659L8.36 9.56796L7 15.12V15.216C7 15.4506 7.096 15.6373 7.288 15.776C7.49067 15.9253 7.688 16 7.88 16C8.09333 16 8.29067 15.936 8.472 15.808Z" class="typeIcons"></path></svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M14.75 3C15.9926 3 17 4.0074 17 5.25V14.75C17 15.9926 15.9926 17 14.75 17H5.25C4.00736 17 3 15.9926 3 14.75V5.25C3 4.0074 4.00736 3 5.25 3H14.75ZM5.2998 7C5.13427 7.00011 5.00011 7.13427 5 7.2998V7.71582C5 7.88144 5.13421 8.0165 5.2998 8.0166H6.26172V11.9834H5.2998C5.13421 11.9835 5 12.1186 5 12.2842V12.7002C5.00011 12.8657 5.13427 12.9999 5.2998 13H8.42285C8.58847 13 8.72255 12.8658 8.72266 12.7002V12.2842C8.72266 12.1185 8.58854 11.9834 8.42285 11.9834H7.46191V8.0166H8.42285C8.58854 8.0166 8.72266 7.88151 8.72266 7.71582V7.2998C8.72255 7.13421 8.58847 7 8.42285 7H5.2998ZM11.0127 7C10.8473 7.00026 10.713 7.13437 10.7129 7.2998V12.7002C10.713 12.8656 10.8473 12.9997 11.0127 13H12.125C13.0725 13 13.8111 12.7652 14.2959 12.2588C14.7778 11.7525 14.9999 10.9879 15 10.0059C15 9.01903 14.7779 8.25162 14.2959 7.74512C13.8111 7.23599 13.0727 7 12.125 7H11.0127ZM11.9141 8.00098C12.4144 8.00097 13.0434 7.99129 13.3965 8.40723L13.3975 8.40918C13.6212 8.66853 13.7588 9.18092 13.7588 10.0059C13.7587 10.8219 13.6217 11.3323 13.3975 11.5947C13.0408 12.0074 12.4154 11.999 11.9141 11.999V8.00098Z" />
3
- </svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M7.875 18.5098L15.1953 9.18163C15.3359 9.00194 15.4062 8.83788 15.4062 8.65038C15.4062 8.33006 15.1562 8.08788 14.8125 8.08788H10.3438L12.6562 1.95506C12.9766 1.09569 12.0781 0.642564 11.5312 1.34569L4.21094 10.6738C4.07031 10.8457 4 11.0098 4 11.1973C4 11.5254 4.25 11.7676 4.59375 11.7676H9.0625L6.75 17.8926C6.42969 18.7519 7.32812 19.2129 7.875 18.5098ZM11.0234 10.4941H6.16406L10.4844 4.78319L8.375 9.3535H13.2422L8.92188 15.0723L11.0234 10.4941Z" class="typeIcons"></path></svg>
@@ -1,9 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <g id="type / url">
3
- <g id="Vector">
4
- <path d="M3.98203 8.8621C2.00599 10.8381 2.00599 14.0419 3.98203 16.018C5.95807 17.994 9.16186 17.994 11.1379 16.018L12.3579 14.798C12.6495 14.5064 12.6495 14.0337 12.3579 13.7422C12.0664 13.4506 11.5937 13.4506 11.3021 13.7422L10.0821 14.9622C8.68917 16.3551 6.43076 16.3551 5.03781 14.9622C3.64487 13.5692 3.64487 11.3108 5.03781 9.91788L6.25783 8.69787C6.54938 8.40632 6.54938 7.93363 6.25783 7.64208C5.96628 7.35054 5.49359 7.35054 5.20205 7.64208L3.98203 8.8621Z" />
5
- <path d="M7.03207 11.9121C6.74052 12.2037 6.74052 12.6764 7.03207 12.9679C7.32362 13.2595 7.79631 13.2595 8.08785 12.9679L12.9679 8.08786C13.2595 7.79631 13.2595 7.32362 12.9679 7.03207C12.6764 6.74053 12.2037 6.74053 11.9121 7.03207L7.03207 11.9121Z" />
6
- <path d="M7.64208 5.20205C7.35053 5.49359 7.35053 5.96629 7.64208 6.25783C7.93363 6.54938 8.40632 6.54938 8.69786 6.25783L9.91788 5.03781C11.3108 3.64487 13.5692 3.64487 14.9622 5.03781C16.3551 6.43076 16.3551 8.68917 14.9622 10.0821L13.7422 11.3021C13.4506 11.5937 13.4506 12.0664 13.7422 12.3579C14.0337 12.6495 14.5064 12.6495 14.7979 12.3579L16.018 11.1379C17.994 9.16186 17.994 5.95807 16.018 3.98203C14.0419 2.00599 10.8381 2.00599 8.8621 3.98203L7.64208 5.20205Z" />
7
- </g>
8
- </g>
9
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd"
3
- d="M5.25 17C4.00736 17 3 15.9926 3 14.75V5.25C3 4.0074 4.00736 3 5.25 3H14.75C15.9926 3 17 4.0074 17 5.25V14.75C17 15.9926 15.9926 17 14.75 17H5.25ZM7.61243 14.0041C7.46301 14.4898 7.22644 14.6952 6.80933 14.6952C6.3175 14.6952 6 14.4088 6 13.9543C6 13.8298 6.03113 13.6555 6.10583 13.4626L8.71436 6.37158C8.93225 5.77392 9.29333 5.5 9.87854 5.5C10.47 5.5 10.8311 5.76147 11.0552 6.36536L13.6699 13.4626C13.7446 13.668 13.7757 13.8112 13.7757 13.9543C13.7757 14.3902 13.4396 14.6952 12.9727 14.6952C12.5369 14.6952 12.2941 14.496 12.1509 14.0166L11.5594 12.2983H8.20385L7.61243 14.0041ZM9.84741 7.19336L8.58362 11.0284H11.1672L9.891 7.19336H9.84741Z" />
4
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd"
3
- d="M4.25 16C3.00736 16 2 14.9926 2 13.75V6.25C2 5.0074 3.00736 4 4.25 4H15.75C16.9926 4 18 5.0074 18 6.25V13.75C18 14.9926 16.9926 16 15.75 16H4.25ZM4.6245 13.5C4.94636 13.5 5.12891 13.3436 5.2442 12.9739L5.70056 11.6754H8.28984L8.74621 12.9834C8.8567 13.3484 9.04405 13.5 9.38031 13.5C9.74062 13.5 10 13.2678 10 12.936C10 12.827 9.97598 12.718 9.91834 12.5616L7.90073 7.15877C7.72779 6.69905 7.44917 6.5 6.9928 6.5C6.54124 6.5 6.26261 6.70853 6.09448 7.16351L4.08167 12.5616C4.02402 12.7085 4 12.8412 4 12.936C4 13.282 4.245 13.5 4.6245 13.5ZM5.9936 10.7086L6.96878 7.7891H7.00241L7.9872 10.7086H5.9936ZM11.5229 13.5H13.7031C15.1364 13.5 16 12.7529 16 11.5208C16 10.5894 15.3838 9.91511 14.4687 9.80838V9.76958C15.141 9.65316 15.6686 8.98856 15.6686 8.24636C15.6686 7.18884 14.8842 6.5 13.6891 6.5H11.5229C11.1961 6.5 11 6.71345 11 7.06272V12.9373C11 13.2866 11.1961 13.5 11.5229 13.5ZM12.0458 9.47852V7.38773H13.437C14.1933 7.38773 14.6228 7.74671 14.6228 8.39674C14.6228 9.09044 14.1233 9.47852 13.2176 9.47852H12.0458ZM12.0458 12.6123V10.3081H13.4277C14.4174 10.3081 14.9309 10.6961 14.9309 11.4529C14.9309 12.2096 14.4314 12.6123 13.4883 12.6123H12.0458Z" />
4
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd"
3
- d="M8.25 14C7.00736 14 6 12.9926 6 11.75V8.25C6 7.0074 7.00736 6 8.25 6H11.75C12.9926 6 14 7.0074 14 8.25V11.75C14 12.9926 12.9926 14 11.75 14H8.25Z" />
4
- </svg>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Icon"><g class="uiIcons"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.78516 12.8272C4.16528 12.8081 3.56016 13.0184 3.08587 13.418C2.66719 13.7699 2.35481 14.2594 2.11993 14.7403C1.88102 15.2294 1.69851 15.7594 1.56158 16.2381C1.424 16.7191 1.32828 17.1631 1.26692 17.4862C1.23615 17.6483 1.21379 17.7812 1.19898 17.8746C1.19157 17.9214 1.18603 17.9583 1.18227 17.9842L1.17794 18.0146L1.17674 18.0233L1.17638 18.0259L1.17621 18.0272C1.14731 18.2434 1.22079 18.4609 1.37503 18.6152C1.52926 18.7694 1.74684 18.8429 1.96303 18.814L1.96428 18.8138L1.96694 18.8135L1.97562 18.8123L2.006 18.8079C2.03187 18.8042 2.06882 18.7986 2.11557 18.7912C2.209 18.7764 2.34189 18.754 2.50396 18.7233C2.82713 18.6619 3.27113 18.5662 3.75209 18.4286C4.23082 18.2917 4.76078 18.1092 5.24988 17.8703C5.73071 17.6354 6.2202 17.3231 6.57209 16.9044C7.38136 15.946 7.39073 14.4557 6.45355 13.5303L6.44498 13.5222C5.99626 13.0939 5.40517 12.8464 4.78516 12.8272ZM2.74855 17.2416C2.94071 17.1974 3.15024 17.1446 3.36708 17.0826C3.79877 16.9591 4.24485 16.8031 4.63543 16.6123C5.03403 16.4176 5.3276 16.2093 5.50067 16.0033L5.50206 16.0017C5.87395 15.5617 5.84921 14.9058 5.47399 14.5308C5.27543 14.3433 5.01498 14.235 4.74188 14.2266C4.46678 14.218 4.19823 14.3114 3.98776 14.4888L3.9869 14.4895C3.78086 14.6626 3.57258 14.9562 3.37788 15.3548C3.1871 15.7453 3.03107 16.1914 2.90759 16.6231C2.84557 16.84 2.79279 17.0495 2.74855 17.2416Z" class="uiIcons"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13.2182 3.81197C14.5074 3.10287 15.9342 2.68744 17.3967 2.59151C17.255 4.76847 16.3896 7.99807 12.7379 10.4503C11.8542 11.0084 10.9237 11.488 9.95689 11.8838L8.12298 10.0499C8.21402 9.85057 8.33207 9.59613 8.46695 9.31481C8.78693 8.64743 9.1897 7.85404 9.54681 7.28305C10.4545 5.83179 11.7183 4.63688 13.2182 3.81197ZM10.4867 13.1797C11.2354 12.8732 11.9639 12.5201 12.6681 12.1225C12.7033 12.3011 12.7367 12.4976 12.7632 12.7034C12.8155 13.1093 12.8385 13.5329 12.8027 13.9182C12.7663 14.3093 12.674 14.6103 12.5378 14.8148C12.2692 15.2159 11.6325 15.5704 10.9115 15.8319C10.7642 15.8854 10.6208 15.9324 10.4867 15.9731V13.1797ZM9.33806 17.4076C9.49737 17.5406 9.70748 17.596 9.91168 17.5589L9.91324 17.5587L9.91573 17.5582L9.92344 17.5568L9.94944 17.5518C9.97135 17.5475 10.0023 17.5413 10.0412 17.5331C10.1189 17.5167 10.2288 17.4923 10.3623 17.4591C10.6284 17.3931 10.9938 17.2913 11.3889 17.148C12.1322 16.8784 13.1619 16.3999 13.7018 15.5928L13.7024 15.5918C14.0161 15.1213 14.1487 14.5642 14.1967 14.0477C14.2452 13.5252 14.2119 12.9915 14.1517 12.5245C14.0912 12.0547 14.0009 11.6334 13.9262 11.3305L13.9258 11.3287C18.1642 8.26528 18.82 4.2 18.82 1.8702C18.82 1.4853 18.5092 1.17261 18.1243 1.17022C16.1738 1.15812 14.2526 1.64525 12.5435 2.58526C10.9897 3.43984 9.65819 4.64287 8.65184 6.09706C8.35011 6.01903 7.93542 5.92537 7.47385 5.86038C7.00661 5.79458 6.47206 5.75534 5.94841 5.7995C5.43079 5.84316 4.87119 5.97256 4.39838 6.28777L4.39745 6.28839C3.59035 6.82831 3.11178 7.85799 2.84216 8.6013C2.69886 8.99635 2.59709 9.36176 2.53108 9.62785C2.49795 9.76143 2.47351 9.87131 2.45712 9.94902C2.44892 9.98791 2.44271 10.0188 2.43843 10.0408L2.43344 10.0668L2.432 10.0745L2.43154 10.077L2.43126 10.0785C2.39419 10.2827 2.44964 10.4928 2.58264 10.6521C2.71564 10.8115 2.91247 10.9035 3.12 10.9035L6.99671 10.9035L9.08666 12.9935V16.8702C9.08666 17.0777 9.17874 17.2746 9.33806 17.4076ZM7.27864 7.2467C7.49622 7.27734 7.70337 7.31571 7.89 7.35549C7.64234 7.81362 7.40334 8.29492 7.20455 8.70954C7.05716 9.01695 6.92939 9.29295 6.83343 9.50354L4.0171 9.50354C4.05785 9.3694 4.10481 9.22604 4.15826 9.07869C4.41979 8.35767 4.7744 7.72089 5.17545 7.45231C5.37763 7.3177 5.67619 7.22743 6.06607 7.19455C6.45023 7.16215 6.87297 7.18957 7.27864 7.2467Z" class="uiIcons"/></g></svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.1557 5.65C13.1557 3.63416 11.5215 2 9.50567 2C7.48983 2 5.85567 3.63416 5.85567 5.65C5.85567 7.66584 7.48983 9.3 9.50567 9.3C11.5215 9.3 13.1557 7.66584 13.1557 5.65ZM11.6557 5.65C11.6557 4.46259 10.6931 3.5 9.50567 3.5C8.31825 3.5 7.35567 4.46259 7.35567 5.65C7.35567 6.83741 8.31825 7.8 9.50567 7.8C10.6931 7.8 11.6557 6.83741 11.6557 5.65ZM4.85562 16.5C4.64085 16.5 4.52607 16.3557 4.51788 16.2299C4.48342 15.7012 4.4937 15.1465 4.59883 14.7797C4.86675 13.8448 5.49673 13.2146 6.36615 12.8019C7.05749 12.4738 7.88803 12.2917 8.7585 12.2272C9.17158 12.1966 9.50785 11.8642 9.50785 11.45C9.50785 11.0358 9.17174 10.6971 8.75837 10.7236C7.71655 10.7904 6.65404 11.0049 5.72295 11.4468C4.54855 12.0043 3.5669 12.9356 3.15687 14.3665C2.97612 14.9972 2.98483 15.7718 3.02105 16.3275C3.08634 17.3292 3.94061 18 4.85562 18H8.75673C9.17094 18 9.50673 17.6642 9.50673 17.25C9.50673 16.8358 9.17094 16.5 8.75673 16.5H4.85562ZM15.5451 11C15.2417 11 14.9858 11.1351 14.8262 11.3559L12.588 14.3053L11.513 13.1806L11.512 13.1796C11.365 13.0279 11.1467 12.9149 10.8661 12.9149C10.419 12.9149 10.0056 13.2454 10.0056 13.7443C10.0056 13.949 10.087 14.1695 10.2197 14.3086L11.9763 16.1332C12.1566 16.3282 12.4317 16.4 12.6428 16.4C12.9207 16.4 13.1903 16.2946 13.3488 16.0932L16.2253 12.314L16.2262 12.3128C16.3395 12.1615 16.4056 11.9874 16.4056 11.8206C16.4056 11.3394 15.9922 11 15.5451 11Z"/>
3
- </svg>
@@ -1,15 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_11033_44381)">
3
- <mask id="mask0_11033_44381" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="2" y="2" width="16" height="16">
4
- <path d="M18 2H2V18H18V2Z"/>
5
- </mask>
6
- <g mask="url(#mask0_11033_44381)">
7
- <path d="M2 2H9.58482V9.58154H2V2ZM10.4152 2H18V9.58154H10.4152V2ZM2 10.4152H9.58482V18H2V10.4152ZM10.4152 10.4152H18V18H10.4152"/>
8
- </g>
9
- </g>
10
- <defs>
11
- <clipPath id="clip0_11033_44381">
12
- <rect width="16" height="16" transform="translate(2 2)"/>
13
- </clipPath>
14
- </defs>
15
- </svg>
@@ -1,3 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8.103 10.903L4.4 14.613V13.5C4.4 13.3143 4.32625 13.1363 4.19497 13.005C4.0637 12.8737 3.88565 12.8 3.7 12.8C3.51435 12.8 3.3363 12.8737 3.20503 13.005C3.07375 13.1363 3 13.3143 3 13.5V16.3C3.00111 16.3915 3.02013 16.4818 3.056 16.566C3.12703 16.737 3.26296 16.873 3.434 16.944C3.51816 16.9799 3.60853 16.9989 3.7 17H6.5C6.68565 17 6.8637 16.9263 6.99497 16.795C7.12625 16.6637 7.2 16.4857 7.2 16.3C7.2 16.1143 7.12625 15.9363 6.99497 15.805C6.8637 15.6737 6.68565 15.6 6.5 15.6H5.387L9.097 11.897C9.22881 11.7652 9.30286 11.5864 9.30286 11.4C9.30286 11.2136 9.22881 11.0348 9.097 10.903C8.96519 10.7712 8.78641 10.6971 8.6 10.6971C8.41359 10.6971 8.23481 10.7712 8.103 10.903ZM5.387 4.4H6.5C6.68565 4.4 6.8637 4.32625 6.99497 4.19497C7.12625 4.0637 7.2 3.88565 7.2 3.7C7.2 3.51435 7.12625 3.3363 6.99497 3.20503C6.8637 3.07375 6.68565 3 6.5 3H3.7C3.60853 3.00111 3.51816 3.02013 3.434 3.056C3.26296 3.12703 3.12703 3.26296 3.056 3.434C3.02013 3.51816 3.00111 3.60853 3 3.7V6.5C3 6.68565 3.07375 6.8637 3.20503 6.99497C3.3363 7.12625 3.51435 7.2 3.7 7.2C3.88565 7.2 4.0637 7.12625 4.19497 6.99497C4.32625 6.8637 4.4 6.68565 4.4 6.5V5.387L8.103 9.097C8.16807 9.16261 8.24549 9.21469 8.3308 9.25022C8.4161 9.28576 8.50759 9.30406 8.6 9.30406C8.69241 9.30406 8.7839 9.28576 8.8692 9.25022C8.9545 9.21469 9.03193 9.16261 9.097 9.097C9.16261 9.03193 9.21469 8.9545 9.25022 8.8692C9.28576 8.7839 9.30406 8.69241 9.30406 8.6C9.30406 8.50759 9.28576 8.4161 9.25022 8.3308C9.21469 8.24549 9.16261 8.16807 9.097 8.103L5.387 4.4ZM16.3 12.8C16.1143 12.8 15.9363 12.8737 15.805 13.005C15.6737 13.1363 15.6 13.3143 15.6 13.5V14.613L11.897 10.903C11.7652 10.7712 11.5864 10.6971 11.4 10.6971C11.2136 10.6971 11.0348 10.7712 10.903 10.903C10.7712 11.0348 10.6971 11.2136 10.6971 11.4C10.6971 11.5864 10.7712 11.7652 10.903 11.897L14.613 15.6H13.5C13.3143 15.6 13.1363 15.6737 13.005 15.805C12.8737 15.9363 12.8 16.1143 12.8 16.3C12.8 16.4857 12.8737 16.6637 13.005 16.795C13.1363 16.9263 13.3143 17 13.5 17H16.3C16.3915 16.9989 16.4818 16.9799 16.566 16.944C16.737 16.873 16.873 16.737 16.944 16.566C16.9799 16.4818 16.9989 16.3915 17 16.3V13.5C17 13.3143 16.9263 13.1363 16.795 13.005C16.6637 12.8737 16.4857 12.8 16.3 12.8ZM16.944 3.434C16.873 3.26296 16.737 3.12703 16.566 3.056C16.4818 3.02013 16.3915 3.00111 16.3 3H13.5C13.3143 3 13.1363 3.07375 13.005 3.20503C12.8737 3.3363 12.8 3.51435 12.8 3.7C12.8 3.88565 12.8737 4.0637 13.005 4.19497C13.1363 4.32625 13.3143 4.4 13.5 4.4H14.613L10.903 8.103C10.8374 8.16807 10.7853 8.24549 10.7498 8.3308C10.7142 8.4161 10.6959 8.50759 10.6959 8.6C10.6959 8.69241 10.7142 8.7839 10.7498 8.8692C10.7853 8.9545 10.8374 9.03193 10.903 9.097C10.9681 9.16261 11.0455 9.21469 11.1308 9.25022C11.2161 9.28576 11.3076 9.30406 11.4 9.30406C11.4924 9.30406 11.5839 9.28576 11.6692 9.25022C11.7545 9.21469 11.8319 9.16261 11.897 9.097L15.6 5.387V6.5C15.6 6.68565 15.6737 6.8637 15.805 6.99497C15.9363 7.12625 16.1143 7.2 16.3 7.2C16.4857 7.2 16.6637 7.12625 16.795 6.99497C16.9263 6.8637 17 6.68565 17 6.5V3.7C16.9989 3.60853 16.9799 3.51816 16.944 3.434Z"/>
3
- </svg>
@@ -1,7 +0,0 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Icon">
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M4.25 10C4.25 9.58579 4.58579 9.25 5 9.25L15 9.25C15.4142 9.25 15.75 9.58579 15.75 10C15.75 10.4142 15.4142 10.75 15 10.75H5C4.58579 10.75 4.25 10.4142 4.25 10Z"
6
- />
7
- </svg>
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes