@byline/ui 0.9.3 → 0.10.1

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 (895) hide show
  1. package/dist/admin/components/admin-account/change-password.js +1 -1
  2. package/dist/admin/components/admin-account/container.js +1 -1
  3. package/dist/admin/components/admin-account/update.js +1 -1
  4. package/dist/admin/components/admin-permissions/inspector.js +1 -1
  5. package/dist/admin/components/admin-roles/create.js +1 -1
  6. package/dist/admin/components/admin-roles/permissions.js +1 -1
  7. package/dist/admin/components/admin-roles/update.js +1 -1
  8. package/dist/admin/components/admin-users/create.js +1 -1
  9. package/dist/admin/components/admin-users/roles.js +1 -1
  10. package/dist/admin/components/admin-users/set-password.js +1 -1
  11. package/dist/admin/components/admin-users/update.js +1 -1
  12. package/dist/admin/components/auth/sign-in-form.js +1 -1
  13. package/dist/admin/components/collections/diff-modal.js +1 -1
  14. package/dist/admin/components/collections/status-badge.js +1 -1
  15. package/dist/admin/tabs.js +1 -1
  16. package/dist/admin.d.ts +24 -0
  17. package/dist/admin.d.ts.map +1 -0
  18. package/dist/admin.js +18 -0
  19. package/dist/components/@types/shared.d.ts +61 -0
  20. package/dist/components/@types/shared.d.ts.map +1 -0
  21. package/dist/components/@types/shared.js +30 -0
  22. package/dist/components/accordion/accordion.d.ts +32 -0
  23. package/dist/components/accordion/accordion.d.ts.map +1 -0
  24. package/dist/components/accordion/accordion.js +51 -0
  25. package/dist/components/accordion/accordion.module.js +10 -0
  26. package/dist/components/accordion/accordion_module.css +53 -0
  27. package/dist/components/animation/fade-in-lift.d.ts +12 -0
  28. package/dist/components/animation/fade-in-lift.d.ts.map +1 -0
  29. package/dist/components/animation/fade-in-lift.js +27 -0
  30. package/dist/components/avatar/avatar.d.ts +5 -0
  31. package/dist/components/avatar/avatar.d.ts.map +1 -0
  32. package/dist/components/avatar/avatar.js +25 -0
  33. package/dist/components/avatar/avatar.module.js +12 -0
  34. package/dist/components/avatar/avatar_module.css +36 -0
  35. package/dist/components/badge/badge.d.ts +13 -0
  36. package/dist/components/badge/badge.d.ts.map +1 -0
  37. package/dist/components/badge/badge.js +18 -0
  38. package/dist/components/badge/badge.module.js +12 -0
  39. package/dist/components/badge/badge_module.css +51 -0
  40. package/dist/components/button/@types/button.d.ts +41 -0
  41. package/dist/components/button/@types/button.d.ts.map +1 -0
  42. package/dist/components/button/@types/button.js +8 -0
  43. package/dist/components/button/button-group.d.ts +39 -0
  44. package/dist/components/button/button-group.d.ts.map +1 -0
  45. package/dist/components/button/button-group.js +71 -0
  46. package/dist/components/button/button-group.module.js +6 -0
  47. package/dist/components/button/button-group_module.css +17 -0
  48. package/dist/components/button/button.d.ts +16 -0
  49. package/dist/components/button/button.d.ts.map +1 -0
  50. package/dist/components/button/button.js +29 -0
  51. package/dist/components/button/button.module.js +26 -0
  52. package/dist/components/button/button_module.css +382 -0
  53. package/dist/components/button/combo-button.d.ts +21 -0
  54. package/dist/components/button/combo-button.d.ts.map +1 -0
  55. package/dist/components/button/combo-button.js +54 -0
  56. package/dist/components/button/combo-button.module.js +12 -0
  57. package/dist/components/button/combo-button_module.css +52 -0
  58. package/dist/components/button/control-buttons.d.ts +17 -0
  59. package/dist/components/button/control-buttons.d.ts.map +1 -0
  60. package/dist/components/button/control-buttons.js +88 -0
  61. package/dist/components/button/control-buttons.module.js +20 -0
  62. package/dist/components/button/control-buttons_module.css +109 -0
  63. package/dist/components/button/copy-button.d.ts +12 -0
  64. package/dist/components/button/copy-button.d.ts.map +1 -0
  65. package/dist/components/button/copy-button.js +71 -0
  66. package/dist/components/button/copy-button.module.js +13 -0
  67. package/dist/components/button/copy-button_module.css +49 -0
  68. package/dist/components/button/icon-button.d.ts +8 -0
  69. package/dist/components/button/icon-button.d.ts.map +1 -0
  70. package/dist/components/button/icon-button.js +18 -0
  71. package/dist/components/button/index.d.ts +6 -0
  72. package/dist/components/button/index.d.ts.map +1 -0
  73. package/dist/components/button/index.js +5 -0
  74. package/dist/components/card/card.d.ts +37 -0
  75. package/dist/components/card/card.d.ts.map +1 -0
  76. package/dist/components/card/card.js +56 -0
  77. package/dist/components/card/card.module.js +17 -0
  78. package/dist/components/card/card_module.css +62 -0
  79. package/dist/components/chips/@types/chip.d.ts +26 -0
  80. package/dist/components/chips/@types/chip.d.ts.map +1 -0
  81. package/dist/components/chips/@types/chip.js +7 -0
  82. package/dist/components/chips/chip.d.ts +26 -0
  83. package/dist/components/chips/chip.d.ts.map +1 -0
  84. package/dist/components/chips/chip.js +102 -0
  85. package/dist/components/chips/chip.module.js +27 -0
  86. package/dist/components/chips/chip_module.css +315 -0
  87. package/dist/components/chips/index.js +2 -0
  88. package/dist/components/container/container.d.ts +9 -0
  89. package/dist/components/container/container.d.ts.map +1 -0
  90. package/dist/components/container/container.js +12 -0
  91. package/dist/components/container/container.module.js +5 -0
  92. package/dist/components/container/container_module.css +29 -0
  93. package/dist/components/dropdown/dropdown.d.ts +74 -0
  94. package/dist/components/dropdown/dropdown.d.ts.map +1 -0
  95. package/dist/components/dropdown/dropdown.js +106 -0
  96. package/dist/components/dropdown/dropdown.module.js +16 -0
  97. package/dist/components/dropdown/dropdown_module.css +111 -0
  98. package/dist/components/hamburger/hamburger.d.ts +13 -0
  99. package/dist/components/hamburger/hamburger.d.ts.map +1 -0
  100. package/dist/components/hamburger/hamburger.js +46 -0
  101. package/dist/components/hamburger/hamburger.module.js +10 -0
  102. package/dist/components/hamburger/hamburger_module.css +169 -0
  103. package/dist/components/inputs/@types/autocomplete.d.ts +35 -0
  104. package/dist/components/inputs/@types/autocomplete.d.ts.map +1 -0
  105. package/dist/components/inputs/@types/autocomplete.js +11 -0
  106. package/dist/components/inputs/@types/checkbox.d.ts +40 -0
  107. package/dist/components/inputs/@types/checkbox.d.ts.map +1 -0
  108. package/dist/components/inputs/@types/checkbox.js +10 -0
  109. package/dist/components/inputs/@types/input.d.ts +41 -0
  110. package/dist/components/inputs/@types/input.d.ts.map +1 -0
  111. package/dist/components/inputs/@types/input.js +11 -0
  112. package/dist/components/inputs/autocomplete.d.ts +42 -0
  113. package/dist/components/inputs/autocomplete.d.ts.map +1 -0
  114. package/dist/components/inputs/autocomplete.js +87 -0
  115. package/dist/components/inputs/autocomplete.module.js +36 -0
  116. package/dist/components/inputs/autocomplete_module.css +312 -0
  117. package/dist/components/inputs/calendar.d.ts +38 -0
  118. package/dist/components/inputs/calendar.d.ts.map +1 -0
  119. package/dist/components/inputs/calendar.js +131 -0
  120. package/dist/components/inputs/calendar.module.js +45 -0
  121. package/dist/components/inputs/calendar_module.css +223 -0
  122. package/dist/components/inputs/checkbox-group.d.ts +16 -0
  123. package/dist/components/inputs/checkbox-group.d.ts.map +1 -0
  124. package/dist/components/inputs/checkbox-group.js +45 -0
  125. package/dist/components/inputs/checkbox-group.module.js +6 -0
  126. package/dist/components/inputs/checkbox-group_module.css +10 -0
  127. package/dist/components/inputs/checkbox.d.ts +29 -0
  128. package/dist/components/inputs/checkbox.d.ts.map +1 -0
  129. package/dist/components/inputs/checkbox.js +54 -0
  130. package/dist/components/inputs/checkbox.module.js +25 -0
  131. package/dist/components/inputs/checkbox_module.css +216 -0
  132. package/dist/components/inputs/error-text.d.ts +10 -0
  133. package/dist/components/inputs/error-text.d.ts.map +1 -0
  134. package/dist/components/inputs/error-text.js +11 -0
  135. package/dist/components/inputs/error-text.module.js +8 -0
  136. package/dist/components/inputs/error-text_module.css +21 -0
  137. package/dist/components/inputs/errors.d.ts +14 -0
  138. package/dist/components/inputs/errors.d.ts.map +1 -0
  139. package/dist/components/inputs/errors.js +30 -0
  140. package/dist/components/inputs/help-text.d.ts +9 -0
  141. package/dist/components/inputs/help-text.d.ts.map +1 -0
  142. package/dist/components/inputs/help-text.js +10 -0
  143. package/dist/components/inputs/help-text.module.js +8 -0
  144. package/dist/components/inputs/help-text_module.css +21 -0
  145. package/dist/components/inputs/index.js +9 -0
  146. package/dist/components/inputs/input-adornment.d.ts +11 -0
  147. package/dist/components/inputs/input-adornment.d.ts.map +1 -0
  148. package/dist/components/inputs/input-adornment.js +15 -0
  149. package/dist/components/inputs/input-adornment.module.js +7 -0
  150. package/dist/components/inputs/input-adornment_module.css +19 -0
  151. package/dist/components/inputs/input-password.d.ts +3 -0
  152. package/dist/components/inputs/input-password.d.ts.map +1 -0
  153. package/dist/components/inputs/input-password.js +22 -0
  154. package/dist/components/inputs/input.d.ts +25 -0
  155. package/dist/components/inputs/input.d.ts.map +1 -0
  156. package/dist/components/inputs/input.js +62 -0
  157. package/dist/components/inputs/input.module.js +34 -0
  158. package/dist/components/inputs/input_module.css +259 -0
  159. package/dist/components/inputs/label.d.ts +11 -0
  160. package/dist/components/inputs/label.d.ts.map +1 -0
  161. package/dist/components/inputs/label.js +18 -0
  162. package/dist/components/inputs/label.module.js +6 -0
  163. package/dist/components/inputs/label_module.css +14 -0
  164. package/dist/components/inputs/radio-group.d.ts +24 -0
  165. package/dist/components/inputs/radio-group.d.ts.map +1 -0
  166. package/dist/components/inputs/radio-group.js +37 -0
  167. package/dist/components/inputs/radio-group.module.js +20 -0
  168. package/dist/components/inputs/radio-group_module.css +160 -0
  169. package/dist/components/inputs/select.d.ts +33 -0
  170. package/dist/components/inputs/select.d.ts.map +1 -0
  171. package/dist/components/inputs/select.js +87 -0
  172. package/dist/components/inputs/select.module.js +23 -0
  173. package/dist/components/inputs/select_module.css +141 -0
  174. package/dist/components/inputs/text-area.d.ts +20 -0
  175. package/dist/components/inputs/text-area.d.ts.map +1 -0
  176. package/dist/components/inputs/text-area.js +45 -0
  177. package/dist/components/inputs/text-area.module.js +7 -0
  178. package/dist/components/inputs/text-area_module.css +19 -0
  179. package/dist/components/inputs/utils.d.ts +3 -0
  180. package/dist/components/inputs/utils.d.ts.map +1 -0
  181. package/dist/components/inputs/utils.js +10 -0
  182. package/dist/components/notifications/@types/alert.d.ts +21 -0
  183. package/dist/components/notifications/@types/alert.d.ts.map +1 -0
  184. package/dist/components/notifications/@types/alert.js +1 -0
  185. package/dist/components/notifications/@types/toast.d.ts +46 -0
  186. package/dist/components/notifications/@types/toast.d.ts.map +1 -0
  187. package/dist/components/notifications/@types/toast.js +1 -0
  188. package/dist/components/notifications/alert.d.ts +14 -0
  189. package/dist/components/notifications/alert.d.ts.map +1 -0
  190. package/dist/components/notifications/alert.js +99 -0
  191. package/dist/components/notifications/alert.module.js +20 -0
  192. package/dist/components/notifications/alert_module.css +119 -0
  193. package/dist/components/notifications/index.js +2 -0
  194. package/dist/components/notifications/toast.d.ts +17 -0
  195. package/dist/components/notifications/toast.d.ts.map +1 -0
  196. package/dist/components/notifications/toast.js +98 -0
  197. package/dist/components/notifications/toast.module.js +20 -0
  198. package/dist/components/notifications/toast_module.css +212 -0
  199. package/dist/components/pager/@types/index.d.ts +15 -0
  200. package/dist/components/pager/@types/index.d.ts.map +1 -0
  201. package/dist/components/pager/@types/index.js +6 -0
  202. package/dist/components/pager/ellipses.d.ts +3 -0
  203. package/dist/components/pager/ellipses.d.ts.map +1 -0
  204. package/dist/components/pager/ellipses.js +16 -0
  205. package/dist/components/pager/event-pager.js +15 -0
  206. package/dist/components/pager/first-button.d.ts +9 -0
  207. package/dist/components/pager/first-button.d.ts.map +1 -0
  208. package/dist/components/pager/first-button.js +38 -0
  209. package/dist/components/pager/hooks/types/usePagination.d.ts +75 -0
  210. package/dist/components/pager/hooks/types/usePagination.d.ts.map +1 -0
  211. package/dist/components/pager/hooks/types/usePagination.js +1 -0
  212. package/dist/components/pager/hooks/usePagination.d.ts +3 -0
  213. package/dist/components/pager/hooks/usePagination.d.ts.map +1 -0
  214. package/dist/components/pager/hooks/usePagination.js +80 -0
  215. package/dist/components/pager/icons/first.js +36 -0
  216. package/dist/components/pager/icons/index.js +4 -0
  217. package/dist/components/pager/icons/last.js +36 -0
  218. package/dist/components/pager/icons/next.js +24 -0
  219. package/dist/components/pager/icons/previous.js +24 -0
  220. package/dist/components/pager/index.js +4 -0
  221. package/dist/components/pager/last-button.d.ts +12 -0
  222. package/dist/components/pager/last-button.d.ts.map +1 -0
  223. package/dist/components/pager/last-button.js +38 -0
  224. package/dist/components/pager/next-button.d.ts +12 -0
  225. package/dist/components/pager/next-button.d.ts.map +1 -0
  226. package/dist/components/pager/next-button.js +42 -0
  227. package/dist/components/pager/number-button.d.ts +14 -0
  228. package/dist/components/pager/number-button.d.ts.map +1 -0
  229. package/dist/components/pager/number-button.js +45 -0
  230. package/dist/components/pager/pagination.d.ts +99 -0
  231. package/dist/components/pager/pagination.d.ts.map +1 -0
  232. package/dist/components/pager/pagination.js +134 -0
  233. package/dist/components/pager/pagination.module.js +29 -0
  234. package/dist/components/pager/pagination_module.css +103 -0
  235. package/dist/components/pager/previous-button.d.ts +9 -0
  236. package/dist/components/pager/previous-button.d.ts.map +1 -0
  237. package/dist/components/pager/previous-button.js +40 -0
  238. package/dist/components/scroll-area/scroll-area.d.ts +7 -0
  239. package/dist/components/scroll-area/scroll-area.d.ts.map +1 -0
  240. package/dist/components/scroll-area/scroll-area.js +34 -0
  241. package/dist/components/scroll-area/scroll-area.module.js +9 -0
  242. package/dist/components/scroll-area/scroll-area_module.css +63 -0
  243. package/dist/components/scroll-to-top/scroll-to-top.d.ts +15 -0
  244. package/dist/components/scroll-to-top/scroll-to-top.d.ts.map +1 -0
  245. package/dist/components/scroll-to-top/scroll-to-top.js +67 -0
  246. package/dist/components/scroll-to-top/scroll-to-top.module.js +8 -0
  247. package/dist/components/scroll-to-top/scroll-to-top_module.css +100 -0
  248. package/dist/components/section/section.d.ts +9 -0
  249. package/dist/components/section/section.d.ts.map +1 -0
  250. package/dist/components/section/section.js +12 -0
  251. package/dist/components/section/section.module.js +5 -0
  252. package/dist/components/section/section_module.css +9 -0
  253. package/dist/components/shimmer/shimmer.d.ts +13 -0
  254. package/dist/components/shimmer/shimmer.d.ts.map +1 -0
  255. package/dist/components/shimmer/shimmer.js +41 -0
  256. package/dist/components/shimmer/shimmer.module.js +9 -0
  257. package/dist/components/shimmer/shimmer_module.css +47 -0
  258. package/dist/components/table/table.d.ts +37 -0
  259. package/dist/components/table/table.d.ts.map +1 -0
  260. package/dist/components/table/table.js +85 -0
  261. package/dist/components/table/table.module.js +19 -0
  262. package/dist/components/table/table_module.css +91 -0
  263. package/dist/components/tabs/tabs.d.ts +28 -0
  264. package/dist/components/tabs/tabs.d.ts.map +1 -0
  265. package/dist/components/tabs/tabs.js +34 -0
  266. package/dist/components/tabs/tabs.module.js +12 -0
  267. package/dist/components/tabs/tabs_module.css +56 -0
  268. package/dist/components/tooltip/tooltip.d.ts +14 -0
  269. package/dist/components/tooltip/tooltip.d.ts.map +1 -0
  270. package/dist/components/tooltip/tooltip.js +63 -0
  271. package/dist/components/tooltip/tooltip.module.js +13 -0
  272. package/dist/components/tooltip/tooltip_module.css +73 -0
  273. package/dist/dnd/draggable-sortable/demo/draggable-list-demo.js +1 -1
  274. package/dist/dnd/draggable-sortable/draggable-sortable.d.ts +3 -3
  275. package/dist/dnd/draggable-sortable/draggable-sortable.d.ts.map +1 -1
  276. package/dist/dnd/draggable-sortable/types.d.ts +1 -1
  277. package/dist/dnd/draggable-sortable/types.d.ts.map +1 -1
  278. package/dist/fields/array/array-field.js +1 -1
  279. package/dist/fields/blocks/blocks-field.js +1 -1
  280. package/dist/fields/checkbox/checkbox-field.js +1 -1
  281. package/dist/fields/datetime/datetime-field.js +1 -1
  282. package/dist/fields/draggable-context-menu.js +1 -1
  283. package/dist/fields/file/file-field.js +1 -1
  284. package/dist/fields/group/group-field.js +1 -1
  285. package/dist/fields/image/image-field.js +1 -1
  286. package/dist/fields/numerical/numerical-field.js +1 -1
  287. package/dist/fields/relation/relation-field.js +1 -1
  288. package/dist/fields/relation/relation-picker.js +1 -1
  289. package/dist/fields/select/select-field.js +1 -1
  290. package/dist/fields/sortable-item.js +1 -1
  291. package/dist/fields/text/text-field.js +1 -1
  292. package/dist/fields/text-area/text-area-field.js +1 -1
  293. package/dist/fields.d.ts +28 -0
  294. package/dist/fields.d.ts.map +1 -0
  295. package/dist/fields.js +23 -0
  296. package/dist/forms/document-actions.js +1 -1
  297. package/dist/forms/form-renderer.js +1 -1
  298. package/dist/forms/path-widget.js +1 -1
  299. package/dist/forms.d.ts +10 -0
  300. package/dist/forms.d.ts.map +1 -0
  301. package/dist/forms.js +5 -0
  302. package/dist/hooks/use-focus-trap/index.js +1 -0
  303. package/dist/hooks/use-focus-trap/scope-tab.js +19 -0
  304. package/dist/hooks/use-focus-trap/tabbable.js +36 -0
  305. package/dist/hooks/use-focus-trap/use-focus-trap.js +45 -0
  306. package/dist/hooks/use-media-query.d.ts +2 -0
  307. package/dist/hooks/use-media-query.d.ts.map +1 -0
  308. package/dist/hooks/use-media-query.js +20 -0
  309. package/dist/icons/activity-icon.d.ts +7 -0
  310. package/dist/icons/activity-icon.d.ts.map +1 -0
  311. package/dist/icons/activity-icon.js +45 -0
  312. package/dist/icons/ai-icon.d.ts +7 -0
  313. package/dist/icons/ai-icon.d.ts.map +1 -0
  314. package/dist/icons/ai-icon.js +39 -0
  315. package/dist/icons/calendar-icon.d.ts +7 -0
  316. package/dist/icons/calendar-icon.d.ts.map +1 -0
  317. package/dist/icons/calendar-icon.js +26 -0
  318. package/dist/icons/check-icon.d.ts +7 -0
  319. package/dist/icons/check-icon.d.ts.map +1 -0
  320. package/dist/icons/check-icon.js +25 -0
  321. package/dist/icons/chevron-down-icon.d.ts +7 -0
  322. package/dist/icons/chevron-down-icon.d.ts.map +1 -0
  323. package/dist/icons/chevron-down-icon.js +27 -0
  324. package/dist/icons/chevron-left-double-icon.d.ts +27 -0
  325. package/dist/icons/chevron-left-double-icon.d.ts.map +1 -0
  326. package/dist/icons/chevron-left-double-icon.js +28 -0
  327. package/dist/icons/chevron-left-icon.d.ts +27 -0
  328. package/dist/icons/chevron-left-icon.d.ts.map +1 -0
  329. package/dist/icons/chevron-left-icon.js +28 -0
  330. package/dist/icons/chevron-right-double-icon.d.ts +27 -0
  331. package/dist/icons/chevron-right-double-icon.d.ts.map +1 -0
  332. package/dist/icons/chevron-right-double-icon.js +28 -0
  333. package/dist/icons/chevron-right-icon.d.ts +27 -0
  334. package/dist/icons/chevron-right-icon.d.ts.map +1 -0
  335. package/dist/icons/chevron-right-icon.js +28 -0
  336. package/dist/icons/chevron-up-icon.d.ts +7 -0
  337. package/dist/icons/chevron-up-icon.d.ts.map +1 -0
  338. package/dist/icons/chevron-up-icon.js +27 -0
  339. package/dist/icons/chevrons-up-down.d.ts +7 -0
  340. package/dist/icons/chevrons-up-down.d.ts.map +1 -0
  341. package/dist/icons/chevrons-up-down.js +34 -0
  342. package/dist/icons/close-icon.d.ts +7 -0
  343. package/dist/icons/close-icon.d.ts.map +1 -0
  344. package/dist/icons/close-icon.js +37 -0
  345. package/dist/icons/copy-icon.d.ts +7 -0
  346. package/dist/icons/copy-icon.d.ts.map +1 -0
  347. package/dist/icons/copy-icon.js +26 -0
  348. package/dist/icons/danger-icon.d.ts +4 -0
  349. package/dist/icons/danger-icon.d.ts.map +1 -0
  350. package/dist/icons/danger-icon.js +21 -0
  351. package/dist/icons/dashboard-icon.d.ts +7 -0
  352. package/dist/icons/dashboard-icon.d.ts.map +1 -0
  353. package/dist/icons/dashboard-icon.js +43 -0
  354. package/dist/icons/delete-icon.d.ts +7 -0
  355. package/dist/icons/delete-icon.d.ts.map +1 -0
  356. package/dist/icons/delete-icon.js +42 -0
  357. package/dist/icons/document-icon.d.ts +7 -0
  358. package/dist/icons/document-icon.d.ts.map +1 -0
  359. package/dist/icons/document-icon.js +36 -0
  360. package/dist/icons/download-icon.d.ts +7 -0
  361. package/dist/icons/download-icon.d.ts.map +1 -0
  362. package/dist/icons/download-icon.js +27 -0
  363. package/dist/icons/edit-icon.d.ts +7 -0
  364. package/dist/icons/edit-icon.d.ts.map +1 -0
  365. package/dist/icons/edit-icon.js +39 -0
  366. package/dist/icons/ellipsis-icon.d.ts +7 -0
  367. package/dist/icons/ellipsis-icon.d.ts.map +1 -0
  368. package/dist/icons/ellipsis-icon.js +40 -0
  369. package/dist/icons/email-icon.d.ts +7 -0
  370. package/dist/icons/email-icon.d.ts.map +1 -0
  371. package/dist/icons/email-icon.js +31 -0
  372. package/dist/icons/external-link-icon.d.ts +7 -0
  373. package/dist/icons/external-link-icon.d.ts.map +1 -0
  374. package/dist/icons/external-link-icon.js +27 -0
  375. package/dist/icons/eye-closed-icon.d.ts +7 -0
  376. package/dist/icons/eye-closed-icon.d.ts.map +1 -0
  377. package/dist/icons/eye-closed-icon.js +41 -0
  378. package/dist/icons/eye-open-icon.d.ts +7 -0
  379. package/dist/icons/eye-open-icon.d.ts.map +1 -0
  380. package/dist/icons/eye-open-icon.js +33 -0
  381. package/dist/icons/github-icon.d.ts +7 -0
  382. package/dist/icons/github-icon.d.ts.map +1 -0
  383. package/dist/icons/github-icon.js +24 -0
  384. package/dist/icons/globe-icon.d.ts +7 -0
  385. package/dist/icons/globe-icon.d.ts.map +1 -0
  386. package/dist/icons/globe-icon.js +44 -0
  387. package/dist/icons/google-icon.d.ts +7 -0
  388. package/dist/icons/google-icon.d.ts.map +1 -0
  389. package/dist/icons/google-icon.js +42 -0
  390. package/dist/icons/gripper-vertical-icon.d.ts +7 -0
  391. package/dist/icons/gripper-vertical-icon.d.ts.map +1 -0
  392. package/dist/icons/gripper-vertical-icon.js +49 -0
  393. package/dist/icons/history-icon.d.ts +7 -0
  394. package/dist/icons/history-icon.d.ts.map +1 -0
  395. package/dist/icons/history-icon.js +35 -0
  396. package/dist/icons/home-icon.d.ts +7 -0
  397. package/dist/icons/home-icon.d.ts.map +1 -0
  398. package/dist/icons/home-icon.js +37 -0
  399. package/dist/icons/icon-element.d.ts +11 -0
  400. package/dist/icons/icon-element.d.ts.map +1 -0
  401. package/dist/icons/icon-element.js +17 -0
  402. package/dist/icons/icon-sprite.js +15 -0
  403. package/dist/icons/icons.module.js +46 -0
  404. package/dist/icons/icons_module.css +163 -0
  405. package/dist/icons/index.d.ts +54 -0
  406. package/dist/icons/index.d.ts.map +1 -0
  407. package/dist/icons/index.js +53 -0
  408. package/dist/icons/info-icon.d.ts +4 -0
  409. package/dist/icons/info-icon.d.ts.map +1 -0
  410. package/dist/icons/info-icon.js +21 -0
  411. package/dist/icons/infonomic-icon.d.ts +7 -0
  412. package/dist/icons/infonomic-icon.d.ts.map +1 -0
  413. package/dist/icons/infonomic-icon.js +211 -0
  414. package/dist/icons/light-icon.d.ts +7 -0
  415. package/dist/icons/light-icon.d.ts.map +1 -0
  416. package/dist/icons/light-icon.js +23 -0
  417. package/dist/icons/location-pin-icon.d.ts +7 -0
  418. package/dist/icons/location-pin-icon.d.ts.map +1 -0
  419. package/dist/icons/location-pin-icon.js +31 -0
  420. package/dist/icons/moon-icon.d.ts +7 -0
  421. package/dist/icons/moon-icon.d.ts.map +1 -0
  422. package/dist/icons/moon-icon.js +26 -0
  423. package/dist/icons/plus-icon.d.ts +7 -0
  424. package/dist/icons/plus-icon.d.ts.map +1 -0
  425. package/dist/icons/plus-icon.js +32 -0
  426. package/dist/icons/primary-icon.d.ts +4 -0
  427. package/dist/icons/primary-icon.d.ts.map +1 -0
  428. package/dist/icons/primary-icon.js +21 -0
  429. package/dist/icons/refresh-icon.d.ts +7 -0
  430. package/dist/icons/refresh-icon.d.ts.map +1 -0
  431. package/dist/icons/refresh-icon.js +31 -0
  432. package/dist/icons/return-icon.d.ts +7 -0
  433. package/dist/icons/return-icon.d.ts.map +1 -0
  434. package/dist/icons/return-icon.js +35 -0
  435. package/dist/icons/roles-icon.d.ts +7 -0
  436. package/dist/icons/roles-icon.d.ts.map +1 -0
  437. package/dist/icons/roles-icon.js +34 -0
  438. package/dist/icons/search-icon.d.ts +7 -0
  439. package/dist/icons/search-icon.d.ts.map +1 -0
  440. package/dist/icons/search-icon.js +23 -0
  441. package/dist/icons/search-menu-icon.d.ts +7 -0
  442. package/dist/icons/search-menu-icon.d.ts.map +1 -0
  443. package/dist/icons/search-menu-icon.js +42 -0
  444. package/dist/icons/settings-gear-icon.d.ts +7 -0
  445. package/dist/icons/settings-gear-icon.d.ts.map +1 -0
  446. package/dist/icons/settings-gear-icon.js +34 -0
  447. package/dist/icons/settings-sliders-icon.d.ts +7 -0
  448. package/dist/icons/settings-sliders-icon.d.ts.map +1 -0
  449. package/dist/icons/settings-sliders-icon.js +55 -0
  450. package/dist/icons/sign-out-icon.d.ts +7 -0
  451. package/dist/icons/sign-out-icon.d.ts.map +1 -0
  452. package/dist/icons/sign-out-icon.js +39 -0
  453. package/dist/icons/stop-icon.d.ts +7 -0
  454. package/dist/icons/stop-icon.d.ts.map +1 -0
  455. package/dist/icons/stop-icon.js +35 -0
  456. package/dist/icons/stopwatch-icon.d.ts +7 -0
  457. package/dist/icons/stopwatch-icon.d.ts.map +1 -0
  458. package/dist/icons/stopwatch-icon.js +26 -0
  459. package/dist/icons/success-icon.d.ts +4 -0
  460. package/dist/icons/success-icon.d.ts.map +1 -0
  461. package/dist/icons/success-icon.js +21 -0
  462. package/dist/icons/types/icon.d.ts +9 -0
  463. package/dist/icons/types/icon.d.ts.map +1 -0
  464. package/dist/icons/types/icon.js +1 -0
  465. package/dist/icons/user-icon.d.ts +7 -0
  466. package/dist/icons/user-icon.d.ts.map +1 -0
  467. package/dist/icons/user-icon.js +31 -0
  468. package/dist/icons/users-icon.d.ts +7 -0
  469. package/dist/icons/users-icon.d.ts.map +1 -0
  470. package/dist/icons/users-icon.js +37 -0
  471. package/dist/icons/wallet-icon.d.ts +7 -0
  472. package/dist/icons/wallet-icon.d.ts.map +1 -0
  473. package/dist/icons/wallet-icon.js +23 -0
  474. package/dist/icons/warning-icon.d.ts +4 -0
  475. package/dist/icons/warning-icon.d.ts.map +1 -0
  476. package/dist/icons/warning-icon.js +21 -0
  477. package/dist/icons/x-icon.d.ts +7 -0
  478. package/dist/icons/x-icon.d.ts.map +1 -0
  479. package/dist/icons/x-icon.js +25 -0
  480. package/dist/lib/ripple.d.ts +25 -0
  481. package/dist/lib/ripple.d.ts.map +1 -0
  482. package/dist/lib/ripple.js +53 -0
  483. package/dist/loaders/@types/index.d.ts +7 -0
  484. package/dist/loaders/@types/index.d.ts.map +1 -0
  485. package/dist/loaders/@types/index.js +1 -0
  486. package/dist/loaders/ellipses.d.ts +4 -0
  487. package/dist/loaders/ellipses.d.ts.map +1 -0
  488. package/dist/loaders/ellipses.js +22 -0
  489. package/dist/loaders/ellipses.module.js +14 -0
  490. package/dist/loaders/ellipses_module.css +73 -0
  491. package/dist/loaders/ring.d.ts +4 -0
  492. package/dist/loaders/ring.d.ts.map +1 -0
  493. package/dist/loaders/ring.js +22 -0
  494. package/dist/loaders/ring.module.js +8 -0
  495. package/dist/loaders/ring_module.css +49 -0
  496. package/dist/loaders/spinner.d.ts +4 -0
  497. package/dist/loaders/spinner.d.ts.map +1 -0
  498. package/dist/loaders/spinner.js +25 -0
  499. package/dist/loaders/spinner.module.js +10 -0
  500. package/dist/loaders/spinner_module.css +99 -0
  501. package/dist/react.d.ts +1 -49
  502. package/dist/react.d.ts.map +1 -1
  503. package/dist/react.js +1 -47
  504. package/dist/services.d.ts +10 -0
  505. package/dist/services.d.ts.map +1 -0
  506. package/dist/services.js +1 -0
  507. package/dist/styles/reset.css +209 -0
  508. package/dist/styles/styles.css +2922 -0
  509. package/dist/styles/typography.css +398 -0
  510. package/dist/uikit.d.ts +109 -0
  511. package/dist/uikit.d.ts.map +1 -0
  512. package/dist/uikit.js +104 -0
  513. package/dist/utils/capitalize.js +5 -0
  514. package/dist/utils/externalLinkProps.js +6 -0
  515. package/dist/utils/findMatch.js +6 -0
  516. package/dist/utils/getPortalRoot.js +4 -0
  517. package/dist/utils/isTouchDevice.js +3 -0
  518. package/dist/utils/objectsToArray.js +9 -0
  519. package/dist/utils/objectsToString.js +5 -0
  520. package/dist/utils/polymorphic.js +1 -0
  521. package/dist/utils/to-kebab-case.js +2 -0
  522. package/dist/widgets/datepicker/datepicker.d.ts +38 -0
  523. package/dist/widgets/datepicker/datepicker.d.ts.map +1 -0
  524. package/dist/widgets/datepicker/datepicker.js +262 -0
  525. package/dist/widgets/datepicker/datepicker.module.js +33 -0
  526. package/dist/widgets/datepicker/datepicker_module.css +188 -0
  527. package/dist/widgets/drawer/drawer-container.d.ts +10 -0
  528. package/dist/widgets/drawer/drawer-container.d.ts.map +1 -0
  529. package/dist/widgets/drawer/drawer-container.js +13 -0
  530. package/dist/widgets/drawer/drawer-content.d.ts +10 -0
  531. package/dist/widgets/drawer/drawer-content.d.ts.map +1 -0
  532. package/dist/widgets/drawer/drawer-content.js +13 -0
  533. package/dist/widgets/drawer/drawer-context.d.ts +14 -0
  534. package/dist/widgets/drawer/drawer-context.d.ts.map +1 -0
  535. package/dist/widgets/drawer/drawer-context.js +34 -0
  536. package/dist/widgets/drawer/drawer-header.d.ts +10 -0
  537. package/dist/widgets/drawer/drawer-header.d.ts.map +1 -0
  538. package/dist/widgets/drawer/drawer-header.js +17 -0
  539. package/dist/widgets/drawer/drawer-top-actions.d.ts +10 -0
  540. package/dist/widgets/drawer/drawer-top-actions.d.ts.map +1 -0
  541. package/dist/widgets/drawer/drawer-top-actions.js +17 -0
  542. package/dist/widgets/drawer/drawer.d.ts +27 -0
  543. package/dist/widgets/drawer/drawer.d.ts.map +1 -0
  544. package/dist/widgets/drawer/drawer.js +59 -0
  545. package/dist/widgets/drawer/drawer.module.js +27 -0
  546. package/dist/widgets/drawer/drawer_module.css +129 -0
  547. package/dist/widgets/drawer/motionDomAnimation.js +4 -0
  548. package/dist/widgets/drawer/motionDomMax.js +4 -0
  549. package/dist/widgets/modal/modal-actions.d.ts +10 -0
  550. package/dist/widgets/modal/modal-actions.d.ts.map +1 -0
  551. package/dist/widgets/modal/modal-actions.js +13 -0
  552. package/dist/widgets/modal/modal-container.d.ts +10 -0
  553. package/dist/widgets/modal/modal-container.d.ts.map +1 -0
  554. package/dist/widgets/modal/modal-container.js +13 -0
  555. package/dist/widgets/modal/modal-content.d.ts +10 -0
  556. package/dist/widgets/modal/modal-content.d.ts.map +1 -0
  557. package/dist/widgets/modal/modal-content.js +13 -0
  558. package/dist/widgets/modal/modal-header.d.ts +10 -0
  559. package/dist/widgets/modal/modal-header.d.ts.map +1 -0
  560. package/dist/widgets/modal/modal-header.js +17 -0
  561. package/dist/widgets/modal/modal.d.ts +35 -0
  562. package/dist/widgets/modal/modal.d.ts.map +1 -0
  563. package/dist/widgets/modal/modal.js +58 -0
  564. package/dist/widgets/modal/modal.module.js +15 -0
  565. package/dist/widgets/modal/modal_module.css +118 -0
  566. package/dist/widgets/modal/motionDomAnimation.js +4 -0
  567. package/dist/widgets/modal/motionDomMax.js +4 -0
  568. package/dist/widgets/search/index.js +1 -0
  569. package/dist/widgets/search/search.d.ts +21 -0
  570. package/dist/widgets/search/search.d.ts.map +1 -0
  571. package/dist/widgets/search/search.js +109 -0
  572. package/dist/widgets/timeline/timeline.d.ts +60 -0
  573. package/dist/widgets/timeline/timeline.d.ts.map +1 -0
  574. package/dist/widgets/timeline/timeline.js +74 -0
  575. package/dist/widgets/timeline/timeline.module.js +17 -0
  576. package/dist/widgets/timeline/timeline_module.css +83 -0
  577. package/package.json +37 -24
  578. package/src/.uikit-sync.json +9 -0
  579. package/src/admin/components/admin-account/change-password.tsx +1 -1
  580. package/src/admin/components/admin-account/container.tsx +1 -1
  581. package/src/admin/components/admin-account/update.tsx +1 -1
  582. package/src/admin/components/admin-permissions/inspector.tsx +1 -1
  583. package/src/admin/components/admin-roles/create.tsx +1 -1
  584. package/src/admin/components/admin-roles/permissions.tsx +1 -1
  585. package/src/admin/components/admin-roles/update.tsx +1 -1
  586. package/src/admin/components/admin-users/create.tsx +1 -1
  587. package/src/admin/components/admin-users/roles.tsx +1 -1
  588. package/src/admin/components/admin-users/set-password.tsx +1 -1
  589. package/src/admin/components/admin-users/update.tsx +1 -1
  590. package/src/admin/components/auth/sign-in-form.tsx +1 -1
  591. package/src/admin/components/collections/diff-modal.tsx +1 -1
  592. package/src/admin/components/collections/status-badge.tsx +1 -1
  593. package/src/admin/tabs.tsx +1 -1
  594. package/src/admin.ts +39 -0
  595. package/src/components/@types/shared.ts +79 -0
  596. package/src/components/accordion/accordion.module.css +56 -0
  597. package/src/components/accordion/accordion.tsx +125 -0
  598. package/src/components/animation/fade-in-lift.tsx +43 -0
  599. package/src/components/avatar/avatar.module.css +45 -0
  600. package/src/components/avatar/avatar.tsx +28 -0
  601. package/src/components/badge/badge.module.css +66 -0
  602. package/src/components/badge/badge.tsx +42 -0
  603. package/src/components/button/@types/button.ts +50 -0
  604. package/src/components/button/button-group.module.css +19 -0
  605. package/src/components/button/button-group.tsx +142 -0
  606. package/src/components/button/button.module.css +542 -0
  607. package/src/components/button/button.tsx +70 -0
  608. package/src/components/button/combo-button.module.css +52 -0
  609. package/src/components/button/combo-button.tsx +89 -0
  610. package/src/components/button/control-buttons.module.css +134 -0
  611. package/src/components/button/control-buttons.tsx +140 -0
  612. package/src/components/button/copy-button.module.css +61 -0
  613. package/src/components/button/copy-button.tsx +123 -0
  614. package/src/components/button/icon-button.tsx +43 -0
  615. package/src/components/button/index.ts +5 -0
  616. package/src/components/card/card.module.css +80 -0
  617. package/src/components/card/card.tsx +91 -0
  618. package/src/components/chips/@types/chip.ts +29 -0
  619. package/src/components/chips/chip.module.css +445 -0
  620. package/src/components/chips/chip.tsx +198 -0
  621. package/src/components/chips/index.ts +2 -0
  622. package/src/components/container/container.module.css +41 -0
  623. package/src/components/container/container.tsx +23 -0
  624. package/src/components/dropdown/dropdown.module.css +128 -0
  625. package/src/components/dropdown/dropdown.tsx +225 -0
  626. package/src/components/hamburger/hamburger.module.css +141 -0
  627. package/src/components/hamburger/hamburger.tsx +75 -0
  628. package/src/components/inputs/@types/autocomplete.ts +39 -0
  629. package/src/components/inputs/@types/checkbox.ts +50 -0
  630. package/src/components/inputs/@types/input.ts +51 -0
  631. package/src/components/inputs/autocomplete.module.css +370 -0
  632. package/src/components/inputs/autocomplete.tsx +179 -0
  633. package/src/components/inputs/calendar.module.css +274 -0
  634. package/src/components/inputs/calendar.tsx +185 -0
  635. package/src/components/inputs/checkbox-group.module.css +15 -0
  636. package/src/components/inputs/checkbox-group.tsx +86 -0
  637. package/src/components/inputs/checkbox.module.css +278 -0
  638. package/src/components/inputs/checkbox.tsx +109 -0
  639. package/src/components/inputs/error-text.module.css +29 -0
  640. package/src/components/inputs/error-text.tsx +20 -0
  641. package/src/components/inputs/errors.tsx +37 -0
  642. package/src/components/inputs/help-text.module.css +29 -0
  643. package/src/components/inputs/help-text.tsx +19 -0
  644. package/src/components/inputs/index.tsx +9 -0
  645. package/src/components/inputs/input-adornment.module.css +26 -0
  646. package/src/components/inputs/input-adornment.tsx +37 -0
  647. package/src/components/inputs/input-password.tsx +24 -0
  648. package/src/components/inputs/input.module.css +289 -0
  649. package/src/components/inputs/input.tsx +119 -0
  650. package/src/components/inputs/label.module.css +20 -0
  651. package/src/components/inputs/label.tsx +26 -0
  652. package/src/components/inputs/radio-group.module.css +175 -0
  653. package/src/components/inputs/radio-group.tsx +72 -0
  654. package/src/components/inputs/select.module.css +152 -0
  655. package/src/components/inputs/select.tsx +134 -0
  656. package/src/components/inputs/text-area.module.css +34 -0
  657. package/src/components/inputs/text-area.tsx +83 -0
  658. package/src/components/inputs/utils.ts +21 -0
  659. package/src/components/notifications/@types/alert.ts +25 -0
  660. package/src/components/notifications/@types/toast.ts +53 -0
  661. package/src/components/notifications/alert.module.css +136 -0
  662. package/src/components/notifications/alert.tsx +124 -0
  663. package/src/components/notifications/index.ts +2 -0
  664. package/src/components/notifications/toast.module.css +234 -0
  665. package/src/components/notifications/toast.tsx +121 -0
  666. package/src/components/pager/@types/index.ts +15 -0
  667. package/src/components/pager/ellipses.tsx +18 -0
  668. package/src/components/pager/event-pager.tsx +20 -0
  669. package/src/components/pager/first-button.tsx +56 -0
  670. package/src/components/pager/hooks/types/usePagination.ts +80 -0
  671. package/src/components/pager/hooks/usePagination.ts +140 -0
  672. package/src/components/pager/icons/first.tsx +33 -0
  673. package/src/components/pager/icons/index.tsx +4 -0
  674. package/src/components/pager/icons/last.tsx +33 -0
  675. package/src/components/pager/icons/next.tsx +20 -0
  676. package/src/components/pager/icons/previous.tsx +20 -0
  677. package/src/components/pager/index.ts +4 -0
  678. package/src/components/pager/last-button.tsx +61 -0
  679. package/src/components/pager/next-button.tsx +61 -0
  680. package/src/components/pager/number-button.tsx +87 -0
  681. package/src/components/pager/pagination.module.css +147 -0
  682. package/src/components/pager/pagination.tsx +265 -0
  683. package/src/components/pager/previous-button.tsx +56 -0
  684. package/src/components/scroll-area/scroll-area.module.css +74 -0
  685. package/src/components/scroll-area/scroll-area.tsx +32 -0
  686. package/src/components/scroll-to-top/scroll-to-top.module.css +86 -0
  687. package/src/components/scroll-to-top/scroll-to-top.tsx +87 -0
  688. package/src/components/section/section.module.css +14 -0
  689. package/src/components/section/section.tsx +23 -0
  690. package/src/components/shimmer/shimmer.module.css +61 -0
  691. package/src/components/shimmer/shimmer.tsx +71 -0
  692. package/src/components/table/table.module.css +120 -0
  693. package/src/components/table/table.tsx +171 -0
  694. package/src/components/tabs/tabs.module.css +64 -0
  695. package/src/components/tabs/tabs.tsx +76 -0
  696. package/src/components/tooltip/tooltip.module.css +80 -0
  697. package/src/components/tooltip/tooltip.tsx +83 -0
  698. package/src/dnd/draggable-sortable/demo/draggable-list-demo.tsx +1 -1
  699. package/src/dnd/draggable-sortable/draggable-sortable.tsx +3 -3
  700. package/src/dnd/draggable-sortable/types.ts +1 -1
  701. package/src/fields/array/array-field.tsx +1 -1
  702. package/src/fields/blocks/blocks-field.tsx +1 -1
  703. package/src/fields/checkbox/checkbox-field.tsx +1 -1
  704. package/src/fields/datetime/datetime-field.tsx +1 -1
  705. package/src/fields/draggable-context-menu.tsx +3 -3
  706. package/src/fields/file/file-field.tsx +1 -1
  707. package/src/fields/group/group-field.tsx +1 -1
  708. package/src/fields/image/image-field.tsx +1 -1
  709. package/src/fields/numerical/numerical-field.tsx +1 -1
  710. package/src/fields/relation/relation-field.tsx +1 -1
  711. package/src/fields/relation/relation-picker.tsx +1 -1
  712. package/src/fields/select/select-field.tsx +1 -1
  713. package/src/fields/sortable-item.tsx +1 -1
  714. package/src/fields/text/text-field.tsx +1 -1
  715. package/src/fields/text-area/text-area-field.tsx +1 -1
  716. package/src/fields.ts +28 -0
  717. package/src/forms/document-actions.tsx +3 -3
  718. package/src/forms/form-renderer.tsx +1 -1
  719. package/src/forms/path-widget.test.tsx +1 -1
  720. package/src/forms/path-widget.tsx +1 -1
  721. package/src/forms.ts +10 -0
  722. package/src/hooks/use-focus-trap/index.ts +1 -0
  723. package/src/hooks/use-focus-trap/scope-tab.ts +48 -0
  724. package/src/hooks/use-focus-trap/tabbable.ts +72 -0
  725. package/src/hooks/use-focus-trap/use-focus-trap.ts +83 -0
  726. package/src/hooks/use-media-query.ts +20 -0
  727. package/src/icons/activity-icon.tsx +41 -0
  728. package/src/icons/ai-icon.tsx +45 -0
  729. package/src/icons/calendar-icon.tsx +37 -0
  730. package/src/icons/check-icon.tsx +30 -0
  731. package/src/icons/chevron-down-icon.tsx +37 -0
  732. package/src/icons/chevron-left-double-icon.tsx +59 -0
  733. package/src/icons/chevron-left-icon.tsx +59 -0
  734. package/src/icons/chevron-right-double-icon.tsx +59 -0
  735. package/src/icons/chevron-right-icon.tsx +59 -0
  736. package/src/icons/chevron-up-icon.tsx +37 -0
  737. package/src/icons/chevrons-up-down.tsx +38 -0
  738. package/src/icons/close-icon.tsx +33 -0
  739. package/src/icons/copy-icon.tsx +32 -0
  740. package/src/icons/danger-icon.tsx +19 -0
  741. package/src/icons/dashboard-icon.tsx +39 -0
  742. package/src/icons/delete-icon.tsx +32 -0
  743. package/src/icons/document-icon.tsx +36 -0
  744. package/src/icons/download-icon.tsx +37 -0
  745. package/src/icons/edit-icon.tsx +33 -0
  746. package/src/icons/ellipsis-icon.tsx +36 -0
  747. package/src/icons/email-icon.tsx +31 -0
  748. package/src/icons/external-link-icon.tsx +37 -0
  749. package/src/icons/eye-closed-icon.tsx +39 -0
  750. package/src/icons/eye-open-icon.tsx +31 -0
  751. package/src/icons/github-icon.tsx +28 -0
  752. package/src/icons/globe-icon.tsx +48 -0
  753. package/src/icons/google-icon.tsx +43 -0
  754. package/src/icons/gripper-vertical-icon.tsx +41 -0
  755. package/src/icons/history-icon.tsx +33 -0
  756. package/src/icons/home-icon.tsx +32 -0
  757. package/src/icons/icon-element.tsx +31 -0
  758. package/src/icons/icon-sprite.tsx +18 -0
  759. package/src/icons/icons.module.css +165 -0
  760. package/src/icons/index.ts +53 -0
  761. package/src/icons/info-icon.tsx +19 -0
  762. package/src/icons/infonomic-icon.tsx +172 -0
  763. package/src/icons/light-icon.tsx +27 -0
  764. package/src/icons/location-pin-icon.tsx +34 -0
  765. package/src/icons/moon-icon.tsx +40 -0
  766. package/src/icons/plus-icon.tsx +32 -0
  767. package/src/icons/primary-icon.tsx +22 -0
  768. package/src/icons/refresh-icon.tsx +31 -0
  769. package/src/icons/return-icon.tsx +34 -0
  770. package/src/icons/roles-icon.tsx +32 -0
  771. package/src/icons/search-icon.tsx +27 -0
  772. package/src/icons/search-menu-icon.tsx +40 -0
  773. package/src/icons/settings-gear-icon.tsx +34 -0
  774. package/src/icons/settings-sliders-icon.tsx +41 -0
  775. package/src/icons/sign-out-icon.tsx +33 -0
  776. package/src/icons/source/icon-calendar.svg +1 -0
  777. package/src/icons/source/icon-check.svg +4 -0
  778. package/src/icons/source/icon-close.svg +3 -0
  779. package/src/icons/source/icon-coinbase.svg +9 -0
  780. package/src/icons/source/icon-copy.svg +4 -0
  781. package/src/icons/source/icon-document.svg +5 -0
  782. package/src/icons/source/icon-download.svg +4 -0
  783. package/src/icons/source/icon-edit.svg +6 -0
  784. package/src/icons/source/icon-eth-purple.svg +15 -0
  785. package/src/icons/source/icon-etherscan.svg +5 -0
  786. package/src/icons/source/icon-external-link.svg +4 -0
  787. package/src/icons/source/icon-globe.svg +7 -0
  788. package/src/icons/source/icon-gripper-vertical.svg +9 -0
  789. package/src/icons/source/icon-info.svg +4 -0
  790. package/src/icons/source/icon-infonomic.svg +43 -0
  791. package/src/icons/source/icon-ledger.svg +4 -0
  792. package/src/icons/source/icon-light.svg +3 -0
  793. package/src/icons/source/icon-location-pin.svg +8 -0
  794. package/src/icons/source/icon-logout.svg +6 -0
  795. package/src/icons/source/icon-metamask.svg +32 -0
  796. package/src/icons/source/icon-moon.svg +3 -0
  797. package/src/icons/source/icon-plus.svg +4 -0
  798. package/src/icons/source/icon-refresh.svg +4 -0
  799. package/src/icons/source/icon-return.svg +4 -0
  800. package/src/icons/source/icon-search-menu.svg +13 -0
  801. package/src/icons/source/icon-search.svg +3 -0
  802. package/src/icons/source/icon-settings-gear.svg +5 -0
  803. package/src/icons/source/icon-settings.svg +12 -0
  804. package/src/icons/source/icon-wallet.svg +3 -0
  805. package/src/icons/source/icon-walletconnect.svg +4 -0
  806. package/src/icons/source/icon-x.svg +4 -0
  807. package/src/icons/stop-icon.tsx +33 -0
  808. package/src/icons/stopwatch-icon.tsx +37 -0
  809. package/src/icons/success-icon.tsx +19 -0
  810. package/src/icons/types/icon.ts +8 -0
  811. package/src/icons/user-icon.tsx +31 -0
  812. package/src/icons/users-icon.tsx +33 -0
  813. package/src/icons/wallet-icon.tsx +27 -0
  814. package/src/icons/warning-icon.tsx +19 -0
  815. package/src/icons/x-icon.tsx +31 -0
  816. package/src/lib/ripple.ts +95 -0
  817. package/src/loaders/@types/index.ts +6 -0
  818. package/src/loaders/ellipses.module.css +79 -0
  819. package/src/loaders/ellipses.tsx +43 -0
  820. package/src/loaders/ring.module.css +55 -0
  821. package/src/loaders/ring.tsx +45 -0
  822. package/src/loaders/spinner.module.css +106 -0
  823. package/src/loaders/spinner.tsx +52 -0
  824. package/src/react.ts +11 -73
  825. package/src/services.ts +18 -0
  826. package/src/styles/base/animations.css +141 -0
  827. package/src/styles/base/base.css +11 -0
  828. package/src/styles/base/borders.css +30 -0
  829. package/src/styles/base/breakpoints.css +15 -0
  830. package/src/styles/base/colors.css +163 -0
  831. package/src/styles/base/opacity.css +12 -0
  832. package/src/styles/base/shadows.css +13 -0
  833. package/src/styles/base/size.css +24 -0
  834. package/src/styles/base/spacing.css +24 -0
  835. package/src/styles/base/transitions.css +7 -0
  836. package/src/styles/base/typography.css +46 -0
  837. package/src/styles/base/z-index.css +12 -0
  838. package/src/styles/components/components.css +4 -0
  839. package/src/styles/components/fade-in-lift.css +15 -0
  840. package/src/styles/components/hamburger.css +122 -0
  841. package/src/styles/components/loaders.css +198 -0
  842. package/src/styles/functional/README.md +67 -0
  843. package/src/styles/functional/borders.css +42 -0
  844. package/src/styles/functional/colors.css +1279 -0
  845. package/src/styles/functional/functional.css +6 -0
  846. package/src/styles/functional/grid-flex.css +52 -0
  847. package/src/styles/functional/shadcn-compat.css +90 -0
  848. package/src/styles/functional/surfaces.css +132 -0
  849. package/src/styles/functional/typography.css +54 -0
  850. package/src/styles/local-fonts.css +98 -0
  851. package/src/styles/reset.css +466 -0
  852. package/src/styles/styles.css +12 -0
  853. package/src/styles/theme/autofill.css +67 -0
  854. package/src/styles/theme/defaults.css +75 -0
  855. package/src/styles/theme/scrollers.css +54 -0
  856. package/src/styles/theme/theme.css +17 -0
  857. package/src/styles/typography/fonts.css +33 -0
  858. package/src/styles/typography/prose.css +414 -0
  859. package/src/styles/typography.css +24 -0
  860. package/src/styles/utils/scroll-layout-shift.css +9 -0
  861. package/src/styles/utils/utility-classes.css +1395 -0
  862. package/src/styles/utils/utils.css +2 -0
  863. package/src/uikit.ts +116 -0
  864. package/src/utils/capitalize.ts +6 -0
  865. package/src/utils/externalLinkProps.ts +6 -0
  866. package/src/utils/findMatch.ts +7 -0
  867. package/src/utils/getPortalRoot.ts +3 -0
  868. package/src/utils/isTouchDevice.ts +11 -0
  869. package/src/utils/objectsToArray.ts +13 -0
  870. package/src/utils/objectsToString.ts +5 -0
  871. package/src/utils/polymorphic.ts +16 -0
  872. package/src/utils/to-kebab-case.ts +5 -0
  873. package/src/widgets/datepicker/datepicker.module.css +207 -0
  874. package/src/widgets/datepicker/datepicker.tsx +355 -0
  875. package/src/widgets/drawer/drawer-container.tsx +31 -0
  876. package/src/widgets/drawer/drawer-content.tsx +31 -0
  877. package/src/widgets/drawer/drawer-context.tsx +47 -0
  878. package/src/widgets/drawer/drawer-header.tsx +28 -0
  879. package/src/widgets/drawer/drawer-top-actions.tsx +28 -0
  880. package/src/widgets/drawer/drawer.module.css +141 -0
  881. package/src/widgets/drawer/drawer.tsx +98 -0
  882. package/src/widgets/drawer/motionDomAnimation.ts +5 -0
  883. package/src/widgets/drawer/motionDomMax.ts +5 -0
  884. package/src/widgets/modal/modal-actions.tsx +31 -0
  885. package/src/widgets/modal/modal-container.tsx +31 -0
  886. package/src/widgets/modal/modal-content.tsx +31 -0
  887. package/src/widgets/modal/modal-header.tsx +28 -0
  888. package/src/widgets/modal/modal.module.css +127 -0
  889. package/src/widgets/modal/modal.tsx +88 -0
  890. package/src/widgets/modal/motionDomAnimation.ts +5 -0
  891. package/src/widgets/modal/motionDomMax.ts +5 -0
  892. package/src/widgets/search/index.ts +1 -0
  893. package/src/widgets/search/search.tsx +187 -0
  894. package/src/widgets/timeline/timeline.module.css +102 -0
  895. package/src/widgets/timeline/timeline.tsx +177 -0
@@ -0,0 +1,33 @@
1
+ import type React from 'react'
2
+
3
+ import cx from 'classnames'
4
+
5
+ import { IconElement } from './icon-element.js'
6
+ import styles from './icons.module.css'
7
+ import type { IconProps } from './types/icon.js'
8
+
9
+ export const SignOutIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
10
+ const applied = cx(styles['fill-none'], styles['stroke-current'], svgClassName)
11
+
12
+ return (
13
+ <IconElement className={cx('sign-out-icon', className)} {...rest}>
14
+ <svg
15
+ className={applied}
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ focusable="false"
18
+ aria-hidden="true"
19
+ viewBox="0 0 24 24"
20
+ strokeWidth="1.5"
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ >
24
+ <path stroke="none" d="M0 0h24v24H0z" fill="none" />
25
+ <path d="M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2" />
26
+ <path d="M9 12h12l-3 -3" />
27
+ <path d="M18 15l3 -3" />
28
+ </svg>
29
+ </IconElement>
30
+ )
31
+ }
32
+
33
+ SignOutIcon.displayName = 'SignOutIcon'
@@ -0,0 +1 @@
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 1C4.77614 1 5 1.22386 5 1.5V2H10V1.5C10 1.22386 10.2239 1 10.5 1C10.7761 1 11 1.22386 11 1.5V2H12.5C13.3284 2 14 2.67157 14 3.5V12.5C14 13.3284 13.3284 14 12.5 14H2.5C1.67157 14 1 13.3284 1 12.5V3.5C1 2.67157 1.67157 2 2.5 2H4V1.5C4 1.22386 4.22386 1 4.5 1ZM10 3V3.5C10 3.77614 10.2239 4 10.5 4C10.7761 4 11 3.77614 11 3.5V3H12.5C12.7761 3 13 3.22386 13 3.5V5H2V3.5C2 3.22386 2.22386 3 2.5 3H4V3.5C4 3.77614 4.22386 4 4.5 4C4.77614 4 5 3.77614 5 3.5V3H10ZM2 6V12.5C2 12.7761 2.22386 13 2.5 13H12.5C12.7761 13 13 12.7761 13 12.5V6H2ZM7 7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5ZM9.5 7C9.22386 7 9 7.22386 9 7.5C9 7.77614 9.22386 8 9.5 8C9.77614 8 10 7.77614 10 7.5C10 7.22386 9.77614 7 9.5 7ZM11 7.5C11 7.22386 11.2239 7 11.5 7C11.7761 7 12 7.22386 12 7.5C12 7.77614 11.7761 8 11.5 8C11.2239 8 11 7.77614 11 7.5ZM11.5 9C11.2239 9 11 9.22386 11 9.5C11 9.77614 11.2239 10 11.5 10C11.7761 10 12 9.77614 12 9.5C12 9.22386 11.7761 9 11.5 9ZM9 9.5C9 9.22386 9.22386 9 9.5 9C9.77614 9 10 9.22386 10 9.5C10 9.77614 9.77614 10 9.5 10C9.22386 10 9 9.77614 9 9.5ZM7.5 9C7.22386 9 7 9.22386 7 9.5C7 9.77614 7.22386 10 7.5 10C7.77614 10 8 9.77614 8 9.5C8 9.22386 7.77614 9 7.5 9ZM5 9.5C5 9.22386 5.22386 9 5.5 9C5.77614 9 6 9.22386 6 9.5C6 9.77614 5.77614 10 5.5 10C5.22386 10 5 9.77614 5 9.5ZM3.5 9C3.22386 9 3 9.22386 3 9.5C3 9.77614 3.22386 10 3.5 10C3.77614 10 4 9.77614 4 9.5C4 9.22386 3.77614 9 3.5 9ZM3 11.5C3 11.2239 3.22386 11 3.5 11C3.77614 11 4 11.2239 4 11.5C4 11.7761 3.77614 12 3.5 12C3.22386 12 3 11.7761 3 11.5ZM5.5 11C5.22386 11 5 11.2239 5 11.5C5 11.7761 5.22386 12 5.5 12C5.77614 12 6 11.7761 6 11.5C6 11.2239 5.77614 11 5.5 11ZM7 11.5C7 11.2239 7.22386 11 7.5 11C7.77614 11 8 11.2239 8 11.5C8 11.7761 7.77614 12 7.5 12C7.22386 12 7 11.7761 7 11.5ZM9.5 11C9.22386 11 9 11.2239 9 11.5C9 11.7761 9.22386 12 9.5 12C9.77614 12 10 11.7761 10 11.5C10 11.2239 9.77614 11 9.5 11Z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path></svg>
@@ -0,0 +1,4 @@
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M11.4669 3.72684C11.7558 3.91574 11.8369 4.30308 11.648 4.59198L7.39799 11.092C7.29783 11.2452 7.13556 11.3467 6.95402 11.3699C6.77247 11.3931 6.58989 11.3355 6.45446 11.2124L3.70446 8.71241C3.44905 8.48022 3.43023 8.08494 3.66242 7.82953C3.89461 7.57412 4.28989 7.55529 4.5453 7.78749L6.75292 9.79441L10.6018 3.90792C10.7907 3.61902 11.178 3.53795 11.4669 3.72684Z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg focusable="false" aria-hidden="true" viewBox="0 0 24 24">
2
+ <path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"></path>
3
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg version="1.2"
3
+ xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 1024 1024" overflow="visible" xml:space="preserve">
4
+ <path fill="#0052FF" d="M512,0L512,0c282.8,0,512,229.2,512,512l0,0c0,282.8-229.2,512-512,512l0,0C229.2,1024,0,794.8,0,512l0,0
5
+ C0,229.2,229.2,0,512,0z"/>
6
+ <path fill="#FFFFFF" d="M512.1,692c-99.4,0-180-80.5-180-180s80.6-180,180-180c89.1,0,163.1,65,177.3,150h181.3
7
+ c-15.3-184.8-170-330-358.7-330c-198.8,0-360,161.2-360,360s161.2,360,360,360c188.7,0,343.4-145.2,358.7-330H689.3
8
+ C675,627,601.2,692,512.1,692z"/>
9
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M1 9.50006C1 10.3285 1.67157 11.0001 2.5 11.0001H4L4 10.0001H2.5C2.22386 10.0001 2 9.7762 2 9.50006L2 2.50006C2 2.22392 2.22386 2.00006 2.5 2.00006L9.5 2.00006C9.77614 2.00006 10 2.22392 10 2.50006V4.00002H5.5C4.67158 4.00002 4 4.67159 4 5.50002V12.5C4 13.3284 4.67158 14 5.5 14H12.5C13.3284 14 14 13.3284 14 12.5V5.50002C14 4.67159 13.3284 4.00002 12.5 4.00002H11V2.50006C11 1.67163 10.3284 1.00006 9.5 1.00006H2.5C1.67157 1.00006 1 1.67163 1 2.50006V9.50006ZM5 5.50002C5 5.22388 5.22386 5.00002 5.5 5.00002H12.5C12.7761 5.00002 13 5.22388 13 5.50002V12.5C13 12.7762 12.7761 13 12.5 13H5.5C5.22386 13 5 12.7762 5 12.5V5.50002Z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
4
+ </svg>Copy
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-file" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#2c3e50" fill="none" stroke-linecap="round" stroke-linejoin="round">
2
+ <path stroke="none" d="M0 0h24v24H0z" fill="none"/>
3
+ <path d="M14 3v4a1 1 0 0 0 1 1h4" />
4
+ <path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" />
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M7.50005 1.04999C7.74858 1.04999 7.95005 1.25146 7.95005 1.49999V8.41359L10.1819 6.18179C10.3576 6.00605 10.6425 6.00605 10.8182 6.18179C10.994 6.35753 10.994 6.64245 10.8182 6.81819L7.81825 9.81819C7.64251 9.99392 7.35759 9.99392 7.18185 9.81819L4.18185 6.81819C4.00611 6.64245 4.00611 6.35753 4.18185 6.18179C4.35759 6.00605 4.64251 6.00605 4.81825 6.18179L7.05005 8.41359V1.49999C7.05005 1.25146 7.25152 1.04999 7.50005 1.04999ZM2.5 10C2.77614 10 3 10.2239 3 10.5V12C3 12.5539 3.44565 13 3.99635 13H11.0012C11.5529 13 12 12.5528 12 12V10.5C12 10.2239 12.2239 10 12.5 10C12.7761 10 13 10.2239 13 10.5V12C13 13.1041 12.1062 14 11.0012 14H3.99635C2.89019 14 2 13.103 2 12V10.5C2 10.2239 2.22386 10 2.5 10Z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-edit" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#2c3e50" fill="none" stroke-linecap="round" stroke-linejoin="round">
2
+ <path stroke="none" d="M0 0h24v24H0z" fill="none"/>
3
+ <path d="M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1" />
4
+ <path d="M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z" />
5
+ <path d="M16 5l3 3" />
6
+ </svg>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 327.5 533.3" style="enable-background:new 0 0 327.5 533.3;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#8A92B2;}
7
+ .st1{fill:#62688F;}
8
+ .st2{fill:#454A75;}
9
+ </style>
10
+ <path class="st0" d="M163.7,197.2V0L0,271.6L163.7,197.2z"/>
11
+ <path class="st1" d="M163.7,368.4V197.2L0,271.6L163.7,368.4z M163.7,197.2l163.7,74.4L163.7,0V197.2z"/>
12
+ <path class="st2" d="M163.7,197.2v171.2l163.7-96.8L163.7,197.2z"/>
13
+ <path class="st0" d="M163.7,399.4L0,302.7l163.7,230.7V399.4z"/>
14
+ <path class="st1" d="M327.5,302.7l-163.8,96.7v134L327.5,302.7z"/>
15
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 123 123" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M25.79 58.4149C25.7901 57.7357 25.9244 57.0633 26.1851 56.4361C26.4458 55.809 26.8278 55.2396 27.3092 54.7605C27.7907 54.2814 28.3619 53.9021 28.9903 53.6444C29.6187 53.3867 30.2918 53.2557 30.971 53.2589L39.561 53.2869C40.9305 53.2869 42.244 53.831 43.2124 54.7994C44.1809 55.7678 44.725 57.0813 44.725 58.4509V90.9309C45.692 90.6439 46.934 90.3379 48.293 90.0179C49.237 89.7962 50.0783 89.262 50.6805 88.5019C51.2826 87.7418 51.6102 86.8006 51.61 85.8309V45.5409C51.61 44.1712 52.154 42.8576 53.1224 41.889C54.0908 40.9204 55.4043 40.3762 56.774 40.3759H65.381C66.7506 40.3762 68.0641 40.9204 69.0325 41.889C70.0009 42.8576 70.545 44.1712 70.545 45.5409V82.9339C70.545 82.9339 72.7 82.0619 74.799 81.1759C75.5787 80.8462 76.2441 80.2941 76.7122 79.5886C77.1803 78.8832 77.4302 78.0555 77.431 77.2089V32.6309C77.431 31.2615 77.9749 29.9481 78.9431 28.9797C79.9113 28.0113 81.2245 27.4672 82.5939 27.4669H91.201C92.5706 27.4669 93.884 28.0109 94.8525 28.9794C95.8209 29.9478 96.365 31.2613 96.365 32.6309V69.3399C103.827 63.9319 111.389 57.4279 117.39 49.6069C118.261 48.4717 118.837 47.1386 119.067 45.7267C119.297 44.3148 119.174 42.8678 118.709 41.5149C115.931 33.5227 111.516 26.1983 105.745 20.0105C99.974 13.8228 92.9749 8.90785 85.1955 5.58032C77.4161 2.2528 69.0277 0.585938 60.5671 0.686416C52.1065 0.786893 43.7601 2.6525 36.062 6.16383C28.3638 9.67517 21.4834 14.7549 15.8611 21.078C10.2388 27.401 5.99842 34.8282 3.41131 42.8842C0.824207 50.9401 -0.0526487 59.4474 0.836851 67.8617C1.72635 76.276 4.36263 84.4119 8.57696 91.7489C9.31111 93.0145 10.3912 94.0444 11.6903 94.7175C12.9894 95.3906 14.4536 95.679 15.911 95.5489C17.539 95.4059 19.566 95.2029 21.976 94.9199C23.0251 94.8008 23.9937 94.2999 24.6972 93.5126C25.4008 92.7253 25.7901 91.7067 25.791 90.6509L25.79 58.4149Z" fill="#21325B"/>
4
+ <path d="M25.6021 110.51C34.6744 117.11 45.3959 121.072 56.5802 121.957C67.7646 122.841 78.9757 120.615 88.9731 115.523C98.9705 110.431 107.364 102.673 113.226 93.1068C119.087 83.5405 122.188 72.539 122.185 61.3197C122.185 59.9197 122.12 58.5347 122.027 57.1577C99.808 90.2957 58.7831 105.788 25.604 110.505" fill="#979695"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M3 2C2.44772 2 2 2.44772 2 3V12C2 12.5523 2.44772 13 3 13H12C12.5523 13 13 12.5523 13 12V8.5C13 8.22386 12.7761 8 12.5 8C12.2239 8 12 8.22386 12 8.5V12H3V3L6.5 3C6.77614 3 7 2.77614 7 2.5C7 2.22386 6.77614 2 6.5 2H3ZM12.8536 2.14645C12.9015 2.19439 12.9377 2.24964 12.9621 2.30861C12.9861 2.36669 12.9996 2.4303 13 2.497L13 2.5V2.50049V5.5C13 5.77614 12.7761 6 12.5 6C12.2239 6 12 5.77614 12 5.5V3.70711L6.85355 8.85355C6.65829 9.04882 6.34171 9.04882 6.14645 8.85355C5.95118 8.65829 5.95118 8.34171 6.14645 8.14645L11.2929 3H9.5C9.22386 3 9 2.77614 9 2.5C9 2.22386 9.22386 2 9.5 2H12.4999H12.5C12.5678 2 12.6324 2.01349 12.6914 2.03794C12.7504 2.06234 12.8056 2.09851 12.8536 2.14645Z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
4
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M7.49996 1.80002C4.35194 1.80002 1.79996 4.352 1.79996 7.50002C1.79996 10.648 4.35194 13.2 7.49996 13.2C10.648 13.2 13.2 10.648 13.2 7.50002C13.2 4.352 10.648 1.80002 7.49996 1.80002ZM0.899963 7.50002C0.899963 3.85494 3.85488 0.900024 7.49996 0.900024C11.145 0.900024 14.1 3.85494 14.1 7.50002C14.1 11.1451 11.145 14.1 7.49996 14.1C3.85488 14.1 0.899963 11.1451 0.899963 7.50002Z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
4
+ <path d="M13.4999 7.89998H1.49994V7.09998H13.4999V7.89998Z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
5
+ <path d="M7.09991 13.5V1.5H7.89991V13.5H7.09991zM10.375 7.49998C10.375 5.32724 9.59364 3.17778 8.06183 1.75656L8.53793 1.24341C10.2396 2.82218 11.075 5.17273 11.075 7.49998 11.075 9.82724 10.2396 12.1778 8.53793 13.7566L8.06183 13.2434C9.59364 11.8222 10.375 9.67273 10.375 7.49998zM3.99969 7.5C3.99969 5.17611 4.80786 2.82678 6.45768 1.24719L6.94177 1.75281C5.4582 3.17323 4.69969 5.32389 4.69969 7.5 4.6997 9.67611 5.45822 11.8268 6.94179 13.2472L6.45769 13.7528C4.80788 12.1732 3.9997 9.8239 3.99969 7.5z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
6
+ <path d="M7.49996 3.95801C9.66928 3.95801 11.8753 4.35915 13.3706 5.19448 13.5394 5.28875 13.5998 5.50197 13.5055 5.67073 13.4113 5.83948 13.198 5.89987 13.0293 5.8056 11.6794 5.05155 9.60799 4.65801 7.49996 4.65801 5.39192 4.65801 3.32052 5.05155 1.97064 5.8056 1.80188 5.89987 1.58866 5.83948 1.49439 5.67073 1.40013 5.50197 1.46051 5.28875 1.62927 5.19448 3.12466 4.35915 5.33063 3.95801 7.49996 3.95801zM7.49996 10.85C9.66928 10.85 11.8753 10.4488 13.3706 9.6135 13.5394 9.51924 13.5998 9.30601 13.5055 9.13726 13.4113 8.9685 13.198 8.90812 13.0293 9.00238 11.6794 9.75643 9.60799 10.15 7.49996 10.15 5.39192 10.15 3.32052 9.75643 1.97064 9.00239 1.80188 8.90812 1.58866 8.9685 1.49439 9.13726 1.40013 9.30601 1.46051 9.51924 1.62927 9.6135 3.12466 10.4488 5.33063 10.85 7.49996 10.85z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
7
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-grip-vertical" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#2c3e50" fill="none" stroke-linecap="round" stroke-linejoin="round">
2
+ <path stroke="none" d="M0 0h24v24H0z" fill="none"/>
3
+ <path d="M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" />
4
+ <path d="M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" />
5
+ <path d="M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" />
6
+ <path d="M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" />
7
+ <path d="M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" />
8
+ <path d="M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" />
9
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M7.49991 0.876892C3.84222 0.876892 0.877075 3.84204 0.877075 7.49972C0.877075 11.1574 3.84222 14.1226 7.49991 14.1226C11.1576 14.1226 14.1227 11.1574 14.1227 7.49972C14.1227 3.84204 11.1576 0.876892 7.49991 0.876892ZM1.82707 7.49972C1.82707 4.36671 4.36689 1.82689 7.49991 1.82689C10.6329 1.82689 13.1727 4.36671 13.1727 7.49972C13.1727 10.6327 10.6329 13.1726 7.49991 13.1726C4.36689 13.1726 1.82707 10.6327 1.82707 7.49972ZM8.24992 4.49999C8.24992 4.9142 7.91413 5.24999 7.49992 5.24999C7.08571 5.24999 6.74992 4.9142 6.74992 4.49999C6.74992 4.08577 7.08571 3.74999 7.49992 3.74999C7.91413 3.74999 8.24992 4.08577 8.24992 4.49999ZM6.00003 5.99999H6.50003H7.50003C7.77618 5.99999 8.00003 6.22384 8.00003 6.49999V9.99999H8.50003H9.00003V11H8.50003H7.50003H6.50003H6.00003V9.99999H6.50003H7.00003V6.99999H6.50003H6.00003V5.99999Z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
4
+ </svg>
@@ -0,0 +1,43 @@
1
+ <svg data-name="infonomic-icon"
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
4
+ <defs>
5
+ <linearGradient id="a15fb589-8b94-40f1-a2dc-b00094129721" x1="293.2" y1="220.61" x2="-39.33" y2="636.83" gradientUnits="userSpaceOnUse">
6
+ <stop offset="0" stop-color="#7239c7"/>
7
+ <stop offset="1" stop-color="#330046"/>
8
+ </linearGradient>
9
+ <linearGradient id="eea935bb-7d1f-4a3e-b4d0-24a5641ad7eb" x1="223.3" y1="174.24" x2="547.28" y2="174.24" gradientTransform="translate(-83.1 58.65) rotate(-5.2)" gradientUnits="userSpaceOnUse">
10
+ <stop offset="0" stop-color="#ebff55"/>
11
+ <stop offset="1" stop-color="#f17e00"/>
12
+ </linearGradient>
13
+ <linearGradient id="eed940a7-f4c7-4aa9-97b3-ead85bf88d2d" x1="372.87" y1="158.83" x2="473.81" y2="257.43" gradientTransform="translate(-83.1 58.65) rotate(-5.2)" gradientUnits="userSpaceOnUse">
14
+ <stop offset="0" stop-opacity="0.3"/>
15
+ <stop offset="1" stop-opacity="0"/>
16
+ </linearGradient>
17
+ <linearGradient id="b1c6dd6a-82bc-4e07-a748-181ddf6981fd" x1="433.3" y1="118.69" x2="6.07" y2="563.92" gradientTransform="translate(-83.1 58.65) rotate(-5.2)" xlink:href="#a15fb589-8b94-40f1-a2dc-b00094129721"/>
18
+ <linearGradient id="ea87b475-d976-4ac3-a8da-0d5ff972427c" x1="407.96" y1="156.53" x2="462.21" y2="88.19" gradientTransform="translate(-83.1 58.65) rotate(-5.2)" xlink:href="#a15fb589-8b94-40f1-a2dc-b00094129721"/>
19
+ <linearGradient id="bd1efce9-9fd7-464c-b5ae-1012b77b3c10" x1="436.06" y1="122.42" x2="8.83" y2="567.65" gradientTransform="translate(-83.1 58.65) rotate(-5.2)" xlink:href="#a15fb589-8b94-40f1-a2dc-b00094129721"/>
20
+ <linearGradient id="e82ad6d9-f6de-470e-9cc8-5c1e25860ae0" x1="372.84" y1="154.44" x2="103.3" y2="422.39" gradientTransform="matrix(1, 0, 0, 1, 0.02, 0.24)" xlink:href="#a15fb589-8b94-40f1-a2dc-b00094129721"/>
21
+ <linearGradient id="a031a507-2f2b-46ac-8fd0-d46923b5cede" x1="256.06" y1="213.92" x2="268.84" y2="249.39" xlink:href="#eed940a7-f4c7-4aa9-97b3-ead85bf88d2d"/>
22
+ <radialGradient id="a9106638-56d4-4f79-8812-bed67cfca285" cx="216.4" cy="313.88" r="166.38" gradientTransform="translate(0.04 -1.69) scale(1 1.01)" gradientUnits="userSpaceOnUse">
23
+ <stop offset="0" stop-color="#fff"/>
24
+ <stop offset="0.22" stop-color="#ebff55"/>
25
+ <stop offset="0.33" stop-color="#ebfa52"/>
26
+ <stop offset="0.46" stop-color="#ecec48"/>
27
+ <stop offset="0.6" stop-color="#edd438"/>
28
+ <stop offset="0.75" stop-color="#efb222"/>
29
+ <stop offset="0.9" stop-color="#f18806"/>
30
+ <stop offset="0.93" stop-color="#f17e00"/>
31
+ </radialGradient>
32
+ </defs>
33
+ <circle cx="244.69" cy="281.33" r="218.67" fill="url(#a15fb589-8b94-40f1-a2dc-b00094129721)"/>
34
+ <path d="M235.06,220.17S317.76,12,450.72,21.32l11.23-1s21.11,93.71-36.86,161.9S314.7,282.83,314.7,282.83s6.69,45.94-8.85,54.91-33.11,23.27-78.78,33c0,0-14.48-13.85,16.84-43.12s-10-54.46-19.63-49.8-55.59,39-55.59,39-23.15-74.65,8.39-87.58S235.06,220.17,235.06,220.17Z" fill="url(#eea935bb-7d1f-4a3e-b4d0-24a5641ad7eb)"/>
35
+ <path d="M450.14,42.43C431.42,85.11,371,207.58,271.81,267.15c0,0,17,37.22,9.82,50.44s-23.56,17.33-23.56,17.33,18.18-36.1-8-49.47,1.57,4.34,1.57,4.34-14.94,34.51-15.36,35.59S217.89,375.07,219,375.67s14.37-12.47,19.6-13.64c-3.71-4.92,53.38-16.09,61-39.66,3.47-7.82,3.63-34.9,7.52-28.31,19.55-5.81,58.26,11.58,60.54,7.67,3-5.16,80.26-85.17,80.17-86.21s-12.64-32-11.5-34.22-128.77,99.38-127.63,96.49c-5.61,5.24-8.09-1.07,1.23-8.87,51.54-43.14,98.41-86.78,119.17-125.29C459.89,86.5,450.14,42.43,450.14,42.43Z" fill="url(#eed940a7-f4c7-4aa9-97b3-ead85bf88d2d)"/>
36
+ <path d="M437.49,178C487.43,105.9,476.1,22.9,466.36,14.28c-13.23-11.7-104,25-95.1,33.05,41.48-20.24,82.05-23.55,85.15-21,4.64,3.87,12.28,91.87-38.48,152.79-29.09,34.91-87.17,80.35-106.58,95.17-4.11,3.15-6,7-5.39,10.42,1.94,11.16,4.76,36.36-6.51,48.24-14.72,15.51-67.19,33.09-70.76,27.95s53.73-49.61,16.58-81.18-71.22,33.49-76.93,30.89,2-57.43,14.66-74.7c9.64-13.23,34.94-15,46.28-15.1,3.47,0,6.94-2.56,9.29-7.17,11.08-21.76,45.33-87,74.43-122a151.87,151.87,0,0,1,13.14-13.87c-85.9-34.72-187.9-12-250.39,62.95a218.25,218.25,0,0,0-50.7,145.88C54.57,293.22,64,319.73,67,335.53c1.35,7.09,3,4,4.75.48,5.55-11.38,16.29-23.22,34.45-21.58,25.58,2.3,30,27,30.87,39,.29,4,3.27,5.23,5.35,4,22.52-13.42,82.44-65.9,82.44-65.9s6-6,11.56-1.31.74,11.55.74,11.55-40.88,68.36-50,92.92c-.84,2.27.92,5,4.89,4.54,11.91-1.31,37-1.41,43.9,23.34,4.89,17.57-4.82,30.27-15,37.78-3.17,2.34-5.88,4.54,1.33,4.58,16.12.09,44,4.59,55.7,32.62a218.24,218.24,0,0,0,111.88-52.82c28.05-25,42.57-45.22,54.73-75.05A219.65,219.65,0,0,0,437.49,178Z" fill="url(#b1c6dd6a-82bc-4e07-a748-181ddf6981fd)"/>
37
+ <path d="M356.54,99.46a43.1,43.1,0,1,0,46.82,39A43.11,43.11,0,0,0,356.54,99.46Z" fill="#fff"/>
38
+ <path d="M357.17,106.39a36.14,36.14,0,1,0,39.27,32.72A36.14,36.14,0,0,0,357.17,106.39Z" fill="url(#ea87b475-d976-4ac3-a8da-0d5ff972427c)"/>
39
+ <path d="M354.21,118.45a29.49,29.49,0,1,0,32,26.7A29.49,29.49,0,0,0,354.21,118.45Z" fill="url(#bd1efce9-9fd7-464c-b5ae-1012b77b3c10)"/>
40
+ <path d="M436.21,178.4c.68-1,4.69-7.09,4.85-7.34.46-.71,4.89-8.17,5.18-8.68,38.11-67.56,27.78-139,18.78-147C451.83,3.74,361.31,40.33,370.19,48.31,411.55,28.15,452,24.85,455.1,27.42c4.63,3.85,12.22,91.46-38.4,152.11-29,34.76-86.92,80-106.27,94.77-4.1,3.13-6,7-5.38,10.37,1.93,11.12,4.74,36.2-6.5,48-14.68,15.45-67,33-70.56,27.84s53.54-49.8,16.51-81.23c-4.91-4.16-9.69-5.83-14.54-8.22l.58-.05.08.86c-31.77-7.59-57.56,40.82-62.5,38.58-5.69-2.58,1.9-57.17,14.47-74.38a25.2,25.2,0,0,1,7.11-6.45h0s-17.83,4.52-25.59,34.08c-5.47,20.86-6.35,47.39-6.39,61.21,0,5.77-7.47,6.32-7.29-3,.21-10.48-1.76-23.93-13.51-34.46-20-17.94-44.4-5.17-51.67-.11-1.55,1.08-3.09-1.63-3.5-3.26-6.14-24.67-21.64-34.24-21.64-34.24C59.73,168.36,125.14,97.53,169.25,75.8A218.31,218.31,0,0,0,25,286.64c29.43,6.51,38.81,32.9,41.79,48.63,1.34,7.06,3,4,4.74.48,5.52-11.33,16.24-23.12,34.35-21.5,25.51,2.29,29.92,26.9,30.78,38.8.28,4,3.25,5.2,5.33,4,22.45-13.36,82.2-65.62,82.2-65.62s3.28-3.29,7.25-3.07a8,8,0,0,1,4.28,1.76c5.59,4.66.73,11.51.73,11.51s-40.77,68-49.88,92.51c-.84,2.26.9,4.77,4.86,4.34.36,0,.71-.26,1.1-.3h0a74.82,74.82,0,0,1,9.47-.1c12.43.51,28,5.08,33.2,23.71,4.87,17.5-4.8,30.19-15,37.66-3.17,2.33-5.87,4.55,1.33,4.59,16.07.09,44.17,4.42,55.85,32.33,10.5-1.64,20.94-3.29,31.4-7.33h0s-.22.12-.18.11c.68-.21,15.14-5,24.25-9.37.12-.05,0-.32.17-.33h0a207.63,207.63,0,0,0,55.56-35.75c29.25-24.79,41.58-41,54.6-74.54A218.22,218.22,0,0,0,436.21,178.4ZM313.13,451.63v.05c-15-9.82-32.77-7.85-41-6.17-2.87.59-2.95-1.67-2.27-3.09,9.28-19.34,1.95-38.85-10.07-46.69-15.18-9.89-37.53-4.54-38.94-6.1-2.62-2.9,3.69-11,3.69-11,24.4-4.56,55-18,77.92-30.55s21.36-43.67,18.56-54.36,5.37-13.79,5.37-13.79c35.34-23,76.85-65.66,97.22-87.62l-.12.21S488,363.72,313.13,451.63Z" fill="url(#e82ad6d9-f6de-470e-9cc8-5c1e25860ae0)"/>
41
+ <path d="M171.89,307.66s16.44-49.68,27.18-55.37,48.65,7.88,46.05,11c-.65.78-2.63,1.43-5.49,2.1-8.55,2-24.91,4.13-36.35,10.09C188,283.41,171.82,315.53,171.89,307.66Z" fill="url(#a031a507-2f2b-46ac-8fd0-d46923b5cede)"/>
42
+ <path d="M24.87,286.91C28.47,405.21,124.8,500,243.09,500A219.07,219.07,0,0,0,277,497.36c-12-27.17-39.24-31.58-55.11-31.67-7.2,0-4.49-2.26-1.32-4.61,10.18-7.55,19.87-20.33,15-38-6.87-24.9-31.94-24.79-43.83-23.48-4,.44-5.72-2.28-4.88-4.57,9.12-24.71,49.93-93.46,49.93-93.46s4.87-6.92-.73-11.63-11.54,1.32-11.54,1.32-59.83,52.8-82.31,66.29c-2.08,1.25-5,0-5.34-4-.86-12-5.28-36.88-30.82-39.2-18.14-1.65-28.87,10.26-34.4,21.71-1.73,3.57-3.4,6.65-4.74-.48-3-15.89-12.38-42.57-41.85-49.15Z" fill="url(#a9106638-56d4-4f79-8812-bed67cfca285)"/>
43
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 147 128" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M0 91.6548V128H55.293V119.94H8.05631V91.6548H0ZM138.944 91.6548V119.94H91.707V127.998H147V91.6548H138.944ZM55.3733 36.3452V91.6529H91.707V84.3842H63.4296V36.3452H55.3733ZM0 0V36.3452H8.05631V8.05844H55.293V0H0ZM91.707 0V8.05844H138.944V36.3452H147V0H91.707Z" fill="black"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M12 9c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41l-1.06-1.06zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z"></path>
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg fill="#000000" height="64px" width="64px" version="1.1" id="Capa_1"
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 297 297" xml:space="preserve">
4
+ <g>
5
+ <path d="M148.5,0C87.43,0,37.747,49.703,37.747,110.797c0,91.026,99.729,179.905,103.976,183.645 c1.936,1.705,4.356,2.559,6.777,2.559c2.421,0,4.841-0.853,6.778-2.559c4.245-3.739,103.975-92.618,103.975-183.645 C259.253,49.703,209.57,0,148.5,0z M148.5,272.689c-22.049-21.366-90.243-93.029-90.243-161.892 c0-49.784,40.483-90.287,90.243-90.287s90.243,40.503,90.243,90.287C238.743,179.659,170.549,251.322,148.5,272.689z"></path>
6
+ <path d="M148.5,59.183c-28.273,0-51.274,23.154-51.274,51.614c0,28.461,23.001,51.614,51.274,51.614 c28.273,0,51.274-23.153,51.274-51.614C199.774,82.337,176.773,59.183,148.5,59.183z M148.5,141.901 c-16.964,0-30.765-13.953-30.765-31.104c0-17.15,13.801-31.104,30.765-31.104c16.964,0,30.765,13.953,30.765,31.104 C179.265,127.948,165.464,141.901,148.5,141.901z"></path>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-logout" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#2c3e50" fill="none" stroke-linecap="round" stroke-linejoin="round">
2
+ <path stroke="none" d="M0 0h24v24H0z" fill="none"/>
3
+ <path d="M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2" />
4
+ <path d="M9 12h12l-3 -3" />
5
+ <path d="M18 15l3 -3" />
6
+ </svg>
@@ -0,0 +1,32 @@
1
+ <svg viewBox="0 0 40 40"
2
+ xmlns="http://www.w3.org/2000/source">
3
+ <path d="M36.0112 3.33337L22.1207 13.6277L24.7012 7.56091L36.0112 3.33337Z" fill="#E17726" />
4
+ <path d="M4.00261 3.33337L17.7558 13.7238L15.2989 7.56091L4.00261 3.33337Z" fill="#E27625" />
5
+ <path d="M31.0149 27.2023L27.3227 32.8573L35.2287 35.0397L37.4797 27.3258L31.0149 27.2023Z" fill="#E27625" />
6
+ <path d="M2.53386 27.3258L4.77116 35.0397L12.6772 32.8573L8.9987 27.2023L2.53386 27.3258Z" fill="#E27625" />
7
+ <path d="M12.2518 17.6496L10.0419 20.9712L17.8793 21.3281L17.6048 12.8867L12.2518 17.6496Z" fill="#E27625" />
8
+ <path d="M27.762 17.6494L22.3129 12.7905L22.1207 21.3279L29.9581 20.9711L27.762 17.6494Z" fill="#E27625" />
9
+ <path d="M12.6772 32.8574L17.3989 30.5652L13.336 27.3809L12.6772 32.8574Z" fill="#E27625" />
10
+ <path d="M22.6009 30.5652L27.3226 32.8574L26.6637 27.3809L22.6009 30.5652Z" fill="#E27625" />
11
+ <path d="M27.3226 32.8575L22.6009 30.5653L22.9715 33.6399L22.9303 34.9301L27.3226 32.8575Z" fill="#D5BFB2" />
12
+ <path d="M12.6772 32.8575L17.0694 34.9301L17.042 33.6399L17.3989 30.5653L12.6772 32.8575Z" fill="#D5BFB2" />
13
+ <path d="M17.1518 25.3495L13.2262 24.1965L15.9988 22.92L17.1518 25.3495Z" fill="#233447" />
14
+ <path d="M22.848 25.3495L24.001 22.92L26.801 24.1965L22.848 25.3495Z" fill="#233447" />
15
+ <path d="M12.6773 32.8573L13.3635 27.2023L8.99876 27.3258L12.6773 32.8573Z" fill="#CC6228" />
16
+ <path d="M26.6364 27.2023L27.3227 32.8573L31.0149 27.3258L26.6364 27.2023Z" fill="#CC6228" />
17
+ <path d="M29.9581 20.9709L22.1207 21.3278L22.8482 25.3495L24.0011 22.92L26.8012 24.1965L29.9581 20.9709Z" fill="#CC6228" />
18
+ <path d="M13.2263 24.1965L15.9989 22.92L17.1519 25.3495L17.8793 21.3278L10.0419 20.9709L13.2263 24.1965Z" fill="#CC6228" />
19
+ <path d="M10.0419 20.9709L13.3361 27.3809L13.2263 24.1965L10.0419 20.9709Z" fill="#E27525" />
20
+ <path d="M26.8011 24.1965L26.6638 27.3809L29.958 20.9709L26.8011 24.1965Z" fill="#E27525" />
21
+ <path d="M17.8793 21.3278L17.1519 25.3494L18.0715 30.0985L18.2637 23.8396L17.8793 21.3278Z" fill="#E27525" />
22
+ <path d="M22.1205 21.3278L21.7499 23.8258L21.9283 30.0985L22.848 25.3494L22.1205 21.3278Z" fill="#E27525" />
23
+ <path d="M22.848 25.3496L21.9284 30.0987L22.601 30.5654L26.6638 27.381L26.8011 24.1967L22.848 25.3496Z" fill="#F5841F" />
24
+ <path d="M13.2262 24.1967L13.336 27.381L17.3989 30.5654L18.0714 30.0987L17.1518 25.3496L13.2262 24.1967Z" fill="#F5841F" />
25
+ <path d="M22.9303 34.93L22.9715 33.6398L22.6284 33.3378H17.3714L17.042 33.6398L17.0694 34.93L12.6772 32.8574L14.2145 34.1202L17.3302 36.2751H22.6696L25.7853 34.1202L27.3226 32.8574L22.9303 34.93Z" fill="#C0AC9D" />
26
+ <path d="M22.601 30.5653L21.9284 30.0986H18.0715L17.3989 30.5653L17.0421 33.6399L17.3715 33.3379H22.6285L22.9716 33.6399L22.601 30.5653Z" fill="#161616" />
27
+ <path d="M36.5875 14.3003L37.7542 8.61779L36.011 3.33337L22.6009 13.2846L27.7618 17.6493L35.0365 19.7768L36.6424 17.8964L35.9424 17.3886L37.0679 16.3728L36.2169 15.7003L37.3287 14.863L36.5875 14.3003Z" fill="#763E1A" />
28
+ <path d="M2.24573 8.61779L3.42615 14.3003L2.67123 14.863L3.78302 15.7003L2.93202 16.3728L4.05753 17.3886L3.35752 17.8964L4.96343 19.7768L12.2518 17.6493L17.399 13.2846L4.00263 3.33337L2.24573 8.61779Z" fill="#763E1A" />
29
+ <path d="M35.0365 19.777L27.7619 17.6495L29.958 20.9712L26.6638 27.3811L31.0149 27.3262H37.4797L35.0365 19.777Z" fill="#F5841F" />
30
+ <path d="M12.2517 17.6495L4.96332 19.777L2.53386 27.3262H8.99869L13.336 27.3811L10.0419 20.9712L12.2517 17.6495Z" fill="#F5841F" />
31
+ <path d="M22.1205 21.3276L22.6009 13.2843L24.701 7.56067H15.2988L17.3988 13.2843L17.8792 21.3276L18.0577 23.8531L18.0714 30.0984H21.9283L21.9421 23.8531L22.1205 21.3276Z" fill="#F5841F" />
32
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M9.37 5.51c-.18.64-.27 1.31-.27 1.99 0 4.08 3.32 7.4 7.4 7.4.68 0 1.35-.09 1.99-.27C17.45 17.19 14.93 19 12 19c-3.86 0-7-3.14-7-7 0-2.93 1.81-5.45 4.37-6.49zM12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.46-.04-.92-.1-1.36-.98 1.37-2.58 2.26-4.4 2.26-2.98 0-5.4-2.42-5.4-5.4 0-1.81.89-3.42 2.26-4.4-.44-.06-.9-.1-1.36-.1z"></path>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-plus">
2
+ <path d="M5 12h14"/>
3
+ <path d="M12 5v14"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M1.84998 7.49998C1.84998 4.66458 4.05979 1.84998 7.49998 1.84998C10.2783 1.84998 11.6515 3.9064 12.2367 5H10.5C10.2239 5 10 5.22386 10 5.5C10 5.77614 10.2239 6 10.5 6H13.5C13.7761 6 14 5.77614 14 5.5V2.5C14 2.22386 13.7761 2 13.5 2C13.2239 2 13 2.22386 13 2.5V4.31318C12.2955 3.07126 10.6659 0.849976 7.49998 0.849976C3.43716 0.849976 0.849976 4.18537 0.849976 7.49998C0.849976 10.8146 3.43716 14.15 7.49998 14.15C9.44382 14.15 11.0622 13.3808 12.2145 12.2084C12.8315 11.5806 13.3133 10.839 13.6418 10.0407C13.7469 9.78536 13.6251 9.49315 13.3698 9.38806C13.1144 9.28296 12.8222 9.40478 12.7171 9.66014C12.4363 10.3425 12.0251 10.9745 11.5013 11.5074C10.5295 12.4963 9.16504 13.15 7.49998 13.15C4.05979 13.15 1.84998 10.3354 1.84998 7.49998Z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
2
+ <path d="M5.46,1.43,2,4.36,5.46,7.79" fill="none" strokeLinecap="square" strokeWidth="1"/>
3
+ <path d="M2.59,4.45H9.12a4.06,4.06,0,1,1,0,8.12H3.81" fill="none" strokeLinecap="square" strokeLinejoin="round" strokeWidth="1"/>
4
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg version="1.1" id="Layer_1"
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <g>
6
+ <path d="M20.28,13.98l-0.73-0.14l-0.21-0.3c1.1-0.88,1.89-2.13,2.17-3.61c0.62-3.29-1.55-6.47-4.84-7.09S10.21,4.4,9.59,7.69
7
+ s1.55,6.47,4.84,7.09c1.48,0.28,2.94-0.01,4.15-0.71l0.2,0.3l-0.14,0.73l3.73,5.44L24,19.43L20.28,13.98z M14.78,12.95
8
+ c-2.29-0.43-3.78-2.62-3.35-4.91s2.62-3.78,4.91-3.35s3.78,2.62,3.35,4.91C19.25,11.88,17.06,13.38,14.78,12.95z"/>
9
+ <rect y="4.39" width="9.05" height="1.6"/>
10
+ <rect y="11.85" width="9.05" height="1.6"/>
11
+ <rect y="19.31" width="18.07" height="1.6"/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" focusable="false" aria-hidden="true" viewBox="0 0 24 24">
2
+ <path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-settings" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#2c3e50" fill="none" stroke-linecap="round" stroke-linejoin="round">
2
+ <path stroke="none" d="M0 0h24v24H0z" fill="none"/>
3
+ <path d="M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z" />
4
+ <path d="M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" />
5
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5" stroke="#2c3e50" fill="none" stroke-linecap="round" stroke-linejoin="round">
2
+ <path stroke="none" d="M0 0h24v24H0z" fill="none"/>
3
+ <path d="M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
4
+ <path d="M4 6l8 0" />
5
+ <path d="M16 6l4 0" />
6
+ <path d="M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
7
+ <path d="M4 12l2 0" />
8
+ <path d="M10 12l10 0" />
9
+ <path d="M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
10
+ <path d="M4 18l11 0" />
11
+ <path d="M19 18l1 0" />
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium MuiBox-root css-uqopch" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="AccountBalanceWalletIcon">
2
+ <path d="M21 18v1c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2V5c0-1.1.89-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 40 40"
2
+ xmlns="http://www.w3.org/2000/source">
3
+ <path d="M8.68096 12.4756C14.9323 6.39698 25.0677 6.39698 31.3191 12.4756L32.0714 13.2071C32.384 13.511 32.384 14.0038 32.0714 14.3077L29.4978 16.8103C29.3415 16.9622 29.0881 16.9622 28.9318 16.8103L27.8965 15.8036C23.5354 11.563 16.4647 11.563 12.1036 15.8036L10.9948 16.8817C10.8385 17.0336 10.5851 17.0336 10.4288 16.8817L7.85517 14.3791C7.54261 14.0752 7.54261 13.5824 7.85517 13.2785L8.68096 12.4756ZM36.6417 17.6511L38.9322 19.8783C39.2448 20.1823 39.2448 20.675 38.9322 20.979L28.6039 31.022C28.2913 31.3259 27.7846 31.3259 27.472 31.022C27.472 31.022 27.472 31.022 27.472 31.022L20.1416 23.8942C20.0634 23.8182 19.9367 23.8182 19.8586 23.8942C19.8586 23.8942 19.8586 23.8942 19.8586 23.8942L12.5283 31.022C12.2157 31.3259 11.709 31.3259 11.3964 31.022C11.3964 31.022 11.3964 31.022 11.3964 31.022L1.06775 20.9788C0.755186 20.6749 0.755186 20.1821 1.06775 19.8782L3.35833 17.6509C3.6709 17.347 4.17767 17.347 4.49024 17.6509L11.8208 24.7789C11.8989 24.8549 12.0256 24.8549 12.1038 24.7789C12.1038 24.7789 12.1038 24.7789 12.1038 24.7789L19.4339 17.6509C19.7465 17.347 20.2533 17.347 20.5658 17.6509C20.5658 17.6509 20.5658 17.6509 20.5658 17.6509L27.8964 24.7789C27.9745 24.8549 28.1012 24.8549 28.1794 24.7789L35.5098 17.6511C35.8223 17.3471 36.3291 17.3471 36.6417 17.6511Z" fill="#3389FB" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M12.8536 2.85355C13.0488 2.65829 13.0488 2.34171 12.8536 2.14645C12.6583 1.95118 12.3417 1.95118 12.1464 2.14645L7.5 6.79289L2.85355 2.14645C2.65829 1.95118 2.34171 1.95118 2.14645 2.14645C1.95118 2.34171 1.95118 2.65829 2.14645 2.85355L6.79289 7.5L2.14645 12.1464C1.95118 12.3417 1.95118 12.6583 2.14645 12.8536C2.34171 13.0488 2.65829 13.0488 2.85355 12.8536L7.5 8.20711L12.1464 12.8536C12.3417 13.0488 12.6583 13.0488 12.8536 12.8536C13.0488 12.6583 13.0488 12.3417 12.8536 12.1464L8.20711 7.5L12.8536 2.85355Z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>
4
+ </svg>
@@ -0,0 +1,33 @@
1
+ import type React from 'react'
2
+
3
+ import cx from 'classnames'
4
+
5
+ import { IconElement } from './icon-element.jsx'
6
+ import styles from './icons.module.css'
7
+ import type { IconProps } from './types/icon.js'
8
+
9
+ export const StopIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
10
+ const applied = cx(styles['fill-none'], styles['stroke-current'], svgClassName)
11
+
12
+ return (
13
+ <IconElement className={cx('stop-icon', className)} {...rest}>
14
+ <svg
15
+ className={applied}
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ focusable="false"
18
+ aria-hidden="true"
19
+ viewBox="0 0 24 24"
20
+ fill="none"
21
+ stroke="currentColor"
22
+ strokeWidth="1.5"
23
+ strokeLinecap="round"
24
+ strokeLinejoin="round"
25
+ >
26
+ <path stroke="none" d="M0 0h24v24H0z" fill="none" />
27
+ <path d="M5 7a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2l0 -10" />
28
+ </svg>
29
+ </IconElement>
30
+ )
31
+ }
32
+
33
+ StopIcon.displayName = 'StopIcon'
@@ -0,0 +1,37 @@
1
+ import type React from 'react'
2
+
3
+ import cx from 'classnames'
4
+
5
+ import { IconElement } from './icon-element'
6
+ import styles from './icons.module.css'
7
+ import type { IconProps } from './types/icon'
8
+
9
+ export const StopwatchIcon = ({
10
+ className,
11
+ svgClassName,
12
+ ...rest
13
+ }: IconProps): React.JSX.Element => {
14
+ const applied = cx(styles['fill-current'], styles['stroke-none'], svgClassName)
15
+
16
+ return (
17
+ <IconElement className={cx('stopwatch-icon', className)} {...rest}>
18
+ <svg
19
+ className={applied}
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ focusable="false"
22
+ aria-hidden="true"
23
+ viewBox="0 0 15 15"
24
+ strokeWidth="0"
25
+ >
26
+ <path
27
+ // fill="currentColor"
28
+ fillRule="evenodd"
29
+ d="M5.5.5A.5.5 0 0 1 6 0h3a.5.5 0 0 1 0 1H8v1.12a6.363 6.363 0 0 1 2.992 1.016a.638.638 0 0 1 .066-.078l.8-.8a.625.625 0 0 1 .884.884l-.775.775A6.4 6.4 0 1 1 7 2.119V1H6a.5.5 0 0 1-.5-.5m-3.4 8a5.4 5.4 0 1 1 10.8 0a5.4 5.4 0 0 1-10.8 0m5.9-4a.5.5 0 0 0-1 0v5a.5.5 0 1 0 1 0z"
30
+ clipRule="evenodd"
31
+ />
32
+ </svg>
33
+ </IconElement>
34
+ )
35
+ }
36
+
37
+ StopwatchIcon.displayName = 'StopwatchIcon'
@@ -0,0 +1,19 @@
1
+ import type React from 'react'
2
+
3
+ import cx from 'classnames'
4
+
5
+ import { IconElement } from './icon-element.js'
6
+ import styles from './icons.module.css'
7
+ import type { IconProps } from './types/icon.js'
8
+
9
+ export const SuccessIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
10
+ const applied = cx(styles['fill-success'], svgClassName)
11
+
12
+ return (
13
+ <IconElement className={cx('success-icon', className)} {...rest}>
14
+ <svg className={applied} focusable="false" aria-hidden="true" viewBox="0 0 24 24">
15
+ <path d="M20,12A8,8 0 0,1 12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4C12.76,4 13.5,4.11 14.2, 4.31L15.77,2.74C14.61,2.26 13.34,2 12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0, 0 22,12M7.91,10.08L6.5,11.5L11,16L21,6L19.59,4.58L11,13.17L7.91,10.08Z"></path>
16
+ </svg>
17
+ </IconElement>
18
+ )
19
+ }
@@ -0,0 +1,8 @@
1
+ export interface IconProps extends React.ComponentProps<'div'> {
2
+ className?: string
3
+ svgClassName?: string
4
+ fill?: string
5
+ stroke?: string
6
+ width?: string
7
+ height?: string
8
+ }
@@ -0,0 +1,31 @@
1
+ import type React from 'react'
2
+
3
+ import cx from 'classnames'
4
+
5
+ import { IconElement } from './icon-element.js'
6
+ import styles from './icons.module.css'
7
+ import type { IconProps } from './types/icon.js'
8
+
9
+ export const UserIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
10
+ const applied = cx(styles['fill-none'], styles['stroke-current'], svgClassName)
11
+
12
+ return (
13
+ <IconElement className={cx('user-icon', className)} {...rest}>
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={applied}
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ focusable="false"
20
+ aria-hidden="true"
21
+ viewBox="0 0 24 24"
22
+ strokeWidth={2}
23
+ >
24
+ <path d="M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"></path>
25
+ <path d="M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"></path>
26
+ </svg>
27
+ </IconElement>
28
+ )
29
+ }
30
+
31
+ UserIcon.displayName = 'UserIcon'
@@ -0,0 +1,33 @@
1
+ import type React from 'react'
2
+
3
+ import cx from 'classnames'
4
+
5
+ import { IconElement } from './icon-element.js'
6
+ import styles from './icons.module.css'
7
+ import type { IconProps } from './types/icon.js'
8
+
9
+ export const UsersIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
10
+ const applied = cx(styles['fill-none'], styles['stroke-current'], svgClassName)
11
+
12
+ return (
13
+ <IconElement className={cx('users-icon', className)} {...rest}>
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={applied}
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ focusable="false"
20
+ aria-hidden="true"
21
+ viewBox="0 0 24 24"
22
+ strokeWidth={2}
23
+ >
24
+ <path d="M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"></path>
25
+ <path d="M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"></path>
26
+ <path d="M16 3.13a4 4 0 0 1 0 7.75"></path>
27
+ <path d="M21 21v-2a4 4 0 0 0 -3 -3.85"></path>
28
+ </svg>
29
+ </IconElement>
30
+ )
31
+ }
32
+
33
+ UsersIcon.displayName = 'UsersIcon'
@@ -0,0 +1,27 @@
1
+ import type React from 'react'
2
+
3
+ import cx from 'classnames'
4
+
5
+ import { IconElement } from './icon-element.js'
6
+ import styles from './icons.module.css'
7
+ import type { IconProps } from './types/icon.js'
8
+
9
+ export const WalletIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
10
+ const applied = cx(styles['fill-current'], svgClassName)
11
+
12
+ return (
13
+ <IconElement className={cx('wallet-icon', className)} {...rest}>
14
+ <svg
15
+ className={applied}
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ focusable="false"
18
+ aria-hidden="true"
19
+ viewBox="0 0 24 24"
20
+ >
21
+ <path d="M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.37-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z"></path>
22
+ </svg>
23
+ </IconElement>
24
+ )
25
+ }
26
+
27
+ WalletIcon.displayName = 'WalletIcon'
@@ -0,0 +1,19 @@
1
+ import type React from 'react'
2
+
3
+ import cx from 'classnames'
4
+
5
+ import { IconElement } from './icon-element.js'
6
+ import styles from './icons.module.css'
7
+ import type { IconProps } from './types/icon.js'
8
+
9
+ export const WarningIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
10
+ const applied = cx(styles['fill-warning'], svgClassName)
11
+
12
+ return (
13
+ <IconElement className={cx('warning-icon', className)} {...rest}>
14
+ <svg className={applied} focusable="false" aria-hidden="true" viewBox="0 0 24 24">
15
+ <path d="M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z"></path>
16
+ </svg>
17
+ </IconElement>
18
+ )
19
+ }