adata-ui 2.1.0 → 2.1.2

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 (307) hide show
  1. package/.editorconfig +12 -12
  2. package/.nuxtrc +1 -1
  3. package/.playground/app.config.ts +5 -5
  4. package/README.md +75 -75
  5. package/app.config.ts +4 -3
  6. package/app.vue +1 -0
  7. package/assets/styles/index.scss +104 -0
  8. package/assets/styles/modules/_base.scss +5 -0
  9. package/assets/styles/modules/_typography.scss +152 -0
  10. package/components/elements/README.md +1 -1
  11. package/components/elements/accordion/AAccordion.vue +13 -12
  12. package/components/elements/curve-block/ACurveBlock.vue +94 -19
  13. package/components/elements/feature-description/AFeatureDescription.vue +4 -4
  14. package/components/elements/illustrations/noAccess.vue +11 -2
  15. package/components/elements/photos-animation/APhotosAnimation.vue +3 -1
  16. package/components/elements/select/ASelect.vue +65 -9
  17. package/components/features/lang-switcher/lang-switcher.vue +8 -1
  18. package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -0
  19. package/components/features/payment/banner/PaymentBanner.vue +108 -0
  20. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +158 -0
  21. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -0
  22. package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -0
  23. package/components/features/payment/process/PaymentProcess.vue +138 -0
  24. package/components/features/payment/process/PaymentTopUpSidePanel.vue +130 -0
  25. package/components/features/pk-mobile-services/APkMobileServices.vue +21 -2
  26. package/components/forms/README.md +1 -1
  27. package/components/forms/checkbox/ACheckbox.vue +0 -2
  28. package/components/forms/radio-button/ARadioButton.vue +21 -13
  29. package/components/forms/request-demo/ARequestDemo.vue +21 -7
  30. package/components/modals/AConfirmationEmail.vue +40 -0
  31. package/components/modals/AnotherDeviceModal.vue +3 -2
  32. package/components/modals/ConnectingTariffModal.vue +0 -1
  33. package/components/modals/ContentNavigationModal.vue +148 -75
  34. package/components/modals/Insufficient-funds-modal.vue +5 -2
  35. package/components/modals/LimitReachedModal.vue +4 -3
  36. package/components/modals/ReportBugModal.vue +3 -3
  37. package/components/modals/Resend.vue +82 -0
  38. package/components/modals/SubmitApplicationModal.vue +4 -0
  39. package/components/modals/id/AuthModal.vue +78 -0
  40. package/components/modals/id/IdAutoLogoutModal.vue +45 -0
  41. package/components/modals/id/IdBanner.vue +58 -0
  42. package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -0
  43. package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -0
  44. package/components/modals/id/IdLoginModal.vue +316 -0
  45. package/components/modals/id/IdModals.vue +114 -0
  46. package/components/modals/id/IdNewPasswordModal.vue +129 -0
  47. package/components/modals/id/IdOtpInput.vue +155 -0
  48. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -0
  49. package/components/modals/id/IdRecoveryModal.vue +117 -0
  50. package/components/modals/id/IdRegistrationModal.vue +215 -0
  51. package/components/modals/id/IdResetPasswordOtpModal.vue +158 -0
  52. package/components/modals/id/IdTwoFactorModal.vue +130 -0
  53. package/components/navigation/README.md +1 -1
  54. package/components/navigation/bottom-navigation/ABottomNavigation.vue +34 -29
  55. package/components/navigation/footer/AFooter.vue +210 -57
  56. package/components/navigation/footer/ui/{new-footer-accordion.vue → a-footer-accordion.vue} +2 -4
  57. package/components/navigation/header/AHeader.vue +59 -51
  58. package/components/navigation/header/AlmatyContacts.vue +16 -14
  59. package/components/navigation/header/AstanaContacts.vue +13 -11
  60. package/components/navigation/header/CardGallery.vue +5 -4
  61. package/components/navigation/header/HeaderLink.vue +16 -8
  62. package/components/navigation/header/NavList.vue +21 -5
  63. package/components/navigation/header/ProductMenu.vue +8 -78
  64. package/components/navigation/header/ProfileMenu.vue +10 -5
  65. package/components/navigation/header/TopHeader.vue +2 -2
  66. package/components/navigation/mobile-navigation/AMobileNavigation.vue +3 -3
  67. package/components/navigation/pill-tabs/APillTabs.vue +18 -4
  68. package/components/navigation/pill-tabs/types.ts +1 -0
  69. package/components/navigation/side-navigation/ASideNavigation.vue +23 -21
  70. package/components/overlays/README.md +1 -1
  71. package/components/overlays/side-panel/ASidePanel.vue +439 -0
  72. package/components/overlays/tooltip/ATooltip.vue +149 -154
  73. package/components/utils/removeTrailingSlash.ts +7 -0
  74. package/composables/useBuyTariffs.ts +91 -0
  75. package/composables/useHeaderNavigationLinks.ts +174 -297
  76. package/composables/useIdModals.ts +36 -0
  77. package/composables/usePayment.ts +74 -0
  78. package/composables/useUrls.ts +21 -0
  79. package/eslint.config.mjs +45 -0
  80. package/icons/adata-logo.vue +1 -1
  81. package/icons/ai-assistant.vue +13 -0
  82. package/icons/akimat.vue +20 -0
  83. package/icons/arrow/arrow-bottom-left-on-square.vue +1 -1
  84. package/icons/arrow/arrow-circle-reset.vue +1 -1
  85. package/icons/arrow/arrow-corner.vue +1 -1
  86. package/icons/arrow/arrow-graph-down.vue +1 -1
  87. package/icons/arrow/arrow-graph-up.vue +1 -1
  88. package/icons/arrow/arrow-square-down.vue +1 -1
  89. package/icons/arrow/arrow-top-right-on-square.vue +1 -1
  90. package/icons/arrow-currency-gray.vue +1 -1
  91. package/icons/arrow-currency-green.vue +1 -1
  92. package/icons/arrow-currency-red.vue +1 -1
  93. package/icons/avatar.vue +1 -1
  94. package/icons/bank.vue +5 -0
  95. package/icons/block.vue +1 -1
  96. package/icons/bookmark/bookmark-filled.vue +1 -1
  97. package/icons/bookmark/bookmark.vue +1 -1
  98. package/icons/browsers/browser-duck.vue +1 -1
  99. package/icons/browsers/browser-google.vue +7 -1
  100. package/icons/browsers/browser-yandex.vue +1 -1
  101. package/icons/building-vector.vue +1 -1
  102. package/icons/calculator.vue +1 -1
  103. package/icons/calendar.vue +1 -1
  104. package/icons/car.vue +1 -1
  105. package/icons/chart-bar.vue +5 -0
  106. package/icons/chart-pie.vue +16 -0
  107. package/icons/check/check-circle.vue +1 -1
  108. package/icons/check/check.vue +1 -1
  109. package/icons/check/checkmark-circle.vue +1 -1
  110. package/icons/check-sb.vue +7 -0
  111. package/icons/checkbox/checkbox-active.vue +1 -1
  112. package/icons/checkbox/checkbox-empty.vue +1 -1
  113. package/icons/checkbox/checkbox-intermediate.vue +1 -1
  114. package/icons/chevron/chevron-down.vue +1 -1
  115. package/icons/chevron/chevron-left.vue +1 -1
  116. package/icons/chevron/chevron-right.vue +1 -1
  117. package/icons/chevron/chevron-up.vue +1 -1
  118. package/icons/chevron/double-chevron-right.vue +1 -1
  119. package/icons/clipboard-text.vue +1 -1
  120. package/icons/clock.vue +1 -1
  121. package/icons/company/company-bazis.vue +3 -3
  122. package/icons/company/company-bereke.vue +13 -13
  123. package/icons/company/company-bigroup.vue +5 -5
  124. package/icons/company/company-erg.vue +6 -6
  125. package/icons/company/company-forte.vue +11 -11
  126. package/icons/company/company-halyk.vue +4 -4
  127. package/icons/company/company-jusan.vue +20 -3
  128. package/icons/company/company-kaspi.vue +3 -3
  129. package/icons/company/company-mycar.vue +2 -2
  130. package/icons/company/company-samruk.vue +9 -9
  131. package/icons/company-egov-small.vue +1 -1
  132. package/icons/company.vue +1 -1
  133. package/icons/copy.vue +1 -1
  134. package/icons/currency/currency-dollar.vue +1 -1
  135. package/icons/currency/currency-down.vue +1 -1
  136. package/icons/currency/currency-eur.vue +1 -1
  137. package/icons/currency/currency-rub.vue +1 -1
  138. package/icons/currency/currency-tenge.vue +9 -0
  139. package/icons/currency/currency-usd.vue +1 -1
  140. package/icons/currency/currency-yuan.vue +1 -1
  141. package/icons/delete.vue +1 -1
  142. package/icons/document.vue +1 -1
  143. package/icons/download.vue +1 -1
  144. package/icons/edit.vue +1 -1
  145. package/icons/education.vue +1 -1
  146. package/icons/egov-small.vue +1 -1
  147. package/icons/excel-icon.vue +14 -0
  148. package/icons/expand-window.vue +1 -1
  149. package/icons/eye-closed.vue +1 -1
  150. package/icons/eye-open.vue +1 -1
  151. package/icons/eye-opened.vue +1 -1
  152. package/icons/file/file.vue +1 -1
  153. package/icons/filter.vue +1 -1
  154. package/icons/flag.vue +1 -1
  155. package/icons/gift.vue +1 -1
  156. package/icons/globe.vue +1 -1
  157. package/icons/google.vue +41 -0
  158. package/icons/hand/hand-thumb-up-filled.vue +1 -1
  159. package/icons/hand/hand-thumb-up.vue +1 -1
  160. package/icons/hand-with-phone/hand-with-phone-dark.vue +1 -1
  161. package/icons/hand-with-phone/hand-with-phone-light.vue +1 -1
  162. package/icons/handshake.vue +1 -1
  163. package/icons/hcheck.vue +1 -1
  164. package/icons/hdocument.vue +1 -1
  165. package/icons/history.vue +1 -1
  166. package/icons/horizontal-more.vue +1 -1
  167. package/icons/hot-line.vue +6 -0
  168. package/icons/hummer.vue +1 -1
  169. package/icons/info/info-circle.vue +1 -1
  170. package/icons/invoice.vue +1 -1
  171. package/icons/kaspi-qr.vue +13 -0
  172. package/icons/link-chain.vue +1 -1
  173. package/icons/link.vue +1 -1
  174. package/icons/linkedin.vue +24 -24
  175. package/icons/loader-circle.vue +1 -1
  176. package/icons/location.vue +1 -1
  177. package/icons/lock.vue +1 -1
  178. package/icons/logo.vue +1 -1
  179. package/icons/logout.vue +1 -1
  180. package/icons/magnify/magnifying-glass-minus.vue +1 -1
  181. package/icons/magnify/magnifying-glass-plus.vue +1 -1
  182. package/icons/magnify/magnifying-glass.vue +1 -1
  183. package/icons/mail.vue +1 -1
  184. package/icons/mailru.vue +34 -0
  185. package/icons/main-filter.vue +1 -1
  186. package/icons/map/map-pin-filled.vue +1 -1
  187. package/icons/map/map-pin-rect.vue +1 -1
  188. package/icons/map/map-pin.vue +1 -1
  189. package/icons/map-marker-start.vue +1 -1
  190. package/icons/medal.vue +1 -1
  191. package/icons/menu-filled.vue +1 -1
  192. package/icons/menu.vue +1 -1
  193. package/icons/message/message.vue +1 -1
  194. package/icons/minus/minus-circle.vue +1 -1
  195. package/icons/money.vue +1 -1
  196. package/icons/monitoring.vue +1 -1
  197. package/icons/moon.vue +1 -1
  198. package/icons/more.vue +1 -1
  199. package/icons/notification.vue +1 -1
  200. package/icons/paperclip.vue +1 -1
  201. package/icons/payment/payment-card.vue +1 -1
  202. package/icons/payment/payment-kaspi.vue +1 -1
  203. package/icons/person-vector.vue +1 -1
  204. package/icons/person-with-briefcase.vue +1 -1
  205. package/icons/phone-filled.vue +1 -1
  206. package/icons/phone.vue +1 -1
  207. package/icons/plus/plus-circle.vue +1 -1
  208. package/icons/plus/plus.vue +1 -1
  209. package/icons/profile.vue +1 -1
  210. package/icons/radio/radio-check.vue +1 -1
  211. package/icons/radio/radio-empty.vue +1 -1
  212. package/icons/receipt.vue +1 -1
  213. package/icons/sanctions.vue +8 -0
  214. package/icons/scales/scale.vue +1 -1
  215. package/icons/scales/scales.vue +1 -1
  216. package/icons/scales/standing-scales.vue +1 -1
  217. package/icons/search.vue +1 -1
  218. package/icons/share/share-alt.vue +1 -1
  219. package/icons/share/share.vue +1 -1
  220. package/icons/socials/face-book.vue +1 -1
  221. package/icons/socials/instagram.vue +1 -1
  222. package/icons/socials/telegram.vue +1 -1
  223. package/icons/socials/tik-tok.vue +1 -1
  224. package/icons/socials/youtube.vue +1 -1
  225. package/icons/sort/sort-asc.vue +1 -1
  226. package/icons/sort/sort-desc.vue +1 -1
  227. package/icons/splitting-arrows.vue +1 -1
  228. package/icons/star/star-filled.vue +1 -1
  229. package/icons/star/star-half-filled.vue +1 -1
  230. package/icons/star/star.vue +1 -1
  231. package/icons/sun.vue +14 -14
  232. package/icons/sviazi.vue +1 -1
  233. package/icons/tag.vue +1 -1
  234. package/icons/tasks.vue +10 -0
  235. package/icons/tender-search.vue +1 -1
  236. package/icons/toasts/check-circle-toast.vue +1 -1
  237. package/icons/toasts/warning-triangle-toast.vue +1 -1
  238. package/icons/trash.vue +1 -1
  239. package/icons/triangle.vue +1 -1
  240. package/icons/truck.vue +1 -1
  241. package/icons/user.vue +1 -1
  242. package/icons/users-focus.vue +1 -1
  243. package/icons/users.vue +1 -1
  244. package/icons/warning/warning-circle.vue +1 -1
  245. package/icons/warning/warning-triangle-filled.vue +1 -1
  246. package/icons/warning/warning-triangle.vue +1 -1
  247. package/icons/whatsapp.vue +1 -1
  248. package/icons/work-bag.vue +1 -1
  249. package/icons/work-case.vue +9 -0
  250. package/icons/work-search.vue +1 -1
  251. package/icons/work.vue +1 -1
  252. package/icons/x-mark.vue +1 -1
  253. package/icons/yandex.vue +28 -0
  254. package/illustrations/address-location.vue +1 -1
  255. package/illustrations/ball-with-chain.vue +1 -1
  256. package/illustrations/bill.vue +1 -1
  257. package/illustrations/buildings.vue +1 -1
  258. package/illustrations/calendar.vue +1 -1
  259. package/illustrations/chains.vue +1 -1
  260. package/illustrations/coin-percent.vue +1 -1
  261. package/illustrations/coins-stack.vue +1 -1
  262. package/illustrations/delete-dark.vue +1 -1
  263. package/illustrations/delete.vue +1 -1
  264. package/illustrations/doc-with-stamp.vue +1 -1
  265. package/illustrations/document.vue +1 -1
  266. package/illustrations/door.vue +1 -1
  267. package/illustrations/empty-box.vue +1 -1
  268. package/illustrations/empty-wallet.vue +1 -1
  269. package/illustrations/graph-in-coin.vue +1 -1
  270. package/illustrations/hammer.vue +1 -1
  271. package/illustrations/hand-cash.vue +1 -1
  272. package/illustrations/info.vue +1 -1
  273. package/illustrations/mail.vue +1 -1
  274. package/illustrations/ok.vue +1 -1
  275. package/illustrations/people-group.vue +1 -1
  276. package/illustrations/person-with-phone.vue +1 -1
  277. package/illustrations/person.vue +1 -1
  278. package/illustrations/phone-check.vue +1 -1
  279. package/illustrations/phone-payment-method.vue +1 -1
  280. package/illustrations/stop-hand.vue +1 -1
  281. package/illustrations/stop-sign.vue +1 -1
  282. package/illustrations/suit.vue +1 -1
  283. package/illustrations/suitcase.vue +1 -1
  284. package/illustrations/terminal-dark.vue +1 -1
  285. package/illustrations/terminal.vue +1 -1
  286. package/illustrations/trash-can.vue +1 -1
  287. package/illustrations/turn-on-tariff.vue +1 -1
  288. package/illustrations/two-persons.vue +1 -1
  289. package/lang/en.ts +475 -270
  290. package/lang/kk.ts +476 -271
  291. package/lang/ru.ts +315 -107
  292. package/layouts/default.vue +13 -13
  293. package/nuxt.config.ts +42 -14
  294. package/package.json +69 -53
  295. package/public/kaspi/logo.svg +4 -0
  296. package/shared/constans/pages.ts +17 -2
  297. package/tailwind.config.ts +163 -0
  298. package/vitest.config.ts +14 -0
  299. package/.eslintrc.cjs +0 -4
  300. package/.playground/app.vue +0 -9
  301. package/.playground/pages/index.vue +0 -13
  302. package/.prettierignore +0 -24
  303. package/.prettierrc +0 -10
  304. package/assets/styles/index.css +0 -226
  305. package/components/modals/AuthModal.vue +0 -50
  306. package/components/navigation/footer/NewFooter.vue +0 -276
  307. package/components/navigation/footer/ui/footer-acccordion.vue +0 -119
@@ -4,7 +4,7 @@
4
4
  height="40"
5
5
  viewBox="0 0 41 40"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  d="M38.0779 20.7812L33.0779 8.28125C32.9679 8.00592 32.7635 7.77869 32.5013 7.64015C32.2391 7.50162 31.9362 7.46081 31.6467 7.525L21.917 9.6875V6.25C21.917 5.91848 21.7853 5.60054 21.5509 5.36612C21.3165 5.1317 20.9985 5 20.667 5C20.3355 5 20.0176 5.1317 19.7831 5.36612C19.5487 5.60054 19.417 5.91848 19.417 6.25V10.2469L9.14514 12.5297C8.94709 12.5734 8.76267 12.6647 8.60778 12.7957C8.45288 12.9266 8.33218 13.0932 8.25608 13.2812V13.2906L3.25608 25.7812C3.19626 25.9302 3.16602 26.0895 3.16702 26.25C3.16702 29.8922 7.00139 31.25 9.41702 31.25C11.8326 31.25 15.667 29.8922 15.667 26.25C15.668 26.0895 15.6378 25.9302 15.578 25.7812L11.1233 14.6516L19.417 12.8125V32.5H16.917C16.5855 32.5 16.2676 32.6317 16.0331 32.8661C15.7987 33.1005 15.667 33.4185 15.667 33.75C15.667 34.0815 15.7987 34.3995 16.0331 34.6339C16.2676 34.8683 16.5855 35 16.917 35H24.417C24.7485 35 25.0665 34.8683 25.3009 34.6339C25.5353 34.3995 25.667 34.0815 25.667 33.75C25.667 33.4185 25.5353 33.1005 25.3009 32.8661C25.0665 32.6317 24.7485 32.5 24.417 32.5H21.917V12.2531L29.8858 10.4844L25.7561 20.7812C25.6963 20.9302 25.666 21.0895 25.667 21.25C25.667 24.8922 29.5014 26.25 31.917 26.25C34.3326 26.25 38.167 24.8922 38.167 21.25C38.168 21.0895 38.1378 20.9302 38.0779 20.7812ZM9.41702 28.75C8.24045 28.75 5.86077 28.1859 5.67795 26.4625L9.41702 17.1156L13.1561 26.4625C12.9733 28.1859 10.5936 28.75 9.41702 28.75ZM31.917 23.75C30.7405 23.75 28.3608 23.1859 28.178 21.4625L31.917 12.1156L35.6561 21.4625C35.4733 23.1859 33.0936 23.75 31.917 23.75Z"
package/icons/search.vue CHANGED
@@ -8,7 +8,7 @@
8
8
  height="16"
9
9
  viewBox="0 0 16 16"
10
10
  fill="none"
11
- xmlns="https://www.w3.org/2000/svg"
11
+ xmlns="http://www.w3.org/2000/svg"
12
12
  >
13
13
  <g id="search">
14
14
  <path
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M12.5325 2.04999C11.7497 2.04999 11.1151 2.68463 11.1151 3.46748C11.1151 4.25034 11.7497 4.88497 12.5325 4.88497C13.3154 4.88497 13.95 4.25034 13.95 3.46748C13.95 2.68463 13.3154 2.04999 12.5325 2.04999ZM10.0651 3.46748C10.0651 2.10473 11.1698 1 12.5325 1C13.8953 1 15 2.10473 15 3.46748C15 4.83024 13.8953 5.93497 12.5325 5.93497C11.7559 5.93497 11.0631 5.57618 10.6108 5.01533L5.85939 7.39104C5.90882 7.58581 5.93509 7.78981 5.93509 7.99996C5.93509 8.21011 5.90882 8.41412 5.85938 8.60889L10.6108 10.9846C11.0631 10.4237 11.7559 10.0649 12.5326 10.0649C13.8953 10.0649 15 11.1697 15 12.5324C15 13.8952 13.8953 14.9999 12.5326 14.9999C11.1698 14.9999 10.0651 13.8952 10.0651 12.5324C10.0651 12.3223 10.0913 12.1183 10.1408 11.9235L5.38935 9.5478C4.93704 10.1087 4.24422 10.4674 3.46761 10.4674C2.10485 10.4674 1.00012 9.36271 1.00012 7.99996C1.00012 6.6372 2.10485 5.53247 3.46761 5.53247C4.24423 5.53247 4.93705 5.89126 5.38935 6.45213L10.1408 4.07642C10.0913 3.88164 10.0651 3.67763 10.0651 3.46748ZM3.46761 6.58247C2.68475 6.58247 2.05012 7.2171 2.05012 7.99996C2.05012 8.78282 2.68475 9.41745 3.46761 9.41745C4.25046 9.41745 4.8851 8.78282 4.8851 7.99996C4.8851 7.2171 4.25046 6.58247 3.46761 6.58247ZM12.5326 11.1149C11.7497 11.1149 11.1151 11.7496 11.1151 12.5324C11.1151 13.3153 11.7497 13.9499 12.5326 13.9499C13.3154 13.9499 13.95 13.3153 13.95 12.5324C13.95 11.7496 13.3154 11.1149 12.5326 11.1149Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <path fill-rule="evenodd" clip-rule="evenodd" d="M10.6834 3.68338C10.6834 2.78132 11.4147 2.05006 12.3167 2.05006C13.2188 2.05006 13.95 2.78132 13.95 3.68338C13.95 4.58544 13.2188 5.3167 12.3167 5.3167C11.4147 5.3167 10.6834 4.58544 10.6834 3.68338ZM12.3167 1.00006C10.8348 1.00006 9.6334 2.20142 9.6334 3.68338C9.6334 4.09857 9.7277 4.49173 9.89605 4.84263L8.35139 6.00113C7.87651 5.57553 7.24908 5.3167 6.56121 5.3167C6.01003 5.3167 5.49767 5.48288 5.0715 5.76787L4.04762 4.744C4.15064 4.53224 4.20844 4.29441 4.20844 4.04309C4.20844 3.15714 3.49023 2.43893 2.60428 2.43893C1.71833 2.43893 1.00012 3.15714 1.00012 4.04309C1.00012 4.92904 1.71833 5.64725 2.60428 5.64725C2.85559 5.64725 3.0934 5.58946 3.30515 5.48645L4.32904 6.51033C4.04406 6.9365 3.87789 7.44885 3.87789 8.00002C3.87789 8.64717 4.10698 9.24081 4.48849 9.70427L3.87755 10.451C3.70493 10.3875 3.51837 10.3528 3.32372 10.3528C2.43776 10.3528 1.71956 11.071 1.71956 11.957C1.71956 12.8429 2.43776 13.5611 3.32372 13.5611C4.20967 13.5611 4.92787 12.8429 4.92787 11.957C4.92787 11.6486 4.84087 11.3605 4.69006 11.116L5.30085 10.3695C5.67662 10.5698 6.10566 10.6833 6.56121 10.6833C7.18625 10.6833 7.76138 10.4696 8.21751 10.1113L9.25724 11.0025C9.03866 11.3909 8.91397 11.8392 8.91397 12.3167C8.91397 13.7986 10.1153 15 11.5973 15C13.0792 15 14.2806 13.7986 14.2806 12.3167C14.2806 10.8347 13.0792 9.63336 11.5973 9.63336C10.9722 9.63336 10.397 9.84712 9.94081 10.2055L8.90115 9.31433C9.1198 8.92589 9.24452 8.47752 9.24452 8.00002C9.24452 7.58482 9.15023 7.19165 8.98188 6.84075L10.5265 5.68226C11.0014 6.10786 11.6288 6.3667 12.3167 6.3667C13.7987 6.3667 15 5.16534 15 3.68338C15 2.20142 13.7987 1.00006 12.3167 1.00006ZM6.56121 6.36669C5.65915 6.36669 4.92788 7.09796 4.92788 8.00002C4.92788 8.90208 5.65915 9.63334 6.56121 9.63334C7.46327 9.63334 8.19453 8.90208 8.19453 8.00002C8.19453 7.09796 7.46327 6.36669 6.56121 6.36669ZM11.5973 10.6833C10.6952 10.6833 9.96396 11.4146 9.96396 12.3167C9.96396 13.2187 10.6952 13.95 11.5973 13.95C12.4993 13.95 13.2306 13.2187 13.2306 12.3167C13.2306 11.4146 12.4993 10.6833 11.5973 10.6833ZM2.60428 3.48893C2.29822 3.48893 2.05012 3.73703 2.05012 4.04309C2.05012 4.34915 2.29822 4.59725 2.60428 4.59725C2.91034 4.59725 3.15844 4.34915 3.15844 4.04309C3.15844 3.73703 2.91034 3.48893 2.60428 3.48893ZM2.76955 11.957C2.76955 12.263 3.01766 12.5111 3.32372 12.5111C3.62977 12.5111 3.87788 12.263 3.87788 11.957C3.87788 11.6509 3.62977 11.4028 3.32372 11.4028C3.01766 11.4028 2.76955 11.6509 2.76955 11.957Z" fill="currentColor"/>
8
8
  </svg>
9
9
 
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <circle cx="14" cy="14" r="14" fill="white"/>
8
8
  <path class="logo" d="M19.2137 18.2816L19.8356 14.3301H15.9452V11.767C15.9452 10.6857 16.4877 9.63107 18.2302 9.63107H20V6.26699C20 6.26699 18.3945 6 16.8603 6C13.6548 6 11.5617 7.89294 11.5617 11.3184V14.3301H8V18.2816H11.5617V27.8345C12.2767 27.944 13.0082 28 13.7534 28C14.4986 28 15.2302 27.944 15.9452 27.8345V18.2816H19.2137Z" fill="#2C3E50"/>
9
9
  </svg>
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <rect width="28" height="28" rx="14" fill="white"/>
8
8
  <g class="logo" fill="#2C3E50">
9
9
  <path d="M20.125 9.1875C20.125 9.91237 19.5374 10.5 18.8125 10.5C18.0876 10.5 17.5 9.91237 17.5 9.1875C17.5 8.46263 18.0876 7.875 18.8125 7.875C19.5374 7.875 20.125 8.46263 20.125 9.1875Z" />
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <circle cx="14" cy="14" r="12.25" fill="white"/>
8
8
  <path class="logo" d="M20.1132 8.93269C20.2223 8.2279 19.5522 7.67161 18.9256 7.94675L6.44422 13.4267C5.99482 13.624 6.0277 14.3047 6.49378 14.4532L9.06775 15.2728C9.55901 15.4293 10.091 15.3484 10.5199 15.052L16.3231 11.0427C16.4981 10.9218 16.6888 11.1707 16.5393 11.3248L12.3621 15.6316C11.9569 16.0493 12.0373 16.7573 12.5247 17.0629L17.2016 19.9958C17.7261 20.3247 18.401 19.9942 18.4991 19.3604L20.1132 8.93269Z" fill="#2C3E50"/>
9
9
  </svg>
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <circle cx="14" cy="14" r="14" fill="white"/>
8
8
  <path class="logo" fill-rule="evenodd" clip-rule="evenodd" d="M16.855 6.15542H16.8569C16.7832 5.73905 16.8163 5.46875 16.8163 5.46875H13.8661V16.3445L13.8661 16.3593C13.8661 16.736 13.8661 17.1008 13.7333 17.4633C13.5182 18.0513 13.0585 18.582 12.4471 18.8175C11.6387 19.1285 10.986 19.1352 10.257 18.763C10.2563 18.7622 10.2556 18.7613 10.2549 18.7604C10.1564 18.7101 10.056 18.6525 9.95369 18.5877C9.07665 17.9979 8.91677 17.1137 8.92104 16.4888C9.02359 15.6396 9.37184 15.1642 10.0281 14.6769C10.0437 14.6659 10.0594 14.6553 10.0751 14.6449C10.0594 14.6553 10.0438 14.6659 10.0282 14.6769C9.37193 15.1642 9.02367 15.6396 8.92112 16.4888C8.91685 17.1137 9.07673 17.9979 9.95449 18.5873C10.0568 18.6519 10.1572 18.7095 10.2557 18.76C9.85727 18.2389 9.77074 17.6362 9.77395 17.1751C9.87615 16.326 10.2251 15.8502 10.881 15.3632C11.82 14.7028 12.9926 15.0762 12.9926 15.0762V12.2257C12.7111 12.1849 12.4263 12.168 12.1417 12.1752V11.5439C11.5911 11.4678 11.0314 11.4757 10.4834 11.5674C10.1198 11.6302 9.76426 11.7303 9.42299 11.8661C8.87585 12.0684 8.36775 12.3567 7.91959 12.7193C7.41138 13.1401 6.98339 13.6425 6.65477 14.2039C6.5305 14.4093 6.06046 15.2294 6.00313 16.5656C5.97002 17.3239 6.20788 18.1061 6.32112 18.4314V18.4338V18.4379C6.32591 18.4505 6.33161 18.4652 6.33819 18.4817C6.35099 18.5173 6.36119 18.5444 6.3678 18.562L6.36782 18.5621L6.37238 18.5743L6.3387 18.483C6.43227 18.7172 6.7028 19.3168 7.12374 19.83C7.48802 20.2711 7.91859 20.658 8.40138 20.9781C8.25069 20.8322 8.10886 20.6781 7.97656 20.5167C7.75471 20.2453 7.57493 19.9504 7.44065 19.6977C7.57496 19.9499 7.75466 20.2437 7.97598 20.5135C8.10828 20.675 8.25012 20.8291 8.4008 20.975L8.40385 20.9772C8.66679 21.2316 8.9538 21.4621 9.26119 21.6657C10.688 22.593 12.2737 22.5302 12.2737 22.5302C12.2964 22.5292 12.3237 22.5284 12.355 22.5274C12.7011 22.5169 13.5519 22.491 14.5099 22.0586C15.669 21.5357 16.3259 20.7593 16.3259 20.7593L16.3464 20.7356L16.3593 20.7208C16.5135 20.5447 16.9945 19.995 17.3155 19.1924C17.5836 18.5235 17.6716 17.7215 17.6716 17.4003V11.6326C17.7101 11.6534 18.1858 11.952 18.1858 11.952C18.1858 11.952 18.8745 12.3708 19.9459 12.6438C20.7133 12.839 21.7502 12.8796 21.7502 12.8796V10.0866C21.554 10.1064 21.2517 10.0848 20.897 10.0053V12.194C20.897 12.194 19.8605 12.1534 19.0927 11.9582C18.0213 11.6855 17.3322 11.2664 17.3322 11.2664C17.3322 11.2664 16.8569 10.9678 16.8184 10.9466V16.7137C16.8184 16.7602 16.8166 16.8167 16.8126 16.8816C16.8165 16.817 16.8183 16.7607 16.8183 16.7143V10.9459C16.8568 10.9671 17.3322 11.2657 17.3322 11.2657C17.3322 11.2657 18.0212 11.6845 19.0927 11.9575C19.8604 12.1527 20.897 12.1933 20.897 12.1933V10.0055C20.897 10.0055 20.897 10.0055 20.897 10.0055V9.40037C20.5327 9.43689 19.7939 9.32973 19.0436 8.97069C18.9269 8.91476 18.8137 8.85231 18.7046 8.78367C18.7986 8.88093 19.2793 9.36181 19.8964 9.65702C20.1646 9.78541 20.445 9.88859 20.7337 9.96518C20.4444 9.88865 20.1634 9.78542 19.8946 9.65688C19.2775 9.36166 18.7968 8.88079 18.7027 8.78352C18.3845 8.58334 18.0927 8.34705 17.8335 8.07979C17.1877 7.37203 16.9434 6.65744 16.855 6.15542ZM11.6229 19.6505C11.3584 19.5771 11.0911 19.453 10.8087 19.2741C10.6943 19.1986 10.5873 19.1137 10.4889 19.0203C10.5867 19.1135 10.6931 19.1985 10.8069 19.274C11.09 19.4532 11.3579 19.5773 11.6229 19.6505ZM7.23866 19.2796C7.2865 19.3901 7.35417 19.5353 7.44065 19.6977C7.35412 19.5349 7.28649 19.3897 7.23866 19.2796ZM7.23866 19.2796C7.20834 19.2099 7.18598 19.1543 7.17181 19.1174L7.17174 19.1156C7.18588 19.1533 7.20827 19.2095 7.23866 19.2796ZM7.17123 19.1119L7.17114 19.113C7.10773 18.9299 7.00568 18.6044 6.93392 18.2205C7.00591 18.6044 7.10804 18.9296 7.17123 19.1119ZM12.1397 14.39V12.1753L12.1401 12.1753V14.3902L12.1397 14.39ZM16.3954 18.6651C16.2822 18.9206 16.1549 19.1472 16.0315 19.3405C16.1551 19.1472 16.2824 18.9206 16.3954 18.6651ZM17.8358 8.07979C17.1898 7.37196 16.9455 6.65731 16.8572 6.15527H17.6698C17.6698 6.15527 17.5078 7.47162 18.6886 8.76612L18.705 8.78352C18.3867 8.58334 18.0949 8.34705 17.8358 8.07979Z" fill="#2C3E50"/>
9
9
  </svg>
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <rect width="28" height="28" rx="14" fill="white"/>
8
8
  <path class="logo" d="M5.57456 10.2889C5.65329 9.07693 6.62772 8.12708 7.84079 8.06699C9.59739 7.97996 12.1081 7.875 13.9998 7.875C15.8915 7.875 18.4022 7.97996 20.1588 8.06699C21.3719 8.12708 22.3463 9.07693 22.425 10.2889C22.5005 11.4501 22.5748 12.8789 22.5748 14C22.5748 15.1211 22.5005 16.5499 22.425 17.7111C22.3463 18.9231 21.3719 19.8729 20.1588 19.933C18.4022 20.02 15.8915 20.125 13.9998 20.125C12.1081 20.125 9.59739 20.02 7.84079 19.933C6.62772 19.8729 5.65329 18.9231 5.57456 17.7111C5.49914 16.5499 5.4248 15.1211 5.4248 14C5.4248 12.8789 5.49914 11.4501 5.57456 10.2889Z" fill="#2C3E50"/>
9
9
  <path d="M12.1626 11.5498V16.4498L17.0626 13.9998L12.1626 11.5498Z" fill="white"/>
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <path d="M5.75029 3.83351C5.75029 4.10976 5.52635 4.3337 5.2501 4.3337H2.50019C2.22394 4.3337 2 4.10976 2 3.83351C2 3.55726 2.22394 3.33331 2.50019 3.33331L5.2501 3.33331C5.52635 3.33331 5.75029 3.55726 5.75029 3.83351Z" fill="currentColor"/>
8
8
  <path d="M9.87515 7.99998C9.87515 8.27623 9.6512 8.50017 9.37495 8.50017H2.5002C2.22395 8.50017 2 8.27623 2 7.99998C2 7.72373 2.22395 7.49979 2.5002 7.49979L9.37495 7.49979C9.6512 7.49979 9.87515 7.72373 9.87515 7.99998Z" fill="currentColor"/>
9
9
  <path d="M13.4998 12.6666C13.7761 12.6666 14 12.4427 14 12.1665C14 11.8902 13.7761 11.6663 13.4998 11.6663L2.50019 11.6663C2.22394 11.6663 2 11.8902 2 12.1665C2 12.4427 2.22394 12.6666 2.50019 12.6666L13.4998 12.6666Z" fill="currentColor"/>
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <path d="M2.50256 3.33331C2.22642 3.33331 2.00256 3.55717 2.00256 3.83331C2.00256 4.10946 2.22642 4.33331 2.50256 4.33331H13.4974C13.7735 4.33331 13.9974 4.10946 13.9974 3.83331C13.9974 3.55717 13.7735 3.33331 13.4974 3.33331H2.50256Z" fill="currentColor"/>
8
8
  <path d="M6.12561 7.99998C6.12561 7.72384 6.34947 7.49998 6.62561 7.49998H13.4974C13.7735 7.49998 13.9974 7.72384 13.9974 7.99998C13.9974 8.27612 13.7735 8.49998 13.4974 8.49998H6.62561C6.34947 8.49998 6.12561 8.27612 6.12561 7.99998Z" fill="currentColor"/>
9
9
  <path d="M10.2487 12.1666C10.2487 11.8905 10.4725 11.6666 10.7487 11.6666H13.4974C13.7735 11.6666 13.9974 11.8905 13.9974 12.1666C13.9974 12.4428 13.7735 12.6666 13.4974 12.6666H10.7487C10.4725 12.6666 10.2487 12.4428 10.2487 12.1666Z" fill="currentColor"/>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M19.7196 1.03051V4.78051C19.7196 4.97942 19.6406 5.17018 19.5 5.31084C19.3593 5.45149 19.1686 5.53051 18.9696 5.53051C18.7707 5.53051 18.58 5.45149 18.4393 5.31084C18.2987 5.17018 18.2196 4.97942 18.2196 4.78051V2.84082L12.6514 8.40629C12.5079 8.52916 12.3233 8.59336 12.1346 8.58607C11.9458 8.57878 11.7668 8.50053 11.6332 8.36696C11.4996 8.23339 11.4214 8.05433 11.4141 7.86558C11.4068 7.67682 11.471 7.49226 11.5939 7.34879L17.1593 1.78051H15.2196C15.0207 1.78051 14.83 1.70149 14.6893 1.56084C14.5487 1.42018 14.4696 1.22942 14.4696 1.03051C14.4696 0.831594 14.5487 0.640829 14.6893 0.500177C14.83 0.359524 15.0207 0.280507 15.2196 0.280507H18.9696C19.1686 0.280507 19.3593 0.359524 19.5 0.500177C19.6406 0.640829 19.7196 0.831594 19.7196 1.03051ZM18.9696 14.4696C18.7707 14.4696 18.58 14.5486 18.4393 14.6892C18.2987 14.8299 18.2196 15.0207 18.2196 15.2196V17.1593L1.56128 0.500004C1.42055 0.359274 1.22968 0.280212 1.03066 0.280212C0.831637 0.280212 0.640765 0.359274 0.500035 0.500004C0.359304 0.640735 0.280243 0.831606 0.280243 1.03063C0.280243 1.22965 0.359304 1.42052 0.500035 1.56125L17.1593 18.2196H15.2196C15.0207 18.2196 14.83 18.2986 14.6893 18.4392C14.5487 18.5799 14.4696 18.7707 14.4696 18.9696C14.4696 19.1685 14.5487 19.3592 14.6893 19.4999C14.83 19.6405 15.0207 19.7196 15.2196 19.7196H18.9696C19.1686 19.7196 19.3593 19.6405 19.5 19.4999C19.6406 19.3592 19.7196 19.1685 19.7196 18.9696V15.2196C19.7196 15.0207 19.6406 14.8299 19.5 14.6892C19.3593 14.5486 19.1686 14.4696 18.9696 14.4696ZM7.34886 11.5938L0.500148 18.4387C0.359417 18.5795 0.280356 18.7703 0.280356 18.9694C0.280356 19.1684 0.359417 19.3593 0.500148 19.5C0.640878 19.6407 0.83175 19.7198 1.03077 19.7198C1.2298 19.7198 1.42067 19.6407 1.5614 19.5L8.40636 12.6513C8.52923 12.5078 8.59343 12.3233 8.58614 12.1345C8.57885 11.9457 8.5006 11.7667 8.36703 11.6331C8.23346 11.4995 8.05441 11.4213 7.86565 11.414C7.67689 11.4067 7.49234 11.4709 7.34886 11.5938Z"
5
5
  fill="currentColor"
@@ -8,7 +8,7 @@ defineProps<{id?:string}>()
8
8
  height="16"
9
9
  viewBox="0 0 16 16"
10
10
  fill="none"
11
- xmlns="https://www.w3.org/2000/svg"
11
+ xmlns="http://www.w3.org/2000/svg"
12
12
  >
13
13
  <path
14
14
  fill-rule="evenodd"
@@ -3,7 +3,7 @@ defineProps<{id?:string}>()
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8 1.35986C8.19931 1.35986 8.38143 1.47272 8.47013 1.65119L10.3485 5.43023L14.5504 6.04018C14.7486 6.06894 14.9131 6.20789 14.9746 6.39842C15.0361 6.58895 14.9839 6.79788 14.84 6.93708L11.8021 9.8756L12.5189 14.0261C12.5529 14.2228 12.4723 14.4218 12.311 14.5395C12.1496 14.6572 11.9355 14.6732 11.7585 14.5808L8 12.6178L4.2415 14.5808C4.0645 14.6732 3.85038 14.6572 3.68905 14.5395C3.52773 14.4218 3.44714 14.2228 3.48112 14.0261L4.19791 9.8756L1.16001 6.93708C1.0161 6.79788 0.963894 6.58895 1.02541 6.39842C1.08693 6.20789 1.25146 6.06894 1.4496 6.04018L5.65155 5.43023L7.52987 1.65119C7.61858 1.47272 7.8007 1.35986 8 1.35986Z" fill="currentColor" fill-opacity="0.1"/>
8
8
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00007 1.35986C8.00005 1.35986 8.00003 1.35986 8 1.35986C7.8007 1.35986 7.61858 1.47272 7.52987 1.65119L5.65155 5.43023L1.4496 6.04018C1.25146 6.06894 1.08693 6.20789 1.02541 6.39842C0.963894 6.58895 1.0161 6.79788 1.16001 6.93708L4.19791 9.8756L3.48112 14.0261C3.44714 14.2228 3.52773 14.4218 3.68905 14.5395C3.85038 14.6572 4.0645 14.6732 4.2415 14.5808L8 12.6178L8.00007 12.6179V1.35986Z" :fill="`url(#paint0_linear_572_29337${id})`"/>
9
9
  <defs>
@@ -8,7 +8,7 @@
8
8
  height="16"
9
9
  viewBox="0 0 16 16"
10
10
  fill="none"
11
- xmlns="https://www.w3.org/2000/svg"
11
+ xmlns="http://www.w3.org/2000/svg"
12
12
  >
13
13
  <path
14
14
  fill-rule="evenodd"
package/icons/sun.vue CHANGED
@@ -1,14 +1,14 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
7
- <path opacity="0.4" d="M7.99998 12.6666C10.5773 12.6666 12.6666 10.5772 12.6666 7.99992C12.6666 5.42259 10.5773 3.33325 7.99998 3.33325C5.42265 3.33325 3.33331 5.42259 3.33331 7.99992C3.33331 10.5772 5.42265 12.6666 7.99998 12.6666Z" fill="#FBC920"/>
8
- <path d="M8.00002 15.3067C7.63335 15.3067 7.33335 15.0334 7.33335 14.6667V14.6134C7.33335 14.2467 7.63335 13.9467 8.00002 13.9467C8.36669 13.9467 8.66669 14.2467 8.66669 14.6134C8.66669 14.9801 8.36669 15.3067 8.00002 15.3067ZM12.76 13.4267C12.5867 13.4267 12.42 13.3601 12.2867 13.2334L12.2 13.1467C11.94 12.8867 11.94 12.4667 12.2 12.2067C12.46 11.9467 12.88 11.9467 13.14 12.2067L13.2267 12.2934C13.4867 12.5534 13.4867 12.9734 13.2267 13.2334C13.1 13.3601 12.9334 13.4267 12.76 13.4267ZM3.24002 13.4267C3.06669 13.4267 2.90002 13.3601 2.76669 13.2334C2.50669 12.9734 2.50669 12.5534 2.76669 12.2934L2.85335 12.2067C3.11335 11.9467 3.53335 11.9467 3.79335 12.2067C4.05335 12.4667 4.05335 12.8867 3.79335 13.1467L3.70669 13.2334C3.58002 13.3601 3.40669 13.4267 3.24002 13.4267ZM14.6667 8.66675H14.6134C14.2467 8.66675 13.9467 8.36675 13.9467 8.00008C13.9467 7.63341 14.2467 7.33342 14.6134 7.33342C14.98 7.33342 15.3067 7.63341 15.3067 8.00008C15.3067 8.36675 15.0334 8.66675 14.6667 8.66675ZM1.38669 8.66675H1.33335C0.966687 8.66675 0.666687 8.36675 0.666687 8.00008C0.666687 7.63341 0.966687 7.33342 1.33335 7.33342C1.70002 7.33342 2.02669 7.63341 2.02669 8.00008C2.02669 8.36675 1.75335 8.66675 1.38669 8.66675ZM12.6734 3.99341C12.5 3.99341 12.3334 3.92675 12.2 3.80008C11.94 3.54008 11.94 3.12008 12.2 2.86008L12.2867 2.77341C12.5467 2.51341 12.9667 2.51341 13.2267 2.77341C13.4867 3.03341 13.4867 3.45341 13.2267 3.71341L13.14 3.80008C13.0134 3.92675 12.8467 3.99341 12.6734 3.99341ZM3.32669 3.99341C3.15335 3.99341 2.98669 3.92675 2.85335 3.80008L2.76669 3.70675C2.50669 3.44675 2.50669 3.02675 2.76669 2.76675C3.02669 2.50675 3.44669 2.50675 3.70669 2.76675L3.79335 2.85342C4.05335 3.11342 4.05335 3.53341 3.79335 3.79341C3.66669 3.92675 3.49335 3.99341 3.32669 3.99341ZM8.00002 2.02675C7.63335 2.02675 7.33335 1.75341 7.33335 1.38675V1.33341C7.33335 0.966748 7.63335 0.666748 8.00002 0.666748C8.36669 0.666748 8.66669 0.966748 8.66669 1.33341C8.66669 1.70008 8.36669 2.02675 8.00002 2.02675Z" fill="#FBC920"/>
9
- </svg>
10
- </template>
11
-
12
- <style scoped>
13
-
14
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <path opacity="0.4" d="M7.99998 12.6666C10.5773 12.6666 12.6666 10.5772 12.6666 7.99992C12.6666 5.42259 10.5773 3.33325 7.99998 3.33325C5.42265 3.33325 3.33331 5.42259 3.33331 7.99992C3.33331 10.5772 5.42265 12.6666 7.99998 12.6666Z" fill="#FBC920"/>
8
+ <path d="M8.00002 15.3067C7.63335 15.3067 7.33335 15.0334 7.33335 14.6667V14.6134C7.33335 14.2467 7.63335 13.9467 8.00002 13.9467C8.36669 13.9467 8.66669 14.2467 8.66669 14.6134C8.66669 14.9801 8.36669 15.3067 8.00002 15.3067ZM12.76 13.4267C12.5867 13.4267 12.42 13.3601 12.2867 13.2334L12.2 13.1467C11.94 12.8867 11.94 12.4667 12.2 12.2067C12.46 11.9467 12.88 11.9467 13.14 12.2067L13.2267 12.2934C13.4867 12.5534 13.4867 12.9734 13.2267 13.2334C13.1 13.3601 12.9334 13.4267 12.76 13.4267ZM3.24002 13.4267C3.06669 13.4267 2.90002 13.3601 2.76669 13.2334C2.50669 12.9734 2.50669 12.5534 2.76669 12.2934L2.85335 12.2067C3.11335 11.9467 3.53335 11.9467 3.79335 12.2067C4.05335 12.4667 4.05335 12.8867 3.79335 13.1467L3.70669 13.2334C3.58002 13.3601 3.40669 13.4267 3.24002 13.4267ZM14.6667 8.66675H14.6134C14.2467 8.66675 13.9467 8.36675 13.9467 8.00008C13.9467 7.63341 14.2467 7.33342 14.6134 7.33342C14.98 7.33342 15.3067 7.63341 15.3067 8.00008C15.3067 8.36675 15.0334 8.66675 14.6667 8.66675ZM1.38669 8.66675H1.33335C0.966687 8.66675 0.666687 8.36675 0.666687 8.00008C0.666687 7.63341 0.966687 7.33342 1.33335 7.33342C1.70002 7.33342 2.02669 7.63341 2.02669 8.00008C2.02669 8.36675 1.75335 8.66675 1.38669 8.66675ZM12.6734 3.99341C12.5 3.99341 12.3334 3.92675 12.2 3.80008C11.94 3.54008 11.94 3.12008 12.2 2.86008L12.2867 2.77341C12.5467 2.51341 12.9667 2.51341 13.2267 2.77341C13.4867 3.03341 13.4867 3.45341 13.2267 3.71341L13.14 3.80008C13.0134 3.92675 12.8467 3.99341 12.6734 3.99341ZM3.32669 3.99341C3.15335 3.99341 2.98669 3.92675 2.85335 3.80008L2.76669 3.70675C2.50669 3.44675 2.50669 3.02675 2.76669 2.76675C3.02669 2.50675 3.44669 2.50675 3.70669 2.76675L3.79335 2.85342C4.05335 3.11342 4.05335 3.53341 3.79335 3.79341C3.66669 3.92675 3.49335 3.99341 3.32669 3.99341ZM8.00002 2.02675C7.63335 2.02675 7.33335 1.75341 7.33335 1.38675V1.33341C7.33335 0.966748 7.63335 0.666748 8.00002 0.666748C8.36669 0.666748 8.66669 0.966748 8.66669 1.33341C8.66669 1.70008 8.36669 2.02675 8.00002 2.02675Z" fill="#FBC920"/>
9
+ </svg>
10
+ </template>
11
+
12
+ <style scoped>
13
+
14
+ </style>
package/icons/sviazi.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M2.05011 1.52465C2.05011 1.23493 1.81506 1.00006 1.52512 1.00006C1.23517 1.00006 1.00012 1.23493 1.00012 1.52465V12.5657C1.00012 12.8554 1.23517 13.0903 1.52512 13.0903H4.59733V13.7759C4.59733 14.4519 5.14578 14.9999 5.82232 14.9999H13.775C14.4516 14.9999 15 14.4519 15 13.7759V11.3072C15 10.6312 14.4516 10.0832 13.775 10.0832H5.82232C5.14578 10.0832 4.59733 10.6312 4.59733 11.3072V12.0411H2.05011V6.79275H4.59733V7.50139C4.59733 8.17741 5.14578 8.72543 5.82232 8.72543H13.775C14.4516 8.72543 15 8.17741 15 7.50139V5.03272C15 4.3567 14.4516 3.80868 13.775 3.80868H5.82232C5.14578 3.80868 4.59733 4.3567 4.59733 5.03272V5.74357H2.05011V1.52465ZM5.82232 4.85786C5.72567 4.85786 5.64732 4.93615 5.64732 5.03272V7.50139C5.64732 7.59796 5.72567 7.67625 5.82232 7.67625H13.775C13.8717 7.67625 13.95 7.59796 13.95 7.50139V5.03272C13.95 4.93615 13.8717 4.85786 13.775 4.85786H5.82232ZM5.82232 11.1324C5.72567 11.1324 5.64732 11.2107 5.64732 11.3072V13.7759C5.64732 13.8725 5.72567 13.9508 5.82232 13.9508H13.775C13.8717 13.9508 13.95 13.8725 13.95 13.7759V11.3072C13.95 11.2107 13.8717 11.1324 13.775 11.1324H5.82232Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
package/icons/tag.vue CHANGED
@@ -8,7 +8,7 @@
8
8
  height="24"
9
9
  viewBox="0 0 24 24"
10
10
  fill="none"
11
- xmlns="https://www.w3.org/2000/svg"
11
+ xmlns="http://www.w3.org/2000/svg"
12
12
  >
13
13
  <path
14
14
  fill-rule="evenodd"
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M9.64595 3.98887V2.85731C9.64595 2.55719 9.52672 2.26938 9.31452 2.05716C9.10231 1.84496 8.81449 1.72574 8.51438 1.72574H7.38281" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M4.55423 11.9098H1.72532C1.4252 11.9098 1.13739 11.7906 0.925178 11.5784C0.712968 11.3662 0.59375 11.0784 0.59375 10.7783V2.85731C0.59375 2.55719 0.712968 2.26938 0.925178 2.05716C1.13739 1.84496 1.4252 1.72574 1.72532 1.72574H2.85688" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M14.1722 6.25168H8.51438C7.88944 6.25168 7.38281 6.7583 7.38281 7.38325V14.1726C7.38281 14.7976 7.88944 15.3042 8.51438 15.3042H14.1722C14.7972 15.3042 15.3038 14.7976 15.3038 14.1726V7.38325C15.3038 6.7583 14.7972 6.25168 14.1722 6.25168Z" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M7.66627 0.59407H2.57422L3.03816 2.42721C3.06643 2.5499 3.1356 2.65933 3.23432 2.73747C3.33304 2.81562 3.4554 2.85785 3.58131 2.8572H6.65917C6.78508 2.85785 6.90745 2.81562 7.00617 2.73747C7.10489 2.65933 7.17406 2.5499 7.20233 2.42721L7.66627 0.59407Z" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M9.64648 9.6467H13.0412" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M9.64648 11.9101H13.0412" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </svg>
10
+ </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
4
  d="M4.60806 15.8031C3.9218 15.6598 3.454 15.4753 3.20574 15.3118C3.36122 15.2095 3.61289 15.0926 3.9718 14.9821C4.75299 14.7417 5.87784 14.5817 7.1529 14.5817C8.42796 14.5817 9.55282 14.7417 10.334 14.9821C10.6929 15.0926 10.9445 15.2095 11.1 15.3118C10.9445 15.414 10.6929 15.531 10.334 15.6414C9.55282 15.8818 8.42796 16.0419 7.1529 16.0419C6.19699 16.0419 5.32028 15.9519 4.60806 15.8031ZM1.60155 15.4679C1.59518 15.4174 1.59182 15.3654 1.59182 15.3118C1.59182 14.7522 1.95824 14.3619 2.27878 14.1287C2.61575 13.8835 3.0551 13.694 3.5305 13.5477C4.49048 13.2522 5.77103 13.0808 7.1529 13.0808C8.53478 13.0808 9.81532 13.2522 10.7753 13.5477C11.2507 13.694 11.6901 13.8835 12.027 14.1287C12.3476 14.3619 12.714 14.7522 12.714 15.3118C12.714 15.3654 12.7106 15.4174 12.7043 15.4679C12.9096 15.5584 13.0992 15.6561 13.2699 15.761C13.7567 16.0602 14.3009 16.5546 14.3009 17.2806C14.3009 17.9076 13.8901 18.3622 13.4892 18.6538C13.072 18.9575 12.5164 19.1996 11.8974 19.3901C10.6503 19.7739 8.97298 19.9999 7.15289 19.9999C5.77894 19.9999 4.4918 19.8712 3.41127 19.6455C2.35263 19.4244 1.41512 19.0947 0.802442 18.6435C0.40723 18.3525 0.00488281 17.9008 0.00488281 17.2806C0.00488281 16.5546 0.549114 16.0602 1.03592 15.761C1.2066 15.6561 1.39618 15.5584 1.60155 15.4679ZM11.7159 16.691C11.437 16.8444 11.1154 16.9712 10.7753 17.0759C9.81532 17.3713 8.53478 17.5427 7.1529 17.5427C6.10881 17.5427 5.12803 17.4449 4.30133 17.2722C3.65705 17.1377 3.05673 16.9477 2.58997 16.691C2.27131 16.8027 2.01408 16.9213 1.82156 17.0396C1.6353 17.1541 1.55607 17.2373 1.5235 17.2806C1.55055 17.3152 1.60177 17.3684 1.69216 17.4349C2.04467 17.6946 2.73008 17.97 3.71801 18.1764C4.68405 18.3781 5.86711 18.4991 7.15289 18.4991C8.86617 18.4991 10.3878 18.2844 11.4561 17.9556C11.9949 17.7898 12.3763 17.6077 12.6065 17.4402C12.7068 17.3672 12.7575 17.3134 12.7825 17.2809C12.7501 17.2377 12.6709 17.1544 12.4842 17.0396C12.2917 16.9213 12.0345 16.8028 11.7159 16.691Z"
5
5
  fill="currentColor"/>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M15.4595 4.23587C13.7852 3.48985 11.9147 3.30504 10.1268 3.70899C8.33887 4.11294 6.72945 5.08401 5.53854 6.47738C4.34763 7.87074 3.63903 9.61175 3.51843 11.4407C3.39782 13.2697 3.87168 15.0887 4.86932 16.6264C5.86696 18.1641 7.33493 19.338 9.0543 19.9733C10.7737 20.6085 12.6523 20.6709 14.4101 20.1512C16.1678 19.6315 17.7104 18.5575 18.8079 17.0894C19.9054 15.6213 20.499 13.8378 20.5 12.0049V11.1543C20.5 10.7401 20.8358 10.4043 21.25 10.4043C21.6642 10.4043 22 10.7401 22 11.1543V12.0053C21.9988 14.1617 21.3005 16.2604 20.0093 17.9875C18.7182 19.7147 16.9033 20.9782 14.8354 21.5896C12.7674 22.201 10.5573 22.1276 8.53447 21.3803C6.51168 20.633 4.78465 19.2518 3.61096 17.4428C2.43727 15.6338 1.87979 13.4938 2.02168 11.342C2.16356 9.19029 2.99721 7.14205 4.39828 5.5028C5.79935 3.86354 7.69279 2.72111 9.79619 2.24587C11.8996 1.77063 14.1003 1.98806 16.07 2.86572C16.4484 3.03431 16.6184 3.47769 16.4498 3.85605C16.2812 4.2344 15.8379 4.40445 15.4595 4.23587Z" fill="currentColor"/>
4
4
  <path fill-rule="evenodd" clip-rule="evenodd" d="M21.7801 4.06938C22.0731 4.36213 22.0733 4.837 21.7806 5.13004L12.5306 14.3893C12.39 14.5301 12.1992 14.6092 12.0002 14.6092C11.8012 14.6093 11.6104 14.5303 11.4697 14.3896L8.69468 11.6146C8.40178 11.3217 8.40178 10.8468 8.69468 10.5539C8.98757 10.261 9.46244 10.261 9.75534 10.5539L11.9997 12.7983L20.7194 4.06991C21.0122 3.77687 21.487 3.77663 21.7801 4.06938Z" fill="currentColor"/>
5
5
  </svg>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M21.8346 18.9914L13.328 3.75363C13.1982 3.52672 13.001 3.3363 12.7581 3.20333C12.5153 3.07036 12.2361 3 11.9515 3C11.6668 3 11.3877 3.07036 11.1448 3.20333C10.9019 3.3363 10.7048 3.52672 10.575 3.75363L2.06841 18.9914C1.94976 19.2023 1.89328 19.4368 1.90431 19.6727C1.91534 19.9087 1.99353 20.1381 2.13145 20.3394C2.26937 20.5406 2.46244 20.707 2.69232 20.8226C2.92221 20.9382 3.18127 20.9993 3.44492 21H20.458C20.7217 20.9993 20.9808 20.9382 21.2106 20.8226C21.4405 20.707 21.6336 20.5406 21.7715 20.3394C21.9094 20.1381 21.9876 19.9087 21.9987 19.6727C22.0097 19.4368 21.9532 19.2023 21.8346 18.9914ZM20.4006 19.5L12.0372 4.51872C12.0214 4.51021 11.9912 4.5 11.9515 4.5C11.9118 4.5 11.8816 4.51021 11.8658 4.51872L3.50238 19.5H20.4006Z" fill="#E74135"/>
4
4
  <path fill-rule="evenodd" clip-rule="evenodd" d="M12 8.5C12.4142 8.5 12.75 8.83579 12.75 9.25V13.748C12.75 14.1623 12.4142 14.498 12 14.498C11.5858 14.498 11.25 14.1623 11.25 13.748V9.25C11.25 8.83579 11.5858 8.5 12 8.5Z" fill="#E74135"/>
5
5
  <path d="M12.75 16.75C12.75 17.1642 12.4142 17.5 12 17.5C11.5858 17.5 11.25 17.1642 11.25 16.75C11.25 16.3358 11.5858 16 12 16C12.4142 16 12.75 16.3358 12.75 16.75Z" fill="#E74135"/>
package/icons/trash.vue CHANGED
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <path fill-rule="evenodd" clip-rule="evenodd" d="M6.65891 2.62092C7.0169 2.25375 7.49957 2.05 7.99995 2.05C8.50034 2.05 8.98301 2.25375 9.341 2.62092C9.6933 2.98225 9.89607 3.47279 9.9029 3.98845H6.09701C6.10384 3.47279 6.30661 2.98225 6.65891 2.62092ZM5.56896 5.03845L5.57183 5.03845L5.5747 5.03845H10.4252L10.4281 5.03845L10.4309 5.03845H11.8456V13.4788C11.8456 13.608 11.7954 13.7293 11.7102 13.8167C11.6254 13.9036 11.5133 13.95 11.3993 13.95H4.60058C4.48658 13.95 4.37447 13.9036 4.2897 13.8167C4.20449 13.7293 4.15433 13.608 4.15433 13.4788V5.03845H5.56896ZM5.04695 3.98845C5.05382 3.20262 5.36106 2.44797 5.90711 1.88791C6.45985 1.32101 7.21239 1 7.99995 1C8.78752 1 9.54006 1.32101 10.0928 1.88791C10.6389 2.44797 10.9461 3.20262 10.953 3.98845H12.3706H13.8274C14.1174 3.98845 14.3524 4.2235 14.3524 4.51345C14.3524 4.8034 14.1174 5.03845 13.8274 5.03845H12.8956V13.4788C12.8956 13.878 12.7411 14.2635 12.462 14.5497C12.1825 14.8364 11.8005 15 11.3993 15H4.60058C4.1994 15 3.81742 14.8364 3.53791 14.5497C3.25883 14.2635 3.10433 13.878 3.10433 13.4788V5.03845H2.17246C1.88251 5.03845 1.64746 4.8034 1.64746 4.51345C1.64746 4.2235 1.88251 3.98845 2.17246 3.98845H3.62933H5.04695ZM6.54308 6.97839C6.83303 6.97839 7.06808 7.21344 7.06808 7.50339V11.4895C7.06808 11.7794 6.83303 12.0145 6.54308 12.0145C6.25313 12.0145 6.01808 11.7794 6.01808 11.4895V7.50339C6.01808 7.21344 6.25313 6.97839 6.54308 6.97839ZM9.98182 7.50339C9.98182 7.21344 9.74677 6.97839 9.45682 6.97839C9.16687 6.97839 8.93182 7.21344 8.93182 7.50339V11.4895C8.93182 11.7794 9.16687 12.0145 9.45682 12.0145C9.74677 12.0145 9.98182 11.7794 9.98182 11.4895V7.50339Z" fill="currentColor"/>
8
8
  </svg>
9
9
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="11" height="10" viewBox="0 0 11 10" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="11" height="10" viewBox="0 0 11 10" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M3.73504 0.999999C4.50484 -0.333334 6.42934 -0.333333 7.19914 1L10.6632 7C11.433 8.33333 10.4708 10 8.93119 10H2.00298C0.463382 10 -0.498867 8.33333 0.270933 7L3.73504 0.999999Z"
5
5
  fill="currentColor"/>
package/icons/truck.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 42 30" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 42 30" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M41.5253 11.1094L39.1191 5.09375C38.9149 4.58478 38.5627 4.14883 38.1079 3.84238C37.6531 3.53594 37.1168 3.37311 36.5684 3.375H30.625V2C30.625 1.63533 30.4801 1.28559 30.2223 1.02773C29.9644 0.769866 29.6147 0.625 29.25 0.625H3.125C2.39565 0.625 1.69618 0.914731 1.18046 1.43046C0.664731 1.94618 0.375 2.64565 0.375 3.375V22.625C0.375 23.3543 0.664731 24.0538 1.18046 24.5695C1.69618 25.0853 2.39565 25.375 3.125 25.375H6.04688C6.34979 26.5581 7.03784 27.6067 8.00255 28.3555C8.96726 29.1043 10.1538 29.5108 11.375 29.5108C12.5962 29.5108 13.7827 29.1043 14.7474 28.3555C15.7122 27.6067 16.4002 26.5581 16.7031 25.375H25.2969C25.5998 26.5581 26.2878 27.6067 27.2526 28.3555C28.2173 29.1043 29.4038 29.5108 30.625 29.5108C31.8462 29.5108 33.0327 29.1043 33.9974 28.3555C34.9622 27.6067 35.6502 26.5581 35.9531 25.375H38.875C39.6043 25.375 40.3038 25.0853 40.8195 24.5695C41.3353 24.0538 41.625 23.3543 41.625 22.625V11.625C41.6255 11.4483 41.5916 11.2732 41.5253 11.1094ZM30.625 6.125H36.5684L38.2184 10.25H30.625V6.125ZM3.125 3.375H27.875V14.375H3.125V3.375ZM11.375 26.75C10.8311 26.75 10.2994 26.5887 9.84718 26.2865C9.39495 25.9844 9.04247 25.5549 8.83433 25.0524C8.62619 24.5499 8.57173 23.997 8.67784 23.4635C8.78395 22.9301 9.04586 22.4401 9.43046 22.0555C9.81505 21.6709 10.3051 21.4089 10.8385 21.3028C11.3719 21.1967 11.9249 21.2512 12.4274 21.4593C12.9299 21.6675 13.3594 22.0199 13.6615 22.4722C13.9637 22.9244 14.125 23.4561 14.125 24C14.125 24.7293 13.8353 25.4288 13.3195 25.9445C12.8038 26.4603 12.1043 26.75 11.375 26.75ZM25.2969 22.625H16.7031C16.4002 21.4419 15.7122 20.3933 14.7474 19.6445C13.7827 18.8957 12.5962 18.4892 11.375 18.4892C10.1538 18.4892 8.96726 18.8957 8.00255 19.6445C7.03784 20.3933 6.34979 21.4419 6.04688 22.625H3.125V17.125H27.875V19.2408C27.2427 19.6062 26.6893 20.0936 26.2467 20.6745C25.8042 21.2554 25.4813 21.9184 25.2969 22.625ZM30.625 26.75C30.0811 26.75 29.5494 26.5887 29.0972 26.2865C28.6449 25.9844 28.2925 25.5549 28.0843 25.0524C27.8762 24.5499 27.8217 23.997 27.9278 23.4635C28.0339 22.9301 28.2959 22.4401 28.6805 22.0555C29.0651 21.6709 29.5551 21.4089 30.0885 21.3028C30.622 21.1967 31.1749 21.2512 31.6774 21.4593C32.1799 21.6675 32.6094 22.0199 32.9115 22.4722C33.2137 22.9244 33.375 23.4561 33.375 24C33.375 24.7293 33.0853 25.4288 32.5695 25.9445C32.0538 26.4603 31.3543 26.75 30.625 26.75ZM38.875 22.625H35.9531C35.6466 21.4448 34.9572 20.3996 33.9931 19.6532C33.0289 18.9067 31.8444 18.5012 30.625 18.5V13H38.875V22.625Z"
5
5
  fill="currentColor"/>
package/icons/user.vue CHANGED
@@ -4,7 +4,7 @@
4
4
  height="17"
5
5
  viewBox="0 0 16 17"
6
6
  width="16"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  clip-rule="evenodd"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 34 34" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M33.5 3.25V8.0625C33.5 8.42717 33.3551 8.77691 33.0973 9.03477C32.8394 9.29263 32.4897 9.4375 32.125 9.4375C31.7603 9.4375 31.4106 9.29263 31.1527 9.03477C30.8949 8.77691 30.75 8.42717 30.75 8.0625V3.25H25.9375C25.5728 3.25 25.2231 3.10513 24.9652 2.84727C24.7074 2.58941 24.5625 2.23967 24.5625 1.875C24.5625 1.51033 24.7074 1.16059 24.9652 0.902728C25.2231 0.644866 25.5728 0.5 25.9375 0.5H30.75C31.4793 0.5 32.1788 0.789731 32.6945 1.30546C33.2103 1.82118 33.5 2.52065 33.5 3.25ZM32.125 24.5625C31.7603 24.5625 31.4106 24.7074 31.1527 24.9652C30.8949 25.2231 30.75 25.5728 30.75 25.9375V30.75H25.9375C25.5728 30.75 25.2231 30.8949 24.9652 31.1527C24.7074 31.4106 24.5625 31.7603 24.5625 32.125C24.5625 32.4897 24.7074 32.8394 24.9652 33.0973C25.2231 33.3551 25.5728 33.5 25.9375 33.5H30.75C31.4793 33.5 32.1788 33.2103 32.6945 32.6945C33.2103 32.1788 33.5 31.4793 33.5 30.75V25.9375C33.5 25.5728 33.3551 25.2231 33.0973 24.9652C32.8394 24.7074 32.4897 24.5625 32.125 24.5625ZM8.0625 30.75H3.25V25.9375C3.25 25.5728 3.10513 25.2231 2.84727 24.9652C2.58941 24.7074 2.23967 24.5625 1.875 24.5625C1.51033 24.5625 1.16059 24.7074 0.902728 24.9652C0.644866 25.2231 0.5 25.5728 0.5 25.9375V30.75C0.5 31.4793 0.789731 32.1788 1.30546 32.6945C1.82118 33.2103 2.52065 33.5 3.25 33.5H8.0625C8.42717 33.5 8.77691 33.3551 9.03477 33.0973C9.29263 32.8394 9.4375 32.4897 9.4375 32.125C9.4375 31.7603 9.29263 31.4106 9.03477 31.1527C8.77691 30.8949 8.42717 30.75 8.0625 30.75ZM1.875 9.4375C2.23967 9.4375 2.58941 9.29263 2.84727 9.03477C3.10513 8.77691 3.25 8.42717 3.25 8.0625V3.25H8.0625C8.42717 3.25 8.77691 3.10513 9.03477 2.84727C9.29263 2.58941 9.4375 2.23967 9.4375 1.875C9.4375 1.51033 9.29263 1.16059 9.03477 0.902728C8.77691 0.644866 8.42717 0.5 8.0625 0.5H3.25C2.52065 0.5 1.82118 0.789731 1.30546 1.30546C0.789731 1.82118 0.5 2.52065 0.5 3.25V8.0625C0.5 8.42717 0.644866 8.77691 0.902728 9.03477C1.16059 9.29263 1.51033 9.4375 1.875 9.4375ZM25.25 25.25C25.0364 25.2505 24.8256 25.2012 24.6344 25.106C24.4431 25.0108 24.2767 24.8724 24.1483 24.7017C23.3158 23.5917 22.2363 22.6908 20.9953 22.0703C19.7542 21.4498 18.3858 21.1267 16.9983 21.1267C15.6108 21.1267 14.2423 21.4498 13.0013 22.0703C11.7603 22.6908 10.6808 23.5917 9.84828 24.7017C9.62902 24.9935 9.30285 25.1861 8.94152 25.2374C8.58019 25.2886 8.2133 25.1943 7.92156 24.975C7.62982 24.7557 7.43714 24.4296 7.38589 24.0682C7.33463 23.7069 7.42902 23.34 7.64828 23.0483C8.86686 21.4166 10.491 20.1321 12.3594 19.322C11.3355 18.3873 10.6182 17.1648 10.3016 15.8151C9.98492 14.4654 10.0837 13.0514 10.585 11.7589C11.0863 10.4663 11.9667 9.35551 13.1106 8.57224C14.2545 7.78896 15.6085 7.36982 16.9948 7.36982C18.3812 7.36982 19.7352 7.78896 20.8791 8.57224C22.023 9.35551 22.9034 10.4663 23.4047 11.7589C23.906 13.0514 24.0048 14.4654 23.6881 15.8151C23.3715 17.1648 22.6542 18.3873 21.6303 19.322C23.5 20.1316 25.1253 21.4162 26.3448 23.0483C26.4983 23.2522 26.592 23.4948 26.6153 23.7489C26.6387 24.0031 26.591 24.2587 26.4773 24.4872C26.3637 24.7157 26.1887 24.9081 25.9719 25.0428C25.7552 25.1776 25.5052 25.2493 25.25 25.25ZM17 18.375C17.8158 18.375 18.6134 18.1331 19.2917 17.6798C19.9701 17.2266 20.4988 16.5823 20.811 15.8286C21.1232 15.0748 21.2049 14.2454 21.0457 13.4453C20.8866 12.6451 20.4937 11.9101 19.9168 11.3332C19.3399 10.7563 18.6049 10.3634 17.8047 10.2043C17.0046 10.0451 16.1752 10.1268 15.4214 10.439C14.6677 10.7512 14.0234 11.2799 13.5702 11.9583C13.1169 12.6366 12.875 13.4342 12.875 14.25C12.875 15.344 13.3096 16.3932 14.0832 17.1668C14.8568 17.9404 15.906 18.375 17 18.375Z"
5
5
  fill="currentColor"/>
package/icons/users.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path d="M10.0941 2.00014C10.1893 1.72628 10.4886 1.58149 10.7624 1.67674C11.2761 1.85539 11.6951 2.24714 11.979 2.74395C12.2632 3.2413 12.4099 3.83733 12.4099 4.43884C12.4099 5.04034 12.2632 5.63638 11.979 6.13373C11.6951 6.63053 11.2761 7.02228 10.7624 7.20093C10.4886 7.29618 10.1893 7.15139 10.0941 6.87753C9.99884 6.60367 10.1436 6.30446 10.4175 6.20921C10.6447 6.13018 10.8823 5.93663 11.0674 5.61278C11.2521 5.28948 11.3599 4.8762 11.3599 4.43884C11.3599 4.00147 11.2521 3.58819 11.0674 3.26489C10.8823 2.94104 10.6447 2.74749 10.4175 2.66846C10.1436 2.57321 9.99884 2.274 10.0941 2.00014Z" fill="currentColor"/>
4
4
  <path d="M12.6664 9.43492C12.3861 9.36093 12.0988 9.52822 12.0248 9.80857C11.9508 10.0889 12.1181 10.3762 12.3985 10.4501C12.8392 10.5665 13.2319 10.8297 13.5136 11.2011C13.7954 11.5727 13.9495 12.0309 13.9499 12.504V13.8275C13.9499 14.1175 14.185 14.3525 14.4749 14.3525C14.7649 14.3525 14.9999 14.1175 14.9999 13.8275V12.5038C14.9994 11.8039 14.7715 11.1222 14.3502 10.5666C13.9287 10.0109 13.3369 9.61188 12.6664 9.43492Z" fill="currentColor"/>
5
5
  <path d="M3.95311 9.41754C3.15856 9.41754 2.40398 9.75452 1.85317 10.3421C1.30343 10.9284 1 11.7169 1 12.5325V13.8275C1 14.1175 1.23505 14.3525 1.525 14.3525C1.81494 14.3525 2.04999 14.1175 2.04999 13.8275V12.5325C2.04999 11.9743 2.2582 11.4452 2.61918 11.0602C2.97908 10.6763 3.4597 10.4675 3.95311 10.4675H8.80933C9.30273 10.4675 9.78335 10.6763 10.1433 11.0602C10.5042 11.4452 10.7124 11.9743 10.7124 12.5325V13.8275C10.7124 14.1175 10.9475 14.3525 11.2374 14.3525C11.5274 14.3525 11.7624 14.1175 11.7624 13.8275V12.5325C11.7624 11.7169 11.459 10.9284 10.9093 10.3421C10.3584 9.75452 9.60387 9.41754 8.80933 9.41754H3.95311Z" fill="currentColor"/>
@@ -5,7 +5,7 @@
5
5
  height="1em"
6
6
  viewBox="0 0 20 20"
7
7
  fill="none"
8
- xmlns="https://www.w3.org/2000/svg"
8
+ xmlns="http://www.w3.org/2000/svg"
9
9
  >
10
10
  <path
11
11
  fill-rule="evenodd"
@@ -2,7 +2,7 @@
2
2
  </script>
3
3
 
4
4
  <template>
5
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
5
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
6
6
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.91748 2.50242L14.5885 12.6609C14.6676 12.8015 14.7053 12.9579 14.6979 13.1152C14.6906 13.2724 14.6384 13.4254 14.5465 13.5596C14.4545 13.6938 14.3258 13.8047 14.1726 13.8817C14.0193 13.9588 13.8466 13.9995 13.6708 14H2.32876C2.15299 13.9995 1.98028 13.9588 1.82703 13.8817C1.67377 13.8047 1.54506 13.6938 1.45311 13.5596C1.36117 13.4254 1.30904 13.2724 1.30168 13.1152C1.29433 12.9579 1.33199 12.8015 1.41108 12.6609L7.08212 2.50242C7.16865 2.35115 7.30011 2.2242 7.46202 2.13555C7.62394 2.04691 7.81003 2 7.9998 2C8.18957 2 8.37566 2.04691 8.53757 2.13555C8.69949 2.2242 8.83095 2.35115 8.91748 2.50242ZM8.53215 6.16667C8.53215 5.89052 8.30829 5.66667 8.03215 5.66667C7.75601 5.66667 7.53215 5.89052 7.53215 6.16667V9.16536C7.53215 9.44151 7.75601 9.66536 8.03215 9.66536C8.30829 9.66536 8.53215 9.44151 8.53215 9.16536V6.16667ZM8.03215 11.6667C8.30829 11.6667 8.53215 11.4428 8.53215 11.1667C8.53215 10.8905 8.30829 10.6667 8.03215 10.6667C7.75601 10.6667 7.53215 10.8905 7.53215 11.1667C7.53215 11.4428 7.75601 11.6667 8.03215 11.6667Z" fill="currentColor"/>
7
7
  </svg>
8
8
  </template>
@@ -4,7 +4,7 @@
4
4
  width="1em"
5
5
  height="1em"
6
6
  viewBox="0 0 21 18"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  fill-rule="evenodd"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path d="M1.33343 15.1662C1.20009 15.1662 1.07341 15.1128 0.980073 15.0195C0.853406 14.8928 0.800105 14.7062 0.846772 14.5328L1.68678 11.3928C1.12678 10.3528 0.833426 9.17951 0.833426 7.99284C0.833426 4.03951 4.04676 0.826172 8.00009 0.826172C11.9534 0.826172 15.1668 4.03951 15.1668 7.99284C15.1668 11.9462 11.9534 15.1595 8.00009 15.1595C6.79343 15.1595 5.61344 14.8595 4.56011 14.2862L1.46677 15.1462C1.4201 15.1595 1.38009 15.1662 1.33343 15.1662ZM4.62676 13.2528C4.71343 13.2528 4.8001 13.2795 4.8801 13.3195C5.8201 13.8729 6.90009 14.1662 8.00009 14.1662C11.4001 14.1662 14.1668 11.3995 14.1668 7.99951C14.1668 4.59951 11.4001 1.83285 8.00009 1.83285C4.60009 1.83285 1.83343 4.59951 1.83343 7.99951C1.83343 9.08618 2.12009 10.1462 2.66009 11.0795C2.72675 11.1928 2.74676 11.3328 2.71343 11.4595L2.04676 13.9528L4.50009 13.2728C4.54009 13.2595 4.58676 13.2528 4.62676 13.2528Z" fill="currentColor"/>
4
4
  <path d="M9.82682 11.8395C9.41349 11.8395 8.98683 11.7462 8.54016 11.5529C8.12016 11.3729 7.70016 11.1329 7.2935 10.8329C6.8935 10.5395 6.50018 10.2062 6.14018 9.8462C5.78018 9.47953 5.44682 9.09288 5.15348 8.69288C4.85348 8.27288 4.61348 7.85953 4.44014 7.45287C4.25348 7.01287 4.16016 6.57954 4.16016 6.16621C4.16016 5.87287 4.21348 5.59287 4.31348 5.33287C4.42014 5.05954 4.59348 4.81287 4.82015 4.59954C5.24682 4.17954 5.86018 4.02622 6.34684 4.25955C6.51351 4.33288 6.65351 4.45288 6.76017 4.61288L7.53349 5.69953C7.61349 5.8062 7.67351 5.91953 7.72017 6.03286C7.77351 6.1662 7.80684 6.29955 7.80684 6.42622C7.80684 6.59955 7.76016 6.77288 7.66683 6.92622C7.60683 7.02622 7.52015 7.14622 7.40682 7.25955L7.32015 7.35287C7.36015 7.40621 7.40681 7.47286 7.48014 7.55286C7.62014 7.71286 7.77348 7.8862 7.94015 8.05286C8.10681 8.21286 8.27348 8.37287 8.44015 8.51287C8.52014 8.57953 8.58684 8.63287 8.64018 8.66621L8.73348 8.57286C8.85348 8.45286 8.97351 8.35955 9.09351 8.29955C9.31351 8.15955 9.65349 8.12621 9.95349 8.25288C10.0602 8.29288 10.1668 8.35287 10.2802 8.43287L11.3935 9.21953C11.5468 9.3262 11.6668 9.47287 11.7468 9.63953C11.8135 9.8062 11.8402 9.95288 11.8402 10.1062C11.8402 10.3062 11.7935 10.4995 11.7068 10.6862C11.6202 10.8595 11.5201 11.0129 11.4001 11.1529C11.1868 11.3862 10.9402 11.5595 10.6735 11.6729C10.4068 11.7862 10.1202 11.8395 9.82682 11.8395ZM5.86015 5.15953C5.82015 5.15953 5.68685 5.15953 5.52018 5.3262C5.39352 5.4462 5.30683 5.57288 5.24683 5.71288C5.18683 5.85288 5.16016 6.01288 5.16016 6.17288C5.16016 6.45288 5.22681 6.75286 5.36015 7.07286C5.50015 7.4062 5.70683 7.75955 5.96016 8.11288C6.22016 8.46622 6.5135 8.81954 6.84017 9.14621C7.16684 9.46621 7.51349 9.7662 7.87349 10.0329C8.22016 10.2862 8.57351 10.4862 8.92684 10.6395C9.43351 10.8595 9.90015 10.9129 10.2802 10.7529C10.4135 10.6995 10.5335 10.6062 10.6535 10.4862C10.7135 10.4195 10.7602 10.3529 10.8002 10.2662C10.8202 10.2195 10.8335 10.1662 10.8335 10.1195C10.8335 10.1062 10.8335 10.0862 10.8135 10.0462L9.70015 9.27288C9.65349 9.23954 9.60681 9.21286 9.56681 9.19953C9.54015 9.21286 9.50017 9.23287 9.42684 9.3062L9.1735 9.55954C8.98017 9.75287 8.67351 9.8062 8.42684 9.71953L8.30684 9.66621C8.15351 9.58621 7.98016 9.46621 7.78682 9.29955C7.60016 9.13955 7.42018 8.97287 7.22685 8.7862C7.04018 8.59287 6.8735 8.41287 6.7135 8.2262C6.54017 8.01954 6.42017 7.85288 6.34017 7.71288L6.26685 7.53954C6.24685 7.47287 6.24015 7.39954 6.24015 7.33287C6.24015 7.14621 6.30685 6.97953 6.43351 6.8462L6.68685 6.58621C6.76018 6.51288 6.78684 6.47288 6.80017 6.44622C6.78017 6.39955 6.75351 6.35954 6.72017 6.31287L5.94014 5.21288L5.86015 5.15953Z" fill="currentColor"/>
5
5
  </svg>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 36 34" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 36 34" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M33.125 5.625H26.25V4.25C26.25 3.15598 25.8154 2.10677 25.0418 1.33318C24.2682 0.559597 23.219
5
5
  0.125 22.125 0.125H13.875C12.781 0.125 11.7318 0.559597 10.9582 1.33318C10.1846 2.10677 9.75 3.15598 9.75 4.25V5.625H2.875C2.14565
@@ -0,0 +1,9 @@
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M23.0203 6.41943H0.979492V21.4619H23.0203V6.41943Z" stroke="currentColor" stroke-width="1.22449" stroke-miterlimit="10" stroke-linejoin="round"/>
4
+ <path d="M23.0203 6.41943H0.979492V10.1586C0.979492 11.5352 2.29533 12.6513 3.91827 12.6513H20.0815C21.7045 12.6513 23.0203 11.5352 23.0203 10.1586V6.41943Z" stroke="currentColor" stroke-width="1.22449" stroke-miterlimit="10" stroke-linejoin="round"/>
5
+ <path d="M6.92188 6.32556V3.80058C6.92188 3.10305 7.48998 2.53809 8.19138 2.53809H15.8084C16.5098 2.53809 17.0779 3.10305 17.0779 3.80058V6.32556" stroke="currentColor" stroke-width="1.22449" stroke-miterlimit="10" stroke-linejoin="round"/>
6
+ <path d="M12 15.1628C11.2986 15.1628 10.7305 14.5978 10.7305 13.9003V11.3753C10.7305 10.6778 11.2986 10.1128 12 10.1128C12.7014 10.1128 13.2695 10.6778 13.2695 11.3753V13.9003C13.2695 14.5978 12.7014 15.1628 12 15.1628Z" stroke="currentColor" stroke-width="1.22449" stroke-miterlimit="10" stroke-linejoin="round"/>
7
+ <path d="M13.2695 12.6377H10.7305" stroke="currentColor" stroke-width="1.22449" stroke-miterlimit="10" stroke-linejoin="round"/>
8
+ </svg>
9
+ </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
4
  d="M11.3188 3.35643H6.68546C6.68891 3.32722 6.69069 3.29749 6.69069 3.26735V1.50003H11.3136V3.26735C11.3136 3.29749 11.3154 3.32722 11.3188 3.35643ZM12.8123 3.26735C12.8123 3.29749 12.8106 3.32722 12.8071 3.35643H17.2549C17.6688 3.35643 18.0043 3.69223 18.0043 4.10645V8.66163C18.0043 9.03203 17.7341 9.34697 17.3683 9.40301L17.1342 9.43887V9.73083C17.1342 10.1451 16.7987 10.4809 16.3848 10.4809C15.971 10.4809 15.6355 10.1451 15.6355 9.73083V9.66847L12.1356 10.2046V12.4975C12.1356 12.9118 11.8001 13.2476 11.3862 13.2476H6.6181C6.20423 13.2476 5.86873 12.9118 5.86873 12.4975V10.2046L2.33713 9.66361V16.481H9.75063C10.1645 16.481 10.5 16.8168 10.5 17.231C10.5 17.6452 10.1645 17.981 9.75063 17.981H1.58776C1.17389 17.981 0.83839 17.6452 0.83839 17.231V9.43402L0.635991 9.40301C0.270166 9.34697 0 9.03203 0 8.66163V4.10645C0 3.69223 0.335505 3.35643 0.74937 3.35643H5.19718C5.19373 3.32722 5.19195 3.29749 5.19195 3.26735V0.750016C5.19195 0.335793 5.52745 0 5.94132 0H12.063C12.4768 0 12.8123 0.335793 12.8123 0.750016V3.26735ZM11.9982 8.70817L16.5055 8.01768V4.85647H1.49874V8.01768L6.0061 8.70817C6.14183 8.51632 6.36535 8.39109 6.6181 8.39109H11.3862C11.6389 8.39109 11.8625 8.51632 11.9982 8.70817ZM7.36747 9.89112V11.7475H10.6368V9.89112H7.36747Z"
5
5
  fill="currentColor"/>
package/icons/work.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M6.60937 3.14817C6.97777 2.78142 7.47793 2.57497 7.99995 2.57497C8.52196 2.57497 9.02213 2.78142 9.39053 3.14817C9.63146 3.38802 9.80315 3.68356 9.89309 4.00415H6.10681C6.19674 3.68356 6.36843 3.38802 6.60937 3.14817ZM5.03094 4.00415C5.13825 3.40179 5.42856 2.84206 5.86858 2.40403C6.43426 1.8409 7.20098 1.52496 7.99995 1.52496C8.79892 1.52496 9.56564 1.8409 10.1313 2.40403C10.5713 2.84206 10.8616 3.40179 10.969 4.00415H10.9884H12.4827C13.8707 4.00415 15 5.12494 15 6.51249V11.9667C15 13.3542 13.8707 14.475 12.4827 14.475H10.9884H5.01151H3.51725C2.12922 14.475 0.999939 13.3542 0.999939 11.9667V6.51249C0.999939 5.12494 2.12922 4.00415 3.51725 4.00415H5.01151H5.03094ZM2.04994 6.51249C2.04994 5.70931 2.70464 5.05415 3.51725 5.05415H4.48651V13.425H3.51725C2.70464 13.425 2.04994 12.7699 2.04994 11.9667V6.51249ZM5.53652 13.425V5.05415H10.4634V13.425H5.53652ZM11.5134 13.425V5.05415H12.4827C13.2953 5.05415 13.95 5.70931 13.95 6.51249V11.9667C13.95 12.7699 13.2953 13.425 12.4827 13.425H11.5134Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
package/icons/x-mark.vue CHANGED
@@ -4,7 +4,7 @@
4
4
  width="16"
5
5
  height="16"
6
6
  viewBox="0 0 16 16"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  fill="currentColor"
9
9
  >
10
10
  <path
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <svg
3
+ width="32"
4
+ height="32"
5
+ viewBox="0 0 32 32"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <rect
10
+ x="0.5"
11
+ y="0.5"
12
+ width="31"
13
+ height="31"
14
+ rx="5.5"
15
+ stroke="#9DA3AC"
16
+ />
17
+ <circle
18
+ cx="16"
19
+ cy="16"
20
+ r="10.5"
21
+ fill="#FC3F1D"
22
+ />
23
+ <path
24
+ d="M19.75 22.75H17.3928V11.076H16.3409C14.4125 11.076 13.3995 12.0469 13.3995 13.4845C13.3995 15.1158 14.1008 15.8736 15.5421 16.845L16.7304 17.6415L13.3019 22.75H10.75L13.8279 18.1853C12.0553 16.9224 11.0618 15.6988 11.0618 13.6206C11.0618 11.0174 12.8736 9.25 16.3215 9.25H19.75V22.75Z"
25
+ fill="white"
26
+ />
27
+ </svg>
28
+ </template>
@@ -4,7 +4,7 @@
4
4
  height="155"
5
5
  viewBox="0 0 155 155"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <circle cx="77.5001" cy="77.5003" r="64.5833" fill="#BDC7CE" fill-opacity="0.15" />
10
10
  <path
@@ -4,7 +4,7 @@
4
4
  height="155"
5
5
  viewBox="0 0 155 155"
6
6
  width="155"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <circle cx="77.5001" cy="77.4998" fill="#BDC7CE" fill-opacity="0.15" r="64.5833" />
10
10
  <g clip-path="url(#clip0_2864_87969)">
@@ -4,7 +4,7 @@
4
4
  height="155"
5
5
  viewBox="0 0 155 155"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  d="M142.083 77.5003C142.083 113.169 113.168 142.084 77.5001 142.084C41.8317 142.084 12.9167 113.169 12.9167 77.5003C12.9167 41.8319 41.8317 12.917 77.5001 12.917C113.168 12.917 142.083 41.8319 142.083 77.5003Z"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="156" height="155" viewBox="0 0 156 155" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="156" height="155" viewBox="0 0 156 155" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <ellipse cx="78.6392" cy="77.5001" rx="63.9439" ry="64.5833" fill="#BDC7CE" fill-opacity="0.15"/>
4
4
  <g clip-path="url(#clip0_4605_64076)">
5
5
  <path d="M60.019 54.1465H24.6836V137.679H60.019V54.1465Z" class="dark:fill-gray-900 fill-white"/>
@@ -4,7 +4,7 @@
4
4
  height="155"
5
5
  viewBox="0 0 155 155"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <circle cx="77.4998" cy="77.4998" r="64.5833" fill="#BDC7CE" fill-opacity="0.15" />
10
10
  <g clip-path="url(#clip0_2938_133785)">
@@ -4,7 +4,7 @@
4
4
  height="155"
5
5
  viewBox="0 0 155 155"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <circle cx="77.2628" cy="77.5003" r="64.5833" fill="#BDC7CE" fill-opacity="0.15" />
10
10
  <g clip-path="url(#clip0_2483_104006)">
@@ -4,7 +4,7 @@
4
4
  height="155"
5
5
  viewBox="0 0 156 155"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <circle cx="78.3333" cy="77.4998" r="64.5833" fill="#BDC7CE" fill-opacity="0.15" />
10
10
  <g clip-path="url(#clip0_2935_107723)">
@@ -4,7 +4,7 @@
4
4
  height="155"
5
5
  viewBox="0 0 156 155"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <circle cx="78.0001" cy="76.2083" r="64.5833" fill="#BDC7CE" fill-opacity="0.15" />
10
10
  <g clip-path="url(#clip0_2708_133538)">
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="121" height="120" viewBox="0 0 121 120" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="121" height="120" viewBox="0 0 121 120" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <circle cx="60.5" cy="60" r="50" fill="#BDC7CE" fill-opacity="0.15"/>
4
4
  <g clip-path="url(#clip0_8796_3522)">
5
5
  <path d="M61.2734 43.3979C44.8608 43.3979 31.5469 45.9054 31.5469 48.9999V49.3283L37.6441 101.229C37.8192 102.773 38.5022 104.216 39.5869 105.334C40.6716 106.451 42.0971 107.181 43.6414 107.408C49.4499 108.173 55.3044 108.538 61.1634 108.502C66.8933 108.547 72.6198 108.215 78.3056 107.507C79.8499 107.29 81.2795 106.574 82.3742 105.468C83.4688 104.362 84.1676 102.928 84.3629 101.388L90.9699 49.3681V49.0398C90.9999 45.9054 77.6859 43.3979 61.2734 43.3979Z" fill="#26282B"/>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <circle cx="50" cy="50" r="50" fill="#BDC7CE" fill-opacity="0.15"/>
4
4
  <g clip-path="url(#clip0_3647_12359)">
5
5
  <path d="M50.7734 33.3979C34.3608 33.3979 21.0469 35.9054 21.0469 38.9999V39.3283L27.1441 91.2288C27.3192 92.773 28.0022 94.2163 29.0869 95.3338C30.1716 96.4514 31.5971 97.1806 33.1414 97.4079C38.9499 98.1727 44.8044 98.5384 50.6634 98.5024C56.3933 98.547 62.1198 98.2146 67.8056 97.5074C69.3499 97.2903 70.7795 96.5736 71.8742 95.4678C72.9688 94.3619 73.6676 92.9283 73.8629 91.388L80.4699 39.3681V39.0398C80.4999 35.9054 67.1859 33.3979 50.7734 33.3979Z" fill="white"/>