@fibery/ui-kit 1.34.8 → 1.36.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 (610) hide show
  1. package/.eslintignore +3 -0
  2. package/.eslintrc +14 -0
  3. package/CHANGELOG.md +586 -0
  4. package/babel.config.js +3 -0
  5. package/config/jest/testFrameworkSetup.js +1 -0
  6. package/package.json +7 -41
  7. package/scripts/generate-icons.mjs +116 -0
  8. package/src/__mocks__/createInlineTheme.js +3 -0
  9. package/src/__mocks__/styleMock.js +1 -0
  10. package/src/a11y-color.ts +1 -1
  11. package/src/action-badge.tsx +63 -0
  12. package/src/actions-menu/actions-menu-sub-menu.tsx +3 -0
  13. package/src/actions-panel.tsx +50 -0
  14. package/src/ai/max-tokens.tsx +42 -0
  15. package/src/ai/model.tsx +79 -0
  16. package/src/ai/temperature.tsx +75 -0
  17. package/src/animated-height-container.tsx +82 -0
  18. package/src/animated-number.tsx +38 -0
  19. package/src/animations.tsx +62 -0
  20. package/src/antd/AutoComplete.d.ts +1 -0
  21. package/src/antd/AutoComplete.js +34 -0
  22. package/src/antd/Tabs.d.ts +5 -0
  23. package/src/antd/Tabs.js +58 -0
  24. package/src/antd/ant-modal.tsx +11 -0
  25. package/src/antd/ant-upload.tsx +73 -0
  26. package/src/antd/auto-width-transparent-textarea.tsx +56 -0
  27. package/src/antd/get-wrapper.tsx +11 -0
  28. package/src/antd/index.tsx +4 -0
  29. package/src/antd/input-number.tsx +51 -0
  30. package/src/antd/input.tsx +56 -0
  31. package/src/antd/styles.ts +6 -6
  32. package/src/antd/utils.tsx +43 -0
  33. package/src/app-icon-with-fallback.tsx +147 -0
  34. package/src/app-icon-wrapper.tsx +44 -0
  35. package/src/app-icon.tsx +52 -0
  36. package/src/app-mode.tsx +52 -0
  37. package/src/appIcons.json +13066 -0
  38. package/src/avatar.tsx +262 -0
  39. package/src/axis-header.tsx +160 -0
  40. package/src/badge.tsx +39 -0
  41. package/src/board-table-loader.tsx +106 -0
  42. package/src/box.tsx +444 -0
  43. package/src/breakpoints.tsx +59 -0
  44. package/src/button/base-button.tsx +1 -1
  45. package/src/button/icon-button.tsx +2 -2
  46. package/src/card-container.tsx +483 -0
  47. package/src/checkbox-multi-select.tsx +71 -0
  48. package/src/checkbox.tsx +232 -0
  49. package/src/collapsible/index.tsx +43 -0
  50. package/src/collapsible-section.tsx +69 -0
  51. package/src/color-picker/ColorPickerOrLoader.js +23 -0
  52. package/src/color-picker/SliderPointer.js +14 -0
  53. package/src/color-picker/index.js +118 -0
  54. package/src/color-picker/swatch.tsx +85 -0
  55. package/src/command-menu/index.tsx +176 -0
  56. package/src/comment.tsx +218 -0
  57. package/src/context-menu/index.tsx +134 -0
  58. package/src/copy-to-clipboard.ts +1 -0
  59. package/src/country-selector.tsx +29 -0
  60. package/src/date-picker/autocomplete.tsx +74 -0
  61. package/src/date-picker/constants.ts +3 -0
  62. package/src/date-picker/contexts.ts +7 -0
  63. package/src/date-picker/date-range-input.tsx +346 -0
  64. package/src/date-picker/date-range-picker-popup-content.tsx +190 -0
  65. package/src/date-picker/date-range-picker.tsx +124 -0
  66. package/src/date-picker/day-with-start-end-buttons.tsx +171 -0
  67. package/src/date-picker/fake-date-input.tsx +40 -0
  68. package/src/date-picker/get-weekends-for-month.ts +7 -0
  69. package/src/date-picker/rc-input-types.ts +11 -0
  70. package/src/date-picker/relative-date-picker.tsx +141 -0
  71. package/src/date-picker/single-date-input.tsx +239 -0
  72. package/src/date-picker/single-date-picker-popup-content.tsx +90 -0
  73. package/src/date-picker/single-date-picker.tsx +243 -0
  74. package/src/date-picker/styles.ts +262 -0
  75. package/src/date-picker/types.ts +56 -0
  76. package/src/date-picker/utils.ts +110 -0
  77. package/src/date-picker/with-popup-control.tsx +61 -0
  78. package/src/day-select/day-select.tsx +94 -0
  79. package/src/day-select/iso-week-day-select.tsx +15 -0
  80. package/src/day-select/mount-day-select.tsx +11 -0
  81. package/src/day-select/week-day-select.test.tsx +48 -0
  82. package/src/day-select/week-day-select.tsx +42 -0
  83. package/src/delayed.tsx +26 -0
  84. package/src/design-system.test.ts +24 -0
  85. package/src/design-system.ts +77 -39
  86. package/src/dnd.tsx +55 -0
  87. package/src/dropdown-menu/index.tsx +2 -3
  88. package/src/emoji-picker/app-icon-picker.tsx +1 -0
  89. package/src/emoji-picker/primitives/emoji.tsx +4 -2
  90. package/src/emoji-picker/primitives/render-config-provider.tsx +12 -0
  91. package/src/emoji.tsx +30 -0
  92. package/src/empty-state/empty-state-action.tsx +3 -0
  93. package/src/empty-state/empty-state-emoji.tsx +20 -0
  94. package/src/empty-state/empty-state.tsx +80 -0
  95. package/src/empty-value.tsx +21 -0
  96. package/src/errors.ts +29 -0
  97. package/src/favorites-icon.tsx +87 -0
  98. package/src/features.tsx +10 -0
  99. package/src/fibermoji-placeholder.tsx +180 -0
  100. package/src/field-container.tsx +213 -0
  101. package/src/file-item.tsx +151 -0
  102. package/src/form-utils.ts +7 -0
  103. package/src/format-date-from-now.ts +33 -0
  104. package/src/full-fibery-logo.tsx +26 -0
  105. package/src/get-trigger-node-popup-container.ts +7 -0
  106. package/src/guide-link.tsx +24 -0
  107. package/src/header-layout.tsx +33 -0
  108. package/src/hint.tsx +47 -0
  109. package/src/hoverable-via-display.tsx +29 -0
  110. package/src/hoverable.tsx +53 -0
  111. package/src/html-styles.ts +720 -0
  112. package/src/icons/ast/AccessTemplate.ts +8 -0
  113. package/src/icons/ast/AddDatabase.ts +8 -0
  114. package/src/icons/ast/AddIntegration.ts +8 -0
  115. package/src/icons/ast/AiSearch.ts +8 -0
  116. package/src/icons/ast/Asterisk.ts +8 -0
  117. package/src/icons/ast/Clean.ts +8 -0
  118. package/src/icons/ast/Copy.ts +1 -1
  119. package/src/icons/ast/CreditsFilled.ts +8 -0
  120. package/src/icons/ast/CrossCircle.ts +8 -0
  121. package/src/icons/ast/Duplicate.ts +1 -1
  122. package/src/icons/ast/Gift.ts +8 -0
  123. package/src/icons/ast/LevelPlus.ts +8 -0
  124. package/src/icons/ast/Markdown.ts +8 -0
  125. package/src/icons/ast/PeopleCheck.ts +8 -0
  126. package/src/icons/ast/PresentPlay.ts +8 -0
  127. package/src/icons/ast/PresentStop.ts +8 -0
  128. package/src/icons/ast/ResetPassword.ts +8 -0
  129. package/src/icons/ast/SettingsOff.ts +8 -0
  130. package/src/icons/ast/Template.ts +8 -0
  131. package/src/icons/ast/UserCheck.ts +8 -0
  132. package/src/icons/ast/UserGroupRemove.ts +8 -0
  133. package/src/icons/ast/UserX.ts +8 -0
  134. package/src/icons/ast/ViewGantt.ts +8 -0
  135. package/src/icons/ast/Views.ts +1 -1
  136. package/src/icons/ast/index.tsx +21 -0
  137. package/src/icons/react/AccessTemplate.tsx +13 -0
  138. package/src/icons/react/AddDatabase.tsx +13 -0
  139. package/src/icons/react/AddIntegration.tsx +13 -0
  140. package/src/icons/react/AiSearch.tsx +13 -0
  141. package/src/icons/react/Asterisk.tsx +13 -0
  142. package/src/icons/react/Clean.tsx +13 -0
  143. package/src/icons/react/CreditsFilled.tsx +13 -0
  144. package/src/icons/react/CrossCircle.tsx +13 -0
  145. package/src/icons/react/Gift.tsx +13 -0
  146. package/src/icons/react/LevelPlus.tsx +13 -0
  147. package/src/icons/react/Markdown.tsx +13 -0
  148. package/src/icons/react/PeopleCheck.tsx +13 -0
  149. package/src/icons/react/PresentPlay.tsx +13 -0
  150. package/src/icons/react/PresentStop.tsx +13 -0
  151. package/src/icons/react/ResetPassword.tsx +13 -0
  152. package/src/icons/react/SettingsOff.tsx +13 -0
  153. package/src/icons/react/Template.tsx +13 -0
  154. package/src/icons/react/UserCheck.tsx +13 -0
  155. package/src/icons/react/UserGroupRemove.tsx +13 -0
  156. package/src/icons/react/UserX.tsx +13 -0
  157. package/src/icons/react/ViewGantt.tsx +13 -0
  158. package/src/icons/react/index.tsx +21 -0
  159. package/src/icons/svg/abort.svg +3 -0
  160. package/src/icons/svg/access-template.svg +4 -0
  161. package/src/icons/svg/activity-log.svg +4 -0
  162. package/src/icons/svg/activity.svg +4 -0
  163. package/src/icons/svg/add-after.svg +4 -0
  164. package/src/icons/svg/add-before.svg +4 -0
  165. package/src/icons/svg/add-compact.svg +2 -0
  166. package/src/icons/svg/add-database.svg +3 -0
  167. package/src/icons/svg/add-group.svg +4 -0
  168. package/src/icons/svg/add-integration.svg +3 -0
  169. package/src/icons/svg/add-reactions.svg +8 -0
  170. package/src/icons/svg/add.svg +2 -0
  171. package/src/icons/svg/ai-assistant.svg +3 -0
  172. package/src/icons/svg/ai-avatar.svg +3 -0
  173. package/src/icons/svg/ai-search.svg +3 -0
  174. package/src/icons/svg/alert-triangle.svg +3 -0
  175. package/src/icons/svg/app-details.svg +7 -0
  176. package/src/icons/svg/app-store-one-color.svg +4 -0
  177. package/src/icons/svg/app-store.svg +4 -0
  178. package/src/icons/svg/app-templates.svg +7 -0
  179. package/src/icons/svg/app-webhooks.svg +2 -0
  180. package/src/icons/svg/app-wiki.svg +2 -0
  181. package/src/icons/svg/app.svg +2 -0
  182. package/src/icons/svg/appearance-auto.svg +3 -0
  183. package/src/icons/svg/appearance-dark.svg +3 -0
  184. package/src/icons/svg/appearance-light.svg +3 -0
  185. package/src/icons/svg/arrow-bar-left.svg +4 -0
  186. package/src/icons/svg/arrow-bar-right.svg +4 -0
  187. package/src/icons/svg/arrow-bottom.svg +3 -0
  188. package/src/icons/svg/arrow-collapse-vertical.svg +3 -0
  189. package/src/icons/svg/arrow-collapse.svg +3 -0
  190. package/src/icons/svg/arrow-forward.svg +3 -0
  191. package/src/icons/svg/arrow-left.svg +3 -0
  192. package/src/icons/svg/arrow-right.svg +3 -0
  193. package/src/icons/svg/arrow-top.svg +3 -0
  194. package/src/icons/svg/arrow-up-circle.svg +4 -0
  195. package/src/icons/svg/arrows-right-left.svg +3 -0
  196. package/src/icons/svg/ask-for-input.svg +6 -0
  197. package/src/icons/svg/asterisk.svg +3 -0
  198. package/src/icons/svg/atom.svg +4 -0
  199. package/src/icons/svg/automations-cancelled.svg +3 -0
  200. package/src/icons/svg/automations-disabled.svg +3 -0
  201. package/src/icons/svg/automations-error.svg +3 -0
  202. package/src/icons/svg/automations-in-progress.svg +3 -0
  203. package/src/icons/svg/automations-not-started.svg +3 -0
  204. package/src/icons/svg/automations-success.svg +3 -0
  205. package/src/icons/svg/back.svg +2 -0
  206. package/src/icons/svg/backlog-icon.svg +3 -0
  207. package/src/icons/svg/batch-actions-icon.svg +4 -0
  208. package/src/icons/svg/bell-circle.svg +4 -0
  209. package/src/icons/svg/bell-filled.svg +4 -0
  210. package/src/icons/svg/bell-off.svg +4 -0
  211. package/src/icons/svg/bell-ringing.svg +5 -0
  212. package/src/icons/svg/bell-x.svg +4 -0
  213. package/src/icons/svg/bolt.svg +3 -0
  214. package/src/icons/svg/bring-forward.svg +8 -0
  215. package/src/icons/svg/bring-to-front.svg +3 -0
  216. package/src/icons/svg/cards.svg +3 -0
  217. package/src/icons/svg/chat-ai.svg +5 -0
  218. package/src/icons/svg/chat.svg +3 -0
  219. package/src/icons/svg/check-circle-filled.svg +3 -0
  220. package/src/icons/svg/check-circle.svg +4 -0
  221. package/src/icons/svg/checked.svg +3 -0
  222. package/src/icons/svg/clean.svg +6 -0
  223. package/src/icons/svg/clear-input-filled.svg +3 -0
  224. package/src/icons/svg/clear-value.svg +6 -0
  225. package/src/icons/svg/clear.svg +6 -0
  226. package/src/icons/svg/clock-alarm.svg +6 -0
  227. package/src/icons/svg/clock-forward.svg +3 -0
  228. package/src/icons/svg/clock.svg +4 -0
  229. package/src/icons/svg/close.svg +4 -0
  230. package/src/icons/svg/collapse-all.svg +3 -0
  231. package/src/icons/svg/color-coding-filled.svg +3 -0
  232. package/src/icons/svg/color-coding.svg +4 -0
  233. package/src/icons/svg/columns-2.svg +3 -0
  234. package/src/icons/svg/columns-4.svg +3 -0
  235. package/src/icons/svg/columns.svg +3 -0
  236. package/src/icons/svg/comment-bubble.svg +3 -0
  237. package/src/icons/svg/copy.svg +5 -0
  238. package/src/icons/svg/create.svg +3 -0
  239. package/src/icons/svg/credits-filled.svg +3 -0
  240. package/src/icons/svg/cross-circle.svg +4 -0
  241. package/src/icons/svg/database-off.svg +3 -0
  242. package/src/icons/svg/database-stroke.svg +4 -0
  243. package/src/icons/svg/database.svg +4 -0
  244. package/src/icons/svg/delete.svg +6 -0
  245. package/src/icons/svg/demo.svg +2 -0
  246. package/src/icons/svg/dependency.svg +3 -0
  247. package/src/icons/svg/double-arrow-left.svg +2 -0
  248. package/src/icons/svg/double-arrow-right.svg +2 -0
  249. package/src/icons/svg/drag-block-handle-single.svg +5 -0
  250. package/src/icons/svg/drag-block-handle.svg +8 -0
  251. package/src/icons/svg/drag-handle.svg +2 -0
  252. package/src/icons/svg/duplicate.svg +5 -0
  253. package/src/icons/svg/dynamic-filter-value.svg +3 -0
  254. package/src/icons/svg/edit-value.svg +5 -0
  255. package/src/icons/svg/email.svg +3 -0
  256. package/src/icons/svg/emoji-delete.svg +5 -0
  257. package/src/icons/svg/entity-merge.svg +3 -0
  258. package/src/icons/svg/equation.svg +4 -0
  259. package/src/icons/svg/export.svg +4 -0
  260. package/src/icons/svg/extension/assignments.svg +7 -0
  261. package/src/icons/svg/extension/avatar.svg +2 -0
  262. package/src/icons/svg/extension/comments.svg +5 -0
  263. package/src/icons/svg/extension/files.svg +2 -0
  264. package/src/icons/svg/extension/references.svg +2 -0
  265. package/src/icons/svg/extension/workflow.svg +2 -0
  266. package/src/icons/svg/eye.svg +4 -0
  267. package/src/icons/svg/favorites-checked.svg +4 -0
  268. package/src/icons/svg/favorites-off.svg +4 -0
  269. package/src/icons/svg/favorites.svg +4 -0
  270. package/src/icons/svg/fibery-mono.svg +3 -0
  271. package/src/icons/svg/field-unit.svg +3 -0
  272. package/src/icons/svg/fields.svg +4 -0
  273. package/src/icons/svg/figma.svg +7 -0
  274. package/src/icons/svg/file-upload.svg +7 -0
  275. package/src/icons/svg/filter.svg +3 -0
  276. package/src/icons/svg/fit-to-screen.svg +5 -0
  277. package/src/icons/svg/focus-mode-off.svg +5 -0
  278. package/src/icons/svg/focus-mode.svg +5 -0
  279. package/src/icons/svg/folder.svg +4 -0
  280. package/src/icons/svg/form-with-cover.svg +7 -0
  281. package/src/icons/svg/form-without-cover.svg +6 -0
  282. package/src/icons/svg/fullscreen-mode-off-icon.svg +3 -0
  283. package/src/icons/svg/fullscreen-mode-on-icon.svg +3 -0
  284. package/src/icons/svg/fullscreen-mode-on.svg +4 -0
  285. package/src/icons/svg/gift.svg +3 -0
  286. package/src/icons/svg/github.svg +1 -0
  287. package/src/icons/svg/gitlab.svg +3 -0
  288. package/src/icons/svg/globe-simple.svg +3 -0
  289. package/src/icons/svg/globe.svg +3 -0
  290. package/src/icons/svg/go-to.svg +5 -0
  291. package/src/icons/svg/google-drive.svg +8 -0
  292. package/src/icons/svg/google-map.svg +7 -0
  293. package/src/icons/svg/headphones-ai.svg +4 -0
  294. package/src/icons/svg/headphones.svg +3 -0
  295. package/src/icons/svg/hide.svg +2 -0
  296. package/src/icons/svg/highlights.svg +3 -0
  297. package/src/icons/svg/hint.svg +4 -0
  298. package/src/icons/svg/home.svg +2 -0
  299. package/src/icons/svg/image-xmark.svg +2 -0
  300. package/src/icons/svg/import.svg +4 -0
  301. package/src/icons/svg/info-circle-filled.svg +3 -0
  302. package/src/icons/svg/info-circle.svg +6 -0
  303. package/src/icons/svg/integration.svg +2 -0
  304. package/src/icons/svg/integrations/integration-discourse-color.svg +8 -0
  305. package/src/icons/svg/integrations/integration-intercom-color.svg +3 -0
  306. package/src/icons/svg/integrations/integration-slack-color.svg +10 -0
  307. package/src/icons/svg/integrations/integration-zendesk-color.svg +6 -0
  308. package/src/icons/svg/invite-people.svg +6 -0
  309. package/src/icons/svg/items-timeline.svg +4 -0
  310. package/src/icons/svg/items.svg +3 -0
  311. package/src/icons/svg/jira.svg +3 -0
  312. package/src/icons/svg/key.svg +4 -0
  313. package/src/icons/svg/lab.svg +6 -0
  314. package/src/icons/svg/layout-double.svg +3 -0
  315. package/src/icons/svg/layout-single.svg +3 -0
  316. package/src/icons/svg/left-panel.svg +11 -0
  317. package/src/icons/svg/level-plus.svg +4 -0
  318. package/src/icons/svg/levels.svg +2 -0
  319. package/src/icons/svg/line-divider.svg +3 -0
  320. package/src/icons/svg/link.svg +6 -0
  321. package/src/icons/svg/lock-outline.svg +5 -0
  322. package/src/icons/svg/lock.svg +4 -0
  323. package/src/icons/svg/logout.svg +4 -0
  324. package/src/icons/svg/loom.svg +3 -0
  325. package/src/icons/svg/loupe-zoom-in.svg +3 -0
  326. package/src/icons/svg/loupe-zoom-out.svg +1 -0
  327. package/src/icons/svg/loupe-zoom.svg +3 -0
  328. package/src/icons/svg/many-people.svg +4 -0
  329. package/src/icons/svg/map-mode.svg +6 -0
  330. package/src/icons/svg/markdown.svg +3 -0
  331. package/src/icons/svg/menu-collapser.svg +2 -0
  332. package/src/icons/svg/message-plus-square.svg +4 -0
  333. package/src/icons/svg/milestones.svg +3 -0
  334. package/src/icons/svg/minus.svg +4 -0
  335. package/src/icons/svg/miro.svg +4 -0
  336. package/src/icons/svg/mirror-off.svg +8 -0
  337. package/src/icons/svg/mirror-on.svg +3 -0
  338. package/src/icons/svg/mixpanel.svg +3 -0
  339. package/src/icons/svg/monitor.svg +3 -0
  340. package/src/icons/svg/more-compact.svg +4 -0
  341. package/src/icons/svg/more.svg +4 -0
  342. package/src/icons/svg/move-bottom.svg +3 -0
  343. package/src/icons/svg/move-left.svg +3 -0
  344. package/src/icons/svg/move-right.svg +3 -0
  345. package/src/icons/svg/move-space.svg +5 -0
  346. package/src/icons/svg/move-top.svg +3 -0
  347. package/src/icons/svg/network-add.svg +5 -0
  348. package/src/icons/svg/network.svg +4 -0
  349. package/src/icons/svg/notifications.svg +2 -0
  350. package/src/icons/svg/obj-child.svg +2 -0
  351. package/src/icons/svg/obj-m2m.svg +2 -0
  352. package/src/icons/svg/obj-o2o.svg +2 -0
  353. package/src/icons/svg/obj-parent.svg +2 -0
  354. package/src/icons/svg/obj-self.svg +2 -0
  355. package/src/icons/svg/on-schedule.svg +3 -0
  356. package/src/icons/svg/open-as-page.svg +4 -0
  357. package/src/icons/svg/page-regular-mode.svg +5 -0
  358. package/src/icons/svg/page-wide-mode.svg +5 -0
  359. package/src/icons/svg/panel-add.svg +3 -0
  360. package/src/icons/svg/pencil.svg +5 -0
  361. package/src/icons/svg/people-check.svg +4 -0
  362. package/src/icons/svg/people.svg +7 -0
  363. package/src/icons/svg/photo.svg +2 -0
  364. package/src/icons/svg/pin-filled.svg +5 -0
  365. package/src/icons/svg/pin.svg +3 -0
  366. package/src/icons/svg/popup.svg +5 -0
  367. package/src/icons/svg/posts.svg +3 -0
  368. package/src/icons/svg/present-play.svg +4 -0
  369. package/src/icons/svg/present-stop.svg +3 -0
  370. package/src/icons/svg/private-items.svg +5 -0
  371. package/src/icons/svg/question.svg +4 -0
  372. package/src/icons/svg/refresh.svg +4 -0
  373. package/src/icons/svg/remove-people.svg +6 -0
  374. package/src/icons/svg/remove.svg +2 -0
  375. package/src/icons/svg/reply.svg +2 -0
  376. package/src/icons/svg/reset-password.svg +6 -0
  377. package/src/icons/svg/restore.svg +2 -0
  378. package/src/icons/svg/richeditor/actions/more.svg +2 -0
  379. package/src/icons/svg/richeditor/block/callout.svg +4 -0
  380. package/src/icons/svg/richeditor/block/code.svg +7 -0
  381. package/src/icons/svg/richeditor/block/embed.svg +4 -0
  382. package/src/icons/svg/richeditor/block/entity.svg +2 -0
  383. package/src/icons/svg/richeditor/block/file.svg +1 -0
  384. package/src/icons/svg/richeditor/block/h1.svg +2 -0
  385. package/src/icons/svg/richeditor/block/h2.svg +2 -0
  386. package/src/icons/svg/richeditor/block/h3.svg +2 -0
  387. package/src/icons/svg/richeditor/block/h4.svg +4 -0
  388. package/src/icons/svg/richeditor/block/mention.svg +2 -0
  389. package/src/icons/svg/richeditor/block/paragraph.svg +2 -0
  390. package/src/icons/svg/richeditor/block/quote.svg +2 -0
  391. package/src/icons/svg/richeditor/checklist/create.svg +2 -0
  392. package/src/icons/svg/richeditor/comment/create.svg +5 -0
  393. package/src/icons/svg/richeditor/entity-link/create.svg +2 -0
  394. package/src/icons/svg/richeditor/history/redo.svg +2 -0
  395. package/src/icons/svg/richeditor/history/undo.svg +2 -0
  396. package/src/icons/svg/richeditor/image/align-center.svg +2 -0
  397. package/src/icons/svg/richeditor/image/align-left.svg +2 -0
  398. package/src/icons/svg/richeditor/image/align-right.svg +2 -0
  399. package/src/icons/svg/richeditor/image/upload.svg +2 -0
  400. package/src/icons/svg/richeditor/image/wrap-center.svg +2 -0
  401. package/src/icons/svg/richeditor/image/wrap-left.svg +2 -0
  402. package/src/icons/svg/richeditor/image/wrap-right.svg +2 -0
  403. package/src/icons/svg/richeditor/image/zoom.svg +5 -0
  404. package/src/icons/svg/richeditor/link/create.svg +9 -0
  405. package/src/icons/svg/richeditor/linkedhighlight/create.svg +2 -0
  406. package/src/icons/svg/richeditor/list/bullet.svg +2 -0
  407. package/src/icons/svg/richeditor/list/indent.svg +2 -0
  408. package/src/icons/svg/richeditor/list/ordered.svg +2 -0
  409. package/src/icons/svg/richeditor/list/unindent.svg +2 -0
  410. package/src/icons/svg/richeditor/mark/code.svg +6 -0
  411. package/src/icons/svg/richeditor/mark/em.svg +2 -0
  412. package/src/icons/svg/richeditor/mark/strike.svg +2 -0
  413. package/src/icons/svg/richeditor/mark/strong.svg +2 -0
  414. package/src/icons/svg/richeditor/mark/text-background-color.svg +2 -0
  415. package/src/icons/svg/richeditor/mark/underline.svg +2 -0
  416. package/src/icons/svg/richeditor/open-link.svg +4 -0
  417. package/src/icons/svg/richeditor/table/create.svg +2 -0
  418. package/src/icons/svg/richeditor/unlink.svg +10 -0
  419. package/src/icons/svg/richeditor/video/upload.svg +2 -0
  420. package/src/icons/svg/right-panel.svg +11 -0
  421. package/src/icons/svg/rows.svg +3 -0
  422. package/src/icons/svg/rule-scheduled.svg +5 -0
  423. package/src/icons/svg/search-add.svg +4 -0
  424. package/src/icons/svg/search-remove.svg +4 -0
  425. package/src/icons/svg/search.svg +2 -0
  426. package/src/icons/svg/self-reference-off.svg +2 -0
  427. package/src/icons/svg/self-reference-on.svg +2 -0
  428. package/src/icons/svg/send-arrow.svg +3 -0
  429. package/src/icons/svg/send-backward.svg +8 -0
  430. package/src/icons/svg/send-to-back.svg +4 -0
  431. package/src/icons/svg/settings-off.svg +4 -0
  432. package/src/icons/svg/settings.svg +4 -0
  433. package/src/icons/svg/share.svg +5 -0
  434. package/src/icons/svg/shared.svg +7 -0
  435. package/src/icons/svg/shield-keyhole.svg +4 -0
  436. package/src/icons/svg/show-author.svg +5 -0
  437. package/src/icons/svg/sidebar-fields-opened.svg +3 -0
  438. package/src/icons/svg/sidebar-fields.svg +6 -0
  439. package/src/icons/svg/sidebar.svg +2 -0
  440. package/src/icons/svg/simple-compass.svg +5 -0
  441. package/src/icons/svg/slack-icon.svg +3 -0
  442. package/src/icons/svg/slack.svg +10 -0
  443. package/src/icons/svg/slide-menu-close.svg +4 -0
  444. package/src/icons/svg/slide-menu-open.svg +4 -0
  445. package/src/icons/svg/slide-menu.svg +5 -0
  446. package/src/icons/svg/smart-folder.svg +5 -0
  447. package/src/icons/svg/sort-on-bottom.svg +4 -0
  448. package/src/icons/svg/sort-on-top.svg +4 -0
  449. package/src/icons/svg/sort.svg +3 -0
  450. package/src/icons/svg/spinner.svg +2 -0
  451. package/src/icons/svg/success.svg +4 -0
  452. package/src/icons/svg/template.svg +3 -0
  453. package/src/icons/svg/templates.svg +4 -0
  454. package/src/icons/svg/terminal.svg +5 -0
  455. package/src/icons/svg/text-tool-align-bottom.svg +3 -0
  456. package/src/icons/svg/text-tool-align-middle.svg +3 -0
  457. package/src/icons/svg/text-tool-align-top.svg +3 -0
  458. package/src/icons/svg/twitter.svg +4 -0
  459. package/src/icons/svg/type/boolean.svg +2 -0
  460. package/src/icons/svg/type/button.svg +4 -0
  461. package/src/icons/svg/type/checkbox.svg +2 -0
  462. package/src/icons/svg/type/date.svg +2 -0
  463. package/src/icons/svg/type/email.svg +2 -0
  464. package/src/icons/svg/type/emoji.svg +2 -0
  465. package/src/icons/svg/type/formula.svg +2 -0
  466. package/src/icons/svg/type/function.svg +2 -0
  467. package/src/icons/svg/type/location.svg +4 -0
  468. package/src/icons/svg/type/lookup.svg +2 -0
  469. package/src/icons/svg/type/money.svg +2 -0
  470. package/src/icons/svg/type/multi-select.svg +2 -0
  471. package/src/icons/svg/type/number.svg +2 -0
  472. package/src/icons/svg/type/percent.svg +2 -0
  473. package/src/icons/svg/type/phone.svg +2 -0
  474. package/src/icons/svg/type/relation.svg +2 -0
  475. package/src/icons/svg/type/rich-text.svg +2 -0
  476. package/src/icons/svg/type/rule.svg +2 -0
  477. package/src/icons/svg/type/single-select.svg +2 -0
  478. package/src/icons/svg/type/text.svg +2 -0
  479. package/src/icons/svg/type/url.svg +9 -0
  480. package/src/icons/svg/units/avatar.svg +5 -0
  481. package/src/icons/svg/units/collection.svg +5 -0
  482. package/src/icons/svg/units/counter.svg +5 -0
  483. package/src/icons/svg/units/date.svg +5 -0
  484. package/src/icons/svg/units/db-badge-abbr.svg +4 -0
  485. package/src/icons/svg/units/db-badge-full.svg +4 -0
  486. package/src/icons/svg/units/db-icon.svg +4 -0
  487. package/src/icons/svg/units/field-icon-button.svg +5 -0
  488. package/src/icons/svg/units/field.svg +4 -0
  489. package/src/icons/svg/units/input.svg +5 -0
  490. package/src/icons/svg/units/progress-bar.svg +5 -0
  491. package/src/icons/svg/units/rich-text.svg +4 -0
  492. package/src/icons/svg/units/snippet.svg +5 -0
  493. package/src/icons/svg/unlink.svg +10 -0
  494. package/src/icons/svg/unlock-filled.svg +5 -0
  495. package/src/icons/svg/unlock-outline.svg +5 -0
  496. package/src/icons/svg/upgrade.svg +2 -0
  497. package/src/icons/svg/usb-flash-drive.svg +5 -0
  498. package/src/icons/svg/user-check.svg +3 -0
  499. package/src/icons/svg/user-group-remove.svg +5 -0
  500. package/src/icons/svg/user-group.svg +4 -0
  501. package/src/icons/svg/user-role.svg +4 -0
  502. package/src/icons/svg/user-x.svg +5 -0
  503. package/src/icons/svg/view-ai.svg +3 -0
  504. package/src/icons/svg/view-board.svg +2 -0
  505. package/src/icons/svg/view-calendar.svg +2 -0
  506. package/src/icons/svg/view-canvas.svg +2 -0
  507. package/src/icons/svg/view-chart.svg +2 -0
  508. package/src/icons/svg/view-details.svg +2 -0
  509. package/src/icons/svg/view-document.svg +2 -0
  510. package/src/icons/svg/view-feed.svg +3 -0
  511. package/src/icons/svg/view-form.svg +4 -0
  512. package/src/icons/svg/view-gantt.svg +5 -0
  513. package/src/icons/svg/view-list.svg +2 -0
  514. package/src/icons/svg/view-map.svg +3 -0
  515. package/src/icons/svg/view-page.svg +3 -0
  516. package/src/icons/svg/view-table.svg +2 -0
  517. package/src/icons/svg/view-timeline.svg +2 -0
  518. package/src/icons/svg/views.svg +11 -0
  519. package/src/icons/svg/warning-triangle.svg +4 -0
  520. package/src/icons/svg/warning.svg +2 -0
  521. package/src/icons/svg/workspace-map.svg +3 -0
  522. package/src/icons/svg/youtube.svg +4 -0
  523. package/src/icons/svg/zoom-in.svg +7 -0
  524. package/src/icons/svg/zoom-out.svg +7 -0
  525. package/src/is-android.ts +3 -0
  526. package/src/is-iOS.ts +8 -0
  527. package/src/is-in-popup.ts +15 -0
  528. package/src/layout.tsx +88 -0
  529. package/src/link-input/components/AntTextAreaWithCustomReadState.js +64 -0
  530. package/src/link-input/index.js +89 -0
  531. package/src/link-input/utils.js +13 -0
  532. package/src/logo.tsx +81 -0
  533. package/src/menu-item-actions.tsx +6 -0
  534. package/src/nested-menu-item.tsx +0 -0
  535. package/src/new-badge.tsx +16 -0
  536. package/src/new-card-placeholder.tsx +231 -0
  537. package/src/not-empty.ts +3 -0
  538. package/src/notification-dot.tsx +23 -0
  539. package/src/number-input/decimal.js +59 -0
  540. package/src/number-input/decimal.test.js +71 -0
  541. package/src/number-input/edit-unit-styles.ts +18 -0
  542. package/src/number-input/index.js +191 -0
  543. package/src/number-input/index.test.js +106 -0
  544. package/src/number-input/number-inline-input-with-autosize.tsx +156 -0
  545. package/src/number-input/number-input.tsx +152 -0
  546. package/src/number-input/stack.tsx +25 -0
  547. package/src/number-input/step-button.tsx +73 -0
  548. package/src/number-input/styles.ts +50 -0
  549. package/src/number-input/text-area-with-autosize.tsx +91 -0
  550. package/src/number-input/text-inline-input-with-autosize.tsx +60 -0
  551. package/src/online-users.tsx +238 -0
  552. package/src/palette.ts +2 -30
  553. package/src/platform.ts +4 -0
  554. package/src/popup/index.tsx +382 -0
  555. package/src/popup/modifiers.tsx +70 -0
  556. package/src/popup/popup-modifiers-context.ts +12 -0
  557. package/src/popup/popup-stack-context.tsx +44 -0
  558. package/src/popup/reference.ts +7 -0
  559. package/src/popup/styles.ts +62 -0
  560. package/src/popup/use-click-outside.ts +22 -0
  561. package/src/progress.tsx +14 -0
  562. package/src/reactions/get-word-divider.tsx +15 -0
  563. package/src/reactions/reaction-button.tsx +254 -0
  564. package/src/reactions/reaction-picker.tsx +126 -0
  565. package/src/reactions/reactions.tsx +30 -0
  566. package/src/ready-to-scroll-context.tsx +16 -0
  567. package/src/rich-input-loader.tsx +78 -0
  568. package/src/rich-text-embed-error.tsx +44 -0
  569. package/src/select/custom-select-partials/clear-indicator.tsx +4 -0
  570. package/src/select/custom-select-partials/group-heading.tsx +4 -5
  571. package/src/select/custom-select-partials/menu-list-virtualized.tsx +22 -4
  572. package/src/select/custom-select-partials/menu.tsx +5 -6
  573. package/src/select/index.tsx +39 -28
  574. package/src/select/select-in-popover.tsx +21 -16
  575. package/src/select/styles.ts +10 -2
  576. package/src/styles-utils.tsx +16 -0
  577. package/src/tab-nav/tab-nav.tsx +208 -0
  578. package/src/table.tsx +91 -0
  579. package/src/toast/primitives.tsx +6 -7
  580. package/src/toast/toast-action.tsx +7 -1
  581. package/src/toast/toast-queue.ts +2 -2
  582. package/src/toast/toast.tsx +78 -16
  583. package/src/toast/toaster.tsx +2 -17
  584. package/src/toast/utils/toastify-item-name.ts +16 -5
  585. package/src/tooltip.tsx +9 -0
  586. package/src/type-badge-box.tsx +42 -0
  587. package/src/type-badge.tsx +315 -0
  588. package/src/unit/as-string.tsx +1 -0
  589. package/src/unit/index.tsx +55 -0
  590. package/src/unit/loading-unit-value.tsx +13 -0
  591. package/src/unit/maybe-unit-value.tsx +9 -0
  592. package/src/unit/primitive.tsx +167 -0
  593. package/src/unit/required-indicator.svg +3 -0
  594. package/src/unit/styles.ts +165 -0
  595. package/src/unit/types.ts +31 -0
  596. package/src/unit/unit-button-group.tsx +38 -0
  597. package/src/unit/unit-content-layout.tsx +37 -0
  598. package/src/unit/unit-content.tsx +37 -0
  599. package/src/unit/unit-with-title.tsx +8 -0
  600. package/src/unit/unit-with-tooltip.tsx +60 -0
  601. package/src/use-is-support-hover.ts +5 -0
  602. package/src/use-long-press.tsx +79 -0
  603. package/src/use-me.tsx +11 -0
  604. package/src/use-navigation.tsx +11 -0
  605. package/src/use-why-did-you-update.tsx +78 -0
  606. package/src/utils-dom.ts +26 -0
  607. package/src/with-data.tsx +78 -0
  608. package/src/workflow-progress-icon.tsx +73 -0
  609. package/tsconfig.json +4 -0
  610. package/src/icons/get-icon-container-style.tsx +0 -13
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const AddDatabase: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"M5.835 8.738c-.35-.17-.66-.37-.92-.603C4.454 7.725 4 7.045 4 6.401 4 4.002 6.686 3 10 3s6 .972 6 3.4c0 .65-.448 1.332-.91 1.746-.262.233-.572.433-.925.603-1.079.52-2.547.751-4.165.751-1.618 0-3.086-.239-4.165-.762ZM2.5 13.599c0 1.904 1.127 3.202 2.58 3.938 1.46.74 3.347.991 5.215.96a.723.723 0 0 0 .705-.73.78.78 0 0 0-.797-.768c-1.94.023-4.927-.181-5.93-2.187a2.783 2.783 0 0 1-.257-1.528c.017-.16.046-.313.088-.46.406.396.89.703 1.405.939 1.498.688 3.213.837 4.844.804a.666.666 0 0 0 .647-.673.715.715 0 0 0-.733-.705c-1.499.024-3.105-.103-4.468-.778a3.92 3.92 0 0 1-.93-.626c-.264-.244-.71-.72-.795-1.083A2.868 2.868 0 0 1 4 10.044c0-.276.036-.535.104-.775.394.384.871.694 1.405.939 1.256.577 2.85.808 4.491.808 1.638 0 3.232-.224 4.49-.797a4.934 4.934 0 0 0 1.41-.94c.034.122.06.25.076.382.025.196.024.392.024.589a.75.75 0 0 0 1.5 0V6.4c0-1.914-1.122-3.215-2.583-3.95-1.385-.697-3.153-.95-4.917-.95-1.77 0-3.538.262-4.92.963C3.626 3.199 2.5 4.497 2.5 6.4v7.198Zm13.25-.849a.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":"add-database"};
7
+
8
+ export default AddDatabase;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const AddIntegration: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"m8.435 6.627-.7-.7a.803.803 0 0 1 0-1.136l.634-.634a5.283 5.283 0 0 1 6.861-.523l1.376-1.375a.804.804 0 1 1 1.135 1.135L16.366 4.77c1.022 1.394 1.296 3.324.709 4.983-.148.419-.674.592-1.075.348-.358-.218-.48-.672-.375-1.077.375-1.45.044-2.77-.918-3.731a3.655 3.655 0 0 0-5.203 0l-.066.066L13.076 9A.81.81 0 0 1 12 10.21L9.57 7.761l-.699.7a.803.803 0 1 1-1.135-1.136l.699-.7Zm1.272 10.451a5.305 5.305 0 0 1-4.952-.698l-1.377 1.378a.805.805 0 0 1-1.318-.256.803.803 0 0 1 .182-.88l1.378-1.377a5.283 5.283 0 0 1 .523-6.862l.634-.634a.803.803 0 0 1 1.135 0l4.182 4.17A.804.804 0 0 1 9 13.095L5.344 9.452l-.066.067a3.658 3.658 0 0 0 0 5.203c.922.922 2.407 1.14 3.667.84.486-.114 1.029.111 1.18.587.12.377-.046.793-.418.93Zm6.043-4.328a.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":"add-integration"};
7
+
8
+ export default AddIntegration;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const AiSearch: 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.83Zm0 2.415c.117 0 .221.072.263.181l.57 1.498a.844.844 0 0 0 .488.488l1.498.57a.281.281 0 0 1 0 .526l-1.498.57a.844.844 0 0 0-.488.488l-.57 1.498a.281.281 0 0 1-.526 0l-.57-1.498a.844.844 0 0 0-.488-.488l-1.498-.57a.281.281 0 0 1 0-.526l1.498-.57a.844.844 0 0 0 .488-.488l.57-1.498a.281.281 0 0 1 .263-.181Z"},"children":[]}],"metadata":""}]},"name":"ai-search"};
7
+
8
+ export default AiSearch;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Asterisk: 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":"M10.75 14.25a.75.75 0 0 1-1.5 0v-2.44l-1.725 1.726a.75.75 0 0 1-1.06-1.061l1.724-1.725H5.75a.75.75 0 0 1 0-1.5h2.44L6.463 7.525a.75.75 0 0 1 1.061-1.06L9.25 8.188V5.75a.75.75 0 0 1 1.5 0v2.44l1.725-1.726a.75.75 0 1 1 1.06 1.061L11.812 9.25h2.439a.75.75 0 0 1 0 1.5h-2.44l1.726 1.725a.75.75 0 1 1-1.061 1.06l-1.725-1.724v2.439Z"},"children":[]}],"metadata":""}]},"name":"asterisk"};
7
+
8
+ export default Asterisk;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Clean: 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 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM6 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM4.5 7.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Z"},"children":[]},{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"m14.64 8.422 3.89-3.892a.75.75 0 0 0-1.06-1.06l-3.892 3.89-.604-.603a2.25 2.25 0 0 0-2.846-.277l-6.546 4.397a.75.75 0 0 0 .002 1.247c1.099.733 1.733 1.586 2.423 2.515.17.228.342.46.526.697.934 1.2 2.064 2.336 4.285 2.892a.75.75 0 0 0 .82-.333l3.834-6.186a2.25 2.25 0 0 0-.322-2.777l-.51-.51Zm-3.675-.697a.75.75 0 0 1 .948.092l2.176 2.176a.75.75 0 0 1 .107.926l-.465.751L10.259 8.2l.706-.474ZM8.99 9.05l3.928 3.929-2.257 3.642c-1.438-.474-2.213-1.266-2.945-2.207a20.49 20.49 0 0 1-.25-.329.748.748 0 0 0 .063-.056l1-1a.75.75 0 1 0-1.06-1.06l-.914.913c-.363-.45-.775-.909-1.272-1.342l3.707-2.49Z"},"children":[]}],"metadata":""}]},"name":"clean"};
7
+
8
+ export default Clean;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Copy: 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.5 9.25c0-.966.784-1.75 1.75-1.75h7c.966 0 1.75.784 1.75 1.75v7A1.75 1.75 0 0 1 16.25 18h-7a1.75 1.75 0 0 1-1.75-1.75v-7ZM9.25 9a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25h7a.25.25 0 0 0 .25-.25v-7a.25.25 0 0 0-.25-.25h-7Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.75 2A1.75 1.75 0 0 0 2 3.75v7c0 .966.784 1.75 1.75 1.75H6V11H3.75a.25.25 0 0 1-.25-.25v-7a.25.25 0 0 1 .25-.25h7a.25.25 0 0 1 .25.25V6h1.5V3.75A1.75 1.75 0 0 0 10.75 2h-7Z"},"children":[]}],"metadata":""}]},"name":"copy"};
6
+ const Copy: 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":"M15.25 5.5A2.75 2.75 0 0 1 18 8.25v7A2.75 2.75 0 0 1 15.25 18h-7a2.75 2.75 0 0 1-2.75-2.75v-7A2.75 2.75 0 0 1 8.25 5.5h7Zm-7 1.5C7.56 7 7 7.56 7 8.25v7c0 .69.56 1.25 1.25 1.25h7c.69 0 1.25-.56 1.25-1.25v-7c0-.69-.56-1.25-1.25-1.25h-7Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.77 1.53a2.75 2.75 0 0 1 2.954 1.69.75.75 0 0 1-1.392.561 1.25 1.25 0 0 0-1.342-.767L4.067 4.043a1.25 1.25 0 0 0-1.053 1.42l1.03 6.924a.75.75 0 0 1-1.485.22L1.53 5.684a2.75 2.75 0 0 1 2.316-3.125L10.77 1.53Z"},"children":[]}],"metadata":""}]},"name":"copy"};
7
7
 
8
8
  export default Copy;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const CreditsFilled: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M7.536.976 3.577 3.284c-.918.535-1.377.803-1.71 1.177a3.208 3.208 0 0 0-.656 1.147c-.154.479-.154 1.014-.154 2.084v4.616c0 1.07 0 1.605.154 2.084.137.426.36.816.656 1.147.333.374.792.642 1.71 1.177l3.96 2.308c.918.535 1.376.803 1.866.907a3.14 3.14 0 0 0 1.31 0c.487-.104.947-.372 1.865-.907l3.96-2.308c.918-.535 1.376-.803 1.71-1.178.295-.331.519-.722.656-1.146.153-.479.153-1.014.153-2.084V7.692c0-1.07 0-1.605-.153-2.085a3.207 3.207 0 0 0-.656-1.146c-.334-.374-.792-.642-1.71-1.177L12.578.976C11.66.441 11.201.173 10.712.07a3.14 3.14 0 0 0-1.31 0c-.488.104-.947.372-1.866.907Zm1.517 8.066c-.297-.033-.473-.244-.473-.544 0-.3.177-.511.473-.545 1.31-.184 1.958-.276 2.32-.65.357-.368.438-1.01.595-2.282.045-.3.254-.489.55-.489.298 0 .496.19.54.489.158 1.272.237 1.914.594 2.282.364.374 1.012.466 2.322.65.135.008.262.07.352.172.091.102.138.236.131.373 0 .3-.187.51-.483.544-1.31.185-1.958.276-2.322.65-.357.369-.436 1.01-.594 2.282-.044.3-.242.49-.54.49-.296 0-.504-.19-.549-.49-.158-1.272-.238-1.913-.594-2.281-.364-.375-1.012-.466-2.322-.651Z","fill":"#EBBC00"},"children":[]}],"metadata":""}]},"name":"credits-filled"};
7
+
8
+ export default CreditsFilled;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const CrossCircle: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M13.092 6.908a.834.834 0 0 0-1.184 0L10 8.825 8.092 6.908a.837.837 0 1 0-1.184 1.184L8.825 10l-1.917 1.908a.834.834 0 0 0 .272 1.366.833.833 0 0 0 .912-.182L10 11.175l1.908 1.917a.834.834 0 0 0 1.366-.272.834.834 0 0 0-.182-.912L11.175 10l1.917-1.908a.833.833 0 0 0 0-1.184Zm2.8-2.8A8.334 8.334 0 1 0 4.108 15.892 8.334 8.334 0 1 0 15.892 4.108Zm-1.175 10.609A6.667 6.667 0 1 1 16.667 10a6.627 6.627 0 0 1-1.95 4.717Z"},"children":[]}],"metadata":""}]},"name":"cross-circle"};
7
+
8
+ export default CrossCircle;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Duplicate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M2 3.75C2 2.784 2.784 2 3.75 2h7c.966 0 1.75.784 1.75 1.75V6H11V3.75a.25.25 0 0 0-.25-.25h-7a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25H6v1.5H3.75A1.75 1.75 0 0 1 2 10.75v-7Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9.25 7.5A1.75 1.75 0 0 0 7.5 9.25v7c0 .966.784 1.75 1.75 1.75h7A1.75 1.75 0 0 0 18 16.25v-7a1.75 1.75 0 0 0-1.75-1.75h-7ZM9 9.25A.25.25 0 0 1 9.25 9h7a.25.25 0 0 1 .25.25v7a.25.25 0 0 1-.25.25h-7a.25.25 0 0 1-.25-.25v-7Z"},"children":[]}],"metadata":""}]},"name":"duplicate"};
6
+ const Duplicate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M11.75 8.5a.75.75 0 0 1 .75.75V11h1.75a.75.75 0 0 1 0 1.5H12.5v1.75a.75.75 0 0 1-1.5 0V12.5H9.25a.75.75 0 0 1 0-1.5H11V9.25a.75.75 0 0 1 .75-.75Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M15.25 5.5A2.75 2.75 0 0 1 18 8.25v7A2.75 2.75 0 0 1 15.25 18h-7a2.75 2.75 0 0 1-2.75-2.75v-7A2.75 2.75 0 0 1 8.25 5.5h7Zm-7 1.5C7.56 7 7 7.56 7 8.25v7c0 .69.56 1.25 1.25 1.25h7c.69 0 1.25-.56 1.25-1.25v-7c0-.69-.56-1.25-1.25-1.25h-7Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.77 1.53a2.75 2.75 0 0 1 2.954 1.69.75.75 0 0 1-1.392.561 1.25 1.25 0 0 0-1.342-.767L4.067 4.043a1.25 1.25 0 0 0-1.053 1.42l1.03 6.924a.75.75 0 0 1-1.485.22L1.53 5.684a2.75 2.75 0 0 1 2.316-3.125L10.77 1.53Z"},"children":[]}],"metadata":""}]},"name":"duplicate"};
7
7
 
8
8
  export default Duplicate;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Gift: 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":"M10 4.34a6.836 6.836 0 0 0-.145-.24C9.252 3.143 8.18 2 6.5 2a2.5 2.5 0 0 0-2.292 3.5H3.75A1.75 1.75 0 0 0 2 7.25v1C2 9.216 2.784 10 3.75 10H4v5.25A2.75 2.75 0 0 0 6.75 18h6.5A2.75 2.75 0 0 0 16 15.25V10h.25A1.75 1.75 0 0 0 18 8.25v-1a1.75 1.75 0 0 0-1.75-1.75h-.458A2.5 2.5 0 0 0 13.5 2c-1.68 0-2.752 1.143-3.355 2.1-.051.08-.1.16-.145.24Zm3.5 1.16a1 1 0 0 0 0-2c-.91 0-1.587.607-2.086 1.4a5.806 5.806 0 0 0-.329.6H13.5Zm-4.585 0a5.806 5.806 0 0 0-.329-.6c-.5-.793-1.177-1.4-2.086-1.4a1 1 0 0 0 0 2h2.415ZM14.5 10v5.25c0 .69-.56 1.25-1.25 1.25h-2.5V10h3.75Zm-3.75-1.5h5.5a.25.25 0 0 0 .25-.25v-1a.25.25 0 0 0-.25-.25h-5.5v1.5ZM9.25 7v1.5h-5.5a.25.25 0 0 1-.25-.25v-1A.25.25 0 0 1 3.75 7h5.5ZM5.5 10h3.75v6.5h-2.5c-.69 0-1.25-.56-1.25-1.25V10Z"},"children":[]}],"metadata":""}]},"name":"gift"};
7
+
8
+ export default Gift;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ 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"};
7
+
8
+ export default LevelPlus;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Markdown: 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":"M2.5 5.25a.75.75 0 0 1 .75-.75h13.5a.75.75 0 0 1 .75.75v9.5a.75.75 0 0 1-.75.75H3.25a.75.75 0 0 1-.75-.75v-9.5ZM3.25 3A2.25 2.25 0 0 0 1 5.25v9.5A2.25 2.25 0 0 0 3.25 17h13.5A2.25 2.25 0 0 0 19 14.75v-9.5A2.25 2.25 0 0 0 16.75 3H3.25Zm1.17 4.052a.682.682 0 0 1 .744.148L6.5 8.536 7.836 7.2A.682.682 0 0 1 9 7.682v4.636a.682.682 0 0 1-1.364 0v-2.99l-.654.654a.682.682 0 0 1-.964 0l-.654-.654v2.99a.682.682 0 0 1-1.364 0V7.682c0-.276.166-.525.42-.63ZM13.5 7c.377 0 .682.305.682.682v2.99l.654-.654a.682.682 0 1 1 .964.964L13.982 12.8a.682.682 0 0 1-.964 0L11.2 10.982a.682.682 0 1 1 .964-.964l.654.654v-2.99c0-.377.305-.682.682-.682Z"},"children":[]}],"metadata":""}]},"name":"markdown"};
7
+
8
+ export default Markdown;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const PeopleCheck: 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.156 5.65a3.65 3.65 0 1 0-7.3 0 3.65 3.65 0 0 0 7.3 0Zm-1.5 0a2.15 2.15 0 1 0-4.3 0 2.15 2.15 0 0 0 4.3 0Zm-6.8 10.85c-.215 0-.33-.144-.338-.27-.035-.529-.024-1.083.08-1.45.269-.935.899-1.565 1.768-1.978.691-.328 1.522-.51 2.392-.575.414-.03.75-.363.75-.777a.714.714 0 0 0-.75-.726c-1.041.066-2.104.28-3.035.723-1.175.557-2.156 1.489-2.566 2.92-.18.63-.172 1.405-.136 1.96C3.086 17.33 3.941 18 4.856 18h3.9a.75.75 0 0 0 0-1.5h-3.9Zm10.69-5.5a.868.868 0 0 0-.72.356l-2.238 2.95-1.075-1.125-.001-.001a.882.882 0 0 0-.646-.265c-.447 0-.86.33-.86.83 0 .204.08.424.214.564l1.756 1.824c.18.195.456.267.667.267.278 0 .547-.105.706-.307l2.876-3.779.001-.001a.839.839 0 0 0 .18-.492c0-.482-.414-.821-.86-.821Z"},"children":[]}],"metadata":""}]},"name":"people-check"};
7
+
8
+ export default PeopleCheck;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const PresentPlay: 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":"M8.699 6.484a1.31 1.31 0 0 0-1.97 1.131v4.77a1.31 1.31 0 0 0 1.97 1.132l4.089-2.384a1.31 1.31 0 0 0 0-2.265l-4.09-2.384ZM11.752 10 8.23 7.946v4.109l3.523-2.054Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.24 2.25a2.99 2.99 0 0 0-2.99 2.99v9.52a2.99 2.99 0 0 0 2.99 2.99h9.52a2.99 2.99 0 0 0 2.99-2.99V5.24a2.99 2.99 0 0 0-2.99-2.99H5.24ZM3.75 5.24c0-.823.667-1.49 1.49-1.49h9.52c.823 0 1.49.667 1.49 1.49v9.52a1.49 1.49 0 0 1-1.49 1.49H5.24a1.49 1.49 0 0 1-1.49-1.49V5.24Z"},"children":[]}],"metadata":""}]},"name":"present-play"};
7
+
8
+ export default PresentPlay;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const PresentStop: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M14.25 3h-8.5A2.75 2.75 0 0 0 3 5.75v8.5A2.75 2.75 0 0 0 5.75 17h8.5A2.75 2.75 0 0 0 17 14.25v-8.5A2.75 2.75 0 0 0 14.25 3Z"},"children":[]}],"metadata":""}]},"name":"present-stop"};
7
+
8
+ export default PresentStop;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const ResetPassword: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"M9.191 15H4.75A2.752 2.752 0 0 1 2 12.25v-4.5A2.752 2.752 0 0 1 4.75 5h10.5A2.752 2.752 0 0 1 18 7.75v.459a.75.75 0 0 1-1.5 0V7.75c0-.689-.561-1.25-1.25-1.25H4.75c-.689 0-1.25.561-1.25 1.25v4.5c0 .689.561 1.25 1.25 1.25h4.441a.75.75 0 0 1 0 1.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.5 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM11 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM18 10.75a.75.75 0 0 0-1.5 0v.378a3.5 3.5 0 1 0 .546 5.274.75.75 0 1 0-1.091-1.03 2 2 0 1 1-.132-2.872H14.75a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 .75-.75v-2.5Z"},"children":[]}],"metadata":""}]},"name":"reset-password"};
7
+
8
+ export default ResetPassword;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const SettingsOff: 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":"m2.268 6.1.486-.85c.173-.3.42-.546.717-.718L2.22 3.28a.75.75 0 0 1 1.06-1.06l14.5 14.5a.75.75 0 1 1-1.06 1.06l-2.18-2.179-.445-.068-1.317.758-.426 1.101a1.965 1.965 0 0 1-1.827 1.258H9.5a1.965 1.965 0 0 1-1.827-1.257l-.427-1.102-1.316-.758-1.186.181a1.965 1.965 0 0 1-1.965-.963l-.002-.004-.484-.847a1.966 1.966 0 0 1 .157-2.214l.726-.924V9.244l-.748-.928a1.966 1.966 0 0 1-.16-2.216Zm9.532 9.023a.75.75 0 0 0-.325.38l-.523 1.35a.465.465 0 0 1-.431.297H9.503a.464.464 0 0 1-.431-.299l-.523-1.349a.75.75 0 0 0-.325-.379l-1.774-1.02a.75.75 0 0 0-.487-.092l-1.426.217a.465.465 0 0 1-.46-.227V14l-.484-.847-.005-.008a.466.466 0 0 1 .038-.527l.89-1.134a.75.75 0 0 0 .16-.463V8.979a.75.75 0 0 0-.166-.47L3.6 7.38a.466.466 0 0 1-.036-.525L4.054 6a.465.465 0 0 1 .459-.227l.234.035 8.632 8.633-1.579.683Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M9.5 1.35h1a1.964 1.964 0 0 1 1.827 1.257l.427 1.102 1.316.758 1.186-.181a1.965 1.965 0 0 1 1.965.963l.003.004.483.847a1.966 1.966 0 0 1-.158 2.214l-.725.924v1.518l.748.928a1.966 1.966 0 0 1 .16 2.216l-2.242-2.408a.75.75 0 0 1-.166-.471V8.979a.75.75 0 0 1 .16-.463l.89-1.135a.465.465 0 0 0 .038-.526l-.005-.008L15.923 6V6a.465.465 0 0 0-.46-.227l-1.426.217a.75.75 0 0 1-.487-.091l-1.774-1.021a.75.75 0 0 1-.325-.38l-.523-1.348a.469.469 0 0 0-.431-.299h-.994a.464.464 0 0 0-.431.298c-.19.49-.314 1.277-.726 1.64l-1.1-1.081.426-1.099A1.968 1.968 0 0 1 9.5 1.35Z"},"children":[]}],"metadata":""}]},"name":"settings-off"};
7
+
8
+ export default SettingsOff;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Template: 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":"M3.5 5.75A.75.75 0 0 1 4.25 5h11.5a.75.75 0 0 1 .75.75v10a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75v-10ZM4.25 2A2.25 2.25 0 0 0 2 4.25v11.5A2.25 2.25 0 0 0 4.25 18h11.5A2.25 2.25 0 0 0 18 15.75V4.25A2.25 2.25 0 0 0 15.75 2H4.25Zm4.228 5.5c.84-.84 2.203-.84 3.044 0l1.848 1.848c.84.84.84 2.203 0 3.044l-1.848 1.847c-.84.84-2.203.84-3.044 0L6.63 12.392a2.152 2.152 0 0 1 0-3.044L8.478 7.5Zm1.029 1.029a.698.698 0 0 1 .986 0l1.848 1.847a.698.698 0 0 1 0 .987l-1.848 1.848a.698.698 0 0 1-.986 0l-1.848-1.848a.698.698 0 0 1 0-.987L9.507 8.53Z"},"children":[]}],"metadata":""}]},"name":"template"};
7
+
8
+ export default Template;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const UserCheck: 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":"M13.156 5.65a3.65 3.65 0 1 0-7.3 0 3.65 3.65 0 0 0 7.3 0Zm-1.5 0a2.15 2.15 0 1 0-4.3 0 2.15 2.15 0 0 0 4.3 0Zm-6.8 10.85c-.215 0-.33-.144-.338-.27-.035-.529-.024-1.084.08-1.45.269-.935.899-1.565 1.768-1.978.691-.328 1.522-.51 2.393-.575.413-.03.749-.363.749-.777a.714.714 0 0 0-.75-.726c-1.041.066-2.104.28-3.035.723-1.174.557-2.156 1.489-2.566 2.92-.18.63-.172 1.405-.136 1.96C3.086 17.33 3.941 18 4.856 18h3.9a.75.75 0 0 0 0-1.5h-3.9Zm10.69-5.5a.868.868 0 0 0-.72.356l-2.238 2.95-1.075-1.125-.001-.001a.882.882 0 0 0-.646-.265c-.447 0-.86.33-.86.83 0 .204.081.425.214.564l1.756 1.824c.18.195.456.267.667.267.278 0 .547-.105.706-.307l2.876-3.779.001-.001a.839.839 0 0 0 .18-.492c0-.482-.414-.821-.86-.821Z"},"children":[]}],"metadata":""}]},"name":"user-check"};
7
+
8
+ export default UserCheck;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const UserGroupRemove: 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.5 2A2.5 2.5 0 0 0 2 4.5v11A2.5 2.5 0 0 0 4.5 18h4.75a.75.75 0 0 0 0-1.5H4.5a1 1 0 0 1-1-1V4.61c0-.553.448-1.11 1-1.11h11a1 1 0 0 1 1 1v4.75a.75.75 0 0 0 1.5 0V4.5A2.5 2.5 0 0 0 15.5 2h-11Zm8.78 10.22a.75.75 0 1 0-1.06 1.06L13.94 15l-1.72 1.72a.75.75 0 1 0 1.06 1.06L15 16.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L16.06 15l1.72-1.72a.75.75 0 1 0-1.06-1.06L15 13.94l-1.72-1.72ZM10 6a1.583 1.583 0 1 0 0 3.167A1.583 1.583 0 0 0 10 6Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M8.228 12.764c.133-.534.79-1.097 1.772-1.097h.25a.75.75 0 0 0 0-1.5H10c-1.486 0-2.888.868-3.228 2.235a.75.75 0 1 0 1.456.362Z"},"children":[]}],"metadata":""}]},"name":"user-group-remove"};
7
+
8
+ export default UserGroupRemove;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const UserX: 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":"M9.506 2a3.65 3.65 0 1 1 0 7.3 3.65 3.65 0 0 1 0-7.3Zm0 1.5a2.15 2.15 0 1 1 0 4.3 2.15 2.15 0 0 1 0-4.3Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M4.518 16.23c.008.126.123.27.338.27h3.9a.75.75 0 0 1 0 1.5h-3.9c-.915 0-1.77-.67-1.835-1.672-.036-.556-.045-1.33.136-1.961.41-1.431 1.392-2.363 2.566-2.92.931-.442 1.994-.657 3.035-.723a.714.714 0 0 1 .75.726c0 .414-.336.747-.75.777-.87.065-1.7.247-2.392.575-.87.413-1.5 1.043-1.767 1.978-.105.367-.116.921-.081 1.45ZM12.22 12.22a.75.75 0 0 1 1.06 0L15 13.94l1.72-1.72a.75.75 0 1 1 1.06 1.06L16.06 15l1.72 1.72a.75.75 0 1 1-1.06 1.06L15 16.06l-1.72 1.72a.75.75 0 1 1-1.06-1.06L13.94 15l-1.72-1.72a.75.75 0 0 1 0-1.06Z"},"children":[]}],"metadata":""}]},"name":"user-x"};
7
+
8
+ export default UserX;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const ViewGantt: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M4 5.5A1.5 1.5 0 0 1 5.5 4h4a1.5 1.5 0 0 1 0 3h-4A1.5 1.5 0 0 1 4 5.5ZM4 14.5A1.5 1.5 0 0 1 5.5 13h6a1.5 1.5 0 0 1 0 3h-6A1.5 1.5 0 0 1 4 14.5ZM4 10a1.5 1.5 0 0 1 1.5-1.5h9a1.5 1.5 0 0 1 0 3h-9A1.5 1.5 0 0 1 4 10Z"},"children":[]}],"metadata":""}]},"name":"view-gantt"};
7
+
8
+ export default ViewGantt;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Views: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M5 6H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1Zm5 10H9a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1Zm-5 0H4a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1Zm0-5H4a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1Zm5 0H9a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1Zm3-6V4a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1Zm-3 1H9a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1Zm5 5h-1a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1Zm0 5h-1a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1Z"},"children":[]}],"metadata":""}]},"name":"views"};
6
+ const Views: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M4.6 3.4a1.2 1.2 0 0 0-1.2 1.2v.8a1.2 1.2 0 0 0 1.2 1.2h.8a1.2 1.2 0 0 0 1.2-1.2v-.8a1.2 1.2 0 0 0-1.2-1.2h-.8ZM9.6 3.4a1.2 1.2 0 0 0-1.2 1.2v.8a1.2 1.2 0 0 0 1.2 1.2h.8a1.2 1.2 0 0 0 1.2-1.2v-.8a1.2 1.2 0 0 0-1.2-1.2h-.8ZM14.6 3.4a1.2 1.2 0 0 0-1.2 1.2v.8a1.2 1.2 0 0 0 1.2 1.2h.8a1.2 1.2 0 0 0 1.2-1.2v-.8a1.2 1.2 0 0 0-1.2-1.2h-.8ZM9.6 8.4a1.2 1.2 0 0 0-1.2 1.2v.8a1.2 1.2 0 0 0 1.2 1.2h.8a1.2 1.2 0 0 0 1.2-1.2v-.8a1.2 1.2 0 0 0-1.2-1.2h-.8ZM4.6 8.4a1.2 1.2 0 0 0-1.2 1.2v.8a1.2 1.2 0 0 0 1.2 1.2h.8a1.2 1.2 0 0 0 1.2-1.2v-.8a1.2 1.2 0 0 0-1.2-1.2h-.8ZM14.6 8.4a1.2 1.2 0 0 0-1.2 1.2v.8a1.2 1.2 0 0 0 1.2 1.2h.8a1.2 1.2 0 0 0 1.2-1.2v-.8a1.2 1.2 0 0 0-1.2-1.2h-.8ZM9.6 13.4a1.2 1.2 0 0 0-1.2 1.2v.8a1.2 1.2 0 0 0 1.2 1.2h.8a1.2 1.2 0 0 0 1.2-1.2v-.8a1.2 1.2 0 0 0-1.2-1.2h-.8ZM4.6 13.4a1.2 1.2 0 0 0-1.2 1.2v.8a1.2 1.2 0 0 0 1.2 1.2h.8a1.2 1.2 0 0 0 1.2-1.2v-.8a1.2 1.2 0 0 0-1.2-1.2h-.8ZM14.6 13.4a1.2 1.2 0 0 0-1.2 1.2v.8a1.2 1.2 0 0 0 1.2 1.2h.8a1.2 1.2 0 0 0 1.2-1.2v-.8a1.2 1.2 0 0 0-1.2-1.2h-.8Z"},"children":[]}],"metadata":""}]},"name":"views"};
7
7
 
8
8
  export default Views;
@@ -1,15 +1,19 @@
1
1
  // This icon file is generated automatically.
2
2
  export { default as Abort } from './Abort';
3
+ export { default as AccessTemplate } from './AccessTemplate';
3
4
  export { default as ActivityLog } from './ActivityLog';
4
5
  export { default as Activity } from './Activity';
5
6
  export { default as AddAfter } from './AddAfter';
6
7
  export { default as AddBefore } from './AddBefore';
7
8
  export { default as AddCompact } from './AddCompact';
9
+ export { default as AddDatabase } from './AddDatabase';
8
10
  export { default as AddGroup } from './AddGroup';
11
+ export { default as AddIntegration } from './AddIntegration';
9
12
  export { default as AddReactions } from './AddReactions';
10
13
  export { default as Add } from './Add';
11
14
  export { default as AiAssistant } from './AiAssistant';
12
15
  export { default as AiAvatar } from './AiAvatar';
16
+ export { default as AiSearch } from './AiSearch';
13
17
  export { default as AlertTriangle } from './AlertTriangle';
14
18
  export { default as AppDetails } from './AppDetails';
15
19
  export { default as AppStoreOneColor } from './AppStoreOneColor';
@@ -33,6 +37,7 @@ export { default as ArrowTop } from './ArrowTop';
33
37
  export { default as ArrowUpCircle } from './ArrowUpCircle';
34
38
  export { default as ArrowsRightLeft } from './ArrowsRightLeft';
35
39
  export { default as AskForInput } from './AskForInput';
40
+ export { default as Asterisk } from './Asterisk';
36
41
  export { default as Atom } from './Atom';
37
42
  export { default as AutomationsCancelled } from './AutomationsCancelled';
38
43
  export { default as AutomationsDisabled } from './AutomationsDisabled';
@@ -57,6 +62,7 @@ export { default as Chat } from './Chat';
57
62
  export { default as CheckCircleFilled } from './CheckCircleFilled';
58
63
  export { default as CheckCircle } from './CheckCircle';
59
64
  export { default as Checked } from './Checked';
65
+ export { default as Clean } from './Clean';
60
66
  export { default as ClearInputFilled } from './ClearInputFilled';
61
67
  export { default as ClearValue } from './ClearValue';
62
68
  export { default as Clear } from './Clear';
@@ -73,6 +79,8 @@ export { default as Columns } from './Columns';
73
79
  export { default as CommentBubble } from './CommentBubble';
74
80
  export { default as Copy } from './Copy';
75
81
  export { default as Create } from './Create';
82
+ export { default as CreditsFilled } from './CreditsFilled';
83
+ export { default as CrossCircle } from './CrossCircle';
76
84
  export { default as DatabaseOff } from './DatabaseOff';
77
85
  export { default as DatabaseStroke } from './DatabaseStroke';
78
86
  export { default as Database } from './Database';
@@ -117,6 +125,7 @@ export { default as FormWithoutCover } from './FormWithoutCover';
117
125
  export { default as FullscreenModeOffIcon } from './FullscreenModeOffIcon';
118
126
  export { default as FullscreenModeOnIcon } from './FullscreenModeOnIcon';
119
127
  export { default as FullscreenModeOn } from './FullscreenModeOn';
128
+ export { default as Gift } from './Gift';
120
129
  export { default as Github } from './Github';
121
130
  export { default as Gitlab } from './Gitlab';
122
131
  export { default as GlobeSimple } from './GlobeSimple';
@@ -148,6 +157,7 @@ export { default as Lab } from './Lab';
148
157
  export { default as LayoutDouble } from './LayoutDouble';
149
158
  export { default as LayoutSingle } from './LayoutSingle';
150
159
  export { default as LeftPanel } from './LeftPanel';
160
+ export { default as LevelPlus } from './LevelPlus';
151
161
  export { default as Levels } from './Levels';
152
162
  export { default as LineDivider } from './LineDivider';
153
163
  export { default as Link } from './Link';
@@ -160,6 +170,7 @@ export { default as LoupeZoomOut } from './LoupeZoomOut';
160
170
  export { default as LoupeZoom } from './LoupeZoom';
161
171
  export { default as ManyPeople } from './ManyPeople';
162
172
  export { default as MapMode } from './MapMode';
173
+ export { default as Markdown } from './Markdown';
163
174
  export { default as MenuCollapser } from './MenuCollapser';
164
175
  export { default as MessagePlusSquare } from './MessagePlusSquare';
165
176
  export { default as Milestones } from './Milestones';
@@ -190,18 +201,22 @@ export { default as PageRegularMode } from './PageRegularMode';
190
201
  export { default as PageWideMode } from './PageWideMode';
191
202
  export { default as PanelAdd } from './PanelAdd';
192
203
  export { default as Pencil } from './Pencil';
204
+ export { default as PeopleCheck } from './PeopleCheck';
193
205
  export { default as People } from './People';
194
206
  export { default as Photo } from './Photo';
195
207
  export { default as PinFilled } from './PinFilled';
196
208
  export { default as Pin } from './Pin';
197
209
  export { default as Popup } from './Popup';
198
210
  export { default as Posts } from './Posts';
211
+ export { default as PresentPlay } from './PresentPlay';
212
+ export { default as PresentStop } from './PresentStop';
199
213
  export { default as PrivateItems } from './PrivateItems';
200
214
  export { default as Question } from './Question';
201
215
  export { default as Refresh } from './Refresh';
202
216
  export { default as RemovePeople } from './RemovePeople';
203
217
  export { default as Remove } from './Remove';
204
218
  export { default as Reply } from './Reply';
219
+ export { default as ResetPassword } from './ResetPassword';
205
220
  export { default as Restore } from './Restore';
206
221
  export { default as RicheditorActionsMore } from './RicheditorActionsMore';
207
222
  export { default as RicheditorBlockCallout } from './RicheditorBlockCallout';
@@ -256,6 +271,7 @@ export { default as SelfReferenceOn } from './SelfReferenceOn';
256
271
  export { default as SendArrow } from './SendArrow';
257
272
  export { default as SendBackward } from './SendBackward';
258
273
  export { default as SendToBack } from './SendToBack';
274
+ export { default as SettingsOff } from './SettingsOff';
259
275
  export { default as Settings } from './Settings';
260
276
  export { default as Share } from './Share';
261
277
  export { default as Shared } from './Shared';
@@ -276,6 +292,7 @@ export { default as SortOnTop } from './SortOnTop';
276
292
  export { default as Sort } from './Sort';
277
293
  export { default as Spinner } from './Spinner';
278
294
  export { default as Success } from './Success';
295
+ export { default as Template } from './Template';
279
296
  export { default as Templates } from './Templates';
280
297
  export { default as Terminal } from './Terminal';
281
298
  export { default as TextToolAlignBottom } from './TextToolAlignBottom';
@@ -321,8 +338,11 @@ export { default as UnlockFilled } from './UnlockFilled';
321
338
  export { default as UnlockOutline } from './UnlockOutline';
322
339
  export { default as Upgrade } from './Upgrade';
323
340
  export { default as UsbFlashDrive } from './UsbFlashDrive';
341
+ export { default as UserCheck } from './UserCheck';
342
+ export { default as UserGroupRemove } from './UserGroupRemove';
324
343
  export { default as UserGroup } from './UserGroup';
325
344
  export { default as UserRole } from './UserRole';
345
+ export { default as UserX } from './UserX';
326
346
  export { default as ViewAi } from './ViewAi';
327
347
  export { default as ViewBoard } from './ViewBoard';
328
348
  export { default as ViewCalendar } from './ViewCalendar';
@@ -332,6 +352,7 @@ export { default as ViewDetails } from './ViewDetails';
332
352
  export { default as ViewDocument } from './ViewDocument';
333
353
  export { default as ViewFeed } from './ViewFeed';
334
354
  export { default as ViewForm } from './ViewForm';
355
+ export { default as ViewGantt } from './ViewGantt';
335
356
  export { default as ViewList } from './ViewList';
336
357
  export { default as ViewMap } from './ViewMap';
337
358
  export { default as ViewPage } from './ViewPage';
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import AccessTemplateSvg from '../ast/AccessTemplate';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const AccessTemplate = forwardRef<SVGSVGElement, IconBaseProps>(function AccessTemplate(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={AccessTemplateSvg} />});
12
+
13
+ export default AccessTemplate;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import AddDatabaseSvg from '../ast/AddDatabase';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const AddDatabase = forwardRef<SVGSVGElement, IconBaseProps>(function AddDatabase(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={AddDatabaseSvg} />});
12
+
13
+ export default AddDatabase;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import AddIntegrationSvg from '../ast/AddIntegration';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const AddIntegration = forwardRef<SVGSVGElement, IconBaseProps>(function AddIntegration(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={AddIntegrationSvg} />});
12
+
13
+ export default AddIntegration;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import AiSearchSvg from '../ast/AiSearch';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const AiSearch = forwardRef<SVGSVGElement, IconBaseProps>(function AiSearch(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={AiSearchSvg} />});
12
+
13
+ export default AiSearch;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import AsteriskSvg from '../ast/Asterisk';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const Asterisk = forwardRef<SVGSVGElement, IconBaseProps>(function Asterisk(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={AsteriskSvg} />});
12
+
13
+ export default Asterisk;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import CleanSvg from '../ast/Clean';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const Clean = forwardRef<SVGSVGElement, IconBaseProps>(function Clean(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={CleanSvg} />});
12
+
13
+ export default Clean;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import CreditsFilledSvg from '../ast/CreditsFilled';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const CreditsFilled = forwardRef<SVGSVGElement, IconBaseProps>(function CreditsFilled(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={CreditsFilledSvg} />});
12
+
13
+ export default CreditsFilled;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import CrossCircleSvg from '../ast/CrossCircle';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const CrossCircle = forwardRef<SVGSVGElement, IconBaseProps>(function CrossCircle(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={CrossCircleSvg} />});
12
+
13
+ export default CrossCircle;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import GiftSvg from '../ast/Gift';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const Gift = forwardRef<SVGSVGElement, IconBaseProps>(function Gift(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={GiftSvg} />});
12
+
13
+ export default Gift;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import LevelPlusSvg from '../ast/LevelPlus';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const LevelPlus = forwardRef<SVGSVGElement, IconBaseProps>(function LevelPlus(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={LevelPlusSvg} />});
12
+
13
+ export default LevelPlus;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import MarkdownSvg from '../ast/Markdown';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const Markdown = forwardRef<SVGSVGElement, IconBaseProps>(function Markdown(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={MarkdownSvg} />});
12
+
13
+ export default Markdown;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import PeopleCheckSvg from '../ast/PeopleCheck';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const PeopleCheck = forwardRef<SVGSVGElement, IconBaseProps>(function PeopleCheck(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={PeopleCheckSvg} />});
12
+
13
+ export default PeopleCheck;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import PresentPlaySvg from '../ast/PresentPlay';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const PresentPlay = forwardRef<SVGSVGElement, IconBaseProps>(function PresentPlay(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={PresentPlaySvg} />});
12
+
13
+ export default PresentPlay;
@@ -0,0 +1,13 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import {forwardRef} from 'react';
4
+ import PresentStopSvg from '../ast/PresentStop';
5
+ import { Icon } from '../Icon';
6
+ import { IconBaseProps } from '../types';
7
+
8
+ const PresentStop = forwardRef<SVGSVGElement, IconBaseProps>(function PresentStop(
9
+ props: IconBaseProps,
10
+ ref: React.Ref<SVGSVGElement>
11
+ ) {return <Icon {...props} className={props.className} ref={ref} icon={PresentStopSvg} />});
12
+
13
+ export default PresentStop;