adata-ui 2.1.17 → 2.1.18

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 (410) hide show
  1. package/-error.vue +170 -170
  2. package/.editorconfig +12 -12
  3. package/.gitlab-ci.yml +16 -16
  4. package/.nuxtrc +1 -1
  5. package/.nvmrc +1 -1
  6. package/.playground/app.config.ts +5 -5
  7. package/.playground/nuxt.config.ts +3 -3
  8. package/README.md +75 -75
  9. package/app.config.ts +28 -28
  10. package/app.vue +8 -8
  11. package/assets/styles/index.scss +104 -104
  12. package/assets/styles/modules/_base.scss +5 -5
  13. package/assets/styles/modules/_typography.scss +152 -152
  14. package/components/elements/README.md +1 -1
  15. package/components/elements/a-select-row/index.vue +140 -140
  16. package/components/elements/accordion/AAccordion.vue +197 -197
  17. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -145
  18. package/components/elements/accordion/AAccordionGroup/types.ts +20 -20
  19. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -22
  20. package/components/elements/accordion/types.ts +14 -14
  21. package/components/elements/accordion/ui.config.ts +22 -22
  22. package/components/elements/alert/AAlert.vue +65 -65
  23. package/components/elements/banner/ABanner.vue +49 -49
  24. package/components/elements/bg-block/ABgBlock.vue +11 -11
  25. package/components/elements/button/AButton.vue +188 -188
  26. package/components/elements/button/types.ts +24 -24
  27. package/components/elements/button-login/index.vue +21 -21
  28. package/components/elements/calendar/ACalendar.vue +83 -83
  29. package/components/elements/carousel/ACarousel.vue +159 -159
  30. package/components/elements/carousel/config.ui.ts +15 -15
  31. package/components/elements/carousel/types.ts +18 -18
  32. package/components/elements/chip-wrapper/AChipWrapper.vue +80 -80
  33. package/components/elements/chip-wrapper/types.ts +12 -12
  34. package/components/elements/chips/AChips.vue +32 -32
  35. package/components/elements/companies/AOurClients.vue +42 -42
  36. package/components/elements/curve-block/ACurveBlock.vue +291 -291
  37. package/components/elements/digit-badge/ADigitBadge.vue +83 -83
  38. package/components/elements/error-template/index.vue +48 -48
  39. package/components/elements/error-template/types.ts +23 -23
  40. package/components/elements/feature-description/AFeatureDescription.vue +112 -112
  41. package/components/elements/illustrations/noAccess.vue +71 -71
  42. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +57 -57
  43. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -33
  44. package/components/elements/leave-note/ALeaveNote.vue +78 -78
  45. package/components/elements/pagination/APagination.vue +110 -110
  46. package/components/elements/photos-animation/APhotosAnimation.vue +85 -85
  47. package/components/elements/select/ASelect.vue +445 -445
  48. package/components/elements/select/ASelectMobile.vue +186 -186
  49. package/components/elements/select/ui/select-button.vue +112 -112
  50. package/components/elements/select/ui/select-list.vue +99 -99
  51. package/components/elements/show-more/AShowMore.vue +35 -35
  52. package/components/elements/skeleton/ASkeleton.vue +44 -44
  53. package/components/elements/star-rating/AStarRating.vue +181 -181
  54. package/components/elements/star-rating/types.ts +7 -7
  55. package/components/elements/star-rating/ui/Star.vue +74 -74
  56. package/components/elements/status-badge/AStatusBadge.vue +74 -74
  57. package/components/elements/table/ATable.vue +93 -93
  58. package/components/elements/table/table.config.ts +32 -32
  59. package/components/elements/tree-select/ATreeSelect.vue +169 -169
  60. package/components/elements/tree-select/TreeService.ts +249 -249
  61. package/components/elements/tree-select/components/tree-select-nodes.vue +90 -90
  62. package/components/elements/tree-select/types.ts +34 -34
  63. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -79
  64. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -175
  65. package/components/features/color-mode/AColorMode.client.vue +53 -53
  66. package/components/features/dropdown/ADropdown.vue +124 -124
  67. package/components/features/go-top/GoTop.vue +58 -58
  68. package/components/features/lang-switcher/lang-switcher.vue +63 -63
  69. package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -104
  70. package/components/features/payment/banner/PaymentBanner.vue +108 -108
  71. package/components/features/payment/banner/UpSellBanner.vue +125 -125
  72. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +158 -158
  73. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -112
  74. package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -121
  75. package/components/features/payment/process/PaymentProcess.vue +138 -138
  76. package/components/features/payment/process/PaymentTopUpSidePanel.vue +130 -130
  77. package/components/features/pk-mobile-services/APkMobileServices.vue +149 -149
  78. package/components/features//321/201hange-version/AChangeVersion.vue +20 -20
  79. package/components/forms/README.md +1 -1
  80. package/components/forms/checkbox/ACheckbox.vue +149 -149
  81. package/components/forms/feedback-form/FeedbackForm.vue +177 -171
  82. package/components/forms/input/button/AInputButton.vue +53 -53
  83. package/components/forms/input/date/AInputDate.vue +213 -213
  84. package/components/forms/input/password/AInputPassword.vue +53 -53
  85. package/components/forms/input/standard/AInputStandard.vue +412 -412
  86. package/components/forms/input/textarea/ATextarea.vue +200 -200
  87. package/components/forms/radio-button/ARadioButton.vue +95 -95
  88. package/components/forms/request-demo/ARequestDemo.vue +108 -103
  89. package/components/forms/toggle/AToggle.vue +157 -157
  90. package/components/forms/toggle/types.ts +16 -16
  91. package/components/modals/AConfirmationEmail.vue +40 -40
  92. package/components/modals/AboutTariffModal.vue +114 -114
  93. package/components/modals/AnotherDeviceModal.vue +60 -60
  94. package/components/modals/ApplicationAcceptedModal.vue +47 -47
  95. package/components/modals/ConnectingTariffModal.vue +67 -67
  96. package/components/modals/ContactsMobileModel.vue +182 -182
  97. package/components/modals/ContentNavigationModal.vue +355 -355
  98. package/components/modals/Insufficient-funds-modal.vue +77 -77
  99. package/components/modals/LimitReachedModal.vue +30 -30
  100. package/components/modals/NoAccessModal.vue +37 -37
  101. package/components/modals/PaymentMethodModal.vue +101 -101
  102. package/components/modals/RedirectsBanksModal.vue +69 -69
  103. package/components/modals/ReplenishModal.vue +132 -132
  104. package/components/modals/ReportBugConfirmModal.vue +30 -30
  105. package/components/modals/ReportBugModal.vue +156 -156
  106. package/components/modals/Resend.vue +82 -82
  107. package/components/modals/SubmitApplicationModal.vue +123 -115
  108. package/components/modals/id/AuthModal.vue +82 -82
  109. package/components/modals/id/IdAutoLogoutModal.vue +45 -45
  110. package/components/modals/id/IdBanner.vue +61 -61
  111. package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -186
  112. package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -41
  113. package/components/modals/id/IdLoginModal.vue +326 -326
  114. package/components/modals/id/IdModals.vue +114 -114
  115. package/components/modals/id/IdNewPasswordModal.vue +129 -129
  116. package/components/modals/id/IdOtpInput.vue +155 -155
  117. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -25
  118. package/components/modals/id/IdRecoveryModal.vue +117 -117
  119. package/components/modals/id/IdRegistrationModal.vue +215 -215
  120. package/components/modals/id/IdResetPasswordOtpModal.vue +158 -158
  121. package/components/modals/id/IdTwoFactorModal.vue +130 -130
  122. package/components/navigation/README.md +1 -1
  123. package/components/navigation/bottom-navigation/ABottomNavigation.vue +106 -106
  124. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +66 -66
  125. package/components/navigation/breadcrumbs/types.ts +4 -4
  126. package/components/navigation/footer/AFooter.vue +279 -279
  127. package/components/navigation/footer/ui/a-footer-accordion.vue +118 -118
  128. package/components/navigation/header/AHeader.vue +217 -217
  129. package/components/navigation/header/AlmatyContacts.vue +145 -145
  130. package/components/navigation/header/AstanaContacts.vue +67 -67
  131. package/components/navigation/header/CardGallery.vue +249 -249
  132. package/components/navigation/header/ContactMenu.vue +114 -114
  133. package/components/navigation/header/HeaderLink.vue +267 -267
  134. package/components/navigation/header/ListItem.vue +31 -31
  135. package/components/navigation/header/NavCard.vue +41 -41
  136. package/components/navigation/header/NavList.vue +131 -131
  137. package/components/navigation/header/NotificationsMenu.vue +51 -51
  138. package/components/navigation/header/ProductMenu.vue +143 -143
  139. package/components/navigation/header/ProfileMenu.vue +194 -194
  140. package/components/navigation/header/TopHeader.vue +194 -194
  141. package/components/navigation/header/types.ts +28 -28
  142. package/components/navigation/line-tabs/ALineTabs.vue +111 -111
  143. package/components/navigation/line-tabs/types.ts +21 -21
  144. package/components/navigation/mobile-navigation/AMobileNavigation.vue +104 -104
  145. package/components/navigation/pill-tabs/APillTabs.vue +171 -171
  146. package/components/navigation/pill-tabs/types.ts +23 -23
  147. package/components/navigation/side-navigation/ASideNavigation.vue +406 -406
  148. package/components/overlays/README.md +1 -1
  149. package/components/overlays/modal/AModal.vue +332 -332
  150. package/components/overlays/side-panel/ASidePanel.vue +439 -439
  151. package/components/overlays/sideover/ASlideover.vue +351 -351
  152. package/components/overlays/tooltip/ATooltip.vue +237 -237
  153. package/components/transitions/ATransitionHeight.vue +67 -67
  154. package/components/utils/index.ts +19 -19
  155. package/components/utils/removeTrailingSlash.ts +7 -7
  156. package/composables/highlight.ts +18 -18
  157. package/composables/modalsState.ts +8 -8
  158. package/composables/projectState.ts +2 -2
  159. package/composables/useAdaptive.ts +46 -46
  160. package/composables/useBuyTariffs.ts +91 -91
  161. package/composables/useCarouselScroll.ts +49 -49
  162. package/composables/useHeaderNavigationLinks.ts +453 -453
  163. package/composables/useIdModals.ts +36 -36
  164. package/composables/usePayment.ts +74 -74
  165. package/composables/useUIValidation.ts +16 -16
  166. package/composables/useUrls.ts +21 -21
  167. package/eslint.config.mjs +45 -45
  168. package/i18n/i18n.config.ts +21 -21
  169. package/i18n.config.ts +21 -21
  170. package/icons/adata-logo.vue +17 -17
  171. package/icons/ai-assistant.vue +13 -13
  172. package/icons/akimat.vue +20 -20
  173. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -5
  174. package/icons/arrow/arrow-circle-down.vue +16 -16
  175. package/icons/arrow/arrow-circle-reset.vue +16 -16
  176. package/icons/arrow/arrow-corner.vue +9 -9
  177. package/icons/arrow/arrow-graph-down.vue +13 -13
  178. package/icons/arrow/arrow-graph-up.vue +14 -14
  179. package/icons/arrow/arrow-square-down.vue +15 -15
  180. package/icons/arrow/arrow-top-right-on-square.vue +6 -6
  181. package/icons/arrow-currency-gray.vue +5 -5
  182. package/icons/arrow-currency-green.vue +5 -5
  183. package/icons/arrow-currency-red.vue +5 -5
  184. package/icons/arrow-side-up.vue +6 -6
  185. package/icons/avatar.vue +12 -12
  186. package/icons/bank.vue +5 -5
  187. package/icons/block.vue +16 -16
  188. package/icons/bookmark/bookmark-filled.vue +18 -18
  189. package/icons/bookmark/bookmark.vue +5 -5
  190. package/icons/browsers/browser-duck.vue +65 -65
  191. package/icons/browsers/browser-google.vue +30 -30
  192. package/icons/browsers/browser-yandex.vue +13 -13
  193. package/icons/building-vector.vue +7 -7
  194. package/icons/calculator.vue +7 -7
  195. package/icons/calendar.vue +24 -24
  196. package/icons/car.vue +7 -7
  197. package/icons/chart-bar.vue +5 -5
  198. package/icons/chart-pie.vue +16 -16
  199. package/icons/check/check-circle.vue +6 -6
  200. package/icons/check/check-shield.vue +14 -14
  201. package/icons/check/check.vue +17 -17
  202. package/icons/check/checkmark-circle.vue +6 -6
  203. package/icons/check-sb.vue +7 -7
  204. package/icons/checkbox/checkbox-active.vue +17 -17
  205. package/icons/checkbox/checkbox-empty.vue +10 -10
  206. package/icons/checkbox/checkbox-intermediate.vue +7 -7
  207. package/icons/chevron/chevron-down.vue +5 -5
  208. package/icons/chevron/chevron-left.vue +5 -5
  209. package/icons/chevron/chevron-right.vue +5 -5
  210. package/icons/chevron/chevron-up.vue +5 -5
  211. package/icons/chevron/double-chevron-right.vue +12 -12
  212. package/icons/clipboard-text.vue +7 -7
  213. package/icons/clock.vue +25 -25
  214. package/icons/close.vue +16 -16
  215. package/icons/company/company-bazis.vue +21 -21
  216. package/icons/company/company-bereke.vue +25 -25
  217. package/icons/company/company-bigroup.vue +16 -16
  218. package/icons/company/company-erg.vue +17 -17
  219. package/icons/company/company-forte.vue +21 -21
  220. package/icons/company/company-halyk.vue +15 -15
  221. package/icons/company/company-jusan.vue +31 -31
  222. package/icons/company/company-kaspi.vue +14 -14
  223. package/icons/company/company-mycar.vue +13 -13
  224. package/icons/company/company-samruk.vue +21 -21
  225. package/icons/company-egov-small.vue +15 -15
  226. package/icons/company.vue +8 -8
  227. package/icons/copy.vue +7 -7
  228. package/icons/currency/currency-dollar.vue +16 -16
  229. package/icons/currency/currency-down.vue +22 -22
  230. package/icons/currency/currency-eur.vue +57 -57
  231. package/icons/currency/currency-rub.vue +7 -7
  232. package/icons/currency/currency-tenge.vue +9 -9
  233. package/icons/currency/currency-usd.vue +221 -221
  234. package/icons/currency/currency-yuan.vue +25 -25
  235. package/icons/default-avatar.vue +20 -20
  236. package/icons/delete.vue +7 -7
  237. package/icons/document.vue +5 -5
  238. package/icons/download.vue +11 -11
  239. package/icons/edit.vue +7 -7
  240. package/icons/education.vue +16 -16
  241. package/icons/egov-small.vue +7 -7
  242. package/icons/excel-icon.vue +14 -14
  243. package/icons/expand-window.vue +7 -7
  244. package/icons/eye-closed.vue +26 -26
  245. package/icons/eye-open.vue +7 -7
  246. package/icons/eye-opened.vue +23 -23
  247. package/icons/file/file.vue +16 -16
  248. package/icons/file/files.vue +16 -16
  249. package/icons/filter.vue +5 -5
  250. package/icons/flag.vue +7 -7
  251. package/icons/gift.vue +8 -8
  252. package/icons/globe.vue +16 -16
  253. package/icons/google.vue +41 -41
  254. package/icons/graph-pie.vue +14 -14
  255. package/icons/hand/hand-thumb-up-filled.vue +5 -5
  256. package/icons/hand/hand-thumb-up.vue +5 -5
  257. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -52
  258. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -52
  259. package/icons/handshake.vue +5 -5
  260. package/icons/hcheck.vue +14 -14
  261. package/icons/hdocument.vue +7 -7
  262. package/icons/history.vue +5 -5
  263. package/icons/horizontal-more.vue +13 -13
  264. package/icons/hot-line.vue +6 -6
  265. package/icons/hummer.vue +16 -16
  266. package/icons/id.vue +7 -7
  267. package/icons/info/info-circle.vue +29 -29
  268. package/icons/invoice.vue +7 -7
  269. package/icons/judge.vue +14 -14
  270. package/icons/kaspi-qr.vue +13 -13
  271. package/icons/link-chain.vue +28 -28
  272. package/icons/link.vue +7 -7
  273. package/icons/linkedin.vue +24 -24
  274. package/icons/loader-circle.vue +27 -27
  275. package/icons/location.vue +8 -8
  276. package/icons/lock.vue +5 -5
  277. package/icons/logo.vue +15 -15
  278. package/icons/logout.vue +16 -16
  279. package/icons/magnify/magnifying-glass-minus.vue +8 -8
  280. package/icons/magnify/magnifying-glass-plus.vue +9 -9
  281. package/icons/magnify/magnifying-glass.vue +9 -9
  282. package/icons/mail.vue +7 -7
  283. package/icons/mailru.vue +34 -34
  284. package/icons/main-filter.vue +5 -5
  285. package/icons/map/map-pin-filled.vue +7 -7
  286. package/icons/map/map-pin-rect.vue +15 -15
  287. package/icons/map/map-pin.vue +7 -7
  288. package/icons/map-marker-start.vue +7 -7
  289. package/icons/map-paper.vue +5 -5
  290. package/icons/medal.vue +7 -7
  291. package/icons/menu-filled.vue +20 -20
  292. package/icons/menu.vue +8 -8
  293. package/icons/message/message.vue +12 -12
  294. package/icons/minus/minus-circle.vue +10 -10
  295. package/icons/money.vue +5 -5
  296. package/icons/monitoring.vue +10 -10
  297. package/icons/moon.vue +8 -8
  298. package/icons/more.vue +29 -29
  299. package/icons/note-pencil.vue +14 -14
  300. package/icons/note.vue +14 -14
  301. package/icons/notification.vue +16 -16
  302. package/icons/paperclip.vue +7 -7
  303. package/icons/payment/payment-card.vue +6 -6
  304. package/icons/payment/payment-kaspi.vue +11 -11
  305. package/icons/person-vector.vue +7 -7
  306. package/icons/person-with-briefcase.vue +10 -10
  307. package/icons/phone-filled.vue +5 -5
  308. package/icons/phone.vue +7 -7
  309. package/icons/plus/plus-circle.vue +8 -8
  310. package/icons/plus/plus.vue +13 -13
  311. package/icons/profile.vue +5 -5
  312. package/icons/radio/radio-check.vue +8 -8
  313. package/icons/radio/radio-empty.vue +10 -10
  314. package/icons/receipt.vue +8 -8
  315. package/icons/robot.vue +14 -14
  316. package/icons/sanctions.vue +8 -8
  317. package/icons/scales/scale.vue +16 -16
  318. package/icons/scales/scales.vue +5 -5
  319. package/icons/scales/standing-scales.vue +15 -15
  320. package/icons/search.vue +27 -27
  321. package/icons/share/share-alt.vue +5 -5
  322. package/icons/share/share.vue +14 -14
  323. package/icons/ship.vue +8 -8
  324. package/icons/socials/face-book.vue +15 -15
  325. package/icons/socials/instagram.vue +19 -19
  326. package/icons/socials/telegram.vue +15 -15
  327. package/icons/socials/tik-tok.vue +15 -15
  328. package/icons/socials/youtube.vue +16 -16
  329. package/icons/sort/sort-asc.vue +15 -15
  330. package/icons/sort/sort-desc.vue +15 -15
  331. package/icons/splitting-arrows.vue +8 -8
  332. package/icons/star/star-filled.vue +40 -40
  333. package/icons/star/star-half-filled.vue +20 -20
  334. package/icons/star/star.vue +25 -25
  335. package/icons/sun.vue +14 -14
  336. package/icons/sviazi.vue +5 -5
  337. package/icons/tag.vue +30 -30
  338. package/icons/tasks.vue +10 -10
  339. package/icons/tender-search.vue +11 -11
  340. package/icons/toasts/check-circle-toast.vue +6 -6
  341. package/icons/toasts/warning-triangle-toast.vue +7 -7
  342. package/icons/trash.vue +13 -13
  343. package/icons/triangle.vue +10 -10
  344. package/icons/truck.vue +7 -7
  345. package/icons/user-square.vue +14 -14
  346. package/icons/user.vue +22 -22
  347. package/icons/users-focus.vue +8 -8
  348. package/icons/users-three.vue +7 -7
  349. package/icons/users.vue +8 -8
  350. package/icons/warning/warning-circle.vue +29 -29
  351. package/icons/warning/warning-triangle-filled.vue +12 -12
  352. package/icons/warning/warning-triangle.vue +28 -28
  353. package/icons/whatsapp.vue +8 -8
  354. package/icons/work-bag.vue +11 -11
  355. package/icons/work-case.vue +9 -9
  356. package/icons/work-search.vue +10 -10
  357. package/icons/work.vue +5 -5
  358. package/icons/x-mark.vue +15 -15
  359. package/icons/yandex.vue +28 -28
  360. package/illustrations/address-location.vue +38 -38
  361. package/illustrations/ball-with-chain.vue +120 -120
  362. package/illustrations/bill.vue +133 -133
  363. package/illustrations/buildings.vue +82 -82
  364. package/illustrations/calendar.vue +156 -156
  365. package/illustrations/chains.vue +152 -152
  366. package/illustrations/coin-percent.vue +126 -126
  367. package/illustrations/coins-stack.vue +202 -202
  368. package/illustrations/delete-dark.vue +31 -31
  369. package/illustrations/delete.vue +32 -32
  370. package/illustrations/doc-with-stamp.vue +126 -126
  371. package/illustrations/document.vue +64 -64
  372. package/illustrations/door.vue +74 -74
  373. package/illustrations/empty-box.vue +77 -77
  374. package/illustrations/empty-wallet.vue +161 -161
  375. package/illustrations/graph-in-coin.vue +119 -119
  376. package/illustrations/hammer.vue +156 -156
  377. package/illustrations/hand-cash.vue +108 -108
  378. package/illustrations/info.vue +39 -39
  379. package/illustrations/mail.vue +68 -68
  380. package/illustrations/ok.vue +62 -62
  381. package/illustrations/people-group.vue +237 -237
  382. package/illustrations/person-with-phone.vue +187 -187
  383. package/illustrations/person.vue +159 -159
  384. package/illustrations/phone-check.vue +90 -90
  385. package/illustrations/phone-payment-method.vue +223 -223
  386. package/illustrations/stop-hand.vue +77 -77
  387. package/illustrations/stop-sign.vue +34 -34
  388. package/illustrations/suit.vue +111 -111
  389. package/illustrations/suitcase.vue +105 -105
  390. package/illustrations/terminal-dark.vue +48 -48
  391. package/illustrations/terminal.vue +234 -234
  392. package/illustrations/trash-can.vue +108 -108
  393. package/illustrations/turn-on-tariff.vue +38 -38
  394. package/illustrations/two-persons.vue +169 -169
  395. package/lang/en.ts +834 -834
  396. package/lang/kk.ts +836 -836
  397. package/lang/ru.ts +837 -837
  398. package/layouts/default.vue +13 -13
  399. package/nuxt.config.ts +88 -88
  400. package/package.json +69 -69
  401. package/plugins/maska.ts +4 -4
  402. package/plugins/toast.client.ts +58 -58
  403. package/public/kaspi/logo.svg +4 -4
  404. package/shared/constans/pages.ts +89 -89
  405. package/tailwind.config.ts +163 -163
  406. package/tests/AButton.test.ts +81 -81
  407. package/tsconfig.json +6 -6
  408. package/utils/getMaxZindex.ts +25 -25
  409. package/utils/localizedNavigation.ts +36 -36
  410. package/vitest.config.ts +14 -14
package/icons/ship.vue CHANGED
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- d="M27.6325 13.8287L26 13.2837V7C26 6.46957 25.7893 5.96086 25.4142 5.58579C25.0391 5.21071 24.5304 5 24 5H17V3C17 2.73478 16.8946 2.48043 16.7071 2.29289C16.5196 2.10536 16.2652 2 16 2C15.7348 2 15.4804 2.10536 15.2929 2.29289C15.1054 2.48043 15 2.73478 15 3V5H8C7.46957 5 6.96086 5.21071 6.58579 5.58579C6.21072 5.96086 6 6.46957 6 7V13.2837L4.3675 13.8287C3.96906 13.9616 3.62255 14.2165 3.3771 14.5573C3.13164 14.8981 2.99971 15.3075 3 15.7275V20.0125C2.99973 20.1051 3.01278 20.1973 3.03875 20.2862C5.00375 27.1725 13.8038 29.5437 15.5475 29.9487C15.8453 30.0171 16.1547 30.0171 16.4525 29.9487C18.1963 29.5437 26.9963 27.1725 28.9613 20.2862C28.9872 20.1973 29.0003 20.1051 29 20.0125V15.7275C29.0003 15.3075 28.8684 14.8981 28.6229 14.5573C28.3775 14.2165 28.0309 13.9616 27.6325 13.8287ZM8 7H24V12.6163L16.3163 10.0513C16.111 9.98282 15.889 9.98282 15.6838 10.0513L8 12.6163V7ZM27 19.8675C26.2775 22.2425 24.4313 24.2638 21.5063 25.8825C19.7707 26.8247 17.9197 27.5365 16 28C14.0825 27.536 12.2336 26.8242 10.5 25.8825C7.57 24.2638 5.7225 22.2413 5 19.8675V15.7262L15 12.3888V21C15 21.2652 15.1054 21.5196 15.2929 21.7071C15.4804 21.8946 15.7348 22 16 22C16.2652 22 16.5196 21.8946 16.7071 21.7071C16.8946 21.5196 17 21.2652 17 21V12.3888L27 15.7275V19.8675Z"
5
- fill="currentColor"
6
- />
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M27.6325 13.8287L26 13.2837V7C26 6.46957 25.7893 5.96086 25.4142 5.58579C25.0391 5.21071 24.5304 5 24 5H17V3C17 2.73478 16.8946 2.48043 16.7071 2.29289C16.5196 2.10536 16.2652 2 16 2C15.7348 2 15.4804 2.10536 15.2929 2.29289C15.1054 2.48043 15 2.73478 15 3V5H8C7.46957 5 6.96086 5.21071 6.58579 5.58579C6.21072 5.96086 6 6.46957 6 7V13.2837L4.3675 13.8287C3.96906 13.9616 3.62255 14.2165 3.3771 14.5573C3.13164 14.8981 2.99971 15.3075 3 15.7275V20.0125C2.99973 20.1051 3.01278 20.1973 3.03875 20.2862C5.00375 27.1725 13.8038 29.5437 15.5475 29.9487C15.8453 30.0171 16.1547 30.0171 16.4525 29.9487C18.1963 29.5437 26.9963 27.1725 28.9613 20.2862C28.9872 20.1973 29.0003 20.1051 29 20.0125V15.7275C29.0003 15.3075 28.8684 14.8981 28.6229 14.5573C28.3775 14.2165 28.0309 13.9616 27.6325 13.8287ZM8 7H24V12.6163L16.3163 10.0513C16.111 9.98282 15.889 9.98282 15.6838 10.0513L8 12.6163V7ZM27 19.8675C26.2775 22.2425 24.4313 24.2638 21.5063 25.8825C19.7707 26.8247 17.9197 27.5365 16 28C14.0825 27.536 12.2336 26.8242 10.5 25.8825C7.57 24.2638 5.7225 22.2413 5 19.8675V15.7262L15 12.3888V21C15 21.2652 15.1054 21.5196 15.2929 21.7071C15.4804 21.8946 15.7348 22 16 22C16.2652 22 16.5196 21.8946 16.7071 21.7071C16.8946 21.5196 17 21.2652 17 21V12.3888L27 15.7275V19.8675Z"
5
+ fill="currentColor"
6
+ />
7
+ </svg>
8
+ </template>
@@ -1,15 +1,15 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <circle cx="14" cy="14" r="14" fill="white"/>
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
- </svg>
10
-
11
- </template>
12
-
13
- <style scoped>
14
-
15
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <circle cx="14" cy="14" r="14" fill="white"/>
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
+ </svg>
10
+
11
+ </template>
12
+
13
+ <style scoped>
14
+
15
+ </style>
@@ -1,19 +1,19 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <rect width="28" height="28" rx="14" fill="white"/>
8
- <g class="logo" fill="#2C3E50">
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" />
10
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14 18.375C16.4162 18.375 18.375 16.4162 18.375 14C18.375 11.5838 16.4162 9.625 14 9.625C11.5838 9.625 9.625 11.5838 9.625 14C9.625 16.4162 11.5838 18.375 14 18.375ZM14 16.625C15.4497 16.625 16.625 15.4497 16.625 14C16.625 12.5503 15.4497 11.375 14 11.375C12.5503 11.375 11.375 12.5503 11.375 14C11.375 15.4497 12.5503 16.625 14 16.625Z" />
11
- <path fill-rule="evenodd" clip-rule="evenodd" d="M5.25 13.65C5.25 10.7097 5.25 9.23959 5.82222 8.11655C6.32555 7.1287 7.1287 6.32555 8.11655 5.82222C9.23959 5.25 10.7097 5.25 13.65 5.25H14.35C17.2903 5.25 18.7604 5.25 19.8835 5.82222C20.8713 6.32555 21.6744 7.1287 22.1778 8.11655C22.75 9.23959 22.75 10.7097 22.75 13.65V14.35C22.75 17.2903 22.75 18.7604 22.1778 19.8835C21.6744 20.8713 20.8713 21.6744 19.8835 22.1778C18.7604 22.75 17.2903 22.75 14.35 22.75H13.65C10.7097 22.75 9.23959 22.75 8.11655 22.1778C7.1287 21.6744 6.32555 20.8713 5.82222 19.8835C5.25 18.7604 5.25 17.2903 5.25 14.35V13.65ZM13.65 7H14.35C15.849 7 16.868 7.00136 17.6557 7.06572C18.4229 7.1284 18.8153 7.24202 19.089 7.38148C19.7475 7.71703 20.283 8.25247 20.6185 8.91103C20.758 9.18473 20.8716 9.57709 20.9343 10.3443C20.9986 11.132 21 12.151 21 13.65V14.35C21 15.849 20.9986 16.868 20.9343 17.6557C20.8716 18.4229 20.758 18.8153 20.6185 19.089C20.283 19.7475 19.7475 20.283 19.089 20.6185C18.8153 20.758 18.4229 20.8716 17.6557 20.9343C16.868 20.9986 15.849 21 14.35 21H13.65C12.151 21 11.132 20.9986 10.3443 20.9343C9.57709 20.8716 9.18473 20.758 8.91103 20.6185C8.25247 20.283 7.71703 19.7475 7.38148 19.089C7.24202 18.8153 7.1284 18.4229 7.06572 17.6557C7.00136 16.868 7 15.849 7 14.35V13.65C7 12.151 7.00136 11.132 7.06572 10.3443C7.1284 9.57709 7.24202 9.18473 7.38148 8.91103C7.71703 8.25247 8.25247 7.71703 8.91103 7.38148C9.18473 7.24202 9.57709 7.1284 10.3443 7.06572C11.132 7.00136 12.151 7 13.65 7Z" />
12
- </g>
13
- </svg>
14
-
15
- </template>
16
-
17
- <style scoped>
18
-
19
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <rect width="28" height="28" rx="14" fill="white"/>
8
+ <g class="logo" fill="#2C3E50">
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" />
10
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14 18.375C16.4162 18.375 18.375 16.4162 18.375 14C18.375 11.5838 16.4162 9.625 14 9.625C11.5838 9.625 9.625 11.5838 9.625 14C9.625 16.4162 11.5838 18.375 14 18.375ZM14 16.625C15.4497 16.625 16.625 15.4497 16.625 14C16.625 12.5503 15.4497 11.375 14 11.375C12.5503 11.375 11.375 12.5503 11.375 14C11.375 15.4497 12.5503 16.625 14 16.625Z" />
11
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.25 13.65C5.25 10.7097 5.25 9.23959 5.82222 8.11655C6.32555 7.1287 7.1287 6.32555 8.11655 5.82222C9.23959 5.25 10.7097 5.25 13.65 5.25H14.35C17.2903 5.25 18.7604 5.25 19.8835 5.82222C20.8713 6.32555 21.6744 7.1287 22.1778 8.11655C22.75 9.23959 22.75 10.7097 22.75 13.65V14.35C22.75 17.2903 22.75 18.7604 22.1778 19.8835C21.6744 20.8713 20.8713 21.6744 19.8835 22.1778C18.7604 22.75 17.2903 22.75 14.35 22.75H13.65C10.7097 22.75 9.23959 22.75 8.11655 22.1778C7.1287 21.6744 6.32555 20.8713 5.82222 19.8835C5.25 18.7604 5.25 17.2903 5.25 14.35V13.65ZM13.65 7H14.35C15.849 7 16.868 7.00136 17.6557 7.06572C18.4229 7.1284 18.8153 7.24202 19.089 7.38148C19.7475 7.71703 20.283 8.25247 20.6185 8.91103C20.758 9.18473 20.8716 9.57709 20.9343 10.3443C20.9986 11.132 21 12.151 21 13.65V14.35C21 15.849 20.9986 16.868 20.9343 17.6557C20.8716 18.4229 20.758 18.8153 20.6185 19.089C20.283 19.7475 19.7475 20.283 19.089 20.6185C18.8153 20.758 18.4229 20.8716 17.6557 20.9343C16.868 20.9986 15.849 21 14.35 21H13.65C12.151 21 11.132 20.9986 10.3443 20.9343C9.57709 20.8716 9.18473 20.758 8.91103 20.6185C8.25247 20.283 7.71703 19.7475 7.38148 19.089C7.24202 18.8153 7.1284 18.4229 7.06572 17.6557C7.00136 16.868 7 15.849 7 14.35V13.65C7 12.151 7.00136 11.132 7.06572 10.3443C7.1284 9.57709 7.24202 9.18473 7.38148 8.91103C7.71703 8.25247 8.25247 7.71703 8.91103 7.38148C9.18473 7.24202 9.57709 7.1284 10.3443 7.06572C11.132 7.00136 12.151 7 13.65 7Z" />
12
+ </g>
13
+ </svg>
14
+
15
+ </template>
16
+
17
+ <style scoped>
18
+
19
+ </style>
@@ -1,15 +1,15 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <circle cx="14" cy="14" r="12.25" fill="white"/>
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
- </svg>
10
-
11
- </template>
12
-
13
- <style scoped>
14
-
15
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <circle cx="14" cy="14" r="12.25" fill="white"/>
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
+ </svg>
10
+
11
+ </template>
12
+
13
+ <style scoped>
14
+
15
+ </style>
@@ -1,15 +1,15 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <circle cx="14" cy="14" r="14" fill="white"/>
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
- </svg>
10
-
11
- </template>
12
-
13
- <style scoped>
14
-
15
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <circle cx="14" cy="14" r="14" fill="white"/>
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
+ </svg>
10
+
11
+ </template>
12
+
13
+ <style scoped>
14
+
15
+ </style>
@@ -1,16 +1,16 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <rect width="28" height="28" rx="14" fill="white"/>
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
- <path d="M12.1626 11.5498V16.4498L17.0626 13.9998L12.1626 11.5498Z" fill="white"/>
10
- </svg>
11
-
12
- </template>
13
-
14
- <style scoped>
15
-
16
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <rect width="28" height="28" rx="14" fill="white"/>
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
+ <path d="M12.1626 11.5498V16.4498L17.0626 13.9998L12.1626 11.5498Z" fill="white"/>
10
+ </svg>
11
+
12
+ </template>
13
+
14
+ <style scoped>
15
+
16
+ </style>
@@ -1,15 +1,15 @@
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 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
- <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
- <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"/>
10
- </svg>
11
- </template>
12
-
13
- <style scoped>
14
-
15
- </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 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
+ <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
+ <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"/>
10
+ </svg>
11
+ </template>
12
+
13
+ <style scoped>
14
+
15
+ </style>
@@ -1,15 +1,15 @@
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 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
- <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
- <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"/>
10
- </svg>
11
- </template>
12
-
13
- <style scoped>
14
-
15
- </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 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
+ <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
+ <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"/>
10
+ </svg>
11
+ </template>
12
+
13
+ <style scoped>
14
+
15
+ </style>
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path
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
- fill="currentColor"
6
- />
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
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
+ fill="currentColor"
6
+ />
7
+ </svg>
8
+ </template>
@@ -1,40 +1,40 @@
1
- <script setup lang="ts">
2
- defineProps<{id?:string}>()
3
- </script>
4
-
5
- <template>
6
- <svg
7
- width="16"
8
- height="16"
9
- viewBox="0 0 16 16"
10
- fill="none"
11
- xmlns="http://www.w3.org/2000/svg"
12
- >
13
- <path
14
- fill-rule="evenodd"
15
- clip-rule="evenodd"
16
- 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"
17
- :fill="`url(#paint0_linear_572_29334${id})`"
18
- />
19
- <defs>
20
- <linearGradient
21
- :id="`paint0_linear_572_29334${id}`"
22
- x1="8.52028"
23
- y1="-8.70687"
24
- x2="-4.22606"
25
- y2="0.201872"
26
- gradientUnits="userSpaceOnUse"
27
- >
28
- <stop stop-color="#FFE364" />
29
- <stop
30
- offset="1"
31
- stop-color="#FBC920"
32
- />
33
- </linearGradient>
34
- </defs>
35
- </svg>
36
- </template>
37
-
38
- <style scoped>
39
-
40
- </style>
1
+ <script setup lang="ts">
2
+ defineProps<{id?:string}>()
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ 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"
17
+ :fill="`url(#paint0_linear_572_29334${id})`"
18
+ />
19
+ <defs>
20
+ <linearGradient
21
+ :id="`paint0_linear_572_29334${id}`"
22
+ x1="8.52028"
23
+ y1="-8.70687"
24
+ x2="-4.22606"
25
+ y2="0.201872"
26
+ gradientUnits="userSpaceOnUse"
27
+ >
28
+ <stop stop-color="#FFE364" />
29
+ <stop
30
+ offset="1"
31
+ stop-color="#FBC920"
32
+ />
33
+ </linearGradient>
34
+ </defs>
35
+ </svg>
36
+ </template>
37
+
38
+ <style scoped>
39
+
40
+ </style>
@@ -1,20 +1,20 @@
1
- <script setup lang="ts">
2
- defineProps<{id?:string}>()
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 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
- <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
- <defs>
10
- <linearGradient :id="`paint0_linear_572_29337${id}`" x1="4.76018" y1="-8.70687" x2="-3.69389" y2="-5.75246" gradientUnits="userSpaceOnUse">
11
- <stop stop-color="#FFE364"/>
12
- <stop offset="1" stop-color="#FBC920"/>
13
- </linearGradient>
14
- </defs>
15
- </svg>
16
- </template>
17
-
18
- <style scoped>
19
-
20
- </style>
1
+ <script setup lang="ts">
2
+ defineProps<{id?:string}>()
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 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
+ <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
+ <defs>
10
+ <linearGradient :id="`paint0_linear_572_29337${id}`" x1="4.76018" y1="-8.70687" x2="-3.69389" y2="-5.75246" gradientUnits="userSpaceOnUse">
11
+ <stop stop-color="#FFE364"/>
12
+ <stop offset="1" stop-color="#FBC920"/>
13
+ </linearGradient>
14
+ </defs>
15
+ </svg>
16
+ </template>
17
+
18
+ <style scoped>
19
+
20
+ </style>
@@ -1,25 +1,25 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg
7
- width="16"
8
- height="16"
9
- viewBox="0 0 16 16"
10
- fill="none"
11
- xmlns="http://www.w3.org/2000/svg"
12
- >
13
- <path
14
- fill-rule="evenodd"
15
- clip-rule="evenodd"
16
- 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"
17
- fill="currentColor"
18
- fill-opacity="0.1"
19
- />
20
- </svg>
21
- </template>
22
-
23
- <style scoped>
24
-
25
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ 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"
17
+ fill="currentColor"
18
+ fill-opacity="0.1"
19
+ />
20
+ </svg>
21
+ </template>
22
+
23
+ <style scoped>
24
+
25
+ </style>
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="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>
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
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
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
- </svg>
5
- </template>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
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
+ </svg>
5
+ </template>
package/icons/tag.vue CHANGED
@@ -1,30 +1,30 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg
7
- width="24"
8
- height="24"
9
- viewBox="0 0 24 24"
10
- fill="none"
11
- xmlns="http://www.w3.org/2000/svg"
12
- >
13
- <path
14
- fill-rule="evenodd"
15
- clip-rule="evenodd"
16
- d="M3.5167 9.5L14.424 20.4073C14.4835 20.4667 14.5642 20.5001 14.6482 20.5001C14.7323 20.5001 14.8129 20.4667 14.8724 20.4073L20.4073 14.8724C20.4667 14.8129 20.5001 14.7323 20.5001 14.6482C20.5001 14.5642 20.4667 14.4835 20.4073 14.424L9.5 3.5167L4.31538 4.31538L3.5167 9.5ZM15.9328 21.4683L21.4683 15.9328C21.8086 15.592 22.0001 15.1298 22.0001 14.6482C22.0001 14.1667 21.809 13.7048 21.4687 13.364L10.4872 2.3826C10.3585 2.25018 10.2024 2.14757 10.0296 2.08205C9.85369 2.01532 9.66506 1.98876 9.47754 2.00433C9.46009 2.00577 9.44269 2.00783 9.42539 2.0105L4.00426 2.84561C3.70637 2.87204 3.42665 3.00234 3.21449 3.21449C3.00234 3.42665 2.87204 3.70637 2.84561 4.00426L2.0105 9.42539C2.00783 9.44269 2.00577 9.46009 2.00433 9.47754C1.98876 9.66506 2.01532 9.85369 2.08205 10.0296C2.14757 10.2024 2.25018 10.3585 2.3826 10.4872L13.3637 21.4683C13.7044 21.8086 14.1667 22.0001 14.6482 22.0001C15.1298 22.0001 15.592 21.8086 15.9328 21.4683Z"
17
- fill="currentColor"
18
- />
19
- <path
20
- fill-rule="evenodd"
21
- clip-rule="evenodd"
22
- d="M7.10027 7.88876C7.10027 7.45329 7.45329 7.10027 7.88876 7.10027C8.32423 7.10027 8.67725 7.45329 8.67725 7.88876C8.67725 8.32423 8.32423 8.67725 7.88876 8.67725C7.45329 8.67725 7.10027 8.32423 7.10027 7.88876ZM7.88876 10.1003C9.11014 10.1003 10.1003 9.11014 10.1003 7.88876C10.1003 6.66738 9.11014 5.67725 7.88876 5.67725C6.66737 5.67725 5.67725 6.66737 5.67725 7.88876C5.67725 9.11014 6.66738 10.1003 7.88876 10.1003Z"
23
- fill="currentColor"
24
- />
25
- </svg>
26
- </template>
27
-
28
- <style scoped>
29
-
30
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="24"
8
+ height="24"
9
+ viewBox="0 0 24 24"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ d="M3.5167 9.5L14.424 20.4073C14.4835 20.4667 14.5642 20.5001 14.6482 20.5001C14.7323 20.5001 14.8129 20.4667 14.8724 20.4073L20.4073 14.8724C20.4667 14.8129 20.5001 14.7323 20.5001 14.6482C20.5001 14.5642 20.4667 14.4835 20.4073 14.424L9.5 3.5167L4.31538 4.31538L3.5167 9.5ZM15.9328 21.4683L21.4683 15.9328C21.8086 15.592 22.0001 15.1298 22.0001 14.6482C22.0001 14.1667 21.809 13.7048 21.4687 13.364L10.4872 2.3826C10.3585 2.25018 10.2024 2.14757 10.0296 2.08205C9.85369 2.01532 9.66506 1.98876 9.47754 2.00433C9.46009 2.00577 9.44269 2.00783 9.42539 2.0105L4.00426 2.84561C3.70637 2.87204 3.42665 3.00234 3.21449 3.21449C3.00234 3.42665 2.87204 3.70637 2.84561 4.00426L2.0105 9.42539C2.00783 9.44269 2.00577 9.46009 2.00433 9.47754C1.98876 9.66506 2.01532 9.85369 2.08205 10.0296C2.14757 10.2024 2.25018 10.3585 2.3826 10.4872L13.3637 21.4683C13.7044 21.8086 14.1667 22.0001 14.6482 22.0001C15.1298 22.0001 15.592 21.8086 15.9328 21.4683Z"
17
+ fill="currentColor"
18
+ />
19
+ <path
20
+ fill-rule="evenodd"
21
+ clip-rule="evenodd"
22
+ d="M7.10027 7.88876C7.10027 7.45329 7.45329 7.10027 7.88876 7.10027C8.32423 7.10027 8.67725 7.45329 8.67725 7.88876C8.67725 8.32423 8.32423 8.67725 7.88876 8.67725C7.45329 8.67725 7.10027 8.32423 7.10027 7.88876ZM7.88876 10.1003C9.11014 10.1003 10.1003 9.11014 10.1003 7.88876C10.1003 6.66738 9.11014 5.67725 7.88876 5.67725C6.66737 5.67725 5.67725 6.66737 5.67725 7.88876C5.67725 9.11014 6.66738 10.1003 7.88876 10.1003Z"
23
+ fill="currentColor"
24
+ />
25
+ </svg>
26
+ </template>
27
+
28
+ <style scoped>
29
+
30
+ </style>