@fibery/ui-kit 4.2.0 → 5.0.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 (898) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +10 -12
  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/indicator.tsx +87 -0
  375. package/src/mobile-drawer.tsx +104 -0
  376. package/src/number-input/types.ts +1 -1
  377. package/src/palettes/common.ts +3 -3
  378. package/src/palettes/diff-colors.test.ts +134 -0
  379. package/src/palettes/diff-colors.ts +135 -1
  380. package/src/palettes/inspect.canvas-colors.test.ts +63 -63
  381. package/src/palettes/inspect.defs.colors.neutral-arch.test.ts +196 -64
  382. package/src/palettes/inspect.defs.colors.neutral-user.test.ts +196 -64
  383. package/src/palettes/inspect.defs.colors.warm-arch.test.ts +196 -64
  384. package/src/palettes/inspect.defs.colors.warm-user.test.ts +196 -64
  385. package/src/palettes/show-colors.test.ts +3 -3
  386. package/src/palettes/testkit.test.ts +6 -0
  387. package/src/palettes/testkit.ts +78 -22
  388. package/src/phone.ts +27 -0
  389. package/src/reactions/reaction-picker.tsx +3 -3
  390. package/src/rich-text-embed-error.tsx +2 -2
  391. package/src/root-theme-provider.test.tsx +2 -3
  392. package/src/select/select-in-popover.tsx +41 -25
  393. package/src/select/util.ts +1 -1
  394. package/src/thematic.tsx +10 -9
  395. package/src/theme-provider.test.tsx +18 -18
  396. package/src/theme-provider.tsx +3 -7
  397. package/src/theme-settings-core.ts +118 -0
  398. package/src/theme-settings.ts +2 -117
  399. package/src/theme-snapshots.test.ts +6 -7
  400. package/src/theming.build.ts +21 -15
  401. package/src/theming.generated.css +2162 -2034
  402. package/src/theming.generated.ts +2701 -2549
  403. package/src/toast/toast.tsx +1 -1
  404. package/src/toggle-button/round-toggle-button.tsx +28 -4
  405. package/src/toggle-button/toggle-button.tsx +72 -24
  406. package/src/toggle-on-off.tsx +0 -9
  407. package/src/use-is-phone.tsx +3 -27
  408. package/vitest.config.ts +1 -0
  409. package/src/icons/ast/ai-avatar.ts +0 -12
  410. package/src/icons/ast/ai-search.ts +0 -12
  411. package/src/icons/ast/anthropic.ts +0 -12
  412. package/src/icons/ast/app-details.ts +0 -12
  413. package/src/icons/ast/app-store-one-color.ts +0 -12
  414. package/src/icons/ast/app-store.ts +0 -12
  415. package/src/icons/ast/app-templates.ts +0 -12
  416. package/src/icons/ast/app-webhooks.ts +0 -12
  417. package/src/icons/ast/app-wiki.ts +0 -12
  418. package/src/icons/ast/apple.ts +0 -12
  419. package/src/icons/ast/arrow-bottom.ts +0 -12
  420. package/src/icons/ast/arrow-top.ts +0 -12
  421. package/src/icons/ast/automations-cancelled.ts +0 -12
  422. package/src/icons/ast/automations-disabled.ts +0 -12
  423. package/src/icons/ast/automations-error.ts +0 -12
  424. package/src/icons/ast/automations-in-progress.ts +0 -12
  425. package/src/icons/ast/automations-not-started.ts +0 -12
  426. package/src/icons/ast/automations-success.ts +0 -12
  427. package/src/icons/ast/back.ts +0 -12
  428. package/src/icons/ast/backlog-icon.ts +0 -12
  429. package/src/icons/ast/batch-actions-icon.ts +0 -12
  430. package/src/icons/ast/bell-filled.ts +0 -12
  431. package/src/icons/ast/chat-ai.ts +0 -12
  432. package/src/icons/ast/chat.ts +0 -12
  433. package/src/icons/ast/clean.ts +0 -12
  434. package/src/icons/ast/color-coding-filled.ts +0 -12
  435. package/src/icons/ast/create.ts +0 -12
  436. package/src/icons/ast/cross-circle.ts +0 -12
  437. package/src/icons/ast/csv.ts +0 -12
  438. package/src/icons/ast/database-off.ts +0 -12
  439. package/src/icons/ast/database-stroke.ts +0 -12
  440. package/src/icons/ast/demo.ts +0 -12
  441. package/src/icons/ast/dependency.ts +0 -12
  442. package/src/icons/ast/dividers.ts +0 -12
  443. package/src/icons/ast/document.ts +0 -12
  444. package/src/icons/ast/double-arrow-left.ts +0 -12
  445. package/src/icons/ast/double-arrow-right.ts +0 -12
  446. package/src/icons/ast/double-line.ts +0 -12
  447. package/src/icons/ast/drag-block-handle-single.ts +0 -12
  448. package/src/icons/ast/edit-value.ts +0 -12
  449. package/src/icons/ast/extension-assignments.ts +0 -12
  450. package/src/icons/ast/extension-avatar.ts +0 -12
  451. package/src/icons/ast/extension-comments.ts +0 -12
  452. package/src/icons/ast/extension-files.ts +0 -12
  453. package/src/icons/ast/extension-references.ts +0 -12
  454. package/src/icons/ast/extension-workflow.ts +0 -12
  455. package/src/icons/ast/favorites-checked.ts +0 -12
  456. package/src/icons/ast/fibery-desktop-app.ts +0 -12
  457. package/src/icons/ast/field-unit.ts +0 -12
  458. package/src/icons/ast/figma.ts +0 -12
  459. package/src/icons/ast/file-broken.ts +0 -12
  460. package/src/icons/ast/fullscreen-mode-off-icon.ts +0 -12
  461. package/src/icons/ast/fullscreen-mode-on-icon.ts +0 -12
  462. package/src/icons/ast/gauge.ts +0 -12
  463. package/src/icons/ast/github.ts +0 -12
  464. package/src/icons/ast/gitlab.ts +0 -12
  465. package/src/icons/ast/globe.ts +0 -12
  466. package/src/icons/ast/google-drive.ts +0 -12
  467. package/src/icons/ast/google-map.ts +0 -12
  468. package/src/icons/ast/hide.ts +0 -12
  469. package/src/icons/ast/integrations-integration-discourse-color.ts +0 -12
  470. package/src/icons/ast/integrations-integration-intercom-color.ts +0 -12
  471. package/src/icons/ast/integrations-integration-slack-color.ts +0 -12
  472. package/src/icons/ast/integrations-integration-zendesk-color.ts +0 -12
  473. package/src/icons/ast/intercom.ts +0 -12
  474. package/src/icons/ast/jira.ts +0 -12
  475. package/src/icons/ast/left-panel.ts +0 -12
  476. package/src/icons/ast/level-plus.ts +0 -12
  477. package/src/icons/ast/lock-outline.ts +0 -12
  478. package/src/icons/ast/loom.ts +0 -12
  479. package/src/icons/ast/loupe-zoom.ts +0 -12
  480. package/src/icons/ast/many-people.ts +0 -12
  481. package/src/icons/ast/message-plus-square.ts +0 -12
  482. package/src/icons/ast/miro.ts +0 -12
  483. package/src/icons/ast/mixpanel.ts +0 -12
  484. package/src/icons/ast/move-bottom.ts +0 -12
  485. package/src/icons/ast/move-top.ts +0 -12
  486. package/src/icons/ast/network-add.ts +0 -12
  487. package/src/icons/ast/network.ts +0 -12
  488. package/src/icons/ast/notifications.ts +0 -12
  489. package/src/icons/ast/open-ai.ts +0 -12
  490. package/src/icons/ast/open-as-page.ts +0 -12
  491. package/src/icons/ast/popup.ts +0 -12
  492. package/src/icons/ast/posts.ts +0 -12
  493. package/src/icons/ast/quick-filter-personal.ts +0 -12
  494. package/src/icons/ast/quick-filter.ts +0 -12
  495. package/src/icons/ast/reply.ts +0 -12
  496. package/src/icons/ast/restore.ts +0 -12
  497. package/src/icons/ast/richeditor-actions-more.ts +0 -12
  498. package/src/icons/ast/richeditor-comment-create.ts +0 -12
  499. package/src/icons/ast/richeditor-entity-link-create.ts +0 -12
  500. package/src/icons/ast/richeditor-history-redo.ts +0 -12
  501. package/src/icons/ast/richeditor-history-undo.ts +0 -12
  502. package/src/icons/ast/richeditor-image-upload.ts +0 -12
  503. package/src/icons/ast/richeditor-image-wrap-center.ts +0 -12
  504. package/src/icons/ast/richeditor-image-wrap-left.ts +0 -12
  505. package/src/icons/ast/richeditor-image-wrap-right.ts +0 -12
  506. package/src/icons/ast/richeditor-image-zoom.ts +0 -12
  507. package/src/icons/ast/richeditor-link-create.ts +0 -12
  508. package/src/icons/ast/richeditor-open-link.ts +0 -12
  509. package/src/icons/ast/richeditor-unlink.ts +0 -12
  510. package/src/icons/ast/right-panel.ts +0 -12
  511. package/src/icons/ast/rule-scheduled.ts +0 -12
  512. package/src/icons/ast/settings-off.ts +0 -12
  513. package/src/icons/ast/shared.ts +0 -12
  514. package/src/icons/ast/sidebar-fields-opened.ts +0 -12
  515. package/src/icons/ast/sidebar-fields.ts +0 -12
  516. package/src/icons/ast/sidebar.ts +0 -12
  517. package/src/icons/ast/slack-icon.ts +0 -12
  518. package/src/icons/ast/slack.ts +0 -12
  519. package/src/icons/ast/slide-menu-close.ts +0 -12
  520. package/src/icons/ast/slide-menu-open.ts +0 -12
  521. package/src/icons/ast/sort-on-bottom.ts +0 -12
  522. package/src/icons/ast/sort-on-top.ts +0 -12
  523. package/src/icons/ast/space-list.ts +0 -12
  524. package/src/icons/ast/success.ts +0 -12
  525. package/src/icons/ast/template.ts +0 -12
  526. package/src/icons/ast/thumbs-down.ts +0 -12
  527. package/src/icons/ast/thumbs-up.ts +0 -12
  528. package/src/icons/ast/twitter.ts +0 -12
  529. package/src/icons/ast/type-boolean.ts +0 -12
  530. package/src/icons/ast/type-function.ts +0 -12
  531. package/src/icons/ast/type-id.ts +0 -12
  532. package/src/icons/ast/type-rule.ts +0 -12
  533. package/src/icons/ast/type-url.ts +0 -12
  534. package/src/icons/ast/units-db-badge-abbr.ts +0 -12
  535. package/src/icons/ast/units-db-badge-full.ts +0 -12
  536. package/src/icons/ast/units-db-icon.ts +0 -12
  537. package/src/icons/ast/unlock-outline.ts +0 -12
  538. package/src/icons/ast/upgrade.ts +0 -12
  539. package/src/icons/ast/user-check.ts +0 -12
  540. package/src/icons/ast/user-group-remove.ts +0 -12
  541. package/src/icons/ast/user-group.ts +0 -12
  542. package/src/icons/ast/user-role.ts +0 -12
  543. package/src/icons/ast/user-x.ts +0 -12
  544. package/src/icons/ast/windows.ts +0 -12
  545. package/src/icons/ast/workspace-map.ts +0 -12
  546. package/src/icons/ast/youtube.ts +0 -12
  547. package/src/icons/ast/zoom-in.ts +0 -12
  548. package/src/icons/ast/zoom-out.ts +0 -12
  549. package/src/icons/react/app-details.tsx +0 -18
  550. package/src/icons/react/app-store-one-color.tsx +0 -18
  551. package/src/icons/react/app-templates.tsx +0 -18
  552. package/src/icons/react/app-webhooks.tsx +0 -18
  553. package/src/icons/react/arrow-bottom.tsx +0 -18
  554. package/src/icons/react/arrow-top.tsx +0 -18
  555. package/src/icons/react/automations-cancelled.tsx +0 -18
  556. package/src/icons/react/automations-error.tsx +0 -18
  557. package/src/icons/react/automations-in-progress.tsx +0 -18
  558. package/src/icons/react/automations-not-started.tsx +0 -18
  559. package/src/icons/react/automations-success.tsx +0 -18
  560. package/src/icons/react/backlog-icon.tsx +0 -18
  561. package/src/icons/react/batch-actions-icon.tsx +0 -18
  562. package/src/icons/react/bell-filled.tsx +0 -18
  563. package/src/icons/react/check-circle-filled.tsx +0 -18
  564. package/src/icons/react/check-circle.tsx +0 -18
  565. package/src/icons/react/clean.tsx +0 -18
  566. package/src/icons/react/clear-value.tsx +0 -18
  567. package/src/icons/react/color-coding-filled.tsx +0 -18
  568. package/src/icons/react/create.tsx +0 -18
  569. package/src/icons/react/cross-circle.tsx +0 -18
  570. package/src/icons/react/database-off.tsx +0 -18
  571. package/src/icons/react/database-stroke.tsx +0 -18
  572. package/src/icons/react/demo.tsx +0 -18
  573. package/src/icons/react/dependency.tsx +0 -18
  574. package/src/icons/react/dividers.tsx +0 -18
  575. package/src/icons/react/document.tsx +0 -18
  576. package/src/icons/react/double-arrow-left.tsx +0 -18
  577. package/src/icons/react/double-arrow-right.tsx +0 -18
  578. package/src/icons/react/double-line.tsx +0 -18
  579. package/src/icons/react/drag-block-handle-single.tsx +0 -18
  580. package/src/icons/react/edit-value.tsx +0 -18
  581. package/src/icons/react/error-circle-filled.tsx +0 -18
  582. package/src/icons/react/extension-assignments.tsx +0 -18
  583. package/src/icons/react/extension-avatar.tsx +0 -18
  584. package/src/icons/react/extension-comments.tsx +0 -18
  585. package/src/icons/react/extension-files.tsx +0 -18
  586. package/src/icons/react/extension-workflow.tsx +0 -18
  587. package/src/icons/react/favorites-checked.tsx +0 -18
  588. package/src/icons/react/fibery-desktop-app.tsx +0 -18
  589. package/src/icons/react/field-unit.tsx +0 -18
  590. package/src/icons/react/figma.tsx +0 -18
  591. package/src/icons/react/file-broken.tsx +0 -18
  592. package/src/icons/react/fullscreen-mode-off-icon.tsx +0 -18
  593. package/src/icons/react/fullscreen-mode-on-icon.tsx +0 -18
  594. package/src/icons/react/gauge.tsx +0 -18
  595. package/src/icons/react/github.tsx +0 -18
  596. package/src/icons/react/gitlab.tsx +0 -18
  597. package/src/icons/react/globe.tsx +0 -18
  598. package/src/icons/react/google-drive.tsx +0 -18
  599. package/src/icons/react/google-map.tsx +0 -18
  600. package/src/icons/react/hide.tsx +0 -18
  601. package/src/icons/react/image-xmark.tsx +0 -18
  602. package/src/icons/react/info-circle-filled.tsx +0 -18
  603. package/src/icons/react/info-circle.tsx +0 -18
  604. package/src/icons/react/integrations-integration-discourse-color.tsx +0 -18
  605. package/src/icons/react/integrations-integration-intercom-color.tsx +0 -18
  606. package/src/icons/react/integrations-integration-slack-color.tsx +0 -18
  607. package/src/icons/react/integrations-integration-zendesk-color.tsx +0 -18
  608. package/src/icons/react/intercom.tsx +0 -18
  609. package/src/icons/react/invite-people.tsx +0 -18
  610. package/src/icons/react/jira.tsx +0 -18
  611. package/src/icons/react/left-panel.tsx +0 -18
  612. package/src/icons/react/level-plus.tsx +0 -18
  613. package/src/icons/react/lock-outline.tsx +0 -18
  614. package/src/icons/react/loom.tsx +0 -18
  615. package/src/icons/react/loupe-zoom.tsx +0 -18
  616. package/src/icons/react/many-people.tsx +0 -18
  617. package/src/icons/react/message-plus-square.tsx +0 -18
  618. package/src/icons/react/miro.tsx +0 -18
  619. package/src/icons/react/mixpanel.tsx +0 -18
  620. package/src/icons/react/move-bottom.tsx +0 -18
  621. package/src/icons/react/move-space.tsx +0 -18
  622. package/src/icons/react/move-top.tsx +0 -18
  623. package/src/icons/react/network-add.tsx +0 -18
  624. package/src/icons/react/network.tsx +0 -18
  625. package/src/icons/react/open-ai.tsx +0 -18
  626. package/src/icons/react/open-as-page.tsx +0 -18
  627. package/src/icons/react/popup.tsx +0 -18
  628. package/src/icons/react/posts.tsx +0 -18
  629. package/src/icons/react/quick-filter-personal.tsx +0 -18
  630. package/src/icons/react/quick-filter.tsx +0 -18
  631. package/src/icons/react/remove-people.tsx +0 -18
  632. package/src/icons/react/reply.tsx +0 -18
  633. package/src/icons/react/restore.tsx +0 -18
  634. package/src/icons/react/richeditor-actions-more.tsx +0 -18
  635. package/src/icons/react/richeditor-comment-create.tsx +0 -18
  636. package/src/icons/react/richeditor-entity-link-create.tsx +0 -18
  637. package/src/icons/react/richeditor-history-redo.tsx +0 -18
  638. package/src/icons/react/richeditor-history-undo.tsx +0 -18
  639. package/src/icons/react/richeditor-image-upload.tsx +0 -18
  640. package/src/icons/react/richeditor-image-wrap-center.tsx +0 -18
  641. package/src/icons/react/richeditor-image-wrap-left.tsx +0 -18
  642. package/src/icons/react/richeditor-image-wrap-right.tsx +0 -18
  643. package/src/icons/react/richeditor-image-zoom.tsx +0 -18
  644. package/src/icons/react/richeditor-link-create.tsx +0 -18
  645. package/src/icons/react/richeditor-open-link.tsx +0 -18
  646. package/src/icons/react/richeditor-unlink.tsx +0 -18
  647. package/src/icons/react/right-panel.tsx +0 -18
  648. package/src/icons/react/rule-scheduled.tsx +0 -18
  649. package/src/icons/react/send-arrow.tsx +0 -18
  650. package/src/icons/react/settings-off.tsx +0 -18
  651. package/src/icons/react/shared.tsx +0 -18
  652. package/src/icons/react/sidebar-fields-opened.tsx +0 -18
  653. package/src/icons/react/sidebar-fields.tsx +0 -18
  654. package/src/icons/react/sidebar.tsx +0 -18
  655. package/src/icons/react/slack-icon.tsx +0 -18
  656. package/src/icons/react/slack.tsx +0 -18
  657. package/src/icons/react/slide-menu-close.tsx +0 -18
  658. package/src/icons/react/slide-menu-open.tsx +0 -18
  659. package/src/icons/react/smart-folder.tsx +0 -18
  660. package/src/icons/react/sort-on-bottom.tsx +0 -18
  661. package/src/icons/react/sort-on-top.tsx +0 -18
  662. package/src/icons/react/space-list.tsx +0 -18
  663. package/src/icons/react/success.tsx +0 -18
  664. package/src/icons/react/suggest-integration.tsx +0 -18
  665. package/src/icons/react/switch-to-mention.tsx +0 -18
  666. package/src/icons/react/template.tsx +0 -18
  667. package/src/icons/react/thumbs-down.tsx +0 -18
  668. package/src/icons/react/thumbs-up.tsx +0 -18
  669. package/src/icons/react/twitter.tsx +0 -18
  670. package/src/icons/react/type-boolean.tsx +0 -18
  671. package/src/icons/react/type-function.tsx +0 -18
  672. package/src/icons/react/type-id.tsx +0 -18
  673. package/src/icons/react/type-rule.tsx +0 -18
  674. package/src/icons/react/type-url.tsx +0 -18
  675. package/src/icons/react/units-db-badge-abbr.tsx +0 -18
  676. package/src/icons/react/units-db-badge-full.tsx +0 -18
  677. package/src/icons/react/units-db-icon.tsx +0 -18
  678. package/src/icons/react/unlock-outline.tsx +0 -18
  679. package/src/icons/react/upgrade.tsx +0 -18
  680. package/src/icons/react/user-check.tsx +0 -18
  681. package/src/icons/react/user-group-remove.tsx +0 -18
  682. package/src/icons/react/user-group.tsx +0 -18
  683. package/src/icons/react/user-role.tsx +0 -18
  684. package/src/icons/react/user-x.tsx +0 -18
  685. package/src/icons/react/windows.tsx +0 -18
  686. package/src/icons/react/workspace-map.tsx +0 -18
  687. package/src/icons/react/youtube.tsx +0 -18
  688. package/src/icons/react/zoom-in.tsx +0 -18
  689. package/src/icons/react/zoom-out.tsx +0 -18
  690. package/src/icons/svg/ai-avatar.svg +0 -3
  691. package/src/icons/svg/ai-search.svg +0 -3
  692. package/src/icons/svg/anthropic.svg +0 -3
  693. package/src/icons/svg/app-store-one-color.svg +0 -4
  694. package/src/icons/svg/app-store.svg +0 -4
  695. package/src/icons/svg/app-webhooks.svg +0 -2
  696. package/src/icons/svg/app-wiki.svg +0 -2
  697. package/src/icons/svg/apple.svg +0 -4
  698. package/src/icons/svg/automations-cancelled.svg +0 -3
  699. package/src/icons/svg/automations-disabled.svg +0 -3
  700. package/src/icons/svg/automations-success.svg +0 -3
  701. package/src/icons/svg/batch-actions-icon.svg +0 -4
  702. package/src/icons/svg/bell-filled.svg +0 -4
  703. package/src/icons/svg/chat-ai.svg +0 -5
  704. package/src/icons/svg/chat.svg +0 -3
  705. package/src/icons/svg/clean.svg +0 -6
  706. package/src/icons/svg/color-coding-filled.svg +0 -3
  707. package/src/icons/svg/create.svg +0 -3
  708. package/src/icons/svg/cross-circle.svg +0 -4
  709. package/src/icons/svg/csv.svg +0 -3
  710. package/src/icons/svg/database-off.svg +0 -3
  711. package/src/icons/svg/demo.svg +0 -2
  712. package/src/icons/svg/dependency.svg +0 -3
  713. package/src/icons/svg/document.svg +0 -4
  714. package/src/icons/svg/double-arrow-left.svg +0 -2
  715. package/src/icons/svg/double-arrow-right.svg +0 -2
  716. package/src/icons/svg/double-line.svg +0 -3
  717. package/src/icons/svg/drag-block-handle-single.svg +0 -5
  718. package/src/icons/svg/edit-value.svg +0 -5
  719. package/src/icons/svg/extension/assignments.svg +0 -7
  720. package/src/icons/svg/file-broken.svg +0 -3
  721. package/src/icons/svg/fullscreen-mode-on-icon.svg +0 -3
  722. package/src/icons/svg/gauge.svg +0 -5
  723. package/src/icons/svg/globe.svg +0 -3
  724. package/src/icons/svg/integrations/integration-slack-color.svg +0 -10
  725. package/src/icons/svg/intercom.svg +0 -3
  726. package/src/icons/svg/left-panel.svg +0 -11
  727. package/src/icons/svg/level-plus.svg +0 -4
  728. package/src/icons/svg/lock-outline.svg +0 -5
  729. package/src/icons/svg/loupe-zoom.svg +0 -3
  730. package/src/icons/svg/message-plus-square.svg +0 -4
  731. package/src/icons/svg/network-add.svg +0 -5
  732. package/src/icons/svg/notifications.svg +0 -2
  733. package/src/icons/svg/open-ai.svg +0 -3
  734. package/src/icons/svg/open-as-page.svg +0 -3
  735. package/src/icons/svg/posts.svg +0 -3
  736. package/src/icons/svg/quick-filter-personal.svg +0 -3
  737. package/src/icons/svg/quick-filter.svg +0 -3
  738. package/src/icons/svg/reply.svg +0 -2
  739. package/src/icons/svg/restore.svg +0 -2
  740. package/src/icons/svg/richeditor/actions/more.svg +0 -2
  741. package/src/icons/svg/richeditor/comment/create.svg +0 -5
  742. package/src/icons/svg/richeditor/entity-link/create.svg +0 -2
  743. package/src/icons/svg/richeditor/image/wrap-center.svg +0 -2
  744. package/src/icons/svg/richeditor/image/wrap-left.svg +0 -2
  745. package/src/icons/svg/richeditor/image/wrap-right.svg +0 -2
  746. package/src/icons/svg/richeditor/image/zoom.svg +0 -5
  747. package/src/icons/svg/richeditor/link/create.svg +0 -9
  748. package/src/icons/svg/richeditor/mark/code.svg +0 -5
  749. package/src/icons/svg/richeditor/mark/em.svg +0 -3
  750. package/src/icons/svg/richeditor/mark/highlight.svg +0 -3
  751. package/src/icons/svg/richeditor/mark/strike.svg +0 -3
  752. package/src/icons/svg/richeditor/mark/strong.svg +0 -3
  753. package/src/icons/svg/richeditor/unlink.svg +0 -10
  754. package/src/icons/svg/right-panel.svg +0 -11
  755. package/src/icons/svg/rule-scheduled.svg +0 -5
  756. package/src/icons/svg/settings-off.svg +0 -4
  757. package/src/icons/svg/shared.svg +0 -7
  758. package/src/icons/svg/sidebar-fields-opened.svg +0 -3
  759. package/src/icons/svg/sidebar-fields.svg +0 -6
  760. package/src/icons/svg/sidebar.svg +0 -2
  761. package/src/icons/svg/slack-icon.svg +0 -3
  762. package/src/icons/svg/slide-menu-close.svg +0 -4
  763. package/src/icons/svg/slide-menu-open.svg +0 -4
  764. package/src/icons/svg/sort-on-bottom.svg +0 -4
  765. package/src/icons/svg/sort-on-top.svg +0 -4
  766. package/src/icons/svg/space-list.svg +0 -4
  767. package/src/icons/svg/success.svg +0 -4
  768. package/src/icons/svg/template.svg +0 -3
  769. package/src/icons/svg/thumbs-down.svg +0 -3
  770. package/src/icons/svg/thumbs-up.svg +0 -3
  771. package/src/icons/svg/type/boolean.svg +0 -2
  772. package/src/icons/svg/type/function.svg +0 -2
  773. package/src/icons/svg/type/id.svg +0 -3
  774. package/src/icons/svg/type/rule.svg +0 -2
  775. package/src/icons/svg/type/url.svg +0 -9
  776. package/src/icons/svg/units/db-badge-abbr.svg +0 -4
  777. package/src/icons/svg/units/db-badge-full.svg +0 -4
  778. package/src/icons/svg/units/db-icon.svg +0 -4
  779. package/src/icons/svg/upgrade.svg +0 -2
  780. package/src/icons/svg/user-check.svg +0 -3
  781. package/src/icons/svg/windows.svg +0 -15
  782. package/src/icons/svg/workspace-map.svg +0 -3
  783. package/src/icons/svg/zoom-out.svg +0 -7
  784. package/src/notification-dot.tsx +0 -23
  785. /package/src/icons/svg/{dividers.svg → architect.svg} +0 -0
  786. /package/src/icons/svg/{back.svg → arrow-back.svg} +0 -0
  787. /package/src/icons/svg/{send-arrow.svg → arrow-send.svg} +0 -0
  788. /package/src/icons/svg/{extension/avatar.svg → avatar.svg} +0 -0
  789. /package/src/icons/svg/{backlog-icon.svg → backlog.svg} +0 -0
  790. /package/src/icons/svg/{check-circle-filled.svg → circle-check-filled.svg} +0 -0
  791. /package/src/icons/svg/{check-circle.svg → circle-check.svg} +0 -0
  792. /package/src/icons/svg/{error-circle-filled.svg → circle-cross-filled.svg} +0 -0
  793. /package/src/icons/svg/{info-circle-filled.svg → circle-info-filled.svg} +0 -0
  794. /package/src/icons/svg/{info-circle.svg → circle-info.svg} +0 -0
  795. /package/src/icons/svg/{extension/comments.svg → comments.svg} +0 -0
  796. /package/src/icons/svg/{add-database.svg → database-add.svg} +0 -0
  797. /package/src/icons/svg/{database-stroke.svg → database-outline.svg} +0 -0
  798. /package/src/icons/svg/{hide.svg → eye-off.svg} +0 -0
  799. /package/src/icons/svg/{favorites-checked.svg → favorites-filled.svg} +0 -0
  800. /package/src/icons/svg/{switch-to-mention.svg → field-units-large.svg} +0 -0
  801. /package/src/icons/svg/{extension/files.svg → files.svg} +0 -0
  802. /package/src/icons/svg/{smart-folder.svg → folder-smart.svg} +0 -0
  803. /package/src/icons/svg/{fullscreen-mode-off-icon.svg → fullscreen-mode-off.svg} +0 -0
  804. /package/src/icons/svg/{add-group.svg → group-add.svg} +0 -0
  805. /package/src/icons/svg/{image-xmark.svg → image-error.svg} +0 -0
  806. /package/src/icons/svg/{add-integration.svg → integration-add.svg} +0 -0
  807. /package/src/icons/svg/{integrations/integration-discourse-color.svg → integration-discourse.svg} +0 -0
  808. /package/src/icons/svg/{fibery-desktop-app.svg → integration-fibery.svg} +0 -0
  809. /package/src/icons/svg/{figma.svg → integration-figma.svg} +0 -0
  810. /package/src/icons/svg/{github.svg → integration-github.svg} +0 -0
  811. /package/src/icons/svg/{gitlab.svg → integration-gitlab.svg} +0 -0
  812. /package/src/icons/svg/{google-drive.svg → integration-google-drive.svg} +0 -0
  813. /package/src/icons/svg/{google-map.svg → integration-google-map.svg} +0 -0
  814. /package/src/icons/svg/{integrations/integration-intercom-color.svg → integration-intercom.svg} +0 -0
  815. /package/src/icons/svg/{jira.svg → integration-jira.svg} +0 -0
  816. /package/src/icons/svg/{loom.svg → integration-loom.svg} +0 -0
  817. /package/src/icons/svg/{miro.svg → integration-miro.svg} +0 -0
  818. /package/src/icons/svg/{mixpanel.svg → integration-mixpanel.svg} +0 -0
  819. /package/src/icons/svg/{slack.svg → integration-slack.svg} +0 -0
  820. /package/src/icons/svg/{suggest-integration.svg → integration-suggest.svg} +0 -0
  821. /package/src/icons/svg/{twitter.svg → integration-twitter.svg} +0 -0
  822. /package/src/icons/svg/{youtube.svg → integration-youtube.svg} +0 -0
  823. /package/src/icons/svg/{integrations/integration-zendesk-color.svg → integration-zendesk.svg} +0 -0
  824. /package/src/icons/svg/{move-bottom.svg → move-down.svg} +0 -0
  825. /package/src/icons/svg/{move-top.svg → move-up.svg} +0 -0
  826. /package/src/icons/svg/{popup.svg → open-in-panel.svg} +0 -0
  827. /package/src/icons/svg/{richeditor/open-link.svg → open-link.svg} +0 -0
  828. /package/src/icons/svg/{many-people.svg → people-all.svg} +0 -0
  829. /package/src/icons/svg/{user-group-remove.svg → people-group-remove.svg} +0 -0
  830. /package/src/icons/svg/{invite-people.svg → people-invite.svg} +0 -0
  831. /package/src/icons/svg/{remove-people.svg → people-remove.svg} +0 -0
  832. /package/src/icons/svg/{user-x.svg → people-x.svg} +0 -0
  833. /package/src/icons/svg/{zoom-in.svg → plus.svg} +0 -0
  834. /package/src/icons/svg/{app-details.svg → preferences.svg} +0 -0
  835. /package/src/icons/svg/{network.svg → propagate.svg} +0 -0
  836. /package/src/icons/svg/{add-reactions.svg → reactions-add.svg} +0 -0
  837. /package/src/icons/svg/{richeditor/history/redo.svg → redo.svg} +0 -0
  838. /package/src/icons/svg/{extension/references.svg → references.svg} +0 -0
  839. /package/src/icons/svg/{richeditor/block/callout.svg → richeditor-block-callout.svg} +0 -0
  840. /package/src/icons/svg/{richeditor/block/code.svg → richeditor-block-code.svg} +0 -0
  841. /package/src/icons/svg/{richeditor/block/embed.svg → richeditor-block-embed.svg} +0 -0
  842. /package/src/icons/svg/{richeditor/block/entity.svg → richeditor-block-entity.svg} +0 -0
  843. /package/src/icons/svg/{richeditor/block/file.svg → richeditor-block-file.svg} +0 -0
  844. /package/src/icons/svg/{richeditor/block/h1.svg → richeditor-block-h1.svg} +0 -0
  845. /package/src/icons/svg/{richeditor/block/h2.svg → richeditor-block-h2.svg} +0 -0
  846. /package/src/icons/svg/{richeditor/block/h3.svg → richeditor-block-h3.svg} +0 -0
  847. /package/src/icons/svg/{richeditor/block/h4.svg → richeditor-block-h4.svg} +0 -0
  848. /package/src/icons/svg/{richeditor/block/mention.svg → richeditor-block-mention.svg} +0 -0
  849. /package/src/icons/svg/{richeditor/block/paragraph.svg → richeditor-block-paragraph.svg} +0 -0
  850. /package/src/icons/svg/{richeditor/block/quote.svg → richeditor-block-quote.svg} +0 -0
  851. /package/src/icons/svg/{richeditor/checklist/create.svg → richeditor-checklist-create.svg} +0 -0
  852. /package/src/icons/svg/{richeditor/image/align-center.svg → richeditor-image-align-center.svg} +0 -0
  853. /package/src/icons/svg/{richeditor/image/align-left.svg → richeditor-image-align-left.svg} +0 -0
  854. /package/src/icons/svg/{richeditor/image/align-right.svg → richeditor-image-align-right.svg} +0 -0
  855. /package/src/icons/svg/{richeditor/image/upload.svg → richeditor-image.svg} +0 -0
  856. /package/src/icons/svg/{richeditor/linkedhighlight/create.svg → richeditor-linkedhighlight-create.svg} +0 -0
  857. /package/src/icons/svg/{richeditor/list/bullet.svg → richeditor-list-bullet.svg} +0 -0
  858. /package/src/icons/svg/{richeditor/list/ordered.svg → richeditor-list-ordered.svg} +0 -0
  859. /package/src/icons/svg/{richeditor/list/unindent.svg → richeditor-list-unindent.svg} +0 -0
  860. /package/src/icons/svg/{richeditor/mark/text-background-color.svg → richeditor-mark-text-background-color.svg} +0 -0
  861. /package/src/icons/svg/{richeditor/mark/underline.svg → richeditor-mark-underline.svg} +0 -0
  862. /package/src/icons/svg/{richeditor/table/create.svg → richeditor-table-create.svg} +0 -0
  863. /package/src/icons/svg/{richeditor/video/upload.svg → richeditor-video-upload.svg} +0 -0
  864. /package/src/icons/svg/{bolt.svg → rule.svg} +0 -0
  865. /package/src/icons/svg/{app-templates.svg → space-add.svg} +0 -0
  866. /package/src/icons/svg/{move-space.svg → space-move.svg} +0 -0
  867. /package/src/icons/svg/{type/button.svg → type-button.svg} +0 -0
  868. /package/src/icons/svg/{type/checkbox.svg → type-checkbox.svg} +0 -0
  869. /package/src/icons/svg/{type/date.svg → type-date.svg} +0 -0
  870. /package/src/icons/svg/{type/email.svg → type-email.svg} +0 -0
  871. /package/src/icons/svg/{type/emoji.svg → type-emoji.svg} +0 -0
  872. /package/src/icons/svg/{type/formula.svg → type-formula.svg} +0 -0
  873. /package/src/icons/svg/{type/location.svg → type-location.svg} +0 -0
  874. /package/src/icons/svg/{type/lookup.svg → type-lookup.svg} +0 -0
  875. /package/src/icons/svg/{type/money.svg → type-money.svg} +0 -0
  876. /package/src/icons/svg/{type/multi-select.svg → type-multi-select.svg} +0 -0
  877. /package/src/icons/svg/{type/number.svg → type-number.svg} +0 -0
  878. /package/src/icons/svg/{type/percent.svg → type-percent.svg} +0 -0
  879. /package/src/icons/svg/{type/phone.svg → type-phone.svg} +0 -0
  880. /package/src/icons/svg/{type/relation.svg → type-relation.svg} +0 -0
  881. /package/src/icons/svg/{type/rich-text.svg → type-rich-text.svg} +0 -0
  882. /package/src/icons/svg/{type/single-select.svg → type-single-select.svg} +0 -0
  883. /package/src/icons/svg/{type/text.svg → type-text.svg} +0 -0
  884. /package/src/icons/svg/{richeditor/history/undo.svg → undo.svg} +0 -0
  885. /package/src/icons/svg/{units/avatar.svg → units-avatar.svg} +0 -0
  886. /package/src/icons/svg/{units/collection.svg → units-collection.svg} +0 -0
  887. /package/src/icons/svg/{units/counter.svg → units-counter.svg} +0 -0
  888. /package/src/icons/svg/{units/date.svg → units-date.svg} +0 -0
  889. /package/src/icons/svg/{units/field-icon-button.svg → units-field-icon-button.svg} +0 -0
  890. /package/src/icons/svg/{units/field.svg → units-field.svg} +0 -0
  891. /package/src/icons/svg/{units/input.svg → units-input.svg} +0 -0
  892. /package/src/icons/svg/{field-unit.svg → units-normal.svg} +0 -0
  893. /package/src/icons/svg/{units/progress-bar.svg → units-progress-bar.svg} +0 -0
  894. /package/src/icons/svg/{units/rich-text.svg → units-rich-text.svg} +0 -0
  895. /package/src/icons/svg/{units/snippet.svg → units-snippet.svg} +0 -0
  896. /package/src/icons/svg/{unlock-outline.svg → unlock.svg} +0 -0
  897. /package/src/icons/svg/{clear-value.svg → value-clear.svg} +0 -0
  898. /package/src/icons/svg/{extension/workflow.svg → workflow.svg} +0 -0
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/google-drive.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const GoogleDrive: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"m2.36 15.784.795 1.37c.165.29.402.516.68.681l2.835-4.907H1c0 .32.082.639.247.928l1.114 1.928Z","fill":"#0066DA"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10 7.155 7.165 2.247a1.872 1.872 0 0 0-.68.68L1.247 12a1.868 1.868 0 0 0-.247.928h5.67L10 7.155Z","fill":"#00AC47"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M16.165 17.835c.278-.165.515-.392.68-.68l.33-.567 1.578-2.732c.165-.289.247-.609.247-.928h-5.67l1.206 2.371 1.629 2.536Z","fill":"#EA4335"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"m10 7.155 2.835-4.908A1.813 1.813 0 0 0 11.907 2H8.093c-.33 0-.65.093-.928.247L10 7.155Z","fill":"#00832D"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M13.33 12.928H6.67l-2.835 4.907c.278.165.598.247.928.247h10.474c.33 0 .65-.092.928-.247l-2.835-4.907Z","fill":"#2684FC"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"m16.134 7.464-2.619-4.536a1.873 1.873 0 0 0-.68-.68L10 7.154l3.33 5.773h5.66c0-.32-.083-.64-.248-.928l-2.608-4.536Z","fill":"#FFBA00"},"children":[]}],"metadata":""}]},"name":"google-drive"};
11
-
12
- export default GoogleDrive;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/google-map.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const GoogleMap: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M11.97 1.387a6.158 6.158 0 0 0-6.57 1.91l2.907 2.446 3.662-4.356Z","fill":"#1A73E8"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M5.399 3.297a6.128 6.128 0 0 0-1.442 3.955c0 1.157.231 2.095.61 2.935l3.738-4.444L5.4 3.297Z","fill":"#EA4335"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.11 4.9a2.353 2.353 0 0 1 1.798 3.872l3.663-4.355a6.165 6.165 0 0 0-3.6-3.03L8.305 5.743a2.347 2.347 0 0 1 1.806-.843Z","fill":"#4285F4"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.11 9.605a2.353 2.353 0 0 1-1.805-3.864l-3.738 4.446c.638 1.417 1.701 2.554 2.796 3.988l4.544-5.403c-.431.51-1.076.833-1.796.833Z","fill":"#FBBC04"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M11.817 15.65c2.052-3.21 4.446-4.667 4.446-8.398 0-1.023-.251-1.987-.692-2.835l-8.207 9.758c.348.456.699.941 1.041 1.476 1.248 1.928.902 3.084 1.707 3.084.803 0 .457-1.158 1.705-3.086Z","fill":"#34A853"},"children":[]}],"metadata":""}]},"name":"google-map"};
11
-
12
- export default GoogleMap;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/hide.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Hide: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M9.152 5.266c.28-.043.564-.065.847-.064 2.543 0 4.934 1.83 6.325 4.797-.213.452-.453.89-.72 1.312a.8.8 0 0 0 .04.921.8.8 0 0 0 1.32-.082c.372-.585.696-1.2.967-1.839a.8.8 0 0 0 0-.632C16.316 5.93 13.278 3.602 10 3.602c-.375-.001-.75.03-1.12.096a.811.811 0 1 0 .273 1.6v-.032ZM3.37 2.236A.803.803 0 1 0 2.235 3.37l2.479 2.47A11.69 11.69 0 0 0 2.067 9.68a.8.8 0 0 0 0 .64c1.615 3.75 4.654 6.077 7.932 6.077a7.405 7.405 0 0 0 4.038-1.231l2.591 2.599A.801.801 0 0 0 18 17.195a.8.8 0 0 0-.236-.568L3.37 2.235Zm5.085 7.348 1.96 1.959a1.6 1.6 0 0 1-1.959-1.96ZM10 14.797c-2.542 0-4.933-1.831-6.317-4.798a9.667 9.667 0 0 1 2.16-3.03L7.256 8.4a3.198 3.198 0 0 0 4.341 4.342l1.272 1.255c-.87.513-1.86.789-2.87.8Z"},"children":[]}],"metadata":""}]},"name":"hide"};
11
-
12
- export default Hide;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/integrations/integration-discourse-color.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const IntegrationsIntegrationDiscourseColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.067 2.223c-4.261 0-7.844 3.452-7.844 7.712v7.987l7.842-.007c4.259 0 7.713-3.586 7.713-7.845 0-4.258-3.457-7.847-7.711-7.847Z","fill":"#231F20"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.143 5.208a4.782 4.782 0 0 0-4.203 7.058l-.865 2.783 3.106-.702a4.782 4.782 0 1 0 1.967-9.139h-.005Z","fill":"#FFF9AE"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M13.936 7.08a4.779 4.779 0 0 1-5.755 7.259l-3.106.71 3.162-.373a4.778 4.778 0 0 0 5.698-7.597h.001Z","fill":"#00AEEF"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M13.056 6.198a4.78 4.78 0 0 1-4.965 7.82L5.075 15.05l3.106-.703a4.779 4.779 0 0 0 4.875-8.149Z","fill":"#00A94F"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M6.226 12.372a4.78 4.78 0 0 1 7.713-5.293 4.78 4.78 0 0 0-7.999 5.187l-.865 2.783 1.151-2.677Z","fill":"#F15D22"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M5.94 12.266a4.78 4.78 0 0 1 7.115-6.067 4.781 4.781 0 0 0-7.41 5.993l-.569 2.858.864-2.784Z","fill":"#E31B23"},"children":[]}],"metadata":""}]},"name":"integrations-integration-discourse-color"};
11
-
12
- export default IntegrationsIntegrationDiscourseColor;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/integrations/integration-intercom-color.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const IntegrationsIntegrationIntercomColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.704 10.775a.519.519 0 0 1-1.037 0V6.112a.519.519 0 0 1 1.037 0v4.663Zm-.18 3.246c-.08.068-2.002 1.68-5.524 1.68-3.521 0-5.442-1.612-5.522-1.68a.519.519 0 0 1 .674-.789c.03.026 1.745 1.432 4.849 1.432 3.142 0 4.83-1.416 4.847-1.43a.518.518 0 1 1 .675.787ZM4.296 6.11a.519.519 0 0 1 1.037 0v4.664a.518.518 0 0 1-1.037 0V6.112Zm2.592-1.037a.519.519 0 0 1 1.037 0v6.928a.519.519 0 0 1-1.037 0V5.075Zm2.593-.262a.518.518 0 1 1 1.037 0v7.519a.52.52 0 0 1-1.037 0V4.812Zm2.593.262a.519.519 0 0 1 1.037 0v6.928a.518.518 0 0 1-1.037 0V5.075Zm3.759-2.851H4.167c-1.074 0-1.944.87-1.944 1.944v11.667c0 1.074.87 1.944 1.944 1.944h11.667c1.074 0 1.944-.87 1.944-1.944V4.167c0-1.074-.87-1.944-1.944-1.944Z","fill":"#1F8DED"},"children":[]}],"metadata":""}]},"name":"integrations-integration-intercom-color"};
11
-
12
- export default IntegrationsIntegrationIntercomColor;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/integrations/integration-slack-color.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const IntegrationsIntegrationSlackColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M5.222 12.052c0 .9-.734 1.634-1.634 1.634-.9 0-1.634-.735-1.634-1.634 0-.9.735-1.634 1.634-1.634h1.634v1.634ZM6.046 12.052c0-.9.735-1.634 1.634-1.634.9 0 1.634.735 1.634 1.634v4.092c0 .899-.735 1.634-1.634 1.634-.9 0-1.634-.735-1.634-1.634v-4.092Z","fill":"#E01E5A"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.68 5.49c-.9 0-1.634-.734-1.634-1.633 0-.9.735-1.634 1.634-1.634.9 0 1.634.734 1.634 1.634V5.49H7.68ZM7.68 6.314c.9 0 1.634.735 1.634 1.635 0 .899-.735 1.634-1.634 1.634H3.588c-.9 0-1.634-.735-1.634-1.634 0-.9.735-1.635 1.634-1.635H7.68Z","fill":"#36C5F0"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.241 7.949c0-.9.735-1.635 1.634-1.635.9 0 1.634.735 1.634 1.635 0 .899-.734 1.634-1.634 1.634h-1.634V7.949ZM13.418 7.948c0 .9-.735 1.634-1.634 1.634-.9 0-1.635-.734-1.635-1.634V3.857c0-.9.735-1.634 1.635-1.634.899 0 1.634.734 1.634 1.634v4.091Z","fill":"#2EB67D"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M11.784 14.51c.899 0 1.634.735 1.634 1.634 0 .9-.735 1.634-1.634 1.634-.9 0-1.635-.735-1.635-1.634V14.51h1.635ZM11.784 13.686c-.9 0-1.635-.735-1.635-1.634 0-.9.735-1.634 1.635-1.634h4.091c.9 0 1.634.735 1.634 1.634 0 .9-.735 1.634-1.634 1.634h-4.091Z","fill":"#ECB22E"},"children":[]}],"metadata":""}]},"name":"integrations-integration-slack-color"};
11
-
12
- export default IntegrationsIntegrationSlackColor;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/integrations/integration-zendesk-color.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const IntegrationsIntegrationZendeskColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9.14 7.21v8.7H1.954l7.186-8.7ZM9.14 4.089a3.598 3.598 0 0 1-3.593 3.603 3.597 3.597 0 0 1-3.593-3.603H9.14ZM10.324 15.91a3.598 3.598 0 0 1 3.593-3.602 3.597 3.597 0 0 1 3.593 3.603h-7.186ZM10.324 12.788v-8.7h7.186l-7.186 8.7Z","fill":"#03363D"},"children":[]}],"metadata":""}]},"name":"integrations-integration-zendesk-color"};
11
-
12
- export default IntegrationsIntegrationZendeskColor;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/intercom.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Intercom: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.704 10.775a.519.519 0 0 1-1.037 0V6.112a.519.519 0 0 1 1.037 0v4.663Zm-.18 3.246c-.08.068-2.002 1.68-5.524 1.68-3.521 0-5.442-1.612-5.522-1.68a.519.519 0 0 1 .674-.789c.03.026 1.745 1.432 4.849 1.432 3.142 0 4.83-1.416 4.847-1.43a.518.518 0 1 1 .675.787ZM4.296 6.11a.519.519 0 0 1 1.037 0v4.664a.518.518 0 0 1-1.037 0V6.112Zm2.592-1.037a.519.519 0 0 1 1.037 0v6.928a.519.519 0 0 1-1.037 0V5.075Zm2.593-.262a.518.518 0 1 1 1.037 0v7.519a.52.52 0 0 1-1.037 0V4.812Zm2.593.262a.519.519 0 0 1 1.037 0v6.928a.518.518 0 0 1-1.037 0V5.075Zm3.759-2.851H4.167c-1.074 0-1.944.87-1.944 1.944v11.667c0 1.074.87 1.944 1.944 1.944h11.667c1.074 0 1.944-.87 1.944-1.944V4.167c0-1.074-.87-1.944-1.944-1.944Z"},"children":[]}],"metadata":""}]},"name":"intercom"};
11
-
12
- export default Intercom;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/jira.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Jira: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"m2.1 11.063 7.357 7.459a.764.764 0 0 0 1.086 0l7.359-7.459a1.523 1.523 0 0 0 0-2.126l-7.359-7.459a.767.767 0 0 0-.555-.228.763.763 0 0 0-.531.228L2.098 8.937a1.523 1.523 0 0 0 0 2.126H2.1Zm6.47-6.498v.018ZM3.224 10l4.97-5.037c.095.747.363 1.458.779 2.078L6.597 9.449a.784.784 0 0 0 0 1.101l2.855 2.894c.501.543.8 1.247.847 1.99-.03.471-.163.93-.388 1.344L3.223 10Zm8.206 5.422v-.005Zm.378-.384a4.82 4.82 0 0 0-.779-2.079l2.375-2.408a.784.784 0 0 0 0-1.1l-2.848-2.888a3.24 3.24 0 0 1-.854-1.997c.03-.475.164-.933.388-1.344L16.777 10l-4.97 5.038ZM10 8.203 8.227 10 10 11.797 11.773 10 10 8.203Z"},"children":[]}],"metadata":""}]},"name":"jira"};
11
-
12
- export default Jira;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/left-panel.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const LeftPanel: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20","fill":"none"},"children":[{"type":"element","tagName":"g","properties":{"opacity":0.9},"children":[{"type":"element","tagName":"mask","properties":{"id":"LeftPanel__a","maskUnits":"userSpaceOnUse","x":2,"y":2,"width":14,"height":16},"children":[{"type":"element","tagName":"path","properties":{"d":"M15 2H2v16h14v-4h-6V5.5h5V2Z","fill":"#C4C4C4"},"children":[]}]},{"type":"element","tagName":"g","properties":{"mask":"url(#LeftPanel__a)"},"children":[{"type":"element","tagName":"path","properties":{"d":"M14 14.92c0 1.33-.746 2.08-2.06 2.08H5.055C3.745 17 3 16.25 3 14.92V4.074C3 2.75 3.746 2 5.055 2h6.885C13.254 2 14 2.75 14 4.074V14.92Zm-1.707-.227V4.307c0-.39-.176-.59-.59-.59H5.297c-.415 0-.591.2-.591.59v10.386c0 .39.176.59.59.59h6.405c.415 0 .591-.2.591-.59Z","fill":"#65788B"},"children":[]}]},{"type":"element","tagName":"path","properties":{"d":"M18.12 9.881c0 .412-.329.746-.717.746h-2.18L14 10.566l.612.552.895.878c.12.117.202.304.202.49 0 .389-.269.684-.642.684a.617.617 0 0 1-.478-.218l-2.268-2.526c-.164-.186-.239-.341-.239-.544 0-.202.075-.365.239-.544l2.268-2.526a.6.6 0 0 1 .478-.225c.373 0 .642.295.642.684a.707.707 0 0 1-.202.49l-.903.886-.604.551 1.224-.07h2.179c.388 0 .716.342.716.754Z","fill":"#65788B"},"children":[]}]}],"metadata":""}]},"name":"left-panel"};
11
-
12
- export default LeftPanel;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/level-plus.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const LevelPlus: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.361 2A2.361 2.361 0 0 0 2 4.361v3.222C2 8.854 3.025 10 4.361 10h.889v3.417c0 .591.198 1.204.664 1.67.465.465 1.078.663 1.67.663H9.25a.75.75 0 0 0 0-1.5H7.583c-.263 0-.47-.086-.609-.225-.138-.138-.224-.345-.224-.608V10h.833C8.887 10 10 8.887 10 7.583V4.361C10 3.025 8.854 2 7.583 2H4.361ZM3.5 4.361c0-.475.386-.861.861-.861h3.222c.51 0 .917.418.917.861v3.222c0 .476-.441.917-.917.917H4.361c-.443 0-.861-.408-.861-.917V4.361Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M15.75 12.75a.75.75 0 0 0-1.5 0v1.5h-1.5a.75.75 0 0 0 0 1.5h1.5v1.5a.75.75 0 1 0 1.5 0v-1.5h1.5a.75.75 0 0 0 0-1.5h-1.5v-1.5Z"},"children":[]}],"metadata":""}]},"name":"level-plus"};
11
-
12
- export default LevelPlus;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/lock-outline.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const LockOutline: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M6.912 2.44C7.594 1.488 8.647 1 10 1s2.406.487 3.088 1.44c.647.908.882 2.135.882 3.477v.913h.28c.707 0 1.408.2 1.939.692.54.5.811 1.216.811 2.058v5.67c0 .87-.54 1.56-1.041 1.986-.263.223-.55.406-.827.536-.26.122-.575.228-.882.228h-8.5C4.107 18 3 16.744 3 15.25V9.58c0-.842.273-1.559.813-2.059.53-.49 1.23-.691 1.937-.691h.28v-.913c0-1.342.235-2.569.882-3.476Zm.618 4.39h4.94v-.913c0-1.21-.22-2.067-.603-2.605-.35-.49-.908-.812-1.867-.812-.96 0-1.516.321-1.867.812-.384.538-.603 1.395-.603 2.605v.913ZM4.832 8.623c-.175.161-.332.445-.332.957v5.67c0 .715.484 1.25 1.25 1.25h8.502a.979.979 0 0 0 .242-.086c.155-.072.33-.183.493-.321.35-.298.513-.608.513-.843V9.58c0-.513-.157-.797-.33-.958-.184-.17-.484-.292-.92-.292h-8.5c-.434 0-.734.122-.918.293ZM10 10.5a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-1.5 0v-2.25a.75.75 0 0 1 .75-.75Z","fill":"currentColor"},"children":[]}],"metadata":""}]},"name":"lock-outline"};
11
-
12
- export default LockOutline;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/loom.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Loom: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M19 9.013h-5.255l4.558-2.642-.987-1.742-4.558 2.642L15.4 2.713l-1.742-1.016-2.642 4.558V1H9.013v5.255L6.37 1.697l-1.742.987 2.642 4.558-4.558-2.613-.987 1.742 4.558 2.642H1v2.003h5.255L1.697 13.63l.987 1.742 4.558-2.642L4.6 17.287l1.742.987 2.642-4.558V19h2.003v-5.255l2.642 4.558 1.742-.987-2.642-4.558 4.558 2.642.987-1.742-4.558-2.642H19V9.013Zm-9 3.716A2.726 2.726 0 0 1 7.271 10c0-1.51 1.22-2.729 2.729-2.729 1.51 0 2.729 1.22 2.729 2.729 0 1.51-1.22 2.729-2.729 2.729Z","fill":"#625DF5"},"children":[]}],"metadata":""}]},"name":"loom"};
11
-
12
- export default Loom;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/loupe-zoom.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const LoupeZoom: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13.128 14.32a7.085 7.085 0 1 1 1.182-1.18l3.78 3.769a.835.835 0 1 1-1.18 1.182l-3.782-3.77ZM8.75 3.335a5.415 5.415 0 1 0 0 10.83 5.415 5.415 0 0 0 0-10.83Z"},"children":[]}],"metadata":""}]},"name":"loupe-zoom"};
11
-
12
- export default LoupeZoom;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/many-people.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const ManyPeople: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.25 2a1.583 1.583 0 1 0 0 3.167A1.583 1.583 0 0 0 5.25 2ZM3.478 8.764c.133-.534.79-1.097 1.772-1.097s1.64.563 1.772 1.097a.75.75 0 0 0 1.456-.362c-.34-1.367-1.742-2.235-3.228-2.235-1.486 0-2.888.868-3.228 2.235a.75.75 0 0 0 1.456.362ZM14.75 2a1.583 1.583 0 1 0 0 3.167 1.583 1.583 0 0 0 0-3.167Zm-1.772 6.764c.133-.534.79-1.097 1.772-1.097s1.64.563 1.772 1.097a.75.75 0 0 0 1.456-.362c-.34-1.367-1.742-2.235-3.228-2.235-1.486 0-2.888.868-3.228 2.235a.75.75 0 0 0 1.456.362Zm.189 2.82a1.583 1.583 0 1 1 3.167 0 1.583 1.583 0 0 1-3.167 0Zm1.583 4.083c-.982 0-1.64.563-1.772 1.097a.75.75 0 1 1-1.456-.362c.34-1.367 1.742-2.235 3.228-2.235 1.486 0 2.888.868 3.228 2.235a.75.75 0 1 1-1.456.362c-.132-.534-.79-1.097-1.772-1.097ZM5.25 10a1.583 1.583 0 1 0 0 3.167 1.583 1.583 0 0 0 0-3.167Zm-1.772 6.764c.133-.534.79-1.097 1.772-1.097s1.64.563 1.772 1.097a.75.75 0 1 0 1.456-.362c-.34-1.367-1.742-2.235-3.228-2.235-1.486 0-2.888.868-3.228 2.235a.75.75 0 1 0 1.456.362Z"},"children":[]}],"metadata":""}]},"name":"many-people"};
11
-
12
- export default ManyPeople;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/message-plus-square.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const MessagePlusSquare: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.75 6.25a.75.75 0 0 0-1.5 0V8H7.5a.75.75 0 0 0 0 1.5h1.75v1.75a.75.75 0 0 0 1.5 0V9.5h1.75a.75.75 0 0 0 0-1.5h-1.75V6.25Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13.531 1.75H6.47c-.674 0-1.224 0-1.672.037-.463.037-.882.118-1.272.317a3.25 3.25 0 0 0-1.42 1.42c-.2.391-.28.81-.318 1.273-.037.448-.037.998-.037 1.672v5.306c0 .67 0 1.15.11 1.566A3.25 3.25 0 0 0 4.16 15.64c.27.072.566.098.924.107v1.228c0 .198 0 .394.015.554.014.153.05.428.24.666.222.278.558.44.913.44.305-.001.542-.145.67-.23a6.55 6.55 0 0 0 .442-.334l2.01-1.608c.43-.343.565-.447.708-.52.14-.072.29-.125.444-.156.157-.032.328-.036.878-.036h2.128c.674 0 1.225 0 1.672-.037.463-.037.882-.118 1.273-.317a3.25 3.25 0 0 0 1.42-1.42c.199-.391.28-.81.317-1.273.037-.447.037-.998.037-1.672V6.47c0-.674 0-1.224-.037-1.672-.037-.463-.118-.882-.317-1.272a3.25 3.25 0 0 0-1.42-1.42c-.391-.2-.81-.28-1.273-.318-.447-.037-.998-.037-1.671-.037ZM4.207 3.44c.144-.073.343-.128.713-.158.38-.031.869-.032 1.581-.032h7c.713 0 1.202 0 1.581.032.37.03.57.085.713.159.33.168.598.435.765.765.074.144.13.343.16.713.03.38.031.869.031 1.581V11c0 .712 0 1.202-.032 1.58-.03.371-.085.57-.159.714a1.75 1.75 0 0 1-.765.765c-.144.074-.343.13-.713.16-.38.03-.868.031-1.58.031h-2.165c-.455 0-.788 0-1.112.066a3.248 3.248 0 0 0-.826.29c-.295.15-.554.358-.91.643l-1.905 1.524V15a.75.75 0 0 0-.75-.75c-.823 0-1.087-.006-1.286-.06a1.75 1.75 0 0 1-1.237-1.237c-.053-.199-.06-.463-.06-1.286V6.5c0-.712 0-1.202.032-1.58.03-.371.085-.57.159-.714a1.75 1.75 0 0 1 .765-.765Z"},"children":[]}],"metadata":""}]},"name":"message-plus-square"};
11
-
12
- export default MessagePlusSquare;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/miro.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Miro: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M4.9 1h10.2C17.238 1 19 2.763 19 4.9v10.2c0 2.138-1.762 3.9-3.9 3.9H4.9C2.762 19 1 17.238 1 15.1V4.9C1 2.762 2.763 1 4.9 1Z","fill":"#FFD02F"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13.488 3.25H11.5l1.65 2.888-3.6-2.888H7.562l1.8 3.525-3.75-3.525H3.625l1.987 4.5-1.987 9h1.987L9.4 7.113 7.562 16.75H9.55l3.637-10.275-1.65 10.275h1.988l3.6-11.25-3.637-2.25Z","fill":"#050038"},"children":[]}],"metadata":""}]},"name":"miro"};
11
-
12
- export default Miro;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/mixpanel.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Mixpanel: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M6.225 8.085h2.288c-.573-.359-.787-.859-1.073-1.787l-.86-3.184C6.19 1.682 5.867 1 4.294 1h-3.29v.86h.468c.965 0 1.074.358 1.36 1.432l.75 2.792c.392 1.356 1.002 2.001 2.644 2.001Zm5.294 0h2.288c1.647 0 2.216-.645 2.611-2.001l.75-2.792c.287-1.074.429-1.433 1.36-1.433h.468V1H15.74c-1.61 0-1.933.645-2.292 2.11l-.859 3.184c-.28.965-.497 1.432-1.07 1.791Zm-3.006 3.003h3.006V8.082H8.513v3.006Zm-7.51 7.085h3.29c1.573 0 1.896-.681 2.288-2.11l.859-3.184c.286-.928.5-1.432 1.073-1.787H6.225c-1.646 0-2.255.645-2.647 2.001l-.75 2.792c-.29 1.07-.396 1.429-1.36 1.429H1l.004.86Zm14.737 0h3.256v-.86h-.467c-.929 0-1.074-.358-1.36-1.431l-.75-2.793c-.392-1.36-.965-2.001-2.612-2.001h-2.284c.573.359.78.823 1.066 1.788l.86 3.183c.355 1.469.678 2.114 2.291 2.114Z","fill":"#1B0B3B"},"children":[]}],"metadata":""}]},"name":"mixpanel"};
11
-
12
- export default Mixpanel;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/move-bottom.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const MoveBottom: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.25 18.5A2.25 2.25 0 0 1 3 16.25v-3.5a2.25 2.25 0 0 1 2.25-2.25h9.5A2.25 2.25 0 0 1 17 12.75v3.5a2.25 2.25 0 0 1-2.25 2.25h-9.5Zm-.75-2.25c0 .414.336.75.75.75h9.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-9.5a.75.75 0 0 0-.75.75v3.5ZM7 4.72a.75.75 0 0 1 1.06 0l1.22 1.22V2.25a.75.75 0 0 1 1.5 0v3.69L12 4.72a.75.75 0 1 1 1.06 1.06l-2.5 2.5a.75.75 0 0 1-1.06 0L7 5.78a.75.75 0 0 1 0-1.06Z"},"children":[]}],"metadata":""}]},"name":"move-bottom"};
11
-
12
- export default MoveBottom;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/move-top.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const MoveTop: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.25 9.5A2.25 2.25 0 0 1 3 7.25v-3.5A2.25 2.25 0 0 1 5.25 1.5h9.5A2.25 2.25 0 0 1 17 3.75v3.5a2.25 2.25 0 0 1-2.25 2.25h-9.5ZM4.5 7.25c0 .414.336.75.75.75h9.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-9.5a.75.75 0 0 0-.75.75v3.5Zm8.56 8.03a.75.75 0 0 0 0-1.06l-2.5-2.5a.75.75 0 0 0-1.06 0L7 14.22a.75.75 0 1 0 1.06 1.06l1.22-1.22v3.69a.75.75 0 0 0 1.5 0v-3.69L12 15.28a.75.75 0 0 0 1.06 0Z"},"children":[]}],"metadata":""}]},"name":"move-top"};
11
-
12
- export default MoveTop;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/network-add.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const NetworkAdd: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M7 4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-.25v1.25h2.583a.75.75 0 0 1 0 1.5H6.667a.917.917 0 0 0-.917.917V12H6a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h.25v-.333A2.417 2.417 0 0 1 6.667 9.25H9.25V8H9a2 2 0 0 1-2-2V4Zm2-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5V4a.5.5 0 0 0-.5-.5H9Zm-5 10a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5H4Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M15 12a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5A.75.75 0 0 1 15 12Z"},"children":[]}],"metadata":""}]},"name":"network-add"};
11
-
12
- export default NetworkAdd;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/network.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Network: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9 2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h.25v1.25H6.667a2.417 2.417 0 0 0-2.417 2.417V12H4a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-.25v-.333a.917.917 0 0 1 .917-.917h6.666a.917.917 0 0 1 .917.917V12H14a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-.25v-.333a2.417 2.417 0 0 0-2.417-2.417H10.75V8H11a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H9Zm-.5 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H9a.5.5 0 0 1-.5-.5V4ZM4 13.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H4a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5Zm10 0a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-2Z"},"children":[]}],"metadata":""}]},"name":"network"};
11
-
12
- export default Network;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/notifications.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Notifications: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"m4.004 13.588-.428-.26.428.26Zm.002 1.912v.5a.5.5 0 0 0 .499-.469l-.5-.031ZM16 15.5l-.353.354A.5.5 0 0 0 16 16v-.5Zm.003-1.912-.428.26.428-.26ZM10.004 3a.5.5 0 0 0 0-1v1Zm0 14.5.447-.224a.5.5 0 0 0-.447-.276v.5Zm0-14.5a.5.5 0 0 0 0 1V3Zm-6 10.588.427.26-.427-.26Zm.002 1.912V15a.5.5 0 0 0-.5.469l.5.031ZM16 15.5l.354-.354A.5.5 0 0 0 16 15v.5Zm.003-1.912-.428.26.428-.26ZM10.004 2a.5.5 0 1 0 0 1V2Zm0 15.5-.448.224a.5.5 0 0 0 .448.276v-.5ZM4.43 13.847c.84-1.385 2.056-3.588 2.073-6.347h-1c.016 2.506-1.098 4.458-1.928 5.829l.855.518ZM4.006 15c-.237.003-.326-.06-.302-.029.088.064.07.16.078.115.011-.074.061-.211.184-.443.119-.224.277-.486.465-.796l-.855-.518c-.188.31-.361.597-.494.847-.129.243-.249.506-.288.755-.044.279.008.62.322.849.249.181.58.22.89.22v-1ZM16 16c.31 0 .641-.039.89-.22.314-.229.366-.57.322-.849-.039-.25-.16-.512-.288-.755-.133-.25-.306-.537-.494-.847l-.855.518c.188.31.346.572.465.796.123.232.173.37.184.443.007.045-.01-.051.078-.115.024-.03-.065.032-.302.029v1Zm.43-2.671c-.83-1.37-1.944-3.323-1.928-5.829h-1c.017 2.759 1.234 4.962 2.073 6.347l.855-.518ZM6.504 7.5c0-1.51.374-2.32.821-2.772.452-.456 1.064-.633 1.726-.695l-.094-.996c-.761.072-1.65.289-2.342.987-.697.703-1.111 1.809-1.111 3.476h1ZM9.05 4.033c.344-.034.666-.033.953-.033V3c-.287 0-.656 0-1.047.037l.094.996Zm.438-.379c.135-.547.428-.654.515-.654V2c-.714 0-1.287.606-1.486 1.415l.971.239ZM14.503 7.5c0-1.667-.414-2.773-1.11-3.476-.693-.698-1.581-.915-2.342-.987l-.094.996c.661.062 1.273.239 1.725.695.447.451.822 1.261.822 2.772h1Zm-3.452-4.463C10.659 3 10.29 3 10.004 3v1c.286 0 .608 0 .953.033l.094-.996ZM10.004 3c.086 0 .38.107.514.654l.971-.239C11.29 2.606 10.717 2 10.004 2v1Zm-2 12H4.006v1h3.998v-1Zm-.5.5c0 .413.12 1.022.494 1.542.392.546 1.043.958 2.006.958v-1c-.637 0-.987-.254-1.195-.542a1.736 1.736 0 0 1-.305-.958h-1Zm4.5.5H16v-1h-3.997v1Zm-2 2c.963 0 1.613-.412 2.005-.958.375-.52.495-1.129.495-1.542h-1c0 .253-.08.644-.306.958-.208.288-.557.542-1.194.542v1Zm-2-2h4v-1h-4v1Zm-4.428-2.671.855.518-.855-.518Zm.929 2.202-.998-.062.998.062Zm11.85-.385-.707.708.707-.708Zm.076-1.817-.855.518.855-.518ZM10.004 2v1-1Zm-.448 15.724.895-.448-.895.448Z"},"children":[]}],"metadata":""}]},"name":"notifications"};
11
-
12
- export default Notifications;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/open-ai.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const OpenAi: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M17.5 8.412a4.356 4.356 0 0 0-.375-3.58 4.41 4.41 0 0 0-4.748-2.116A4.375 4.375 0 0 0 9.088 1.25a4.414 4.414 0 0 0-4.207 3.053 4.375 4.375 0 0 0-2.916 2.114 4.414 4.414 0 0 0 .543 5.17 4.355 4.355 0 0 0 .376 3.581 4.41 4.41 0 0 0 4.749 2.116 4.357 4.357 0 0 0 3.289 1.466 4.413 4.413 0 0 0 4.207-3.055 4.375 4.375 0 0 0 2.915-2.114 4.414 4.414 0 0 0-.544-5.168Zm-6.577 9.194a3.267 3.267 0 0 1-2.1-.759l.104-.058 3.484-2.013a.565.565 0 0 0 .287-.495V9.366l1.473.85a.048.048 0 0 1 .028.04v4.07a3.283 3.283 0 0 1-3.276 3.28Zm-7.046-3.01a3.267 3.267 0 0 1-.39-2.198l.102.062 3.485 2.012a.564.564 0 0 0 .572 0l4.255-2.457v1.702a.058.058 0 0 1-.022.045l-3.522 2.034a3.283 3.283 0 0 1-4.48-1.2ZM2.96 6.989a3.267 3.267 0 0 1 1.709-1.437l-.002.12v4.026a.564.564 0 0 0 .285.495l4.255 2.456-1.473.85a.047.047 0 0 1-.024.01c-.008 0-.017 0-.025-.004L4.16 11.468a3.283 3.283 0 0 1-1.2-4.478v-.001ZM15.06 9.806 10.807 7.35l1.472-.851a.048.048 0 0 1 .05-.004l3.523 2.034a3.28 3.28 0 0 1-.506 5.918V10.3a.563.563 0 0 0-.285-.495M16.527 7.6l-.104-.062-3.484-2.012a.564.564 0 0 0-.573 0L8.112 7.982v-1.7a.058.058 0 0 1 .02-.046l3.523-2.032a3.28 3.28 0 0 1 4.87 3.396m-9.214 3.033L5.838 9.78a.049.049 0 0 1-.03-.04v-4.07a3.28 3.28 0 0 1 5.38-2.517l-.104.058L7.6 5.224a.564.564 0 0 0-.287.496l-.003 4.912h.001Zm.8-1.726 1.894-1.095 1.894 1.094v2.189l-1.896 1.092-1.894-1.093V8.907h.002Z"},"children":[]}],"metadata":""}]},"name":"open-ai"};
11
-
12
- export default OpenAi;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/open-as-page.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const OpenAsPage: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M16.25 3H12a.75.75 0 0 0 0 1.5h2.44L4.5 14.44V12A.75.75 0 0 0 3 12v4.25a.75.75 0 0 0 .75.75H8a.75.75 0 0 0 0-1.5H5.56l9.94-9.94V8A.75.75 0 0 0 17 8V3.75a.75.75 0 0 0-.75-.75Z"},"children":[]}],"metadata":""}]},"name":"open-as-page"};
11
-
12
- export default OpenAsPage;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/popup.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Popup: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M7.25 2A2.25 2.25 0 0 0 5 4.25V9a.75.75 0 0 0 1.5 0V4.25a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 .75.75v11.5a.75.75 0 0 1-.75.75H11a.75.75 0 0 0 0 1.5h3.75A2.25 2.25 0 0 0 17 15.75V4.25A2.25 2.25 0 0 0 14.75 2h-7.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M8 11.25H3.75a.75.75 0 0 0 0 1.5h2.44l-3.97 3.97a.75.75 0 1 0 1.06 1.06l3.97-3.97v2.44a.75.75 0 0 0 1.5 0V12a.75.75 0 0 0-.75-.75Z"},"children":[]}],"metadata":""}]},"name":"popup"};
11
-
12
- export default Popup;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/posts.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Posts: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.25 4.5a.75.75 0 0 0-.75.75V7c0 .414.336.75.75.75h11.5A.75.75 0 0 0 16.5 7V5.25a.75.75 0 0 0-.75-.75H4.25ZM2 5.25A2.25 2.25 0 0 1 4.25 3h11.5A2.25 2.25 0 0 1 18 5.25V7a2.25 2.25 0 0 1-2.25 2.25H4.25A2.25 2.25 0 0 1 2 7V5.25Zm2.25 7a.75.75 0 0 0-.75.75v1.75c0 .414.336.75.75.75h11.5a.75.75 0 0 0 .75-.75V13a.75.75 0 0 0-.75-.75H4.25ZM2 13a2.25 2.25 0 0 1 2.25-2.25h11.5A2.25 2.25 0 0 1 18 13v1.75A2.25 2.25 0 0 1 15.75 17H4.25A2.25 2.25 0 0 1 2 14.75V13Z"},"children":[]}],"metadata":""}]},"name":"posts"};
11
-
12
- export default Posts;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/quick-filter-personal.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const QuickFilterPersonal: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M2.75 11.25a.75.75 0 0 1 .75.75v3.25c0 .69.56 1.25 1.25 1.25H8A.75.75 0 0 1 8 18H4.75A2.75 2.75 0 0 1 2 15.25V12a.75.75 0 0 1 .75-.75Zm14.5 0A.75.75 0 0 1 18 12v3.25A2.75 2.75 0 0 1 15.25 18H12a.75.75 0 0 1 0-1.5h3.25c.69 0 1.25-.56 1.25-1.25V12a.75.75 0 0 1 .75-.75Zm-6 .75a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1 0-1.5h2.5Zm1-2.75a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5h4.5ZM8 2a.75.75 0 0 1 0 1.5H4.75c-.69 0-1.25.56-1.25 1.25V8A.75.75 0 0 1 2 8V4.75A2.75 2.75 0 0 1 4.75 2H8Zm7.25 0A2.75 2.75 0 0 1 18 4.75V8a.75.75 0 0 1-1.5 0V4.75c0-.69-.56-1.25-1.25-1.25H12A.75.75 0 0 1 12 2h3.25Zm-2 4.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h6.5Z","fill":"#000"},"children":[]}],"metadata":""}]},"name":"quick-filter-personal"};
11
-
12
- export default QuickFilterPersonal;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/quick-filter.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const QuickFilter: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.25 2A2.75 2.75 0 0 1 18 4.75v10.5A2.75 2.75 0 0 1 15.25 18H4.75A2.75 2.75 0 0 1 2 15.25V4.75A2.75 2.75 0 0 1 4.75 2h10.5ZM4.75 3.5c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25V4.75c0-.69-.56-1.25-1.25-1.25H4.75Zm6.5 8.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1 0-1.5h2.5Zm1-2.75a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5h4.5Zm1-2.75a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h6.5Z","fill":"#000"},"children":[]}],"metadata":""}]},"name":"quick-filter"};
11
-
12
- export default QuickFilter;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/reply.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Reply: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M4.5 6a.5.5 0 0 0-1 0h1ZM18 11l.354.354a.5.5 0 0 0 0-.708L18 11Zm-3.646-4.354a.5.5 0 0 0-.708.708l.708-.708Zm-.708 8a.5.5 0 1 0 .708.708l-.708-.708ZM3.5 6v1h1V6h-1ZM8 11.5h10v-1H8v1Zm10.354-.854-4-4-.708.708 4 4 .708-.708Zm-.708 0-4 4 .708.708 4-4-.708-.708ZM3.5 7A4.5 4.5 0 0 0 8 11.5v-1A3.5 3.5 0 0 1 4.5 7h-1Z"},"children":[]}],"metadata":""}]},"name":"reply"};
11
-
12
- export default Reply;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/restore.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const Restore: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.361 11.348c0-2.403-1.623-4.06-4.271-4.06H7.615l-1.342.058.961-.797 1.33-1.301a.697.697 0 0 0 .235-.527c0-.416-.293-.721-.733-.721a.799.799 0 0 0-.545.229L4.23 7.486a.784.784 0 0 0 0 1.107l3.292 3.253a.806.806 0 0 0 .545.234c.44 0 .733-.31.733-.726a.697.697 0 0 0-.235-.528l-1.33-1.3-.96-.797 1.341.064h3.463c1.776 0 2.8 1.037 2.8 2.52 0 1.476-1.024 2.542-2.8 2.542H9.69c-.439 0-.761.34-.761.756 0 .41.322.75.761.75h1.465c2.608 0 4.207-1.582 4.207-4.013Z"},"children":[]}],"metadata":""}]},"name":"restore"};
11
-
12
- export default Restore;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/richeditor/actions/more.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const RicheditorActionsMore: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M9.875 8a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM3.75 8a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM16 8a1.75 1.75 0 1 0 0 3.5A1.75 1.75 0 0 0 16 8Z"},"children":[]}],"metadata":""}]},"name":"richeditor-actions-more"};
11
-
12
- export default RicheditorActionsMore;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/richeditor/comment/create.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const RicheditorCommentCreate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M5.25 7A.75.75 0 0 1 6 6.25h7.5a.75.75 0 0 1 0 1.5H6A.75.75 0 0 1 5.25 7ZM6 9.25a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5H6Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 5a2.75 2.75 0 0 1 2.75-2.75h10.8A2.95 2.95 0 0 1 18.5 5.2v7.71a2.75 2.75 0 0 1-2.75 2.75h-.87v1.84a.75.75 0 0 1-1.131.646l-4.22-2.485H4.75A2.75 2.75 0 0 1 2 12.91V5Zm2.75-1.25c-.69 0-1.25.56-1.25 1.25v7.91c0 .691.56 1.25 1.25 1.25h4.983a.75.75 0 0 1 .38.104l3.266 1.924V14.91a.75.75 0 0 1 .75-.75h1.621c.69 0 1.25-.56 1.25-1.25V5.2c0-.8-.65-1.45-1.45-1.45H4.75Z"},"children":[]}],"metadata":""}]},"name":"richeditor-comment-create"};
11
-
12
- export default RicheditorCommentCreate;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/richeditor/entity-link/create.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const RicheditorEntityLinkCreate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M1 13.99c0 1.636.675 2.51 2.5 2.51h10c-.037-.149-.073-.246-.105-.33-.055-.147-.095-.254-.095-.52 0-.282.045-.4.104-.559.03-.078.063-.165.096-.286H3.503c-.658 0-1.003-.296-1.003-.911V5.913c0-.622.345-.91 1.003-.91h11.994c.65 0 1.003.288 1.003.91V11.5l.197-.034a3.03 3.03 0 0 1 .603-.063c.225 0 .329.022.476.053.063.014.133.029.224.044V5.002c0-1.628-.667-2.502-2.5-2.502h-12C1.675 2.5 1 3.374 1 5.002v8.988Zm13.5-6.24a.75.75 0 0 0-.75-.75h-8.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 .75-.75Zm3.633 6.175v.842h.834a.834.834 0 0 1 0 1.666h-.834v.842a.834.834 0 0 1-1.667 0v-.842h-.833a.833.833 0 0 1 0-1.666h.834v-.842a.834.834 0 0 1 1.667 0Z"},"children":[]}],"metadata":""}]},"name":"richeditor-entity-link-create"};
11
-
12
- export default RicheditorEntityLinkCreate;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/richeditor/history/redo.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const RicheditorHistoryRedo: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M4.64 11.348c0-2.403 1.623-4.06 4.272-4.06h3.474l1.342.058-.961-.797-1.33-1.301a.697.697 0 0 1-.234-.527c0-.416.293-.721.732-.721.193 0 .393.082.545.229l3.293 3.257a.784.784 0 0 1 0 1.107l-3.293 3.253a.805.805 0 0 1-.545.234c-.44 0-.732-.31-.732-.726 0-.229.093-.393.234-.528l1.33-1.3.96-.797-1.34.064H8.922c-1.775 0-2.8 1.037-2.8 2.52 0 1.476 1.025 2.542 2.8 2.542h1.389c.44 0 .762.34.762.756 0 .41-.323.75-.762.75H8.847c-2.607 0-4.207-1.582-4.207-4.013Z"},"children":[]}],"metadata":""}]},"name":"richeditor-history-redo"};
11
-
12
- export default RicheditorHistoryRedo;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/richeditor/history/undo.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const RicheditorHistoryUndo: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.361 11.348c0-2.403-1.623-4.06-4.271-4.06H7.615l-1.342.058.961-.797 1.33-1.301a.697.697 0 0 0 .235-.527c0-.416-.293-.721-.733-.721a.799.799 0 0 0-.545.229L4.23 7.486a.784.784 0 0 0 0 1.107l3.292 3.253a.806.806 0 0 0 .545.234c.44 0 .733-.31.733-.726a.697.697 0 0 0-.235-.528l-1.33-1.3-.96-.797 1.341.064h3.463c1.776 0 2.8 1.037 2.8 2.52 0 1.476-1.024 2.542-2.8 2.542H9.69c-.439 0-.761.34-.761.756 0 .41.322.75.761.75h1.465c2.608 0 4.207-1.582 4.207-4.013Z"},"children":[]}],"metadata":""}]},"name":"richeditor-history-undo"};
11
-
12
- export default RicheditorHistoryUndo;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/richeditor/image/upload.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const RicheditorImageUpload: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.623 2h8.754c.482 0 .888 0 1.221.027.349.029.683.09 1 .253.484.246.876.638 1.122 1.121.162.318.224.652.253 1 .027.334.027.74.027 1.222v8.754c0 .482 0 .888-.027 1.221-.029.349-.09.683-.253 1A2.566 2.566 0 0 1 16.6 17.72c-.265.135-.54.2-.825.235-.37.045-.828.045-1.38.045H5.623c-.482 0-.888 0-1.221-.027-.349-.029-.683-.09-1-.253A2.566 2.566 0 0 1 2.28 16.6a2.416 2.416 0 0 1-.234-.82C2 15.41 2 14.95 2 14.396V5.623c0-.482 0-.888.027-1.221.029-.349.09-.683.253-1A2.566 2.566 0 0 1 3.4 2.28c.318-.162.652-.224 1-.253C4.736 2 5.142 2 5.624 2ZM4.525 3.532c-.256.02-.369.057-.439.093-.198.1-.36.263-.461.461-.036.07-.073.183-.093.439a15.5 15.5 0 0 0-.023 1.128v8.268l2.369-2.34.014-.014c.339-.351.625-.647.878-.87.266-.233.545-.432.886-.548a2.566 2.566 0 0 1 1.6-.017c.343.108.627.301.897.529.258.217.55.506.896.85l1.001.992c.261-.257.49-.478.697-.652.27-.228.555-.42.899-.53a2.566 2.566 0 0 1 1.6.02c.341.116.621.315.886.549.113.1.232.212.359.339V5.653c0-.52-.001-.864-.023-1.128-.02-.256-.057-.37-.093-.439a1.057 1.057 0 0 0-.461-.461c-.07-.036-.183-.073-.439-.093a15.507 15.507 0 0 0-1.128-.023H5.653c-.52 0-.864.001-1.128.023ZM16.49 14.38l-.547-.55c-.365-.38-.608-.63-.81-.808-.194-.172-.3-.229-.375-.254a1.056 1.056 0 0 0-.659-.008c-.075.024-.182.078-.381.245-.16.135-.347.314-.6.563l2.8 2.804c.196-.101.356-.262.456-.46.036-.069.073-.182.093-.438.021-.258.023-.593.023-1.094Zm-2.588 2.11-2.384-2.39-.003-.002-1.508-1.495c-.373-.37-.621-.616-.827-.788-.198-.167-.306-.221-.38-.245a1.057 1.057 0 0 0-.659.007c-.074.026-.18.082-.375.253-.202.177-.445.428-.81.806l-.012.012-3.315 3.275c.101.194.26.352.456.451.07.036.183.073.439.093.264.022.608.023 1.128.023h8.25ZM12.717 6.226a1.057 1.057 0 1 0 0 2.113 1.057 1.057 0 0 0 0-2.113Zm-2.566 1.057a2.566 2.566 0 1 1 5.132 0 2.566 2.566 0 0 1-5.132 0Z"},"children":[]}],"metadata":""}]},"name":"richeditor-image-upload"};
11
-
12
- export default RicheditorImageUpload;
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was automatically generated. Do not edit manually.
3
- *
4
- * @see import("../svg/richeditor/image/wrap-center.svg")
5
- * @see import("../../../scripts/generate-icons.mjs")
6
- */
7
-
8
- import type {IconDefinition} from "../types";
9
-
10
- const RicheditorImageWrapCenter: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"g","properties":{"fillRule":"evenodd","clipRule":"evenodd"},"children":[{"type":"element","tagName":"path","properties":{"d":"M8.2 8.6v2.8h3.6V8.6H8.2ZM8 7c-.5 0-1 .448-1 1v4c0 .552.5 1 1 1h4c.5 0 1-.448 1-1V8c0-.552-.5-1-1-1H8ZM3 4.15c0-.47.38-.85.85-.85h12.3a.85.85 0 0 1 0 1.7H3.85A.85.85 0 0 1 3 4.15ZM3 16.15c0-.47.38-.85.85-.85h12.3a.85.85 0 0 1 0 1.7H3.85a.85.85 0 0 1-.85-.85ZM3 12c0-.552.5-1 1-1s1 .448 1 1-.5 1-1 1-1-.448-1-1ZM3 8c0-.552.5-1 1-1s1 .448 1 1-.5 1-1 1-1-.448-1-1ZM15 8c0-.552.5-1 1-1s1 .448 1 1-.5 1-1 1-1-.448-1-1ZM15 12c0-.552.5-1 1-1s1 .448 1 1-.5 1-1 1-1-.448-1-1Z"},"children":[]}]}],"metadata":""}]},"name":"richeditor-image-wrap-center"};
11
-
12
- export default RicheditorImageWrapCenter;