@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,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/type/single-select.svg")
4
+ * @see import("../svg/type-single-select.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/type/text.svg")
4
+ * @see import("../svg/type-text.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -1,18 +1,18 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/bolt.svg")
4
+ * @see import("../svg/undo.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
8
8
  import {forwardRef} from "react";
9
- import BoltSvg from "../ast/bolt";
9
+ import UndoSvg from "../ast/undo";
10
10
  import {Icon} from "../icon";
11
11
  import type {IconBaseProps} from "../types";
12
12
 
13
- const Bolt = forwardRef<SVGSVGElement, IconBaseProps>(function Bolt(
13
+ const Undo = forwardRef<SVGSVGElement, IconBaseProps>(function Undo(
14
14
  props: IconBaseProps,
15
15
  ref: React.Ref<SVGSVGElement>
16
- ) {return <Icon {...props} className={props.className} ref={ref} icon={BoltSvg} />});
16
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={UndoSvg} />});
17
17
 
18
- export default Bolt;
18
+ export default Undo;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/units/avatar.svg")
4
+ * @see import("../svg/units-avatar.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/units/collection.svg")
4
+ * @see import("../svg/units-collection.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/units/counter.svg")
4
+ * @see import("../svg/units-counter.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/units/date.svg")
4
+ * @see import("../svg/units-date.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/units/field-icon-button.svg")
4
+ * @see import("../svg/units-field-icon-button.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/units/field.svg")
4
+ * @see import("../svg/units-field.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/units/input.svg")
4
+ * @see import("../svg/units-input.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was automatically generated. Do not edit manually.
3
+ *
4
+ * @see import("../svg/units-normal.svg")
5
+ * @see import("../../../scripts/generate-icons.mjs")
6
+ */
7
+
8
+ import {forwardRef} from "react";
9
+ import UnitsNormalSvg from "../ast/units-normal";
10
+ import {Icon} from "../icon";
11
+ import type {IconBaseProps} from "../types";
12
+
13
+ const UnitsNormal = forwardRef<SVGSVGElement, IconBaseProps>(function UnitsNormal(
14
+ props: IconBaseProps,
15
+ ref: React.Ref<SVGSVGElement>
16
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={UnitsNormalSvg} />});
17
+
18
+ export default UnitsNormal;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/units/progress-bar.svg")
4
+ * @see import("../svg/units-progress-bar.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/units/rich-text.svg")
4
+ * @see import("../svg/units-rich-text.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated. Do not edit manually.
3
3
  *
4
- * @see import("../svg/units/snippet.svg")
4
+ * @see import("../svg/units-snippet.svg")
5
5
  * @see import("../../../scripts/generate-icons.mjs")
6
6
  */
7
7
 
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was automatically generated. Do not edit manually.
3
+ *
4
+ * @see import("../svg/unlock.svg")
5
+ * @see import("../../../scripts/generate-icons.mjs")
6
+ */
7
+
8
+ import {forwardRef} from "react";
9
+ import UnlockSvg from "../ast/unlock";
10
+ import {Icon} from "../icon";
11
+ import type {IconBaseProps} from "../types";
12
+
13
+ const Unlock = forwardRef<SVGSVGElement, IconBaseProps>(function Unlock(
14
+ props: IconBaseProps,
15
+ ref: React.Ref<SVGSVGElement>
16
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={UnlockSvg} />});
17
+
18
+ export default Unlock;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was automatically generated. Do not edit manually.
3
+ *
4
+ * @see import("../svg/value-clear.svg")
5
+ * @see import("../../../scripts/generate-icons.mjs")
6
+ */
7
+
8
+ import {forwardRef} from "react";
9
+ import ValueClearSvg from "../ast/value-clear";
10
+ import {Icon} from "../icon";
11
+ import type {IconBaseProps} from "../types";
12
+
13
+ const ValueClear = forwardRef<SVGSVGElement, IconBaseProps>(function ValueClear(
14
+ props: IconBaseProps,
15
+ ref: React.Ref<SVGSVGElement>
16
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={ValueClearSvg} />});
17
+
18
+ export default ValueClear;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was automatically generated. Do not edit manually.
3
+ *
4
+ * @see import("../svg/view-app.svg")
5
+ * @see import("../../../scripts/generate-icons.mjs")
6
+ */
7
+
8
+ import {forwardRef} from "react";
9
+ import ViewAppSvg from "../ast/view-app";
10
+ import {Icon} from "../icon";
11
+ import type {IconBaseProps} from "../types";
12
+
13
+ const ViewApp = forwardRef<SVGSVGElement, IconBaseProps>(function ViewApp(
14
+ props: IconBaseProps,
15
+ ref: React.Ref<SVGSVGElement>
16
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={ViewAppSvg} />});
17
+
18
+ export default ViewApp;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was automatically generated. Do not edit manually.
3
+ *
4
+ * @see import("../svg/workflow.svg")
5
+ * @see import("../../../scripts/generate-icons.mjs")
6
+ */
7
+
8
+ import {forwardRef} from "react";
9
+ import WorkflowSvg from "../ast/workflow";
10
+ import {Icon} from "../icon";
11
+ import type {IconBaseProps} from "../types";
12
+
13
+ const Workflow = forwardRef<SVGSVGElement, IconBaseProps>(function Workflow(
14
+ props: IconBaseProps,
15
+ ref: React.Ref<SVGSVGElement>
16
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={WorkflowSvg} />});
17
+
18
+ export default Workflow;
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.6605 2.66055C10.6605 2.29574 10.3648 2 9.99998 2C9.63517 2 9.33943 2.29574 9.33943 2.66055V4.12844C9.33943 4.49325 9.63517 4.78899 9.99998 4.78899C10.3648 4.78899 10.6605 4.49325 10.6605 4.12844V2.66055ZM5.27735 4.3432C5.01939 4.08524 4.60115 4.08524 4.34319 4.3432C4.08523 4.60116 4.08523 5.01939 4.34319 5.27736L5.38099 6.31515C5.63895 6.57311 6.05719 6.57311 6.31515 6.31515C6.57311 6.05719 6.57311 5.63896 6.31515 5.38099L5.27735 4.3432ZM15.6568 5.27736C15.9147 5.01939 15.9147 4.60116 15.6568 4.3432C15.3988 4.08524 14.9806 4.08524 14.7226 4.3432L13.6848 5.38099C13.4269 5.63896 13.4269 6.05719 13.6848 6.31515C13.9428 6.57311 14.361 6.57311 14.619 6.31515L15.6568 5.27736ZM11.3979 6.6354C10.9559 6.45457 10.4823 6.36358 10.0048 6.36773C9.52728 6.37188 9.05536 6.47109 8.6166 6.65957C8.17783 6.84805 7.781 7.12203 7.44925 7.46551C6.9479 7.9846 6.61793 8.63848 6.49433 9.33948H2.66052C2.29571 9.33948 1.99997 9.63522 1.99997 10C1.99997 10.3648 2.29571 10.6606 2.66052 10.6606H17.1284C17.4932 10.6606 17.789 10.3648 17.789 10C17.789 9.63522 17.4932 9.33948 17.1284 9.33948H13.5777C13.5333 9.08741 13.462 8.84018 13.3646 8.60212C13.1837 8.16014 12.9167 7.7586 12.579 7.42094C12.2414 7.08327 11.8398 6.81623 11.3979 6.6354ZM12.2239 9.33948C12.201 9.25915 12.1736 9.17999 12.1418 9.10237C12.0274 8.82276 11.8585 8.56872 11.6449 8.35509C11.4312 8.14147 11.1772 7.97252 10.8976 7.85812C10.618 7.74372 10.3184 7.68616 10.0163 7.68878C9.71417 7.69141 9.41561 7.75417 9.13803 7.87341C8.86044 7.99266 8.60938 8.16599 8.3995 8.3833C8.13773 8.65433 7.9498 8.98345 7.84818 9.33948H12.2239ZM3.99997 13C3.99997 12.6352 4.29571 12.3395 4.66052 12.3395H15.1284C15.4932 12.3395 15.789 12.6352 15.789 13C15.789 13.3648 15.4932 13.6606 15.1284 13.6606H4.66052C4.29571 13.6606 3.99997 13.3648 3.99997 13ZM5.99997 16C5.99997 15.6352 6.29571 15.3395 6.66052 15.3395H13.1284C13.4932 15.3395 13.789 15.6352 13.789 16C13.789 16.3648 13.4932 16.6606 13.1284 16.6606H6.66052C6.29571 16.6606 5.99997 16.3648 5.99997 16Z"/>
2
+ <path d="M15.75 2C16.9926 2 18 3.00736 18 4.25V12.5C18 13.7426 16.9926 14.75 15.75 14.75H10.75V16.5H13.5C13.9142 16.5 14.25 16.8358 14.25 17.25C14.25 17.6642 13.9142 18 13.5 18H6.5C6.08579 18 5.75 17.6642 5.75 17.25C5.75 16.8358 6.08579 16.5 6.5 16.5H9.25V14.75H4.25C3.00736 14.75 2 13.7426 2 12.5V4.25C2 3.00736 3.00736 2 4.25 2H15.75ZM4.25 3.5C3.83579 3.5 3.5 3.83579 3.5 4.25V12.5C3.5 12.9142 3.83579 13.25 4.25 13.25H15.75C16.1642 13.25 16.5 12.9142 16.5 12.5V4.25C16.5 3.83579 16.1642 3.5 15.75 3.5H4.25ZM14.5 5C14.7823 5 14.9995 5.00002 14.9941 5.23633C14.9995 5.49991 14.9183 5.5553 14.7822 5.64844L5.75488 11.8252C5.58859 11.9389 5.37396 12.0242 5.20996 11.9072C5.0829 11.8166 5 11.668 5 11.5V5.5C5 5.22386 5.22386 5 5.5 5H14.5Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M5.43433 7.83431C5.74675 7.52189 6.25328 7.52189 6.5657 7.83431L10 11.2686L13.4343 7.83431C13.7467 7.52189 14.2533 7.52189 14.5657 7.83431C14.8781 8.14673 14.8781 8.65326 14.5657 8.96568L10.5657 12.9656C10.2533 13.2781 9.74675 13.2781 9.43433 12.9656L5.43433 8.96568C5.12191 8.65326 5.12191 8.14673 5.43433 7.83431Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.43433 7.83431C5.74675 7.52189 6.25328 7.52189 6.5657 7.83431L10 11.2686L13.4343 7.83431C13.7467 7.52189 14.2533 7.52189 14.5657 7.83431C14.8781 8.14673 14.8781 8.65326 14.5657 8.96568L10.5657 12.9656C10.2533 13.2781 9.74675 13.2781 9.43433 12.9656L5.43433 8.96568C5.12191 8.65326 5.12191 8.14673 5.43433 7.83431Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12.5303 5.21967C12.2374 4.92678 11.7626 4.92678 11.4697 5.21967C11.1768 5.51256 11.1768 5.98744 11.4697 6.28033L14.4393 9.25H3.75C3.33579 9.25 3 9.58579 3 10C3 10.4142 3.33579 10.75 3.75 10.75H14.4393L11.4697 13.7197C11.1768 14.0126 11.1768 14.4874 11.4697 14.7803C11.7626 15.0732 12.2374 15.0732 12.5303 14.7803L16.7803 10.5303C16.9268 10.3839 17 10.1919 17 10C17 9.89831 16.9798 9.80134 16.9431 9.71291C16.9065 9.62445 16.8522 9.54158 16.7803 9.46967L12.5303 5.21967Z" fill="black"/>
2
+ <path d="M12.5303 5.21967C12.2374 4.92678 11.7626 4.92678 11.4697 5.21967C11.1768 5.51256 11.1768 5.98744 11.4697 6.28033L14.4393 9.25H3.75C3.33579 9.25 3 9.58579 3 10C3 10.4142 3.33579 10.75 3.75 10.75H14.4393L11.4697 13.7197C11.1768 14.0126 11.1768 14.4874 11.4697 14.7803C11.7626 15.0732 12.2374 15.0732 12.5303 14.7803L16.7803 10.5303C16.9268 10.3839 17 10.1919 17 10C17 9.89831 16.9798 9.80134 16.9431 9.71291C16.9065 9.62445 16.8522 9.54158 16.7803 9.46967L12.5303 5.21967Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.1657 5.43427C12.4781 5.74669 12.4781 6.25322 12.1657 6.56564L8.73137 9.99995L12.1657 13.4343C12.4781 13.7467 12.4781 14.2532 12.1657 14.5656C11.8533 14.8781 11.3467 14.8781 11.0343 14.5656L7.03432 10.5656C6.7219 10.2532 6.7219 9.74669 7.03432 9.43427L11.0343 5.43427C11.3467 5.12185 11.8533 5.12185 12.1657 5.43427Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.1657 5.43427C12.4781 5.74669 12.4781 6.25322 12.1657 6.56564L8.73137 9.99995L12.1657 13.4343C12.4781 13.7467 12.4781 14.2532 12.1657 14.5656C11.8533 14.8781 11.3467 14.8781 11.0343 14.5656L7.03432 10.5656C6.7219 10.2532 6.7219 9.74669 7.03432 9.43427L11.0343 5.43427C11.3467 5.12185 11.8533 5.12185 12.1657 5.43427Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M7.83431 14.5656C7.52189 14.2532 7.52189 13.7467 7.83431 13.4343L11.2686 9.99995L7.83431 6.56564C7.52189 6.25322 7.52189 5.74669 7.83431 5.43427C8.14673 5.12185 8.65326 5.12185 8.96568 5.43427L12.9657 9.43427C13.2781 9.74669 13.2781 10.2532 12.9657 10.5656L8.96568 14.5656C8.65326 14.8781 8.14673 14.8781 7.83431 14.5656Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.83431 14.5656C7.52189 14.2532 7.52189 13.7467 7.83431 13.4343L11.2686 9.99995L7.83431 6.56564C7.52189 6.25322 7.52189 5.74669 7.83431 5.43427C8.14673 5.12185 8.65326 5.12185 8.96568 5.43427L12.9657 9.43427C13.2781 9.74669 13.2781 10.2532 12.9657 10.5656L8.96568 14.5656C8.65326 14.8781 8.14673 14.8781 7.83431 14.5656Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14.5657 12.1656C14.2533 12.4781 13.7467 12.4781 13.4343 12.1656L10 8.73137L6.5657 12.1656C6.25328 12.4781 5.74675 12.4781 5.43433 12.1656C5.12191 11.8532 5.12191 11.3467 5.43433 11.0343L9.43433 7.03432C9.74675 6.7219 10.2533 6.7219 10.5657 7.03432L14.5657 11.0343C14.8781 11.3467 14.8781 11.8532 14.5657 12.1656Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.5657 12.1656C14.2533 12.4781 13.7467 12.4781 13.4343 12.1656L10 8.73137L6.5657 12.1656C6.25328 12.4781 5.74675 12.4781 5.43433 12.1656C5.12191 11.8532 5.12191 11.3467 5.43433 11.0343L9.43433 7.03432C9.74675 6.7219 10.2533 6.7219 10.5657 7.03432L14.5657 11.0343C14.8781 11.3467 14.8781 11.8532 14.5657 12.1656Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" >
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.75 14.25C10.75 14.6642 10.4142 15 10 15C9.58579 15 9.25 14.6642 9.25 14.25V11.8107L7.52512 13.5355C7.23223 13.8284 6.75734 13.8284 6.46446 13.5355C6.17157 13.2426 6.17157 12.7678 6.46446 12.4749L8.18933 10.75H5.75C5.33579 10.75 5 10.4142 5 10C5 9.58579 5.33579 9.25 5.75 9.25H8.18933L6.46446 7.52513C6.17157 7.23224 6.17157 6.75736 6.46446 6.46447C6.75734 6.17158 7.23223 6.17158 7.52512 6.46447L9.25 8.18935V5.75C9.25 5.33579 9.58579 5 10 5C10.4142 5 10.75 5.33579 10.75 5.75V8.18933L12.4749 6.46447C12.7677 6.17158 13.2426 6.17158 13.5355 6.46447C13.8284 6.75735 13.8284 7.23224 13.5355 7.52513L11.8107 9.25H14.25C14.6642 9.25 15 9.58579 15 10C15 10.4142 14.6642 10.75 14.25 10.75H11.8107L13.5355 12.4749C13.8284 12.7678 13.8284 13.2427 13.5355 13.5355C13.2426 13.8284 12.7677 13.8284 12.4749 13.5355L10.75 11.8107V14.25Z" fill="black"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.75 14.25C10.75 14.6642 10.4142 15 10 15C9.58579 15 9.25 14.6642 9.25 14.25V11.8107L7.52512 13.5355C7.23223 13.8284 6.75734 13.8284 6.46446 13.5355C6.17157 13.2426 6.17157 12.7678 6.46446 12.4749L8.18933 10.75H5.75C5.33579 10.75 5 10.4142 5 10C5 9.58579 5.33579 9.25 5.75 9.25H8.18933L6.46446 7.52513C6.17157 7.23224 6.17157 6.75736 6.46446 6.46447C6.75734 6.17158 7.23223 6.17158 7.52512 6.46447L9.25 8.18935V5.75C9.25 5.33579 9.58579 5 10 5C10.4142 5 10.75 5.33579 10.75 5.75V8.18933L12.4749 6.46447C12.7677 6.17158 13.2426 6.17158 13.5355 6.46447C13.8284 6.75735 13.8284 7.23224 13.5355 7.52513L11.8107 9.25H14.25C14.6642 9.25 15 9.58579 15 10C15 10.4142 14.6642 10.75 14.25 10.75H11.8107L13.5355 12.4749C13.8284 12.7678 13.8284 13.2427 13.5355 13.5355C13.2426 13.8284 12.7677 13.8284 12.4749 13.5355L10.75 11.8107V14.25Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M13.0919 6.90852C13.0144 6.83041 12.9222 6.76842 12.8207 6.72611C12.7191 6.6838 12.6102 6.66202 12.5002 6.66202C12.3902 6.66202 12.2813 6.6838 12.1797 6.72611C12.0782 6.76842 11.986 6.83041 11.9085 6.90852L10.0002 8.82519L8.09185 6.90852C7.93493 6.7516 7.72211 6.66344 7.50019 6.66344C7.27827 6.66344 7.06544 6.7516 6.90852 6.90852C6.7516 7.06544 6.66344 7.27827 6.66344 7.50019C6.66344 7.72211 6.7516 7.93493 6.90852 8.09185L8.82519 10.0002L6.90852 11.9085C6.83041 11.986 6.76842 12.0782 6.72611 12.1797C6.6838 12.2813 6.66202 12.3902 6.66202 12.5002C6.66202 12.6102 6.6838 12.7191 6.72611 12.8207C6.76842 12.9222 6.83041 13.0144 6.90852 13.0919C6.98599 13.17 7.07816 13.232 7.17971 13.2743C7.28126 13.3166 7.39018 13.3384 7.50019 13.3384C7.6102 13.3384 7.71912 13.3166 7.82067 13.2743C7.92222 13.232 8.01439 13.17 8.09185 13.0919L10.0002 11.1752L11.9085 13.0919C11.986 13.17 12.0782 13.232 12.1797 13.2743C12.2813 13.3166 12.3902 13.3384 12.5002 13.3384C12.6102 13.3384 12.7191 13.3166 12.8207 13.2743C12.9222 13.232 13.0144 13.17 13.0919 13.0919C13.17 13.0144 13.232 12.9222 13.2743 12.8207C13.3166 12.7191 13.3384 12.6102 13.3384 12.5002C13.3384 12.3902 13.3166 12.2813 13.2743 12.1797C13.232 12.0782 13.17 11.986 13.0919 11.9085L11.1752 10.0002L13.0919 8.09185C13.17 8.01439 13.232 7.92222 13.2743 7.82067C13.3166 7.71912 13.3384 7.6102 13.3384 7.50019C13.3384 7.39018 13.3166 7.28126 13.2743 7.17971C13.232 7.07816 13.17 6.98599 13.0919 6.90852V6.90852ZM15.8919 4.10852C15.1231 3.3126 14.2036 2.67775 13.1869 2.24101C12.1702 1.80427 11.0767 1.57438 9.9702 1.56477C8.8637 1.55515 7.76637 1.766 6.74224 2.18501C5.7181 2.60401 4.78767 3.22279 4.00523 4.00523C3.22279 4.78767 2.60401 5.7181 2.18501 6.74224C1.766 7.76637 1.55515 8.8637 1.56477 9.9702C1.57438 11.0767 1.80427 12.1702 2.24101 13.1869C2.67775 14.2036 3.3126 15.1231 4.10852 15.8919C4.87724 16.6878 5.79678 17.3226 6.81348 17.7594C7.83018 18.1961 8.92368 18.426 10.0302 18.4356C11.1367 18.4452 12.234 18.2344 13.2581 17.8154C14.2823 17.3964 15.2127 16.7776 15.9951 15.9951C16.7776 15.2127 17.3964 14.2823 17.8154 13.2581C18.2344 12.234 18.4452 11.1367 18.4356 10.0302C18.426 8.92368 18.1961 7.83018 17.7594 6.81348C17.3226 5.79678 16.6878 4.87724 15.8919 4.10852V4.10852ZM14.7169 14.7169C13.6269 15.808 12.1923 16.4875 10.6575 16.6396C9.12273 16.7917 7.58269 16.4069 6.29979 15.5508C5.01689 14.6948 4.07049 13.4204 3.62183 11.9448C3.17318 10.4692 3.25003 8.88364 3.83928 7.45834C4.42854 6.03304 5.49375 4.85614 6.85343 4.12816C8.21311 3.40017 9.78314 3.16613 11.296 3.46592C12.8089 3.7657 14.1711 4.58076 15.1504 5.77224C16.1297 6.96371 16.6656 8.45789 16.6669 10.0002C16.6698 10.8763 16.499 11.7442 16.1643 12.5538C15.8296 13.3635 15.3376 14.0986 14.7169 14.7169V14.7169Z" fill="#E5484D"/>
2
+ <path d="M13.0919 6.90852C13.0144 6.83041 12.9222 6.76842 12.8207 6.72611C12.7191 6.6838 12.6102 6.66202 12.5002 6.66202C12.3902 6.66202 12.2813 6.6838 12.1797 6.72611C12.0782 6.76842 11.986 6.83041 11.9085 6.90852L10.0002 8.82519L8.09185 6.90852C7.93493 6.7516 7.72211 6.66344 7.50019 6.66344C7.27827 6.66344 7.06544 6.7516 6.90852 6.90852C6.7516 7.06544 6.66344 7.27827 6.66344 7.50019C6.66344 7.72211 6.7516 7.93493 6.90852 8.09185L8.82519 10.0002L6.90852 11.9085C6.83041 11.986 6.76842 12.0782 6.72611 12.1797C6.6838 12.2813 6.66202 12.3902 6.66202 12.5002C6.66202 12.6102 6.6838 12.7191 6.72611 12.8207C6.76842 12.9222 6.83041 13.0144 6.90852 13.0919C6.98599 13.17 7.07816 13.232 7.17971 13.2743C7.28126 13.3166 7.39018 13.3384 7.50019 13.3384C7.6102 13.3384 7.71912 13.3166 7.82067 13.2743C7.92222 13.232 8.01439 13.17 8.09185 13.0919L10.0002 11.1752L11.9085 13.0919C11.986 13.17 12.0782 13.232 12.1797 13.2743C12.2813 13.3166 12.3902 13.3384 12.5002 13.3384C12.6102 13.3384 12.7191 13.3166 12.8207 13.2743C12.9222 13.232 13.0144 13.17 13.0919 13.0919C13.17 13.0144 13.232 12.9222 13.2743 12.8207C13.3166 12.7191 13.3384 12.6102 13.3384 12.5002C13.3384 12.3902 13.3166 12.2813 13.2743 12.1797C13.232 12.0782 13.17 11.986 13.0919 11.9085L11.1752 10.0002L13.0919 8.09185C13.17 8.01439 13.232 7.92222 13.2743 7.82067C13.3166 7.71912 13.3384 7.6102 13.3384 7.50019C13.3384 7.39018 13.3166 7.28126 13.2743 7.17971C13.232 7.07816 13.17 6.98599 13.0919 6.90852V6.90852ZM15.8919 4.10852C15.1231 3.3126 14.2036 2.67775 13.1869 2.24101C12.1702 1.80427 11.0767 1.57438 9.9702 1.56477C8.8637 1.55515 7.76637 1.766 6.74224 2.18501C5.7181 2.60401 4.78767 3.22279 4.00523 4.00523C3.22279 4.78767 2.60401 5.7181 2.18501 6.74224C1.766 7.76637 1.55515 8.8637 1.56477 9.9702C1.57438 11.0767 1.80427 12.1702 2.24101 13.1869C2.67775 14.2036 3.3126 15.1231 4.10852 15.8919C4.87724 16.6878 5.79678 17.3226 6.81348 17.7594C7.83018 18.1961 8.92368 18.426 10.0302 18.4356C11.1367 18.4452 12.234 18.2344 13.2581 17.8154C14.2823 17.3964 15.2127 16.7776 15.9951 15.9951C16.7776 15.2127 17.3964 14.2823 17.8154 13.2581C18.2344 12.234 18.4452 11.1367 18.4356 10.0302C18.426 8.92368 18.1961 7.83018 17.7594 6.81348C17.3226 5.79678 16.6878 4.87724 15.8919 4.10852V4.10852ZM14.7169 14.7169C13.6269 15.808 12.1923 16.4875 10.6575 16.6396C9.12273 16.7917 7.58269 16.4069 6.29979 15.5508C5.01689 14.6948 4.07049 13.4204 3.62183 11.9448C3.17318 10.4692 3.25003 8.88364 3.83928 7.45834C4.42854 6.03304 5.49375 4.85614 6.85343 4.12816C8.21311 3.40017 9.78314 3.16613 11.296 3.46592C12.8089 3.7657 14.1711 4.58076 15.1504 5.77224C16.1297 6.96371 16.6656 8.45789 16.6669 10.0002C16.6698 10.8763 16.499 11.7442 16.1643 12.5538C15.8296 13.3635 15.3376 14.0986 14.7169 14.7169V14.7169Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8.33464 5.83317C8.11363 5.83317 7.90166 5.92097 7.74538 6.07725C7.5891 6.23353 7.50131 6.44549 7.50131 6.6665V13.3332C7.50131 13.5542 7.5891 13.7661 7.74538 13.9224C7.90166 14.0787 8.11363 14.1665 8.33464 14.1665C8.55565 14.1665 8.76761 14.0787 8.92389 13.9224C9.08018 13.7661 9.16797 13.5542 9.16797 13.3332V6.6665C9.16797 6.44549 9.08018 6.23353 8.92389 6.07725C8.76761 5.92097 8.55565 5.83317 8.33464 5.83317ZM10.0013 1.6665C8.35313 1.6665 6.74196 2.15525 5.37155 3.07092C4.00114 3.9866 2.93304 5.28809 2.30231 6.81081C1.67158 8.33353 1.50655 10.0091 1.8281 11.6256C2.14964 13.2421 2.94331 14.727 4.10875 15.8924C5.27419 17.0578 6.75905 17.8515 8.37555 18.173C9.99206 18.4946 11.6676 18.3296 13.1903 17.6988C14.7131 17.0681 16.0145 16 16.9302 14.6296C17.8459 13.2592 18.3346 11.648 18.3346 9.99984C18.3346 8.90549 18.1191 7.82186 17.7003 6.81081C17.2815 5.79976 16.6677 4.8811 15.8939 4.10728C15.12 3.33346 14.2014 2.71963 13.1903 2.30084C12.1793 1.88205 11.0957 1.6665 10.0013 1.6665V1.6665ZM10.0013 16.6665C8.68276 16.6665 7.39383 16.2755 6.2975 15.543C5.20118 14.8104 4.34669 13.7692 3.84211 12.5511C3.33752 11.3329 3.2055 9.99244 3.46274 8.69924C3.71997 7.40603 4.35491 6.21814 5.28726 5.28579C6.21961 4.35344 7.4075 3.7185 8.7007 3.46127C9.99391 3.20403 11.3344 3.33606 12.5525 3.84064C13.7707 4.34522 14.8119 5.19971 15.5444 6.29604C16.277 7.39236 16.668 8.6813 16.668 9.99984C16.668 11.7679 15.9656 13.4636 14.7154 14.7139C13.4651 15.9641 11.7694 16.6665 10.0013 16.6665V16.6665ZM11.668 5.83317C11.447 5.83317 11.235 5.92097 11.0787 6.07725C10.9224 6.23353 10.8346 6.44549 10.8346 6.6665V13.3332C10.8346 13.5542 10.9224 13.7661 11.0787 13.9224C11.235 14.0787 11.447 14.1665 11.668 14.1665C11.889 14.1665 12.1009 14.0787 12.2572 13.9224C12.4135 13.7661 12.5013 13.5542 12.5013 13.3332V6.6665C12.5013 6.44549 12.4135 6.23353 12.2572 6.07725C12.1009 5.92097 11.889 5.83317 11.668 5.83317Z" fill="#6E7A83"/>
2
+ <path d="M8.33464 5.83317C8.11363 5.83317 7.90166 5.92097 7.74538 6.07725C7.5891 6.23353 7.50131 6.44549 7.50131 6.6665V13.3332C7.50131 13.5542 7.5891 13.7661 7.74538 13.9224C7.90166 14.0787 8.11363 14.1665 8.33464 14.1665C8.55565 14.1665 8.76761 14.0787 8.92389 13.9224C9.08018 13.7661 9.16797 13.5542 9.16797 13.3332V6.6665C9.16797 6.44549 9.08018 6.23353 8.92389 6.07725C8.76761 5.92097 8.55565 5.83317 8.33464 5.83317ZM10.0013 1.6665C8.35313 1.6665 6.74196 2.15525 5.37155 3.07092C4.00114 3.9866 2.93304 5.28809 2.30231 6.81081C1.67158 8.33353 1.50655 10.0091 1.8281 11.6256C2.14964 13.2421 2.94331 14.727 4.10875 15.8924C5.27419 17.0578 6.75905 17.8515 8.37555 18.173C9.99206 18.4946 11.6676 18.3296 13.1903 17.6988C14.7131 17.0681 16.0145 16 16.9302 14.6296C17.8459 13.2592 18.3346 11.648 18.3346 9.99984C18.3346 8.90549 18.1191 7.82186 17.7003 6.81081C17.2815 5.79976 16.6677 4.8811 15.8939 4.10728C15.12 3.33346 14.2014 2.71963 13.1903 2.30084C12.1793 1.88205 11.0957 1.6665 10.0013 1.6665V1.6665ZM10.0013 16.6665C8.68276 16.6665 7.39383 16.2755 6.2975 15.543C5.20118 14.8104 4.34669 13.7692 3.84211 12.5511C3.33752 11.3329 3.2055 9.99244 3.46274 8.69924C3.71997 7.40603 4.35491 6.21814 5.28726 5.28579C6.21961 4.35344 7.4075 3.7185 8.7007 3.46127C9.99391 3.20403 11.3344 3.33606 12.5525 3.84064C13.7707 4.34522 14.8119 5.19971 15.5444 6.29604C16.277 7.39236 16.668 8.6813 16.668 9.99984C16.668 11.7679 15.9656 13.4636 14.7154 14.7139C13.4651 15.9641 11.7694 16.6665 10.0013 16.6665V16.6665ZM11.668 5.83317C11.447 5.83317 11.235 5.92097 11.0787 6.07725C10.9224 6.23353 10.8346 6.44549 10.8346 6.6665V13.3332C10.8346 13.5542 10.9224 13.7661 11.0787 13.9224C11.235 14.0787 11.447 14.1665 11.668 14.1665C11.889 14.1665 12.1009 14.0787 12.2572 13.9224C12.4135 13.7661 12.5013 13.5542 12.5013 13.3332V6.6665C12.5013 6.44549 12.4135 6.23353 12.2572 6.07725C12.1009 5.92097 11.889 5.83317 11.668 5.83317Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M13.3346 8.55817L9.16797 6.14984C8.91473 6.00363 8.62748 5.92662 8.33507 5.92655C8.04265 5.92647 7.75536 6.00333 7.50204 6.14941C7.24873 6.29549 7.03831 6.50564 6.8919 6.75877C6.7455 7.0119 6.66827 7.29909 6.66797 7.5915V12.4082C6.66827 12.7004 6.74542 12.9875 6.89169 13.2405C7.03796 13.4936 7.24819 13.7037 7.50131 13.8498C7.75467 13.9961 8.04208 14.0731 8.33464 14.0731C8.6272 14.0731 8.91461 13.9961 9.16797 13.8498L13.3346 11.4415C13.5872 11.295 13.7968 11.0847 13.9426 10.8317C14.0883 10.5787 14.165 10.2918 14.165 9.99984C14.165 9.70786 14.0883 9.421 13.9426 9.16798C13.7968 8.91497 13.5872 8.70468 13.3346 8.55817V8.55817ZM12.5013 9.99984L8.33464 12.4082V7.5915L12.5013 9.99984ZM10.0013 1.6665C8.35313 1.6665 6.74196 2.15525 5.37155 3.07092C4.00114 3.9866 2.93304 5.28809 2.30231 6.81081C1.67158 8.33353 1.50655 10.0091 1.8281 11.6256C2.14964 13.2421 2.94331 14.727 4.10875 15.8924C5.27419 17.0578 6.75905 17.8515 8.37555 18.173C9.99206 18.4946 11.6676 18.3296 13.1903 17.6988C14.7131 17.0681 16.0145 16 16.9302 14.6296C17.8459 13.2592 18.3346 11.648 18.3346 9.99984C18.3346 8.90549 18.1191 7.82186 17.7003 6.81081C17.2815 5.79976 16.6677 4.8811 15.8939 4.10728C15.12 3.33346 14.2014 2.71963 13.1903 2.30084C12.1793 1.88205 11.0957 1.6665 10.0013 1.6665V1.6665ZM10.0013 16.6665C8.68276 16.6665 7.39383 16.2755 6.2975 15.543C5.20118 14.8104 4.34669 13.7692 3.84211 12.5511C3.33752 11.3329 3.2055 9.99244 3.46274 8.69924C3.71997 7.40603 4.35491 6.21814 5.28726 5.28579C6.21961 4.35344 7.4075 3.7185 8.7007 3.46127C9.99391 3.20403 11.3344 3.33606 12.5525 3.84064C13.7707 4.34522 14.8119 5.19971 15.5444 6.29604C16.277 7.39236 16.668 8.6813 16.668 9.99984C16.668 11.7679 15.9656 13.4636 14.7154 14.7139C13.4651 15.9641 11.7694 16.6665 10.0013 16.6665V16.6665Z" fill="#6E7A83"/>
2
+ <path d="M13.3346 8.55817L9.16797 6.14984C8.91473 6.00363 8.62748 5.92662 8.33507 5.92655C8.04265 5.92647 7.75536 6.00333 7.50204 6.14941C7.24873 6.29549 7.03831 6.50564 6.8919 6.75877C6.7455 7.0119 6.66827 7.29909 6.66797 7.5915V12.4082C6.66827 12.7004 6.74542 12.9875 6.89169 13.2405C7.03796 13.4936 7.24819 13.7037 7.50131 13.8498C7.75467 13.9961 8.04208 14.0731 8.33464 14.0731C8.6272 14.0731 8.91461 13.9961 9.16797 13.8498L13.3346 11.4415C13.5872 11.295 13.7968 11.0847 13.9426 10.8317C14.0883 10.5787 14.165 10.2918 14.165 9.99984C14.165 9.70786 14.0883 9.421 13.9426 9.16798C13.7968 8.91497 13.5872 8.70468 13.3346 8.55817V8.55817ZM12.5013 9.99984L8.33464 12.4082V7.5915L12.5013 9.99984ZM10.0013 1.6665C8.35313 1.6665 6.74196 2.15525 5.37155 3.07092C4.00114 3.9866 2.93304 5.28809 2.30231 6.81081C1.67158 8.33353 1.50655 10.0091 1.8281 11.6256C2.14964 13.2421 2.94331 14.727 4.10875 15.8924C5.27419 17.0578 6.75905 17.8515 8.37555 18.173C9.99206 18.4946 11.6676 18.3296 13.1903 17.6988C14.7131 17.0681 16.0145 16 16.9302 14.6296C17.8459 13.2592 18.3346 11.648 18.3346 9.99984C18.3346 8.90549 18.1191 7.82186 17.7003 6.81081C17.2815 5.79976 16.6677 4.8811 15.8939 4.10728C15.12 3.33346 14.2014 2.71963 13.1903 2.30084C12.1793 1.88205 11.0957 1.6665 10.0013 1.6665V1.6665ZM10.0013 16.6665C8.68276 16.6665 7.39383 16.2755 6.2975 15.543C5.20118 14.8104 4.34669 13.7692 3.84211 12.5511C3.33752 11.3329 3.2055 9.99244 3.46274 8.69924C3.71997 7.40603 4.35491 6.21814 5.28726 5.28579C6.21961 4.35344 7.4075 3.7185 8.7007 3.46127C9.99391 3.20403 11.3344 3.33606 12.5525 3.84064C13.7707 4.34522 14.8119 5.19971 15.5444 6.29604C16.277 7.39236 16.668 8.6813 16.668 9.99984C16.668 11.7679 15.9656 13.4636 14.7154 14.7139C13.4651 15.9641 11.7694 16.6665 10.0013 16.6665V16.6665Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3.38138 13.1186C3.06896 13.4311 3.06896 13.9376 3.38138 14.25C3.6938 14.5624 4.20033 14.5624 4.51275 14.25L7.84703 10.6843C8.15953 10.3719 8.15953 9.86535 7.84703 9.55295L4.51276 5.98724C4.20034 5.67484 3.69381 5.67484 3.38139 5.98724C3.06897 6.29964 3.06897 6.80624 3.38139 7.11864L6.15003 10.1186L3.38138 13.1186ZM16.6186 7.11864C16.9311 6.80624 16.9311 6.29964 16.6186 5.98724C16.3062 5.67484 15.7997 5.67484 15.4873 5.98724L11.9157 9.55295C11.6033 9.86535 11.6033 10.3719 11.9157 10.6843L15.4873 14.25C15.7997 14.5624 16.3062 14.5624 16.6186 14.25C16.9311 13.9376 16.9311 13.4311 16.6186 13.1186L13.6127 10.1186L16.6186 7.11864Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.38138 13.1186C3.06896 13.4311 3.06896 13.9376 3.38138 14.25C3.6938 14.5624 4.20033 14.5624 4.51275 14.25L7.84703 10.6843C8.15953 10.3719 8.15953 9.86535 7.84703 9.55295L4.51276 5.98724C4.20034 5.67484 3.69381 5.67484 3.38139 5.98724C3.06897 6.29964 3.06897 6.80624 3.38139 7.11864L6.15003 10.1186L3.38138 13.1186ZM16.6186 7.11864C16.9311 6.80624 16.9311 6.29964 16.6186 5.98724C16.3062 5.67484 15.7997 5.67484 15.4873 5.98724L11.9157 9.55295C11.6033 9.86535 11.6033 10.3719 11.9157 10.6843L15.4873 14.25C15.7997 14.5624 16.3062 14.5624 16.6186 14.25C16.9311 13.9376 16.9311 13.4311 16.6186 13.1186L13.6127 10.1186L16.6186 7.11864Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6.99999 3.5C6.68757 3.18758 6.18104 3.18758 5.86862 3.5C5.5562 3.81242 5.5562 4.31895 5.86862 4.63137L9.43432 7.96565C9.74674 8.27815 10.2533 8.27815 10.5657 7.96565L14.1314 4.63138C14.4438 4.31896 14.4438 3.81243 14.1314 3.50001C13.819 3.18759 13.3124 3.18759 13 3.50001L9.99999 6.26865L6.99999 3.5ZM13 16.7372C13.3124 17.0497 13.819 17.0497 14.1314 16.7372C14.4438 16.4248 14.4438 15.9183 14.1314 15.6059L10.5657 12.0343C10.2533 11.7219 9.74674 11.7219 9.43432 12.0343L5.86863 15.6059C5.55621 15.9183 5.55621 16.4248 5.86863 16.7372C6.18105 17.0497 6.68758 17.0497 7 16.7372L9.99999 13.7314L13 16.7372Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.99999 3.5C6.68757 3.18758 6.18104 3.18758 5.86862 3.5C5.5562 3.81242 5.5562 4.31895 5.86862 4.63137L9.43432 7.96565C9.74674 8.27815 10.2533 8.27815 10.5657 7.96565L14.1314 4.63138C14.4438 4.31896 14.4438 3.81243 14.1314 3.50001C13.819 3.18759 13.3124 3.18759 13 3.50001L9.99999 6.26865L6.99999 3.5ZM13 16.7372C13.3124 17.0497 13.819 17.0497 14.1314 16.7372C14.4438 16.4248 14.4438 15.9183 14.1314 15.6059L10.5657 12.0343C10.2533 11.7219 9.74674 11.7219 9.43432 12.0343L5.86863 15.6059C5.55621 15.9183 5.55621 16.4248 5.86863 16.7372C6.18105 17.0497 6.68758 17.0497 7 16.7372L9.99999 13.7314L13 16.7372Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7.53646 0.97611L3.57729 3.28434C2.65907 3.81939 2.20045 4.08742 1.86664 4.46145C1.57135 4.79318 1.34799 5.18357 1.21091 5.60757C1.05737 6.08661 1.05737 6.62167 1.05737 7.69177V12.3082C1.05737 13.3783 1.05737 13.9134 1.21091 14.3924C1.3476 14.8175 1.57047 15.2075 1.86664 15.5385C2.20045 15.9126 2.65907 16.1806 3.57729 16.7157L7.53646 19.0239C8.45469 19.5589 8.9133 19.827 9.40263 19.931C9.83437 20.023 10.2804 20.023 10.7121 19.931C11.2004 19.827 11.6601 19.5589 12.5783 19.0239L16.5375 16.7157C17.4557 16.1806 17.9143 15.9126 18.2481 15.5385C18.5434 15.2068 18.7668 14.8164 18.9038 14.3924C19.0574 13.9134 19.0574 13.3783 19.0574 12.3082V7.69177C19.0574 6.62167 19.0574 6.08661 18.9038 5.60657C18.7666 5.18292 18.5433 4.79289 18.2481 4.46145C17.9143 4.08742 17.4557 3.81939 16.5375 3.28434L12.5783 0.97611C11.6601 0.441057 11.2014 0.17303 10.7121 0.0690199C10.2804 -0.0230066 9.83437 -0.0230066 9.40263 0.0690199C8.91429 0.17303 8.45469 0.441057 7.53646 0.97611ZM9.05297 9.04191C8.75581 9.0089 8.58048 8.79788 8.58048 8.49785C8.58048 8.19782 8.7568 7.9868 9.05297 7.9528C10.3625 7.76878 11.0113 7.67677 11.3738 7.30273C11.7304 6.9347 11.8106 6.29263 11.9681 5.02051C12.0127 4.72048 12.2217 4.53246 12.5189 4.53246C12.816 4.53246 13.0141 4.72148 13.0577 5.02051C13.2162 6.29263 13.2954 6.9347 13.652 7.30273C14.0156 7.67677 14.6644 7.76878 15.9738 7.9528C16.1093 7.96106 16.236 8.02294 16.3265 8.12499C16.417 8.22705 16.464 8.36103 16.4572 8.49785C16.4572 8.79788 16.27 9.0079 15.9738 9.04191C14.6644 9.22692 14.0156 9.31793 13.652 9.69197C13.2954 10.061 13.2162 10.7021 13.0577 11.9742C13.0141 12.2742 12.816 12.4632 12.5189 12.4632C12.2217 12.4632 12.0137 12.2732 11.9691 11.9742C11.8106 10.7021 11.7314 10.061 11.3748 9.69297C11.0113 9.31793 10.3625 9.22692 9.05297 9.04191Z" fill="#EBBC00"/>
2
+ <path d="M7.53646 0.97611L3.57729 3.28434C2.65907 3.81939 2.20045 4.08742 1.86664 4.46145C1.57135 4.79318 1.34799 5.18357 1.21091 5.60757C1.05737 6.08661 1.05737 6.62167 1.05737 7.69177V12.3082C1.05737 13.3783 1.05737 13.9134 1.21091 14.3924C1.3476 14.8175 1.57047 15.2075 1.86664 15.5385C2.20045 15.9126 2.65907 16.1806 3.57729 16.7157L7.53646 19.0239C8.45469 19.5589 8.9133 19.827 9.40263 19.931C9.83437 20.023 10.2804 20.023 10.7121 19.931C11.2004 19.827 11.6601 19.5589 12.5783 19.0239L16.5375 16.7157C17.4557 16.1806 17.9143 15.9126 18.2481 15.5385C18.5434 15.2068 18.7668 14.8164 18.9038 14.3924C19.0574 13.9134 19.0574 13.3783 19.0574 12.3082V7.69177C19.0574 6.62167 19.0574 6.08661 18.9038 5.60657C18.7666 5.18292 18.5433 4.79289 18.2481 4.46145C17.9143 4.08742 17.4557 3.81939 16.5375 3.28434L12.5783 0.97611C11.6601 0.441057 11.2014 0.17303 10.7121 0.0690199C10.2804 -0.0230066 9.83437 -0.0230066 9.40263 0.0690199C8.91429 0.17303 8.45469 0.441057 7.53646 0.97611ZM9.05297 9.04191C8.75581 9.0089 8.58048 8.79788 8.58048 8.49785C8.58048 8.19782 8.7568 7.9868 9.05297 7.9528C10.3625 7.76878 11.0113 7.67677 11.3738 7.30273C11.7304 6.9347 11.8106 6.29263 11.9681 5.02051C12.0127 4.72048 12.2217 4.53246 12.5189 4.53246C12.816 4.53246 13.0141 4.72148 13.0577 5.02051C13.2162 6.29263 13.2954 6.9347 13.652 7.30273C14.0156 7.67677 14.6644 7.76878 15.9738 7.9528C16.1093 7.96106 16.236 8.02294 16.3265 8.12499C16.417 8.22705 16.464 8.36103 16.4572 8.49785C16.4572 8.79788 16.27 9.0079 15.9738 9.04191C14.6644 9.22692 14.0156 9.31793 13.652 9.69197C13.2954 10.061 13.2162 10.7021 13.0577 11.9742C13.0141 12.2742 12.816 12.4632 12.5189 12.4632C12.2217 12.4632 12.0137 12.2732 11.9691 11.9742C11.8106 10.7021 11.7314 10.061 11.3748 9.69297C11.0113 9.31793 10.3625 9.22692 9.05297 9.04191Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
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 2C3.00736 2 2 3.0074 2 4.25V15.75C2 16.9926 3.00736 18 4.25 18H15.75C16.9926 18 18 16.9926 18 15.75V9.75C18 9.33579 17.6642 9 17.25 9C16.8358 9 16.5 9.33579 16.5 9.75V15.75C16.5 16.1642 16.1642 16.5 15.75 16.5H4.25C3.83579 16.5 3.5 16.1642 3.5 15.75V4.25C3.5 3.8358 3.83579 3.5 4.25 3.5H10.25C10.6642 3.5 11 3.16421 11 2.75C11 2.33579 10.6642 2 10.25 2H4.25ZM13.9247 2.69921C14.857 1.76693 16.3685 1.76693 17.3008 2.69921C18.2331 3.63148 18.2331 5.143 17.3008 6.07528L11.5741 11.8019C11.4473 11.9288 11.2753 12 11.096 12H8.83756C8.37499 12 8 11.625 8 11.1624V8.90404C8 8.72469 8.07125 8.55268 8.19807 8.42586L13.9247 2.69921ZM16.3444 3.65557C15.9403 3.25148 15.2852 3.25148 14.8811 3.65557L14.657 3.87967L16.1203 5.34302L16.3444 5.11892C16.7485 4.71483 16.7485 4.05966 16.3444 3.65557ZM9.3525 9.18415V10.6475H10.8158L15.278 6.18532L13.8147 4.72197L9.3525 9.18415Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.25 2C3.00736 2 2 3.0074 2 4.25V15.75C2 16.9926 3.00736 18 4.25 18H15.75C16.9926 18 18 16.9926 18 15.75V9.75C18 9.33579 17.6642 9 17.25 9C16.8358 9 16.5 9.33579 16.5 9.75V15.75C16.5 16.1642 16.1642 16.5 15.75 16.5H4.25C3.83579 16.5 3.5 16.1642 3.5 15.75V4.25C3.5 3.8358 3.83579 3.5 4.25 3.5H10.25C10.6642 3.5 11 3.16421 11 2.75C11 2.33579 10.6642 2 10.25 2H4.25ZM13.9247 2.69921C14.857 1.76693 16.3685 1.76693 17.3008 2.69921C18.2331 3.63148 18.2331 5.143 17.3008 6.07528L11.5741 11.8019C11.4473 11.9288 11.2753 12 11.096 12H8.83756C8.37499 12 8 11.625 8 11.1624V8.90404C8 8.72469 8.07125 8.55268 8.19807 8.42586L13.9247 2.69921ZM16.3444 3.65557C15.9403 3.25148 15.2852 3.25148 14.8811 3.65557L14.657 3.87967L16.1203 5.34302L16.3444 5.11892C16.7485 4.71483 16.7485 4.05966 16.3444 3.65557ZM9.3525 9.18415V10.6475H10.8158L15.278 6.18532L13.8147 4.72197L9.3525 9.18415Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M7.84709 13.1186C8.15951 13.4311 8.15951 13.9376 7.84709 14.25C7.53467 14.5624 7.02814 14.5624 6.71572 14.25L3.38144 10.6843C3.06894 10.3719 3.06894 9.86535 3.38144 9.55295L6.71571 5.98724C7.02813 5.67484 7.53466 5.67484 7.84708 5.98724C8.1595 6.29964 8.1595 6.80624 7.84708 7.11864L5.07844 10.1186L7.84709 13.1186ZM11.9157 7.11864C11.6032 6.80624 11.6032 6.29964 11.9157 5.98724C12.2281 5.67484 12.7346 5.67484 13.047 5.98724L16.6186 9.55295C16.9311 9.86535 16.9311 10.3719 16.6186 10.6843L13.047 14.25C12.7346 14.5624 12.2281 14.5624 11.9157 14.25C11.6032 13.9376 11.6032 13.4311 11.9157 13.1186L14.9216 10.1186L11.9157 7.11864Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.84709 13.1186C8.15951 13.4311 8.15951 13.9376 7.84709 14.25C7.53467 14.5624 7.02814 14.5624 6.71572 14.25L3.38144 10.6843C3.06894 10.3719 3.06894 9.86535 3.38144 9.55295L6.71571 5.98724C7.02813 5.67484 7.53466 5.67484 7.84708 5.98724C8.1595 6.29964 8.1595 6.80624 7.84708 7.11864L5.07844 10.1186L7.84709 13.1186ZM11.9157 7.11864C11.6032 6.80624 11.6032 6.29964 11.9157 5.98724C12.2281 5.67484 12.7346 5.67484 13.047 5.98724L16.6186 9.55295C16.9311 9.86535 16.9311 10.3719 16.6186 10.6843L13.047 14.25C12.7346 14.5624 12.2281 14.5624 11.9157 14.25C11.6032 13.9376 11.6032 13.4311 11.9157 13.1186L14.9216 10.1186L11.9157 7.11864Z"/>
3
3
  </svg>
@@ -1,4 +1,3 @@
1
- <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Icon">
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.5L10.9697 7.96967C10.6768 8.26257 10.6768 8.73744 10.9697 9.03033C11.2626 9.32323 11.7374 9.32323 12.0303 9.03033L15.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" />
3
- <path d="M3.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.5L9.03033 12.0303C9.32322 11.7374 9.32322 11.2626 9.03033 10.9697C8.73744 10.6768 8.26256 10.6768 7.96967 10.9697L4.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 17Z" />
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.33334 2.58333H6.66668C7.08089 2.58333 7.41668 2.91911 7.41668 3.33333C7.41668 3.74754 7.08089 4.08333 6.66668 4.08333H5.144L8.86367 7.803C9.15657 8.09589 9.15657 8.57077 8.86367 8.86366C8.57078 9.15655 8.09591 9.15655 7.80301 8.86366L4.08334 5.14399V6.66666C4.08334 7.08087 3.74756 7.41666 3.33334 7.41666C2.91913 7.41666 2.58334 7.08087 2.58334 6.66666V3.33333C2.58334 2.91911 2.91913 2.58333 3.33334 2.58333ZM14.856 4.08333H13.3333C12.9191 4.08333 12.5833 3.74754 12.5833 3.33333C12.5833 2.91911 12.9191 2.58333 13.3333 2.58333H16.6667C17.0809 2.58333 17.4167 2.91911 17.4167 3.33333V6.66666C17.4167 7.08087 17.0809 7.41666 16.6667 7.41666C16.2525 7.41666 15.9167 7.08087 15.9167 6.66666V5.14399L12.197 8.86366C11.9041 9.15655 11.4292 9.15655 11.1363 8.86366C10.8435 8.57077 10.8435 8.09589 11.1363 7.803L14.856 4.08333ZM8.86367 11.1363C9.15657 11.4292 9.15657 11.9041 8.86367 12.197L5.144 15.9167H6.66668C7.08089 15.9167 7.41668 16.2524 7.41668 16.6667C7.41668 17.0809 7.08089 17.4167 6.66668 17.4167H3.33334C2.91913 17.4167 2.58334 17.0809 2.58334 16.6667V13.3333C2.58334 12.9191 2.91913 12.5833 3.33334 12.5833C3.74756 12.5833 4.08334 12.9191 4.08334 13.3333V14.856L7.80301 11.1363C8.09591 10.8434 8.57078 10.8434 8.86367 11.1363ZM11.1363 11.1363C11.4292 10.8434 11.9041 10.8434 12.197 11.1363L15.9167 14.856V13.3333C15.9167 12.9191 16.2525 12.5833 16.6667 12.5833C17.0809 12.5833 17.4167 12.9191 17.4167 13.3333V16.6667C17.4167 17.0809 17.0809 17.4167 16.6667 17.4167H13.3333C12.9191 17.4167 12.5833 17.0809 12.5833 16.6667C12.5833 16.2524 12.9191 15.9167 13.3333 15.9167H14.856L11.1363 12.197C10.8435 11.9041 10.8435 11.4292 11.1363 11.1363Z" />
4
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.43431 13.4343C4.12189 13.7467 4.12189 14.2532 4.43431 14.5656C4.74673 14.8781 5.25326 14.8781 5.56568 14.5656L9.56568 10.5656C9.87808 10.2532 9.87808 9.74669 9.56568 9.43427L5.56568 5.43427C5.25326 5.12185 4.74673 5.12185 4.43431 5.43427C4.12189 5.74669 4.12189 6.25322 4.43431 6.56564L7.86858 9.99995L4.43431 13.4343ZM10.4343 13.4343C10.1219 13.7467 10.1219 14.2532 10.4343 14.5656C10.7467 14.8781 11.2533 14.8781 11.5657 14.5656L15.5657 10.5656C15.8781 10.2532 15.8781 9.74669 15.5657 9.43427L11.5657 5.43427C11.2533 5.12185 10.7467 5.12185 10.4343 5.43427C10.1219 5.74669 10.1219 6.25322 10.4343 6.56564L13.8686 9.99995L10.4343 13.4343Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.43431 13.4343C4.12189 13.7467 4.12189 14.2532 4.43431 14.5656C4.74673 14.8781 5.25326 14.8781 5.56568 14.5656L9.56568 10.5656C9.87808 10.2532 9.87808 9.74669 9.56568 9.43427L5.56568 5.43427C5.25326 5.12185 4.74673 5.12185 4.43431 5.43427C4.12189 5.74669 4.12189 6.25322 4.43431 6.56564L7.86858 9.99995L4.43431 13.4343ZM10.4343 13.4343C10.1219 13.7467 10.1219 14.2532 10.4343 14.5656C10.7467 14.8781 11.2533 14.8781 11.5657 14.5656L15.5657 10.5656C15.8781 10.2532 15.8781 9.74669 15.5657 9.43427L11.5657 5.43427C11.2533 5.12185 10.7467 5.12185 10.4343 5.43427C10.1219 5.74669 10.1219 6.25322 10.4343 6.56564L13.8686 9.99995L10.4343 13.4343Z"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
2
+ <path d="M6.8889 9.1111V13.5556H13.1111V9.1111H18V18H2V9.1111H6.8889ZM13.1111 2V6.4444H6.8889V2H13.1111Z" />
3
+ </svg>
@@ -1,3 +1,3 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.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.5H15.75C16.1642 15.5 16.5 15.1642 16.5 14.75V5.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.25V14.75C18 15.9926 16.9926 17 15.75 17H4.25C3.00736 17 2 15.9926 2 14.75V5.25ZM12.75 6C12.3358 6 12 6.33579 12 6.75C12 7.16421 12.3358 7.5 12.75 7.5H14.25C14.6642 7.5 15 7.16421 15 6.75C15 6.33579 14.6642 6 14.25 6H12.75ZM12 9.75C12 9.33579 12.3358 9 12.75 9H14.25C14.6642 9 15 9.33579 15 9.75C15 10.1642 14.6642 10.5 14.25 10.5H12.75C12.3358 10.5 12 10.1642 12 9.75ZM5.5 6C5.22386 6 5 6.22386 5 6.5V13.5C5 13.7761 5.22386 14 5.5 14H10C10.2761 14 10.5 13.7761 10.5 13.5V6.5C10.5 6.22386 10.2761 6 10 6H5.5Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.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.5H15.75C16.1642 15.5 16.5 15.1642 16.5 14.75V5.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.25V14.75C18 15.9926 16.9926 17 15.75 17H4.25C3.00736 17 2 15.9926 2 14.75V5.25ZM12.75 6C12.3358 6 12 6.33579 12 6.75C12 7.16421 12.3358 7.5 12.75 7.5H14.25C14.6642 7.5 15 7.16421 15 6.75C15 6.33579 14.6642 6 14.25 6H12.75ZM12 9.75C12 9.33579 12.3358 9 12.75 9H14.25C14.6642 9 15 9.33579 15 9.75C15 10.1642 14.6642 10.5 14.25 10.5H12.75C12.3358 10.5 12 10.1642 12 9.75ZM5.5 6C5.22386 6 5 6.22386 5 6.5V13.5C5 13.7761 5.22386 14 5.5 14H10C10.2761 14 10.5 13.7761 10.5 13.5V6.5C10.5 6.22386 10.2761 6 10 6H5.5Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.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.5H15.75C16.1642 15.5 16.5 15.1642 16.5 14.75V5.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.25V14.75C18 15.9926 16.9926 17 15.75 17H4.25C3.00736 17 2 15.9926 2 14.75V5.25ZM5 6.75C5 6.33579 5.33579 6 5.75 6H8.25C8.66421 6 9 6.33579 9 6.75C9 7.16421 8.66421 7.5 8.25 7.5H5.75C5.33579 7.5 5 7.16421 5 6.75ZM5.5 9C5.22386 9 5 9.22386 5 9.5V13.5C5 13.7761 5.22386 14 5.5 14H14.5C14.7761 14 15 13.7761 15 13.5V9.5C15 9.22386 14.7761 9 14.5 9H5.5Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.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.5H15.75C16.1642 15.5 16.5 15.1642 16.5 14.75V5.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.25V14.75C18 15.9926 16.9926 17 15.75 17H4.25C3.00736 17 2 15.9926 2 14.75V5.25ZM5 6.75C5 6.33579 5.33579 6 5.75 6H8.25C8.66421 6 9 6.33579 9 6.75C9 7.16421 8.66421 7.5 8.25 7.5H5.75C5.33579 7.5 5 7.16421 5 6.75ZM5.5 9C5.22386 9 5 9.22386 5 9.5V13.5C5 13.7761 5.22386 14 5.5 14H14.5C14.7761 14 15 13.7761 15 13.5V9.5C15 9.22386 14.7761 9 14.5 9H5.5Z"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 2C11.6236 2 13.1331 2.48534 14.3945 3.31641L12.7842 4.125C11.9402 3.72436 10.9964 3.5 10 3.5C6.41004 3.5 3.5 6.41004 3.5 10C3.5 13.59 6.41004 16.5 10 16.5C13.59 16.5 16.5 13.59 16.5 10C16.5 9.22141 16.3623 8.47508 16.1113 7.7832L17.0703 6.25781C17.6627 7.37467 18 8.64766 18 10C18 14.4184 14.4184 18 10 18C5.58161 18 2 14.4184 2 10C2 5.58161 5.58161 2 10 2ZM11.6191 11.1689C11.2558 11.6713 10.6674 12 10 12C8.89543 12 8 11.1046 8 10C8 9.23568 8.42849 8.57104 9.05859 8.23438L15.5 5L11.6191 11.1689ZM10 9C9.44772 9 9 9.44772 9 10C9 10.5523 9.44772 11 10 11C10.5523 11 11 10.5523 11 10C11 9.44772 10.5523 9 10 9Z" />
3
+ </svg>
@@ -0,0 +1,4 @@
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.91244 2.94088C7.59373 1.98651 8.64714 1.5 9.99999 1.5C11.3528 1.5 12.4063 1.98651 13.0875 2.94088C13.7354 3.84847 13.97 5.07495 13.97 6.41667V7.32999H14.25C14.9575 7.32999 15.6582 7.53047 16.1886 8.02179C16.7288 8.52213 17 9.23844 17 10.08V15.75C17 16.62 16.4596 17.3098 15.9588 17.7356C15.6962 17.9588 15.4089 18.1417 15.1323 18.2716C14.8719 18.394 14.5566 18.5 14.25 18.5H5.75C4.10659 18.5 3 17.2437 3 15.75V10.08C3 9.23752 3.27265 8.52138 3.81302 8.02148C4.34352 7.53071 5.04379 7.32999 5.75 7.32999H6.03V6.41667C6.03 5.07495 6.26455 3.84847 6.91244 2.94088ZM7.53 7.32999H12.47V6.41667C12.47 5.2072 12.2507 4.35035 11.8667 3.8124C11.5161 3.32123 10.9595 3 9.99999 3C9.0405 3 8.48391 3.32123 8.13329 3.8124C7.74927 4.35034 7.53 5.2072 7.53 6.41667V7.32999ZM10 11C10.4142 11 10.75 11.3358 10.75 11.75V14C10.75 14.4142 10.4142 14.75 10 14.75C9.58578 14.75 9.25 14.4142 9.25 14V11.75C9.25 11.3358 9.58578 11 10 11Z" class="uiIcons"/>
4
+ </svg>
@@ -1,4 +1,5 @@
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.91244 2.94088C7.59373 1.98651 8.64714 1.5 9.99999 1.5C11.3528 1.5 12.4063 1.98651 13.0875 2.94088C13.7354 3.84847 13.97 5.07495 13.97 6.41667V7.32999H14.25C14.9575 7.32999 15.6582 7.53047 16.1886 8.02179C16.7288 8.52213 17 9.23844 17 10.08V15.75C17 16.62 16.4596 17.3098 15.9588 17.7356C15.6962 17.9588 15.4089 18.1417 15.1323 18.2716C14.8719 18.394 14.5566 18.5 14.25 18.5H5.75C4.10659 18.5 3 17.2437 3 15.75V10.08C3 9.23752 3.27265 8.52138 3.81302 8.02148C4.34352 7.53071 5.04379 7.32999 5.75 7.32999H6.03V6.41667C6.03 5.07495 6.26455 3.84847 6.91244 2.94088ZM7.53 7.32999H12.47V6.41667C12.47 5.2072 12.2507 4.35035 11.8667 3.8124C11.5161 3.32123 10.9595 3 9.99999 3C9.0405 3 8.48391 3.32123 8.13329 3.8124C7.74927 4.35034 7.53 5.2072 7.53 6.41667V7.32999ZM10 11C10.4142 11 10.75 11.3358 10.75 11.75V14C10.75 14.4142 10.4142 14.75 10 14.75C9.58578 14.75 9.25 14.4142 9.25 14V11.75C9.25 11.3358 9.58578 11 10 11Z" class="uiIcons"/>
4
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M6.91244 2.44088C7.59373 1.48651 8.64714 1 9.99999 1C11.3528 1 12.4063 1.48651 13.0875 2.44088C13.7354 3.34847 13.97 4.57495 13.97 5.91667V6.82999H14.25C14.9575 6.82999 15.6582 7.03047 16.1886 7.52179C16.7288 8.02213 17 8.73844 17 9.57999V15.25C17 16.12 16.4596 16.8098 15.9588 17.2356C15.6962 17.4588 15.4089 17.6417 15.1323 17.7716C14.8719 17.894 14.5566 18 14.25 18H5.75C4.10659 18 3 16.7437 3 15.25V9.57999C3 8.73752 3.27265 8.02138 3.81302 7.52148C4.34352 7.03071 5.04379 6.82999 5.75 6.82999H6.03V5.91667C6.03 4.57495 6.26455 3.34847 6.91244 2.44088ZM7.53 6.82999H12.47V5.91667C12.47 4.7072 12.2507 3.85035 11.8667 3.3124C11.5161 2.82123 10.9595 2.5 9.99999 2.5C9.0405 2.5 8.48391 2.82123 8.13329 3.3124C7.74927 3.85034 7.53 4.7072 7.53 5.91667V6.82999ZM4.83166 8.62257C4.65713 8.78402 4.5 9.06788 4.5 9.57999V15.25C4.5 15.9654 4.98427 16.5 5.75 16.5H14.25C14.25 16.5 14.2493 16.4999 14.2524 16.4993C14.2688 16.4964 14.3506 16.4816 14.4944 16.414C14.6486 16.3416 14.824 16.2315 14.9871 16.0928C15.3377 15.7948 15.5 15.4846 15.5 15.25V9.57999C15.5 9.06696 15.3432 8.78328 15.1693 8.62225C14.9857 8.45221 14.6864 8.32999 14.25 8.32999H5.75C5.31578 8.32999 5.01605 8.45198 4.83166 8.62257ZM10 10.5C10.4142 10.5 10.75 10.8358 10.75 11.25V13.5C10.75 13.9142 10.4142 14.25 10 14.25C9.58578 14.25 9.25 13.9142 9.25 13.5V11.25C9.25 10.8358 9.58578 10.5 10 10.5Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -1,5 +1,5 @@
1
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="M10.75 3.75C10.75 3.33579 10.4142 3 10 3C9.58579 3 9.25 3.33579 9.25 3.75V16.25C9.25 16.6642 9.58579 17 10 17C10.4142 17 10.75 16.6642 10.75 16.25V3.75Z" fill="black"/>
3
- <path d="M5.78033 6.96967C6.07322 7.26256 6.07322 7.73744 5.78033 8.03033L4.56066 9.25H7.25C7.66421 9.25 8 9.58579 8 10C8 10.4142 7.66421 10.75 7.25 10.75H4.56066L5.78033 11.9697C6.07322 12.2626 6.07322 12.7374 5.78033 13.0303C5.48744 13.3232 5.01256 13.3232 4.71967 13.0303L2.21967 10.5303C1.92678 10.2374 1.92678 9.76256 2.21967 9.46967L4.71967 6.96967C5.01256 6.67678 5.48744 6.67678 5.78033 6.96967Z" class="uiIcons"/>
4
- <path d="M14.2197 6.96967C14.5126 6.67678 14.9874 6.67678 15.2803 6.96967L17.7803 9.46967C18.0732 9.76256 18.0732 10.2374 17.7803 10.5303L15.2803 13.0303C14.9874 13.3232 14.5126 13.3232 14.2197 13.0303C13.9268 12.7374 13.9268 12.2626 14.2197 11.9697L15.4393 10.75H12.75C12.3358 10.75 12 10.4142 12 10C12 9.58579 12.3358 9.25 12.75 9.25H15.4393L14.2197 8.03033C13.9268 7.73744 13.9268 7.26256 14.2197 6.96967Z" class="uiIcons"/>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M10.75 3.75C10.75 3.33579 10.4142 3 10 3C9.58579 3 9.25 3.33579 9.25 3.75V16.25C9.25 16.6642 9.58579 17 10 17C10.4142 17 10.75 16.6642 10.75 16.25V3.75Z"/>
3
+ <path d="M5.78033 6.96967C6.07322 7.26256 6.07322 7.73744 5.78033 8.03033L4.56066 9.25H7.25C7.66421 9.25 8 9.58579 8 10C8 10.4142 7.66421 10.75 7.25 10.75H4.56066L5.78033 11.9697C6.07322 12.2626 6.07322 12.7374 5.78033 13.0303C5.48744 13.3232 5.01256 13.3232 4.71967 13.0303L2.21967 10.5303C1.92678 10.2374 1.92678 9.76256 2.21967 9.46967L4.71967 6.96967C5.01256 6.67678 5.48744 6.67678 5.78033 6.96967Z" class="uiIcons"/>
4
+ <path d="M14.2197 6.96967C14.5126 6.67678 14.9874 6.67678 15.2803 6.96967L17.7803 9.46967C18.0732 9.76256 18.0732 10.2374 17.7803 10.5303L15.2803 13.0303C14.9874 13.3232 14.5126 13.3232 14.2197 13.0303C13.9268 12.7374 13.9268 12.2626 14.2197 11.9697L15.4393 10.75H12.75C12.3358 10.75 12 10.4142 12 10C12 9.58579 12.3358 9.25 12.75 9.25H15.4393L14.2197 8.03033C13.9268 7.73744 13.9268 7.26256 14.2197 6.96967Z" class="uiIcons"/>
5
5
  </svg>
@@ -1,5 +1,5 @@
1
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="M10.75 3.75C10.75 3.33579 10.4142 3 10 3C9.58579 3 9.25 3.33579 9.25 3.75V16.25C9.25 16.6642 9.58579 17 10 17C10.4142 17 10.75 16.6642 10.75 16.25V3.75Z" fill="black"/>
3
- <path d="M4.21967 6.96967C4.51256 6.67678 4.98744 6.67678 5.28033 6.96967L7.78033 9.46967C8.07322 9.76256 8.07322 10.2374 7.78033 10.5303L5.28033 13.0303C4.98744 13.3232 4.51256 13.3232 4.21967 13.0303C3.92678 12.7374 3.92678 12.2626 4.21967 11.9697L5.43934 10.75H2.75C2.33579 10.75 2 10.4142 2 10C2 9.58579 2.33579 9.25 2.75 9.25H5.43934L4.21967 8.03033C3.92678 7.73744 3.92678 7.26256 4.21967 6.96967Z" class="uiIcons" />
4
- <path d="M15.7803 6.96967C16.0732 7.26256 16.0732 7.73744 15.7803 8.03033L14.5607 9.25H17.25C17.6642 9.25 18 9.58579 18 10C18 10.4142 17.6642 10.75 17.25 10.75H14.5607L15.7803 11.9697C16.0732 12.2626 16.0732 12.7374 15.7803 13.0303C15.4874 13.3232 15.0126 13.3232 14.7197 13.0303L12.2197 10.5303C11.9268 10.2374 11.9268 9.76256 12.2197 9.46967L14.7197 6.96967C15.0126 6.67678 15.4874 6.67678 15.7803 6.96967Z" class="uiIcons" />
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M10.75 3.75C10.75 3.33579 10.4142 3 10 3C9.58579 3 9.25 3.33579 9.25 3.75V16.25C9.25 16.6642 9.58579 17 10 17C10.4142 17 10.75 16.6642 10.75 16.25V3.75Z"/>
3
+ <path d="M4.21967 6.96967C4.51256 6.67678 4.98744 6.67678 5.28033 6.96967L7.78033 9.46967C8.07322 9.76256 8.07322 10.2374 7.78033 10.5303L5.28033 13.0303C4.98744 13.3232 4.51256 13.3232 4.21967 13.0303C3.92678 12.7374 3.92678 12.2626 4.21967 11.9697L5.43934 10.75H2.75C2.33579 10.75 2 10.4142 2 10C2 9.58579 2.33579 9.25 2.75 9.25H5.43934L4.21967 8.03033C3.92678 7.73744 3.92678 7.26256 4.21967 6.96967Z" class="uiIcons" />
4
+ <path d="M15.7803 6.96967C16.0732 7.26256 16.0732 7.73744 15.7803 8.03033L14.5607 9.25H17.25C17.6642 9.25 18 9.58579 18 10C18 10.4142 17.6642 10.75 17.25 10.75H14.5607L15.7803 11.9697C16.0732 12.2626 16.0732 12.7374 15.7803 13.0303C15.4874 13.3232 15.0126 13.3232 14.7197 13.0303L12.2197 10.5303C11.9268 10.2374 11.9268 9.76256 12.2197 9.46967L14.7197 6.96967C15.0126 6.67678 15.4874 6.67678 15.7803 6.96967Z" class="uiIcons" />
5
5
  </svg>
@@ -1,4 +1,4 @@
1
1
  <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Icon">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 2C3.11929 2 2 3.11929 2 4.5V15.5C2 16.8807 3.11929 18 4.5 18H15.5C16.8807 18 18 16.8807 18 15.5V4.5C18 3.11929 16.8807 2 15.5 2H4.5ZM4.5 3.5C3.94771 3.5 3.5 4.05709 3.5 4.60938V15.5C3.5 16.0523 3.94771 16.5 4.5 16.5H15.5C16.0523 16.5 16.5 16.0523 16.5 15.5V4.5C16.5 3.94771 16.0523 3.5 15.5 3.5H4.5ZM8.41684 7.58333C8.41684 6.70888 9.12573 6 10.0002 6C10.8746 6 11.5835 6.70888 11.5835 7.58333C11.5835 8.45778 10.8746 9.16667 10.0002 9.16667C9.12573 9.16667 8.41684 8.45778 8.41684 7.58333ZM10.0002 11.6667C9.01801 11.6667 8.36087 12.2298 8.22803 12.7642C8.12811 13.1662 7.72124 13.4111 7.31926 13.3112C6.91728 13.2113 6.67241 12.8044 6.77232 12.4024C7.11221 11.035 8.51401 10.1667 10.0002 10.1667C11.4863 10.1667 12.8881 11.035 13.228 12.4024C13.3279 12.8044 13.0831 13.2113 12.6811 13.3112C12.2791 13.4111 11.8722 13.1662 11.7723 12.7642C11.6395 12.2298 10.9823 11.6667 10.0002 11.6667Z" fill="black"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 2C3.11929 2 2 3.11929 2 4.5V15.5C2 16.8807 3.11929 18 4.5 18H15.5C16.8807 18 18 16.8807 18 15.5V4.5C18 3.11929 16.8807 2 15.5 2H4.5ZM4.5 3.5C3.94771 3.5 3.5 4.05709 3.5 4.60938V15.5C3.5 16.0523 3.94771 16.5 4.5 16.5H15.5C16.0523 16.5 16.5 16.0523 16.5 15.5V4.5C16.5 3.94771 16.0523 3.5 15.5 3.5H4.5ZM8.41684 7.58333C8.41684 6.70888 9.12573 6 10.0002 6C10.8746 6 11.5835 6.70888 11.5835 7.58333C11.5835 8.45778 10.8746 9.16667 10.0002 9.16667C9.12573 9.16667 8.41684 8.45778 8.41684 7.58333ZM10.0002 11.6667C9.01801 11.6667 8.36087 12.2298 8.22803 12.7642C8.12811 13.1662 7.72124 13.4111 7.31926 13.3112C6.91728 13.2113 6.67241 12.8044 6.77232 12.4024C7.11221 11.035 8.51401 10.1667 10.0002 10.1667C11.4863 10.1667 12.8881 11.035 13.228 12.4024C13.3279 12.8044 13.0831 13.2113 12.6811 13.3112C12.2791 13.4111 11.8722 13.1662 11.7723 12.7642C11.6395 12.2298 10.9823 11.6667 10.0002 11.6667Z"/>
3
3
  </svg>
4
4
 
@@ -1,4 +1,4 @@
1
1
  <?xml version="1.0" standalone="no"?>
2
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.80384 1.75H13.1962C13.6377 1.74999 14.0137 1.74998 14.3224 1.7752C14.6467 1.8017 14.9622 1.85972 15.2638 2.0134C15.7185 2.2451 16.0882 2.6148 16.3199 3.06952C16.4736 3.37113 16.5316 3.68663 16.5581 4.01093C16.5834 4.31962 16.5834 4.6956 16.5833 5.13715V14.8629C16.5834 15.3044 16.5834 15.6804 16.5581 15.9891C16.5316 16.3134 16.4736 16.6289 16.3199 16.9305C16.0882 17.3852 15.7185 17.7549 15.2638 17.9866C14.9622 18.1403 14.6467 18.1983 14.3224 18.2248C14.0137 18.25 13.6377 18.25 13.1961 18.25H6.80387C6.3623 18.25 5.9863 18.25 5.6776 18.2248C5.3533 18.1983 5.03781 18.1403 4.7362 17.9866C4.28147 17.7549 3.91177 17.3852 3.68007 16.9305C3.5264 16.6289 3.46837 16.3134 3.44187 15.9891C3.41665 15.6804 3.41666 15.3044 3.41667 14.8628V5.13717C3.41666 4.69561 3.41665 4.31962 3.44187 4.01093C3.46837 3.68663 3.5264 3.37113 3.68007 3.06952C3.91177 2.6148 4.28147 2.2451 4.7362 2.0134C5.03781 1.85972 5.3533 1.8017 5.6776 1.7752C5.9863 1.74998 6.36228 1.74999 6.80384 1.75ZM5.79975 3.27022C5.56821 3.28913 5.47209 3.32193 5.41718 3.34991C5.2447 3.4378 5.10447 3.57803 5.01658 3.75051C4.98861 3.80542 4.95581 3.90154 4.93689 4.13308C4.91726 4.37337 4.91667 4.68758 4.91667 5.16667V14.8333C4.91667 15.3124 4.91726 15.6266 4.93689 15.8669C4.95581 16.0985 4.98861 16.1946 5.01658 16.2495C5.10447 16.422 5.2447 16.5622 5.41718 16.6501C5.47209 16.6781 5.56821 16.7109 5.79975 16.7298C6.04005 16.7494 6.35425 16.75 6.83334 16.75H13.1667C13.6458 16.75 13.96 16.7494 14.2003 16.7298C14.4318 16.7109 14.5279 16.6781 14.5828 16.6501C14.7553 16.5622 14.8955 16.422 14.9834 16.2495C15.0114 16.1946 15.0442 16.0985 15.0631 15.8669C15.0828 15.6266 15.0833 15.3124 15.0833 14.8333V5.16667C15.0833 4.68758 15.0828 4.37337 15.0631 4.13308C15.0442 3.90154 15.0114 3.80542 14.9834 3.75051C14.8955 3.57803 14.7553 3.4378 14.5828 3.34991C14.5279 3.32193 14.4318 3.28913 14.2003 3.27022C13.96 3.25058 13.6458 3.25 13.1667 3.25H6.83334C6.35425 3.25 6.04005 3.25058 5.79975 3.27022ZM7.58334 5C7.58334 4.58579 7.91913 4.25 8.33334 4.25H11.6667C12.0809 4.25 12.4167 4.58579 12.4167 5C12.4167 5.41421 12.0809 5.75 11.6667 5.75H8.33334C7.91913 5.75 7.58334 5.41421 7.58334 5ZM8.41667 9.16667C8.41667 8.29222 9.12556 7.58333 10 7.58333C10.8745 7.58333 11.5833 8.29222 11.5833 9.16667C11.5833 10.0411 10.8745 10.75 10 10.75C9.12556 10.75 8.41667 10.0411 8.41667 9.16667ZM10 13.25C9.01784 13.25 8.3607 13.8131 8.22786 14.3476C8.12794 14.7496 7.72107 14.9944 7.31909 14.8945C6.91711 14.7946 6.67224 14.3877 6.77215 13.9858C7.11204 12.6183 8.51384 11.75 10 11.75C11.4862 11.75 12.888 12.6183 13.2279 13.9858C13.3278 14.3877 13.0829 14.7946 12.6809 14.8945C12.2789 14.9944 11.8721 14.7496 11.7722 14.3476C11.6393 13.8131 10.9822 13.25 10 13.25Z" fill="black"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.80384 1.75H13.1962C13.6377 1.74999 14.0137 1.74998 14.3224 1.7752C14.6467 1.8017 14.9622 1.85972 15.2638 2.0134C15.7185 2.2451 16.0882 2.6148 16.3199 3.06952C16.4736 3.37113 16.5316 3.68663 16.5581 4.01093C16.5834 4.31962 16.5834 4.6956 16.5833 5.13715V14.8629C16.5834 15.3044 16.5834 15.6804 16.5581 15.9891C16.5316 16.3134 16.4736 16.6289 16.3199 16.9305C16.0882 17.3852 15.7185 17.7549 15.2638 17.9866C14.9622 18.1403 14.6467 18.1983 14.3224 18.2248C14.0137 18.25 13.6377 18.25 13.1961 18.25H6.80387C6.3623 18.25 5.9863 18.25 5.6776 18.2248C5.3533 18.1983 5.03781 18.1403 4.7362 17.9866C4.28147 17.7549 3.91177 17.3852 3.68007 16.9305C3.5264 16.6289 3.46837 16.3134 3.44187 15.9891C3.41665 15.6804 3.41666 15.3044 3.41667 14.8628V5.13717C3.41666 4.69561 3.41665 4.31962 3.44187 4.01093C3.46837 3.68663 3.5264 3.37113 3.68007 3.06952C3.91177 2.6148 4.28147 2.2451 4.7362 2.0134C5.03781 1.85972 5.3533 1.8017 5.6776 1.7752C5.9863 1.74998 6.36228 1.74999 6.80384 1.75ZM5.79975 3.27022C5.56821 3.28913 5.47209 3.32193 5.41718 3.34991C5.2447 3.4378 5.10447 3.57803 5.01658 3.75051C4.98861 3.80542 4.95581 3.90154 4.93689 4.13308C4.91726 4.37337 4.91667 4.68758 4.91667 5.16667V14.8333C4.91667 15.3124 4.91726 15.6266 4.93689 15.8669C4.95581 16.0985 4.98861 16.1946 5.01658 16.2495C5.10447 16.422 5.2447 16.5622 5.41718 16.6501C5.47209 16.6781 5.56821 16.7109 5.79975 16.7298C6.04005 16.7494 6.35425 16.75 6.83334 16.75H13.1667C13.6458 16.75 13.96 16.7494 14.2003 16.7298C14.4318 16.7109 14.5279 16.6781 14.5828 16.6501C14.7553 16.5622 14.8955 16.422 14.9834 16.2495C15.0114 16.1946 15.0442 16.0985 15.0631 15.8669C15.0828 15.6266 15.0833 15.3124 15.0833 14.8333V5.16667C15.0833 4.68758 15.0828 4.37337 15.0631 4.13308C15.0442 3.90154 15.0114 3.80542 14.9834 3.75051C14.8955 3.57803 14.7553 3.4378 14.5828 3.34991C14.5279 3.32193 14.4318 3.28913 14.2003 3.27022C13.96 3.25058 13.6458 3.25 13.1667 3.25H6.83334C6.35425 3.25 6.04005 3.25058 5.79975 3.27022ZM7.58334 5C7.58334 4.58579 7.91913 4.25 8.33334 4.25H11.6667C12.0809 4.25 12.4167 4.58579 12.4167 5C12.4167 5.41421 12.0809 5.75 11.6667 5.75H8.33334C7.91913 5.75 7.58334 5.41421 7.58334 5ZM8.41667 9.16667C8.41667 8.29222 9.12556 7.58333 10 7.58333C10.8745 7.58333 11.5833 8.29222 11.5833 9.16667C11.5833 10.0411 10.8745 10.75 10 10.75C9.12556 10.75 8.41667 10.0411 8.41667 9.16667ZM10 13.25C9.01784 13.25 8.3607 13.8131 8.22786 14.3476C8.12794 14.7496 7.72107 14.9944 7.31909 14.8945C6.91711 14.7946 6.67224 14.3877 6.77215 13.9858C7.11204 12.6183 8.51384 11.75 10 11.75C11.4862 11.75 12.888 12.6183 13.2279 13.9858C13.3278 14.3877 13.0829 14.7946 12.6809 14.8945C12.2789 14.9944 11.8721 14.7496 11.7722 14.3476C11.6393 13.8131 10.9822 13.25 10 13.25Z"/>
4
4
  </svg>
@@ -1,5 +1,5 @@
1
1
  <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M2.52967 6.96965C2.82256 6.67676 3.29732 6.67676 3.59021 6.96965L6.09021 9.46965C6.23087 9.6103 6.30994 9.80101 6.30994 9.99992C6.30994 10.1988 6.23087 10.3895 6.09021 10.5302L3.59021 13.0302C3.29732 13.3231 2.82256 13.3231 2.52967 13.0302C2.23677 12.7373 2.23677 12.2625 2.52967 11.9696L4.49939 9.99992L2.52967 8.0302C2.23677 7.7373 2.23677 7.26254 2.52967 6.96965Z" fill="black"/>
2
+ <path d="M2.52967 6.96965C2.82256 6.67676 3.29732 6.67676 3.59021 6.96965L6.09021 9.46965C6.23087 9.6103 6.30994 9.80101 6.30994 9.99992C6.30994 10.1988 6.23087 10.3895 6.09021 10.5302L3.59021 13.0302C3.29732 13.3231 2.82256 13.3231 2.52967 13.0302C2.23677 12.7373 2.23677 12.2625 2.52967 11.9696L4.49939 9.99992L2.52967 8.0302C2.23677 7.7373 2.23677 7.26254 2.52967 6.96965Z"/>
3
3
  <path d="M16.94 3.41992C17.3542 3.41996 17.69 3.75573 17.69 4.16992C17.69 4.58411 17.3542 4.91988 16.94 4.91992H8.60994C8.19573 4.91992 7.85994 4.58414 7.85994 4.16992C7.85994 3.75571 8.19573 3.41992 8.60994 3.41992H16.94Z" />
4
4
  <path d="M16.94 7.30992C17.3542 7.30996 17.69 7.64573 17.69 8.05992C17.69 8.47411 17.3542 8.80988 16.94 8.80992H8.60994C8.19573 8.80992 7.85994 8.47414 7.85994 8.05992C7.85994 7.64571 8.19573 7.30992 8.60994 7.30992H16.94Z" />
5
5
  <path d="M16.94 11.1899C17.3542 11.19 17.69 11.5257 17.69 11.9399C17.69 12.3541 17.3542 12.6899 16.94 12.6899H8.60994C8.19573 12.6899 7.85994 12.3541 7.85994 11.9399C7.85994 11.5257 8.19573 11.1899 8.60994 11.1899H16.94Z" />
@@ -0,0 +1,5 @@
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"/>
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"/>
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"/>
5
+ </svg>
@@ -0,0 +1,3 @@
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"/>
3
+ </svg>
@@ -0,0 +1,3 @@
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"/>
3
+ </svg>
@@ -0,0 +1,3 @@
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"/>
3
+ </svg>