adata-ui 0.3.98 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (535) hide show
  1. package/-error.vue +170 -0
  2. package/.editorconfig +12 -0
  3. package/.eslintrc.cjs +4 -0
  4. package/.gitlab-ci.yml +16 -0
  5. package/.nuxtrc +1 -0
  6. package/.nvmrc +1 -0
  7. package/.playground/app.config.ts +5 -0
  8. package/.playground/nuxt.config.ts +4 -0
  9. package/.prettierignore +24 -0
  10. package/.prettierrc +10 -0
  11. package/README.md +75 -7
  12. package/app.config.ts +27 -0
  13. package/app.vue +7 -0
  14. package/assets/img/adata-mobile.png +0 -0
  15. package/assets/img/analytics-mobile.png +0 -0
  16. package/assets/img/compliance-mobile.png +0 -0
  17. package/assets/img/empty-box.png +0 -0
  18. package/assets/img/fea-mobile.png +0 -0
  19. package/assets/img/fines-mobile.png +0 -0
  20. package/assets/img/pk-mobile.png +0 -0
  21. package/assets/img/tenders-mobile.png +0 -0
  22. package/assets/img/work-mobile.png +0 -0
  23. package/assets/styles/index.scss +101 -0
  24. package/assets/styles/modules/_base.scss +5 -0
  25. package/assets/styles/modules/_typography.scss +152 -0
  26. package/components/elements/README.md +1 -0
  27. package/components/elements/a-select-row/index.vue +140 -0
  28. package/components/elements/accordion/AAccordion.vue +196 -0
  29. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -0
  30. package/components/elements/accordion/AAccordionGroup/types.ts +20 -0
  31. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -0
  32. package/components/elements/accordion/types.ts +14 -0
  33. package/components/elements/accordion/ui.config.ts +22 -0
  34. package/components/elements/alert/AAlert.vue +65 -0
  35. package/components/elements/banner/ABanner.vue +49 -0
  36. package/components/elements/bg-block/ABgBlock.vue +11 -0
  37. package/components/elements/button/AButton.vue +188 -0
  38. package/components/elements/button/types.ts +24 -0
  39. package/components/elements/calendar/ACalendar.vue +83 -0
  40. package/components/elements/carousel/ACarousel.vue +159 -0
  41. package/components/elements/carousel/config.ui.ts +15 -0
  42. package/components/elements/carousel/types.ts +18 -0
  43. package/components/elements/chip-wrapper/AChipWrapper.vue +80 -0
  44. package/components/elements/chip-wrapper/types.ts +12 -0
  45. package/components/elements/chips/AChips.vue +32 -0
  46. package/components/elements/companies/AOurClients.vue +42 -0
  47. package/components/elements/curve-block/ACurveBlock.vue +196 -0
  48. package/components/elements/digit-badge/ADigitBadge.vue +83 -0
  49. package/components/elements/error-template/index.vue +48 -0
  50. package/components/elements/error-template/types.ts +23 -0
  51. package/components/elements/feature-description/AFeatureDescription.vue +112 -0
  52. package/components/elements/illustrations/noAccess.vue +62 -0
  53. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +55 -0
  54. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -0
  55. package/components/elements/leave-note/ALeaveNote.vue +77 -0
  56. package/components/elements/pagination/APagination.vue +110 -0
  57. package/components/elements/photos-animation/APhotosAnimation.vue +83 -0
  58. package/components/elements/select/ASelect.vue +389 -0
  59. package/components/elements/select/ASelectMobile.vue +186 -0
  60. package/components/elements/select/ui/select-button.vue +112 -0
  61. package/components/elements/select/ui/select-list.vue +99 -0
  62. package/components/elements/show-more/AShowMore.vue +35 -0
  63. package/components/elements/skeleton/ASkeleton.vue +44 -0
  64. package/components/elements/star-rating/AStarRating.vue +181 -0
  65. package/components/elements/star-rating/types.ts +8 -0
  66. package/components/elements/star-rating/ui/Star.vue +74 -0
  67. package/components/elements/status-badge/AStatusBadge.vue +74 -0
  68. package/components/elements/table/ATable.vue +93 -0
  69. package/components/elements/table/table.config.ts +32 -0
  70. package/components/elements/tree-select/ATreeSelect.vue +169 -0
  71. package/components/elements/tree-select/TreeService.ts +249 -0
  72. package/components/elements/tree-select/components/tree-select-nodes.vue +90 -0
  73. package/components/elements/tree-select/types.ts +34 -0
  74. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -0
  75. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -0
  76. package/components/features/color-mode/AColorMode.client.vue +53 -0
  77. package/components/features/dropdown/ADropdown.vue +124 -0
  78. package/components/features/go-top/GoTop.vue +58 -0
  79. package/components/features/lang-switcher/lang-switcher.vue +56 -0
  80. package/components/features/pk-mobile-services/APkMobileServices.vue +130 -0
  81. package/components/features//321/201hange-version/AChangeVersion.vue +20 -0
  82. package/components/forms/README.md +1 -0
  83. package/components/forms/checkbox/ACheckbox.vue +151 -0
  84. package/components/forms/feedback-form/FeedbackForm.vue +171 -0
  85. package/components/forms/input/button/AInputButton.vue +53 -0
  86. package/components/forms/input/date/AInputDate.vue +213 -0
  87. package/components/forms/input/password/AInputPassword.vue +53 -0
  88. package/components/forms/input/standard/AInputStandard.vue +412 -0
  89. package/components/forms/input/textarea/ATextarea.vue +200 -0
  90. package/components/forms/radio-button/ARadioButton.vue +87 -0
  91. package/components/forms/request-demo/ARequestDemo.vue +90 -0
  92. package/components/forms/toggle/AToggle.vue +157 -0
  93. package/components/forms/toggle/types.ts +16 -0
  94. package/components/modals/AboutTariffModal.vue +113 -0
  95. package/components/modals/AnotherDeviceModal.vue +59 -0
  96. package/components/modals/ApplicationAcceptedModal.vue +47 -0
  97. package/components/modals/AuthModal.vue +50 -0
  98. package/components/modals/ConnectingTariffModal.vue +68 -0
  99. package/components/modals/ContactsMobileModel.vue +182 -0
  100. package/components/modals/ContentNavigationModal.vue +282 -0
  101. package/components/modals/Insufficient-funds-modal.vue +74 -0
  102. package/components/modals/LimitReachedModal.vue +29 -0
  103. package/components/modals/NoAccessModal.vue +37 -0
  104. package/components/modals/PaymentMethodModal.vue +101 -0
  105. package/components/modals/RedirectsBanksModal.vue +69 -0
  106. package/components/modals/ReplenishModal.vue +132 -0
  107. package/components/modals/ReportBugConfirmModal.vue +30 -0
  108. package/components/modals/ReportBugModal.vue +156 -0
  109. package/components/modals/SubmitApplicationModal.vue +111 -0
  110. package/components/navigation/README.md +1 -0
  111. package/components/navigation/bottom-navigation/ABottomNavigation.vue +101 -0
  112. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +66 -0
  113. package/components/navigation/breadcrumbs/types.ts +4 -0
  114. package/components/navigation/footer/AFooter.vue +126 -0
  115. package/components/navigation/footer/NewFooter.vue +276 -0
  116. package/components/navigation/footer/ui/footer-acccordion.vue +119 -0
  117. package/components/navigation/footer/ui/new-footer-accordion.vue +120 -0
  118. package/components/navigation/header/AHeader.vue +187 -0
  119. package/components/navigation/header/AlmatyContacts.vue +143 -0
  120. package/components/navigation/header/AstanaContacts.vue +65 -0
  121. package/components/navigation/header/CardGallery.vue +248 -0
  122. package/components/navigation/header/ContactMenu.vue +114 -0
  123. package/components/navigation/header/HeaderLink.vue +247 -0
  124. package/components/navigation/header/ListItem.vue +31 -0
  125. package/components/navigation/header/NavCard.vue +41 -0
  126. package/components/navigation/header/NavList.vue +115 -0
  127. package/components/navigation/header/NotificationsMenu.vue +51 -0
  128. package/components/navigation/header/ProductMenu.vue +212 -0
  129. package/components/navigation/header/ProfileMenu.vue +189 -0
  130. package/components/navigation/header/TopHeader.vue +181 -0
  131. package/components/navigation/header/types.ts +28 -0
  132. package/components/navigation/line-tabs/ALineTabs.vue +111 -0
  133. package/components/navigation/line-tabs/types.ts +21 -0
  134. package/components/navigation/mobile-navigation/AMobileNavigation.vue +104 -0
  135. package/components/navigation/pill-tabs/APillTabs.vue +157 -0
  136. package/components/navigation/pill-tabs/types.ts +22 -0
  137. package/components/navigation/side-navigation/ASideNavigation.vue +404 -0
  138. package/components/overlays/README.md +1 -0
  139. package/components/overlays/modal/AModal.vue +332 -0
  140. package/components/overlays/sideover/ASlideover.vue +351 -0
  141. package/components/overlays/tooltip/ATooltip.vue +242 -0
  142. package/components/transitions/ATransitionHeight.vue +67 -0
  143. package/components/utils/index.ts +19 -0
  144. package/composables/highlight.ts +18 -0
  145. package/composables/modalsState.ts +8 -0
  146. package/composables/projectState.ts +2 -0
  147. package/composables/useAdaptive.ts +46 -0
  148. package/composables/useCarouselScroll.ts +49 -0
  149. package/composables/useHeaderNavigationLinks.ts +576 -0
  150. package/composables/useUIValidation.ts +16 -0
  151. package/histoire.config.ts +10 -0
  152. package/i18n/i18n.config.ts +21 -0
  153. package/i18n.config.ts +21 -0
  154. package/icons/adata-logo.vue +17 -0
  155. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -0
  156. package/icons/arrow/arrow-circle-down.vue +20 -0
  157. package/icons/arrow/arrow-circle-reset.vue +16 -0
  158. package/icons/arrow/arrow-corner.vue +9 -0
  159. package/icons/arrow/arrow-graph-down.vue +13 -0
  160. package/icons/arrow/arrow-graph-up.vue +14 -0
  161. package/icons/arrow/arrow-square-down.vue +15 -0
  162. package/icons/arrow/arrow-top-right-on-square.vue +6 -0
  163. package/icons/arrow-currency-gray.vue +5 -0
  164. package/icons/arrow-currency-green.vue +5 -0
  165. package/icons/arrow-currency-red.vue +5 -0
  166. package/icons/arrow-side-up.vue +6 -0
  167. package/icons/avatar.vue +12 -0
  168. package/icons/block.vue +16 -0
  169. package/icons/bookmark/bookmark-filled.vue +18 -0
  170. package/icons/bookmark/bookmark.vue +5 -0
  171. package/icons/browsers/browser-duck.vue +65 -0
  172. package/icons/browsers/browser-google.vue +24 -0
  173. package/icons/browsers/browser-yandex.vue +13 -0
  174. package/icons/building-vector.vue +7 -0
  175. package/icons/calculator.vue +7 -0
  176. package/icons/calendar.vue +24 -0
  177. package/icons/car.vue +7 -0
  178. package/icons/check/check-circle.vue +6 -0
  179. package/icons/check/check-shield.vue +14 -0
  180. package/icons/check/check.vue +17 -0
  181. package/icons/check/checkmark-circle.vue +6 -0
  182. package/icons/checkbox/checkbox-active.vue +17 -0
  183. package/icons/checkbox/checkbox-empty.vue +10 -0
  184. package/icons/checkbox/checkbox-intermediate.vue +7 -0
  185. package/icons/chevron/chevron-down.vue +5 -0
  186. package/icons/chevron/chevron-left.vue +5 -0
  187. package/icons/chevron/chevron-right.vue +5 -0
  188. package/icons/chevron/chevron-up.vue +5 -0
  189. package/icons/chevron/double-chevron-right.vue +12 -0
  190. package/icons/clipboard-text.vue +7 -0
  191. package/icons/clock.vue +9 -0
  192. package/icons/company/company-bazis.vue +21 -0
  193. package/icons/company/company-bereke.vue +25 -0
  194. package/icons/company/company-bigroup.vue +16 -0
  195. package/icons/company/company-erg.vue +17 -0
  196. package/icons/company/company-forte.vue +23 -0
  197. package/icons/company/company-halyk.vue +15 -0
  198. package/icons/company/company-jusan.vue +14 -0
  199. package/icons/company/company-kaspi.vue +14 -0
  200. package/icons/company/company-mycar.vue +13 -0
  201. package/icons/company/company-samruk.vue +21 -0
  202. package/icons/company-egov-small.vue +15 -0
  203. package/icons/company.vue +8 -0
  204. package/icons/copy.vue +7 -0
  205. package/icons/currency/currency-dollar.vue +16 -0
  206. package/icons/currency/currency-down.vue +22 -0
  207. package/icons/currency/currency-eur.vue +57 -0
  208. package/icons/currency/currency-rub.vue +7 -0
  209. package/icons/currency/currency-usd.vue +221 -0
  210. package/icons/currency/currency-yuan.vue +25 -0
  211. package/icons/delete.vue +7 -0
  212. package/icons/document.vue +5 -0
  213. package/icons/download.vue +11 -0
  214. package/icons/edit.vue +7 -0
  215. package/icons/education.vue +16 -0
  216. package/icons/egov-small.vue +7 -0
  217. package/icons/expand-window.vue +7 -0
  218. package/icons/eye-closed.vue +26 -0
  219. package/icons/eye-open.vue +7 -0
  220. package/icons/eye-opened.vue +23 -0
  221. package/icons/file/file.vue +16 -0
  222. package/icons/file/files.vue +16 -0
  223. package/icons/filter.vue +5 -0
  224. package/icons/flag.vue +7 -0
  225. package/icons/gift.vue +8 -0
  226. package/icons/globe.vue +16 -0
  227. package/icons/graph-pie.vue +14 -0
  228. package/icons/hand/hand-thumb-up-filled.vue +5 -0
  229. package/icons/hand/hand-thumb-up.vue +5 -0
  230. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -0
  231. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -0
  232. package/icons/handshake.vue +5 -0
  233. package/icons/hcheck.vue +14 -0
  234. package/icons/hdocument.vue +7 -0
  235. package/icons/history.vue +5 -0
  236. package/icons/horizontal-more.vue +13 -0
  237. package/icons/hummer.vue +16 -0
  238. package/icons/id.vue +7 -0
  239. package/icons/info/info-circle.vue +29 -0
  240. package/icons/invoice.vue +7 -0
  241. package/icons/judge.vue +14 -0
  242. package/icons/link-chain.vue +28 -0
  243. package/icons/link.vue +7 -0
  244. package/icons/linkedin.vue +24 -0
  245. package/icons/loader-circle.vue +27 -0
  246. package/icons/location.vue +8 -0
  247. package/icons/lock.vue +5 -0
  248. package/icons/logo.vue +15 -0
  249. package/icons/logout.vue +16 -0
  250. package/icons/magnify/magnifying-glass-minus.vue +8 -0
  251. package/icons/magnify/magnifying-glass-plus.vue +9 -0
  252. package/icons/magnify/magnifying-glass.vue +9 -0
  253. package/icons/mail.vue +7 -0
  254. package/icons/main-filter.vue +5 -0
  255. package/{dist/img/location.807c7100.svg → icons/map/map-pin-filled.vue} +7 -4
  256. package/icons/map/map-pin-rect.vue +15 -0
  257. package/{src/assets/location.svg → icons/map/map-pin.vue} +7 -4
  258. package/icons/map-marker-start.vue +7 -0
  259. package/icons/map-paper.vue +5 -0
  260. package/icons/medal.vue +7 -0
  261. package/icons/menu-filled.vue +20 -0
  262. package/icons/menu.vue +8 -0
  263. package/icons/message/message.vue +12 -0
  264. package/icons/minus/minus-circle.vue +10 -0
  265. package/icons/money.vue +5 -0
  266. package/icons/monitoring.vue +10 -0
  267. package/icons/moon.vue +8 -0
  268. package/icons/more.vue +29 -0
  269. package/icons/note-pencil.vue +14 -0
  270. package/icons/note.vue +14 -0
  271. package/icons/notification.vue +16 -0
  272. package/icons/paperclip.vue +7 -0
  273. package/icons/payment/payment-card.vue +6 -0
  274. package/icons/payment/payment-kaspi.vue +11 -0
  275. package/icons/person-vector.vue +7 -0
  276. package/icons/person-with-briefcase.vue +10 -0
  277. package/icons/phone-filled.vue +5 -0
  278. package/icons/phone.vue +7 -0
  279. package/icons/plus/plus-circle.vue +8 -0
  280. package/icons/plus/plus.vue +13 -0
  281. package/icons/profile.vue +5 -0
  282. package/icons/radio/radio-check.vue +8 -0
  283. package/icons/radio/radio-empty.vue +10 -0
  284. package/icons/receipt.vue +8 -0
  285. package/icons/robot.vue +14 -0
  286. package/icons/scales/scale.vue +16 -0
  287. package/icons/scales/scales.vue +5 -0
  288. package/icons/scales/standing-scales.vue +15 -0
  289. package/icons/search.vue +15 -0
  290. package/icons/share/share-alt.vue +5 -0
  291. package/icons/share/share.vue +14 -0
  292. package/icons/ship.vue +8 -0
  293. package/icons/socials/face-book.vue +15 -0
  294. package/icons/socials/instagram.vue +19 -0
  295. package/icons/socials/telegram.vue +15 -0
  296. package/icons/socials/tik-tok.vue +15 -0
  297. package/icons/socials/youtube.vue +16 -0
  298. package/icons/sort/sort-asc.vue +15 -0
  299. package/icons/sort/sort-desc.vue +15 -0
  300. package/icons/splitting-arrows.vue +8 -0
  301. package/icons/star/star-filled.vue +40 -0
  302. package/icons/star/star-half-filled.vue +20 -0
  303. package/icons/star/star.vue +25 -0
  304. package/icons/sun.vue +14 -0
  305. package/icons/sviazi.vue +5 -0
  306. package/icons/tag.vue +30 -0
  307. package/icons/tender-search.vue +11 -0
  308. package/icons/toasts/check-circle-toast.vue +6 -0
  309. package/icons/toasts/warning-triangle-toast.vue +7 -0
  310. package/icons/trash.vue +13 -0
  311. package/icons/triangle.vue +10 -0
  312. package/icons/truck.vue +7 -0
  313. package/icons/user-square.vue +14 -0
  314. package/icons/user.vue +22 -0
  315. package/icons/users-focus.vue +8 -0
  316. package/icons/users-three.vue +7 -0
  317. package/icons/users.vue +8 -0
  318. package/icons/warning/warning-circle.vue +29 -0
  319. package/icons/warning/warning-triangle-filled.vue +12 -0
  320. package/icons/warning/warning-triangle.vue +28 -0
  321. package/icons/whatsapp.vue +8 -0
  322. package/icons/work-bag.vue +11 -0
  323. package/icons/work-search.vue +10 -0
  324. package/icons/work.vue +5 -0
  325. package/icons/x-mark.vue +15 -0
  326. package/illustrations/address-location.vue +38 -0
  327. package/illustrations/ball-with-chain.vue +120 -0
  328. package/illustrations/bill.vue +133 -0
  329. package/illustrations/buildings.vue +82 -0
  330. package/illustrations/calendar.vue +156 -0
  331. package/illustrations/chains.vue +152 -0
  332. package/illustrations/coin-percent.vue +126 -0
  333. package/illustrations/coins-stack.vue +202 -0
  334. package/illustrations/delete-dark.vue +31 -0
  335. package/illustrations/delete.vue +32 -0
  336. package/illustrations/doc-with-stamp.vue +126 -0
  337. package/illustrations/document.vue +64 -0
  338. package/illustrations/door.vue +74 -0
  339. package/illustrations/empty-box.vue +77 -0
  340. package/illustrations/empty-wallet.vue +161 -0
  341. package/illustrations/graph-in-coin.vue +119 -0
  342. package/illustrations/hammer.vue +156 -0
  343. package/illustrations/hand-cash.vue +108 -0
  344. package/illustrations/info.vue +39 -0
  345. package/illustrations/mail.vue +68 -0
  346. package/illustrations/ok.vue +62 -0
  347. package/illustrations/people-group.vue +237 -0
  348. package/illustrations/person-with-phone.vue +187 -0
  349. package/illustrations/person.vue +159 -0
  350. package/illustrations/phone-check.vue +90 -0
  351. package/illustrations/phone-payment-method.vue +223 -0
  352. package/illustrations/stop-hand.vue +77 -0
  353. package/illustrations/stop-sign.vue +34 -0
  354. package/illustrations/suit.vue +111 -0
  355. package/illustrations/suitcase.vue +105 -0
  356. package/illustrations/terminal-dark.vue +48 -0
  357. package/illustrations/terminal.vue +234 -0
  358. package/illustrations/trash-can.vue +108 -0
  359. package/illustrations/turn-on-tariff.vue +38 -0
  360. package/illustrations/two-persons.vue +169 -0
  361. package/lang/en.ts +593 -0
  362. package/lang/kk.ts +594 -0
  363. package/lang/ru.ts +595 -0
  364. package/layouts/default.vue +13 -0
  365. package/nuxt.config.ts +64 -0
  366. package/package.json +65 -76
  367. package/plugins/maska.ts +5 -0
  368. package/plugins/toast.client.ts +58 -0
  369. package/public/error-illustrations/401.webp +0 -0
  370. package/public/error-illustrations/403.webp +0 -0
  371. package/public/error-illustrations/404.webp +0 -0
  372. package/public/error-illustrations/500.webp +0 -0
  373. package/public/error-illustrations/502.webp +0 -0
  374. package/public/error-illustrations/503.webp +0 -0
  375. package/public/error-illustrations/504.webp +0 -0
  376. package/public/header/compliance.webp +0 -0
  377. package/public/header/unload.webp +0 -0
  378. package/public/header/ved.webp +0 -0
  379. package/public/mode/dark-analytics-en.webp +0 -0
  380. package/public/mode/dark-analytics-kk.webp +0 -0
  381. package/public/mode/dark-analytics-ru.webp +0 -0
  382. package/public/mode/dark-complience-en.webp +0 -0
  383. package/public/mode/dark-complience-kk.webp +0 -0
  384. package/public/mode/dark-complience-ru.webp +0 -0
  385. package/public/mode/dark-fea-en.webp +0 -0
  386. package/public/mode/dark-fea-kk.webp +0 -0
  387. package/public/mode/dark-fea-ru.webp +0 -0
  388. package/public/mode/dark-fines-en.webp +0 -0
  389. package/public/mode/dark-fines-kk.webp +0 -0
  390. package/public/mode/dark-fines-ru.webp +0 -0
  391. package/public/mode/dark-pk-en.webp +0 -0
  392. package/public/mode/dark-pk-kk.webp +0 -0
  393. package/public/mode/dark-pk-ru.webp +0 -0
  394. package/public/mode/dark-tenders-en.webp +0 -0
  395. package/public/mode/dark-tenders-kk.webp +0 -0
  396. package/public/mode/dark-tenders-ru.webp +0 -0
  397. package/public/mode/dark-work-en.webp +0 -0
  398. package/public/mode/dark-work-kk.webp +0 -0
  399. package/public/mode/dark-work-ru.webp +0 -0
  400. package/public/mode/light-analytics-en.webp +0 -0
  401. package/public/mode/light-analytics-kk.webp +0 -0
  402. package/public/mode/light-analytics-ru.webp +0 -0
  403. package/public/mode/light-complience-en.webp +0 -0
  404. package/public/mode/light-complience-kk.webp +0 -0
  405. package/public/mode/light-complience-ru.webp +0 -0
  406. package/public/mode/light-fea-en.webp +0 -0
  407. package/public/mode/light-fea-kk.webp +0 -0
  408. package/public/mode/light-fea-ru.webp +0 -0
  409. package/public/mode/light-fines-en.webp +0 -0
  410. package/public/mode/light-fines-kk.webp +0 -0
  411. package/public/mode/light-fines-ru.webp +0 -0
  412. package/public/mode/light-pk-en.webp +0 -0
  413. package/public/mode/light-pk-kk.webp +0 -0
  414. package/public/mode/light-pk-ru.webp +0 -0
  415. package/public/mode/light-tenders-en.webp +0 -0
  416. package/public/mode/light-tenders-kk.webp +0 -0
  417. package/public/mode/light-tenders-ru.webp +0 -0
  418. package/public/mode/light-work-en.webp +0 -0
  419. package/public/mode/light-work-kk.webp +0 -0
  420. package/public/mode/light-work-ru.webp +0 -0
  421. package/public/tariff/subtract.png +0 -0
  422. package/shared/constans/pages.ts +73 -0
  423. package/tailwind.config.ts +163 -0
  424. package/tests/AButton.test.ts +81 -0
  425. package/tsconfig.json +6 -0
  426. package/utils/getMaxZindex.ts +25 -0
  427. package/utils/localizedNavigation.ts +36 -0
  428. package/vitest.config.ts +14 -0
  429. package/babel.config.js +0 -5
  430. package/dist/adata-ui.common.js +0 -10910
  431. package/dist/adata-ui.common.js.map +0 -1
  432. package/dist/adata-ui.css +0 -1
  433. package/dist/adata-ui.umd.js +0 -10920
  434. package/dist/adata-ui.umd.js.map +0 -1
  435. package/dist/adata-ui.umd.min.js +0 -7
  436. package/dist/adata-ui.umd.min.js.map +0 -1
  437. package/dist/demo.html +0 -10
  438. package/dist/img/expand-window.39c851da.svg +0 -3
  439. package/dist/img/facebook.797d820f.svg +0 -4
  440. package/dist/img/instagram.8a77381c.svg +0 -6
  441. package/dist/img/linkedIn.607d9542.svg +0 -13
  442. package/dist/img/logo-desktop-main.4d169395.svg +0 -8
  443. package/dist/img/logo-mobile-main.397bce24.svg +0 -4
  444. package/dist/img/logo-white-desktop.7d0e3481.svg +0 -8
  445. package/dist/img/mail.e4826575.svg +0 -3
  446. package/dist/img/phone.ae6c1746.svg +0 -3
  447. package/dist/img/telegram.be0d1008.svg +0 -4
  448. package/dist/img/tiktok.eaeb39cb.svg +0 -4
  449. package/dist/img/up-down.e2b28f72.svg +0 -3
  450. package/dist/img/youtube.125aace6.svg +0 -5
  451. package/package-lock.json +0 -27138
  452. package/public/favicon.ico +0 -0
  453. package/public/index.html +0 -17
  454. package/public/logo.svg +0 -4
  455. package/src/App.vue +0 -31
  456. package/src/assets/_text_field.scss +0 -225
  457. package/src/assets/expand-window.svg +0 -3
  458. package/src/assets/facebook.svg +0 -4
  459. package/src/assets/instagram.svg +0 -6
  460. package/src/assets/linkedIn.svg +0 -13
  461. package/src/assets/logo-desktop-main.svg +0 -8
  462. package/src/assets/logo-desktop.svg +0 -9
  463. package/src/assets/logo-desktop.webp +0 -0
  464. package/src/assets/logo-mobile-main.svg +0 -4
  465. package/src/assets/logo-mobile.svg +0 -9
  466. package/src/assets/logo-mobile.webp +0 -0
  467. package/src/assets/logo-white-desktop.svg +0 -8
  468. package/src/assets/mail.svg +0 -3
  469. package/src/assets/phone.svg +0 -3
  470. package/src/assets/style.scss +0 -1
  471. package/src/assets/telegram.svg +0 -4
  472. package/src/assets/tiktok.svg +0 -4
  473. package/src/assets/up-down.svg +0 -3
  474. package/src/assets/youtube.svg +0 -5
  475. package/src/components/Alert/Alert.stories.js +0 -17
  476. package/src/components/Alert/Alert.vue +0 -63
  477. package/src/components/BottomNavigationBar/ABottomNavigationBar.vue +0 -160
  478. package/src/components/BottomNavigationBar/BottomNavigationBar.stories.js +0 -25
  479. package/src/components/Button/AButton.vue +0 -231
  480. package/src/components/Button/Button.stories.js +0 -23
  481. package/src/components/Checkbox/ACheckbox.vue +0 -114
  482. package/src/components/Checkbox/Checkbox.stories.js +0 -15
  483. package/src/components/CheckboxMenu/CheckboxMenu.stories.js +0 -24
  484. package/src/components/CheckboxMenu/CheckboxMenu.vue +0 -108
  485. package/src/components/ErrorPages/BadGateway.vue +0 -224
  486. package/src/components/ErrorPages/Forbidden.vue +0 -468
  487. package/src/components/ErrorPages/InternalServerError.vue +0 -275
  488. package/src/components/ErrorPages/NotFound.vue +0 -995
  489. package/src/components/ErrorPages/Unavailable.vue +0 -3705
  490. package/src/components/Footer/Footer.stories.js +0 -20
  491. package/src/components/Footer/Footer.vue +0 -292
  492. package/src/components/Header/ChildLinks.vue +0 -144
  493. package/src/components/Header/Header.stories.js +0 -56
  494. package/src/components/Header/Header.vue +0 -1306
  495. package/src/components/Header/InfoHeader.vue +0 -319
  496. package/src/components/Header/Profile.vue +0 -670
  497. package/src/components/Header/ProfileMenu.vue +0 -293
  498. package/src/components/Header/ProfileMobile.vue +0 -308
  499. package/src/components/Header/ProfileOld.vue +0 -781
  500. package/src/components/InternalServerError/InternalServerError.stories.js +0 -17
  501. package/src/components/InternalServerError/InternalServerError.vue +0 -262
  502. package/src/components/Introduction.stories.mdx +0 -7
  503. package/src/components/Loader/Loader.stories.js +0 -25
  504. package/src/components/Loader/Loader.vue +0 -325
  505. package/src/components/MailTo/MailTo.stories.js +0 -15
  506. package/src/components/MailTo/MailTo.vue +0 -258
  507. package/src/components/NavIcon/ANavIcon.vue +0 -50
  508. package/src/components/NavIcon/NavIcon.stories.js +0 -15
  509. package/src/components/PasswordField/PasswordField.stories.js +0 -16
  510. package/src/components/PasswordField/PasswordField.vue +0 -77
  511. package/src/components/SearchTextField/SearchTextField.stories.js +0 -78
  512. package/src/components/SearchTextField/SearchTextField.vue +0 -230
  513. package/src/components/ServiceSlider/AServiceSlider.vue +0 -793
  514. package/src/components/ServiceSlider/ServiceSlider.stories.js +0 -20
  515. package/src/components/Table/ATable.vue +0 -117
  516. package/src/components/Table/Table.stories.js +0 -15
  517. package/src/components/TextArea/TextArea.stories.js +0 -17
  518. package/src/components/TextArea/TextArea.vue +0 -116
  519. package/src/components/TextError/TextError.stories.js +0 -15
  520. package/src/components/TextError/TextError.vue +0 -57
  521. package/src/components/TextField/TextField.stories.js +0 -17
  522. package/src/components/TextField/TextField.vue +0 -107
  523. package/src/components/index.js +0 -56
  524. package/src/components/newComponents/FooterNew/FooterBottom.vue +0 -153
  525. package/src/components/newComponents/FooterNew/FooterItem.vue +0 -114
  526. package/src/components/newComponents/FooterNew/FooterNew.stories.js +0 -20
  527. package/src/components/newComponents/FooterNew/FooterNew.vue +0 -39
  528. package/src/components/newComponents/FooterNew/FooterTop.vue +0 -321
  529. package/src/components/newComponents/FooterRedesign/FooterAccordion.vue +0 -221
  530. package/src/components/newComponents/FooterRedesign/FooterRedesign.vue +0 -430
  531. package/src/components/transitions/SlideToggle.vue +0 -55
  532. package/src/components/transitions/VerticalMobileToggle.vue +0 -75
  533. package/src/configs/icons.js +0 -112
  534. package/src/configs/profileDropDown.js +0 -134
  535. package/src/main.js +0 -12
@@ -0,0 +1,221 @@
1
+ <template>
2
+ <svg xmlns="https://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
3
+ <path d="M-3 7.53831V8.61521H18.9994V7.53831H6.75007H-3Z" fill="white" />
4
+ <path d="M18.9994 8.61521H-3V9.69225H19L18.9994 8.61521Z" fill="#B22234" />
5
+ <path d="M19 10.7692H-3V11.8461H19V10.7692Z" fill="#B22234" />
6
+ <path d="M19 6.46155H6.74993L6.75007 7.53831H18.9994L19 6.46155Z" fill="#B22234" />
7
+ <path d="M19 12.9231H-3V14H19V12.9231Z" fill="#B22234" />
8
+ <path d="M19 11.8461H-3V12.9231H19V11.8461Z" fill="white" />
9
+ <path d="M19 9.69225H-3V10.7692H19V9.69225Z" fill="white" />
10
+ <path d="M19 2.1538H6.74993V3.23071H19V2.1538Z" fill="#B22234" />
11
+ <path d="M19 0H6.74993V1.0769H19V0Z" fill="#B22234" />
12
+ <path d="M19 5.38451H6.74993V6.46155H19V5.38451Z" fill="white" />
13
+ <path d="M19 1.0769H6.74993V2.1538H19V1.0769Z" fill="white" />
14
+ <path d="M19 4.30761H6.74993V5.38451H19V4.30761Z" fill="#B22234" />
15
+ <path d="M19 3.23071H6.74993V4.30761H19V3.23071Z" fill="white" />
16
+ <path
17
+ d="M6.74993 6.46155V0H-3V7.53831H6.75007L6.74993 6.46155ZM-1.96413 7.15248L-2.18766 6.97498L-2.41118 7.15248L-2.32576 6.86535L-2.54928 6.68785H-2.27309L-2.23779 6.5691L-2.23002 6.54325L-2.18766 6.40072L-2.1453 6.54325L-2.13753 6.5691L-2.10223 6.68785H-1.82604L-2.04956 6.86535L-1.96413 7.15248ZM-2.04956 5.36156L-2.04278 5.38451L-2.01426 5.48017L-2.00664 5.50616L-1.96413 5.64869L-2.14374 5.50616L-2.17636 5.48017L-2.18766 5.47132L-2.19896 5.48017L-2.23157 5.50616L-2.41118 5.64869L-2.36882 5.50616L-2.33253 5.38451L-2.32576 5.36156L-2.54928 5.1842H-2.27309L-2.18766 4.89707L-2.10223 5.1842H-1.82604L-2.04956 5.36156ZM-2.04956 3.85791L-1.96413 4.14504L-2.18766 3.96767L-2.41118 4.14504L-2.32576 3.85791L-2.54928 3.68054H-2.27309L-2.18766 3.39342L-2.10223 3.68054H-1.82604L-2.04956 3.85791ZM-2.00297 2.31721L-2.04956 2.35425L-1.96413 2.64138L-2.18766 2.46388L-2.41118 2.64138L-2.32576 2.35425L-2.37235 2.31721L-2.54928 2.17675H-2.27309L-2.26617 2.1538L-2.18766 1.88962L-2.10915 2.1538L-2.10223 2.17675H-1.82604L-2.00297 2.31721ZM-2.04956 0.850462L-1.96413 1.13773L-2.18766 0.960088L-2.41118 1.13773L-2.32576 0.850462L-2.54928 0.67296H-2.27309L-2.18766 0.385832L-2.10223 0.67296H-1.82604L-2.04956 0.850462ZM-1.14572 6.40045L-1.3691 6.22294L-1.59263 6.40045L-1.5072 6.11332L-1.73087 5.93582H-1.45453L-1.3691 5.64869L-1.28382 5.93582H-1.00748L-1.23101 6.11332L-1.14572 6.40045ZM-1.02146 4.44322L-1.23101 4.60966L-1.14572 4.89665L-1.3691 4.71929L-1.59263 4.89665L-1.5072 4.60966L-1.71689 4.44322L-1.73087 4.43216H-1.45453L-1.45016 4.41723L-1.3691 4.14504L-1.2882 4.41723L-1.28382 4.43216H-1.00748L-1.02146 4.44322ZM-1.23101 3.10601L-1.1573 3.35429L-1.14953 3.38028L-1.14572 3.39314L-1.1621 3.38028L-1.19472 3.35429L-1.3691 3.21578L-1.38803 3.23071L-1.54363 3.35429L-1.57625 3.38028L-1.59263 3.39314L-1.58882 3.38028L-1.58105 3.35429L-1.5072 3.10601L-1.73087 2.92865H-1.45453L-1.3691 2.64152L-1.28382 2.92865H-1.00748L-1.23101 3.10601ZM-1.23101 1.60222L-1.14572 1.88935L-1.3691 1.71185L-1.59263 1.88935L-1.5072 1.60222L-1.73087 1.42472H-1.45453L-1.40384 1.25427L-1.39607 1.22841L-1.3691 1.13773L-1.34228 1.22841L-1.33451 1.25427L-1.28382 1.42472H-1.00748L-1.23101 1.60222ZM-0.33917 7.15248L-0.562553 6.97498L-0.786077 7.15248L-0.700791 6.86535L-0.924174 6.68785H-0.647981L-0.61268 6.5691L-0.604914 6.54325L-0.562553 6.40072L-0.520192 6.54325L-0.512567 6.5691L-0.477266 6.68785H-0.201073L-0.424456 6.86535L-0.33917 7.15248ZM-0.424456 5.36156L-0.417679 5.38451L-0.389156 5.48017L-0.381531 5.50616L-0.33917 5.64869L-0.562553 5.47132L-0.786077 5.64869L-0.743716 5.50616L-0.73595 5.48017L-0.707569 5.38451L-0.700791 5.36156L-0.924174 5.1842H-0.647981L-0.562553 4.89707L-0.477266 5.1842H-0.201073L-0.424456 5.36156ZM-0.424456 3.85791L-0.33917 4.14504L-0.562553 3.96767L-0.786077 4.14504L-0.700791 3.85791L-0.924174 3.68054H-0.647981L-0.562553 3.39342L-0.477266 3.68054H-0.201073L-0.424456 3.85791ZM-0.345242 2.29135L-0.377859 2.31721L-0.424456 2.35425L-0.33917 2.64138L-0.562553 2.46388L-0.786077 2.64138L-0.700791 2.35425L-0.747247 2.31721L-0.780006 2.29135L-0.924174 2.17675H-0.647981L-0.641203 2.1538L-0.562553 1.88962L-0.484044 2.1538L-0.477266 2.17675H-0.201073L-0.345242 2.29135ZM-0.424456 0.850462L-0.357103 1.0769L-0.33917 1.13773L-0.562553 0.960088L-0.786077 1.13773L-0.700791 0.850462L-0.924174 0.67296H-0.647981L-0.562553 0.385832L-0.477266 0.67296H-0.201073L-0.424456 0.850462ZM0.479384 6.40045L0.25586 6.22294L0.0324764 6.40045L0.117763 6.11332L-0.10562 5.93582H0.170573L0.25586 5.64869L0.341288 5.93582H0.617481L0.393956 6.11332L0.479384 6.40045ZM0.603643 4.44322L0.393956 4.60966L0.479384 4.89665L0.25586 4.71929L0.0324764 4.89665L0.117763 4.60966L-0.0919232 4.44322L-0.10562 4.43216H0.170573L0.174951 4.41723L0.25586 4.14504L0.304292 4.30761L0.336769 4.41723L0.341288 4.43216H0.617481L0.603643 4.44322ZM0.393956 3.10601L0.467806 3.35429L0.475572 3.38028L0.479384 3.39314L0.274781 3.23071L0.25586 3.21578L0.0813329 3.35429L0.0487151 3.38028L0.0324764 3.39314L0.0362892 3.38028L0.0440555 3.35429L0.117763 3.10601L-0.10562 2.92865H0.170573L0.25586 2.64152L0.341288 2.92865H0.617481L0.393956 3.10601ZM0.393956 1.60222L0.479384 1.88935L0.25586 1.71185L0.0324764 1.88935L0.117763 1.60222L-0.10562 1.42472H0.170573L0.221124 1.25427L0.22889 1.22841L0.25586 1.13773L0.28283 1.22841L0.290596 1.25427L0.341288 1.42472H0.617481L0.393956 1.60222ZM1.28594 7.15248L1.06241 6.97498L0.839029 7.15248L0.924315 6.86535L0.70079 6.68785H0.977125L1.01243 6.5691L1.02019 6.54325L1.04448 6.46155L1.06241 6.40072L1.10477 6.54325L1.11254 6.5691L1.14784 6.68785H1.42403L1.20051 6.86535L1.28594 7.15248ZM1.20051 5.36156L1.20743 5.38451L1.23581 5.48017L1.24358 5.50616L1.28594 5.64869L1.10633 5.50616L1.07371 5.48017L1.06241 5.47132L0.839029 5.64869L0.881389 5.50616L0.889014 5.48017L0.917537 5.38451L0.924315 5.36156L0.70079 5.1842H0.977125L1.06241 4.89707L1.14784 5.1842H1.42403L1.20051 5.36156ZM1.20051 3.85791L1.28594 4.14504L1.06241 3.96767L0.839029 4.14504L0.924315 3.85791L0.70079 3.68054H0.977125L1.06241 3.39342L1.14784 3.68054H1.42403L1.20051 3.85791ZM1.24711 2.31721L1.20051 2.35425L1.28594 2.64138L1.06241 2.46388L0.839029 2.64138L0.924315 2.35425L0.877859 2.31721L0.8451 2.29135L0.70079 2.17675H0.977125L0.983903 2.1538L1.06241 1.88962L1.14106 2.1538L1.14784 2.17675H1.42403L1.24711 2.31721ZM1.20051 0.850462L1.28594 1.13773L1.06241 0.960088L0.839029 1.13773L0.924315 0.850462L0.70079 0.67296H0.977125L1.06241 0.385832L1.14784 0.67296H1.42403L1.20051 0.850462ZM2.10449 6.40045L1.88097 6.22294L1.65744 6.40045L1.74287 6.11332L1.51934 5.93582H1.79568L1.88097 5.64869L1.96639 5.93582H2.24259L2.01906 6.11332L2.10449 6.40045ZM2.22875 4.44322L2.01906 4.60966L2.10449 4.89665L1.88097 4.71929L1.65744 4.89665L1.74287 4.60966L1.53318 4.44322L1.51934 4.43216H1.79568L1.79992 4.41723L1.83267 4.30761L1.88097 4.14504L1.96187 4.41723L1.96639 4.43216H2.24259L2.22875 4.44322ZM2.01906 3.10601L2.09291 3.35429L2.10054 3.38028L2.10449 3.39314L2.08811 3.38028L2.05549 3.35429L1.89989 3.23071L1.88097 3.21578L1.86204 3.23071L1.70644 3.35429L1.67382 3.38028L1.65744 3.39314L1.66139 3.38028L1.66902 3.35429L1.74287 3.10601L1.51934 2.92865H1.79568L1.88097 2.64152L1.96639 2.92865H2.24259L2.01906 3.10601ZM2.01906 1.60222L2.10449 1.88935L1.88097 1.71185L1.65744 1.88935L1.74287 1.60222L1.51934 1.42472H1.79568L1.84623 1.25427L1.854 1.22841L1.88097 1.13773L1.90794 1.22841L1.91556 1.25427L1.96639 1.42472H2.24259L2.01906 1.60222ZM2.91104 7.15248L2.68752 6.97498L2.46399 7.15248L2.54942 6.86535L2.3259 6.68785H2.60209L2.63739 6.5691L2.64516 6.54325L2.68752 6.40072L2.72988 6.54325L2.7375 6.5691L2.7728 6.68785H3.04914L2.82561 6.86535L2.91104 7.15248ZM2.82561 5.36156L2.83253 5.38451L2.86092 5.48017L2.86854 5.50616L2.91104 5.64869L2.73143 5.50616L2.69881 5.48017L2.68752 5.47132L2.46399 5.64869L2.50635 5.50616L2.54264 5.38451L2.54942 5.36156L2.3259 5.1842H2.60209L2.68752 4.89707L2.7728 5.1842H3.04914L2.82561 5.36156ZM2.82561 3.85791L2.91104 4.14504L2.68752 3.96767L2.46399 4.14504L2.54942 3.85791L2.3259 3.68054H2.60209L2.68752 3.39342L2.7728 3.68054H3.04914L2.82561 3.85791ZM2.87221 2.31721L2.82561 2.35425L2.91104 2.64138L2.68752 2.46388L2.46399 2.64138L2.54942 2.35425L2.50282 2.31721L2.3259 2.17675H2.60209L2.60901 2.1538L2.68752 1.88962L2.76603 2.1538L2.7728 2.17675H3.04914L2.87221 2.31721ZM2.82561 0.850462L2.91104 1.13773L2.68752 0.960088L2.46399 1.13773L2.54942 0.850462L2.3259 0.67296H2.60209L2.68752 0.385832L2.7728 0.67296H3.04914L2.82561 0.850462ZM3.72945 6.40045L3.50607 6.22294L3.28255 6.40045L3.36797 6.11332L3.14445 5.93582H3.42064L3.50607 5.64869L3.59136 5.93582H3.86769L3.64417 6.11332L3.72945 6.40045ZM3.85371 4.44322L3.64417 4.60966L3.72945 4.89665L3.50607 4.71929L3.28255 4.89665L3.36797 4.60966L3.15829 4.44322L3.14445 4.43216H3.42064L3.42516 4.41723L3.45764 4.30761L3.50607 4.14504L3.58698 4.41723L3.59136 4.43216H3.86769L3.85371 4.44322ZM3.64417 3.10601L3.71788 3.35429L3.72564 3.38028L3.72945 3.39314L3.50607 3.21578L3.48715 3.23071L3.33154 3.35429L3.29893 3.38028L3.28255 3.39314L3.28636 3.38028L3.29413 3.35429L3.36797 3.10601L3.14445 2.92865H3.42064L3.50607 2.64152L3.59136 2.92865H3.86769L3.64417 3.10601ZM3.64417 1.60222L3.72945 1.88935L3.50607 1.71185L3.28255 1.88935L3.36797 1.60222L3.14445 1.42472H3.42064L3.47134 1.25427L3.4791 1.22841L3.50607 1.13773L3.53304 1.22841L3.54067 1.25427L3.59136 1.42472H3.86769L3.64417 1.60222ZM4.53601 7.15248L4.31262 6.97498L4.0891 7.15248L4.17439 6.86535L3.951 6.68785H4.2272L4.2625 6.5691L4.27026 6.54325L4.31262 6.40072L4.35498 6.54325L4.36261 6.5691L4.39791 6.68785H4.67424L4.45072 6.86535L4.53601 7.15248ZM4.45072 5.36156L4.4575 5.38451L4.48602 5.48017L4.49365 5.50616L4.53601 5.64869L4.3564 5.50616L4.32378 5.48017L4.31262 5.47132L4.30133 5.48017L4.26871 5.50616L4.0891 5.64869L4.13146 5.50616L4.13923 5.48017L4.16761 5.38451L4.17439 5.36156L3.951 5.1842H4.2272L4.31262 4.89707L4.39791 5.1842H4.67424L4.45072 5.36156ZM4.45072 3.85791L4.53601 4.14504L4.31262 3.96767L4.0891 4.14504L4.17439 3.85791L3.951 3.68054H4.2272L4.31262 3.39342L4.39791 3.68054H4.67424L4.45072 3.85791ZM4.49732 2.31721L4.45072 2.35425L4.53601 2.64138L4.31262 2.46388L4.0891 2.64138L4.17439 2.35425L4.12793 2.31721L3.951 2.17675H4.2272L4.23411 2.1538L4.31262 1.88962L4.39113 2.1538L4.39791 2.17675H4.67424L4.49732 2.31721ZM4.45072 0.850462L4.51807 1.0769L4.53601 1.13773L4.31262 0.960088L4.0891 1.13773L4.17439 0.850462L3.951 0.67296H4.2272L4.31262 0.385832L4.39791 0.67296H4.67424L4.45072 0.850462ZM5.35456 6.40045L5.13104 6.22294L4.90765 6.40045L4.99294 6.11332L4.76941 5.93582H5.04575L5.13104 5.64869L5.21646 5.93582H5.49266L5.26913 6.11332L5.35456 6.40045ZM5.47882 4.44322L5.26913 4.60966L5.35456 4.89665L5.13104 4.71929L4.90765 4.89665L4.99294 4.60966L4.78325 4.44322L4.76941 4.43216H5.04575L5.05013 4.41723L5.13104 4.14504L5.21209 4.41723L5.21646 4.43216H5.49266L5.47882 4.44322ZM5.26913 3.10601L5.34298 3.35429L5.35075 3.38028L5.35456 3.39314L5.33818 3.38028L5.30556 3.35429L5.14996 3.23071L5.13104 3.21578L4.95651 3.35429L4.92389 3.38028L4.90765 3.39314L4.91147 3.38028L4.91909 3.35429L4.95594 3.23071L4.99294 3.10601L4.76941 2.92865H5.04575L5.13104 2.64152L5.21646 2.92865H5.49266L5.26913 3.10601ZM5.26913 1.60222L5.35456 1.88935L5.13104 1.71185L4.90765 1.88935L4.99294 1.60222L4.76941 1.42472H5.04575L5.0963 1.25427L5.10407 1.22841L5.13104 1.13773L5.15801 1.22841L5.16577 1.25427L5.21646 1.42472H5.49266L5.26913 1.60222ZM6.16111 7.15248L5.93759 6.97498L5.7142 7.15248L5.79949 6.86535L5.57597 6.68785H5.8523L5.8876 6.5691L5.89523 6.54325L5.91965 6.46155L5.93759 6.40072L5.97995 6.54325L5.98771 6.5691L6.02302 6.68785H6.29935L6.07583 6.86535L6.16111 7.15248ZM6.07583 5.36156L6.0826 5.38451L6.11099 5.48017L6.11875 5.50616L6.16111 5.64869L5.9815 5.50616L5.94888 5.48017L5.93759 5.47132L5.7142 5.64869L5.75657 5.50616L5.76419 5.48017L5.79271 5.38451L5.79949 5.36156L5.57597 5.1842H5.8523L5.93759 4.89707L6.02302 5.1842H6.29935L6.07583 5.36156ZM6.07583 3.85791L6.16111 4.14504L5.93759 3.96767L5.7142 4.14504L5.79949 3.85791L5.57597 3.68054H5.8523L5.93759 3.39342L6.02302 3.68054H6.29935L6.07583 3.85791ZM6.12228 2.31721L6.07583 2.35425L6.16111 2.64138L5.93759 2.46388L5.7142 2.64138L5.79949 2.35425L5.75304 2.31721L5.57597 2.17675H5.8523L5.85908 2.1538L5.93759 1.88962L6.01624 2.1538L6.02302 2.17675H6.29935L6.12228 2.31721ZM6.07583 0.850462L6.16111 1.13773L5.93759 0.960088L5.7142 1.13773L5.79949 0.850462L5.57597 0.67296H5.8523L5.93759 0.385832L6.02302 0.67296H6.29935L6.07583 0.850462Z"
18
+ fill="#3C3B6E"
19
+ />
20
+ <path
21
+ d="M-2.10223 6.68785L-2.13753 6.5691L-2.1453 6.54325L-2.18766 6.40072L-2.23002 6.54325L-2.23779 6.5691L-2.27309 6.68785H-2.54928L-2.32576 6.86535L-2.41118 7.15248L-2.18766 6.97498L-1.96413 7.15248L-2.04956 6.86535L-1.82604 6.68785H-2.10223Z"
22
+ fill="white"
23
+ />
24
+ <path
25
+ d="M-0.477266 6.68785L-0.512567 6.5691L-0.520192 6.54325L-0.562553 6.40072L-0.604914 6.54325L-0.61268 6.5691L-0.647981 6.68785H-0.924174L-0.700791 6.86535L-0.786077 7.15248L-0.562553 6.97498L-0.33917 7.15248L-0.424456 6.86535L-0.201073 6.68785H-0.477266Z"
26
+ fill="white"
27
+ />
28
+ <path
29
+ d="M1.14784 6.68785L1.11254 6.5691L1.10477 6.54325L1.06241 6.40072L1.04448 6.46155L1.02019 6.54325L1.01243 6.5691L0.977125 6.68785H0.70079L0.924315 6.86535L0.839029 7.15248L1.06241 6.97498L1.28594 7.15248L1.20051 6.86535L1.42403 6.68785H1.14784Z"
30
+ fill="white"
31
+ />
32
+ <path
33
+ d="M2.7728 6.68785L2.7375 6.5691L2.72988 6.54325L2.68752 6.40072L2.64516 6.54325L2.63739 6.5691L2.60209 6.68785H2.3259L2.54942 6.86535L2.46399 7.15248L2.68752 6.97498L2.91104 7.15248L2.82561 6.86535L3.04914 6.68785H2.7728Z"
34
+ fill="white"
35
+ />
36
+ <path
37
+ d="M4.39791 6.68785L4.36261 6.5691L4.35498 6.54325L4.31262 6.40072L4.27026 6.54325L4.2625 6.5691L4.2272 6.68785H3.951L4.17439 6.86535L4.0891 7.15248L4.31262 6.97498L4.53601 7.15248L4.45072 6.86535L4.67424 6.68785H4.39791Z"
38
+ fill="white"
39
+ />
40
+ <path
41
+ d="M6.02302 6.68785L5.98771 6.5691L5.97995 6.54325L5.93759 6.40072L5.91965 6.46155L5.89523 6.54325L5.8876 6.5691L5.8523 6.68785H5.57597L5.79949 6.86535L5.7142 7.15248L5.93759 6.97498L6.16111 7.15248L6.07583 6.86535L6.29935 6.68785H6.02302Z"
42
+ fill="white"
43
+ />
44
+ <path
45
+ d="M-2.18766 4.89707L-2.27309 5.1842H-2.54928L-2.32576 5.36156L-2.33253 5.38451L-2.36882 5.50616L-2.41118 5.64869L-2.23157 5.50616L-2.19896 5.48017L-2.18766 5.47132L-2.17636 5.48017L-2.14374 5.50616L-1.96413 5.64869L-2.00664 5.50616L-2.01426 5.48017L-2.04278 5.38451L-2.04956 5.36156L-1.82604 5.1842H-2.10223L-2.18766 4.89707Z"
46
+ fill="white"
47
+ />
48
+ <path
49
+ d="M-0.562553 4.89707L-0.647981 5.1842H-0.924174L-0.700791 5.36156L-0.707569 5.38451L-0.73595 5.48017L-0.743716 5.50616L-0.786077 5.64869L-0.562553 5.47132L-0.33917 5.64869L-0.381531 5.50616L-0.389156 5.48017L-0.417679 5.38451L-0.424456 5.36156L-0.201073 5.1842H-0.477266L-0.562553 4.89707Z"
50
+ fill="white"
51
+ />
52
+ <path
53
+ d="M1.06241 4.89707L0.977125 5.1842H0.70079L0.924315 5.36156L0.917537 5.38451L0.889014 5.48017L0.881389 5.50616L0.839029 5.64869L1.06241 5.47132L1.07371 5.48017L1.10633 5.50616L1.28594 5.64869L1.24358 5.50616L1.23581 5.48017L1.20743 5.38451L1.20051 5.36156L1.42403 5.1842H1.14784L1.06241 4.89707Z"
54
+ fill="white"
55
+ />
56
+ <path
57
+ d="M2.68752 4.89707L2.60209 5.1842H2.3259L2.54942 5.36156L2.54264 5.38451L2.50635 5.50616L2.46399 5.64869L2.68752 5.47132L2.69881 5.48017L2.73143 5.50616L2.91104 5.64869L2.86854 5.50616L2.86092 5.48017L2.83253 5.38451L2.82561 5.36156L3.04914 5.1842H2.7728L2.68752 4.89707Z"
58
+ fill="white"
59
+ />
60
+ <path
61
+ d="M4.31262 4.89707L4.2272 5.1842H3.951L4.17439 5.36156L4.16761 5.38451L4.13923 5.48017L4.13146 5.50616L4.0891 5.64869L4.26871 5.50616L4.30133 5.48017L4.31262 5.47132L4.32378 5.48017L4.3564 5.50616L4.53601 5.64869L4.49365 5.50616L4.48602 5.48017L4.4575 5.38451L4.45072 5.36156L4.67424 5.1842H4.39791L4.31262 4.89707Z"
62
+ fill="white"
63
+ />
64
+ <path
65
+ d="M5.93759 4.89707L5.8523 5.1842H5.57597L5.79949 5.36156L5.79271 5.38451L5.76419 5.48017L5.75657 5.50616L5.7142 5.64869L5.93759 5.47132L5.94888 5.48017L5.9815 5.50616L6.16111 5.64869L6.11875 5.50616L6.11099 5.48017L6.0826 5.38451L6.07583 5.36156L6.29935 5.1842H6.02302L5.93759 4.89707Z"
66
+ fill="white"
67
+ />
68
+ <path
69
+ d="M-2.18766 3.39342L-2.27309 3.68054H-2.54928L-2.32576 3.85791L-2.41118 4.14504L-2.18766 3.96767L-1.96413 4.14504L-2.04956 3.85791L-1.82604 3.68054H-2.10223L-2.18766 3.39342Z"
70
+ fill="white"
71
+ />
72
+ <path
73
+ d="M-0.562553 3.39342L-0.647981 3.68054H-0.924174L-0.700791 3.85791L-0.786077 4.14504L-0.562553 3.96767L-0.33917 4.14504L-0.424456 3.85791L-0.201073 3.68054H-0.477266L-0.562553 3.39342Z"
74
+ fill="white"
75
+ />
76
+ <path
77
+ d="M1.06241 3.39342L0.977125 3.68054H0.70079L0.924315 3.85791L0.839029 4.14504L1.06241 3.96767L1.28594 4.14504L1.20051 3.85791L1.42403 3.68054H1.14784L1.06241 3.39342Z"
78
+ fill="white"
79
+ />
80
+ <path
81
+ d="M2.68752 3.39342L2.60209 3.68054H2.3259L2.54942 3.85791L2.46399 4.14504L2.68752 3.96767L2.91104 4.14504L2.82561 3.85791L3.04914 3.68054H2.7728L2.68752 3.39342Z"
82
+ fill="white"
83
+ />
84
+ <path
85
+ d="M4.31262 3.39342L4.2272 3.68054H3.951L4.17439 3.85791L4.0891 4.14504L4.31262 3.96767L4.53601 4.14504L4.45072 3.85791L4.67424 3.68054H4.39791L4.31262 3.39342Z"
86
+ fill="white"
87
+ />
88
+ <path
89
+ d="M5.93759 3.39342L5.8523 3.68054H5.57597L5.79949 3.85791L5.7142 4.14504L5.93759 3.96767L6.16111 4.14504L6.07583 3.85791L6.29935 3.68054H6.02302L5.93759 3.39342Z"
90
+ fill="white"
91
+ />
92
+ <path
93
+ d="M-2.10915 2.1538L-2.18766 1.88962L-2.26617 2.1538L-2.27309 2.17675H-2.54928L-2.37235 2.31721L-2.32576 2.35425L-2.41118 2.64138L-2.18766 2.46388L-1.96413 2.64138L-2.04956 2.35425L-2.00297 2.31721L-1.82604 2.17675H-2.10223L-2.10915 2.1538Z"
94
+ fill="white"
95
+ />
96
+ <path
97
+ d="M-0.484044 2.1538L-0.562553 1.88962L-0.641203 2.1538L-0.647981 2.17675H-0.924174L-0.780006 2.29135L-0.747247 2.31721L-0.700791 2.35425L-0.786077 2.64138L-0.562553 2.46388L-0.33917 2.64138L-0.424456 2.35425L-0.377859 2.31721L-0.345242 2.29135L-0.201073 2.17675H-0.477266L-0.484044 2.1538Z"
98
+ fill="white"
99
+ />
100
+ <path
101
+ d="M1.14106 2.1538L1.06241 1.88962L0.983903 2.1538L0.977125 2.17675H0.70079L0.8451 2.29135L0.877859 2.31721L0.924315 2.35425L0.839029 2.64138L1.06241 2.46388L1.28594 2.64138L1.20051 2.35425L1.24711 2.31721L1.42403 2.17675H1.14784L1.14106 2.1538Z"
102
+ fill="white"
103
+ />
104
+ <path
105
+ d="M2.76603 2.1538L2.68752 1.88962L2.60901 2.1538L2.60209 2.17675H2.3259L2.50282 2.31721L2.54942 2.35425L2.46399 2.64138L2.68752 2.46388L2.91104 2.64138L2.82561 2.35425L2.87221 2.31721L3.04914 2.17675H2.7728L2.76603 2.1538Z"
106
+ fill="white"
107
+ />
108
+ <path
109
+ d="M4.39113 2.1538L4.31262 1.88962L4.23411 2.1538L4.2272 2.17675H3.951L4.12793 2.31721L4.17439 2.35425L4.0891 2.64138L4.31262 2.46388L4.53601 2.64138L4.45072 2.35425L4.49732 2.31721L4.67424 2.17675H4.39791L4.39113 2.1538Z"
110
+ fill="white"
111
+ />
112
+ <path
113
+ d="M6.01624 2.1538L5.93759 1.88962L5.85908 2.1538L5.8523 2.17675H5.57597L5.75304 2.31721L5.79949 2.35425L5.7142 2.64138L5.93759 2.46388L6.16111 2.64138L6.07583 2.35425L6.12228 2.31721L6.29935 2.17675H6.02302L6.01624 2.1538Z"
114
+ fill="white"
115
+ />
116
+ <path
117
+ d="M-1.33451 1.25427L-1.34228 1.22841L-1.3691 1.13773L-1.39607 1.22841L-1.40384 1.25427L-1.45453 1.42472H-1.73087L-1.5072 1.60222L-1.59263 1.88935L-1.3691 1.71185L-1.14572 1.88935L-1.23101 1.60222L-1.00748 1.42472H-1.28382L-1.33451 1.25427Z"
118
+ fill="white"
119
+ />
120
+ <path
121
+ d="M0.290596 1.25427L0.28283 1.22841L0.25586 1.13773L0.22889 1.22841L0.221124 1.25427L0.170573 1.42472H-0.10562L0.117763 1.60222L0.0324764 1.88935L0.25586 1.71185L0.479384 1.88935L0.393956 1.60222L0.617481 1.42472H0.341288L0.290596 1.25427Z"
122
+ fill="white"
123
+ />
124
+ <path
125
+ d="M1.91556 1.25427L1.90794 1.22841L1.88097 1.13773L1.854 1.22841L1.84623 1.25427L1.79568 1.42472H1.51934L1.74287 1.60222L1.65744 1.88935L1.88097 1.71185L2.10449 1.88935L2.01906 1.60222L2.24259 1.42472H1.96639L1.91556 1.25427Z"
126
+ fill="white"
127
+ />
128
+ <path
129
+ d="M3.54067 1.25427L3.53304 1.22841L3.50607 1.13773L3.4791 1.22841L3.47134 1.25427L3.42064 1.42472H3.14445L3.36797 1.60222L3.28255 1.88935L3.50607 1.71185L3.72945 1.88935L3.64417 1.60222L3.86769 1.42472H3.59136L3.54067 1.25427Z"
130
+ fill="white"
131
+ />
132
+ <path
133
+ d="M5.16577 1.25427L5.15801 1.22841L5.13104 1.13773L5.10407 1.22841L5.0963 1.25427L5.04575 1.42472H4.76941L4.99294 1.60222L4.90765 1.88935L5.13104 1.71185L5.35456 1.88935L5.26913 1.60222L5.49266 1.42472H5.21646L5.16577 1.25427Z"
134
+ fill="white"
135
+ />
136
+ <path
137
+ d="M-1.3691 2.64152L-1.45453 2.92865H-1.73087L-1.5072 3.10601L-1.58105 3.35429L-1.58882 3.38028L-1.59263 3.39314L-1.57625 3.38028L-1.54363 3.35429L-1.38803 3.23071L-1.3691 3.21578L-1.19472 3.35429L-1.1621 3.38028L-1.14572 3.39314L-1.14953 3.38028L-1.1573 3.35429L-1.23101 3.10601L-1.00748 2.92865H-1.28382L-1.3691 2.64152Z"
138
+ fill="white"
139
+ />
140
+ <path
141
+ d="M0.25586 2.64152L0.170573 2.92865H-0.10562L0.117763 3.10601L0.0440555 3.35429L0.0362892 3.38028L0.0324764 3.39314L0.0487151 3.38028L0.0813329 3.35429L0.25586 3.21578L0.274781 3.23071L0.479384 3.39314L0.475572 3.38028L0.467806 3.35429L0.393956 3.10601L0.617481 2.92865H0.341288L0.25586 2.64152Z"
142
+ fill="white"
143
+ />
144
+ <path
145
+ d="M1.88097 2.64152L1.79568 2.92865H1.51934L1.74287 3.10601L1.66902 3.35429L1.66139 3.38028L1.65744 3.39314L1.67382 3.38028L1.70644 3.35429L1.86204 3.23071L1.88097 3.21578L1.89989 3.23071L2.05549 3.35429L2.08811 3.38028L2.10449 3.39314L2.10054 3.38028L2.09291 3.35429L2.01906 3.10601L2.24259 2.92865H1.96639L1.88097 2.64152Z"
146
+ fill="white"
147
+ />
148
+ <path
149
+ d="M3.50607 2.64152L3.42064 2.92865H3.14445L3.36797 3.10601L3.29413 3.35429L3.28636 3.38028L3.28255 3.39314L3.29893 3.38028L3.33154 3.35429L3.48715 3.23071L3.50607 3.21578L3.72945 3.39314L3.72564 3.38028L3.71788 3.35429L3.64417 3.10601L3.86769 2.92865H3.59136L3.50607 2.64152Z"
150
+ fill="white"
151
+ />
152
+ <path
153
+ d="M5.13104 2.64152L5.04575 2.92865H4.76941L4.99294 3.10601L4.95594 3.23071L4.91909 3.35429L4.91147 3.38028L4.90765 3.39314L4.92389 3.38028L4.95651 3.35429L5.13104 3.21578L5.14996 3.23071L5.30556 3.35429L5.33818 3.38028L5.35456 3.39314L5.35075 3.38028L5.34298 3.35429L5.26913 3.10601L5.49266 2.92865H5.21646L5.13104 2.64152Z"
154
+ fill="white"
155
+ />
156
+ <path
157
+ d="M-1.2882 4.41723L-1.3691 4.14504L-1.45016 4.41723L-1.45453 4.43216H-1.73087L-1.71689 4.44322L-1.5072 4.60966L-1.59263 4.89665L-1.3691 4.71929L-1.14572 4.89665L-1.23101 4.60966L-1.02146 4.44322L-1.00748 4.43216H-1.28382L-1.2882 4.41723Z"
158
+ fill="white"
159
+ />
160
+ <path
161
+ d="M0.336769 4.41723L0.304292 4.30761L0.25586 4.14504L0.174951 4.41723L0.170573 4.43216H-0.10562L-0.0919232 4.44322L0.117763 4.60966L0.0324764 4.89665L0.25586 4.71929L0.479384 4.89665L0.393956 4.60966L0.603643 4.44322L0.617481 4.43216H0.341288L0.336769 4.41723Z"
162
+ fill="white"
163
+ />
164
+ <path
165
+ d="M1.96187 4.41723L1.88097 4.14504L1.83267 4.30761L1.79992 4.41723L1.79568 4.43216H1.51934L1.53318 4.44322L1.74287 4.60966L1.65744 4.89665L1.88097 4.71929L2.10449 4.89665L2.01906 4.60966L2.22875 4.44322L2.24259 4.43216H1.96639L1.96187 4.41723Z"
166
+ fill="white"
167
+ />
168
+ <path
169
+ d="M3.58698 4.41723L3.50607 4.14504L3.45764 4.30761L3.42516 4.41723L3.42064 4.43216H3.14445L3.15829 4.44322L3.36797 4.60966L3.28255 4.89665L3.50607 4.71929L3.72945 4.89665L3.64417 4.60966L3.85371 4.44322L3.86769 4.43216H3.59136L3.58698 4.41723Z"
170
+ fill="white"
171
+ />
172
+ <path
173
+ d="M5.21209 4.41723L5.13104 4.14504L5.05013 4.41723L5.04575 4.43216H4.76941L4.78325 4.44322L4.99294 4.60966L4.90765 4.89665L5.13104 4.71929L5.35456 4.89665L5.26913 4.60966L5.47882 4.44322L5.49266 4.43216H5.21646L5.21209 4.41723Z"
174
+ fill="white"
175
+ />
176
+ <path
177
+ d="M-1.28382 5.93582L-1.3691 5.64869L-1.45453 5.93582H-1.73087L-1.5072 6.11332L-1.59263 6.40045L-1.3691 6.22294L-1.14572 6.40045L-1.23101 6.11332L-1.00748 5.93582H-1.28382Z"
178
+ fill="white"
179
+ />
180
+ <path
181
+ d="M0.341288 5.93582L0.25586 5.64869L0.170573 5.93582H-0.10562L0.117763 6.11332L0.0324764 6.40045L0.25586 6.22294L0.479384 6.40045L0.393956 6.11332L0.617481 5.93582H0.341288Z"
182
+ fill="white"
183
+ />
184
+ <path
185
+ d="M1.96639 5.93582L1.88097 5.64869L1.79568 5.93582H1.51934L1.74287 6.11332L1.65744 6.40045L1.88097 6.22294L2.10449 6.40045L2.01906 6.11332L2.24259 5.93582H1.96639Z"
186
+ fill="white"
187
+ />
188
+ <path
189
+ d="M3.59136 5.93582L3.50607 5.64869L3.42064 5.93582H3.14445L3.36797 6.11332L3.28255 6.40045L3.50607 6.22294L3.72945 6.40045L3.64417 6.11332L3.86769 5.93582H3.59136Z"
190
+ fill="white"
191
+ />
192
+ <path
193
+ d="M5.21646 5.93582L5.13104 5.64869L5.04575 5.93582H4.76941L4.99294 6.11332L4.90765 6.40045L5.13104 6.22294L5.35456 6.40045L5.26913 6.11332L5.49266 5.93582H5.21646Z"
194
+ fill="white"
195
+ />
196
+ <path
197
+ d="M-2.18766 0.385832L-2.27309 0.67296H-2.54928L-2.32576 0.850462L-2.41118 1.13773L-2.18766 0.960088L-1.96413 1.13773L-2.04956 0.850462L-1.82604 0.67296H-2.10223L-2.18766 0.385832Z"
198
+ fill="white"
199
+ />
200
+ <path
201
+ d="M-0.562553 0.385832L-0.647981 0.67296H-0.924174L-0.700791 0.850462L-0.786077 1.13773L-0.562553 0.960088L-0.33917 1.13773L-0.357103 1.0769L-0.424456 0.850462L-0.201073 0.67296H-0.477266L-0.562553 0.385832Z"
202
+ fill="white"
203
+ />
204
+ <path
205
+ d="M1.06241 0.385832L0.977125 0.67296H0.70079L0.924315 0.850462L0.839029 1.13773L1.06241 0.960088L1.28594 1.13773L1.20051 0.850462L1.42403 0.67296H1.14784L1.06241 0.385832Z"
206
+ fill="white"
207
+ />
208
+ <path
209
+ d="M2.68752 0.385832L2.60209 0.67296H2.3259L2.54942 0.850462L2.46399 1.13773L2.68752 0.960088L2.91104 1.13773L2.82561 0.850462L3.04914 0.67296H2.7728L2.68752 0.385832Z"
210
+ fill="white"
211
+ />
212
+ <path
213
+ d="M4.31262 0.385832L4.2272 0.67296H3.951L4.17439 0.850462L4.0891 1.13773L4.31262 0.960088L4.53601 1.13773L4.51807 1.0769L4.45072 0.850462L4.67424 0.67296H4.39791L4.31262 0.385832Z"
214
+ fill="white"
215
+ />
216
+ <path
217
+ d="M5.93759 0.385832L5.8523 0.67296H5.57597L5.79949 0.850462L5.7142 1.13773L5.93759 0.960088L6.16111 1.13773L6.07583 0.850462L6.29935 0.67296H6.02302L5.93759 0.385832Z"
218
+ fill="white"
219
+ />
220
+ </svg>
221
+ </template>
@@ -0,0 +1,25 @@
1
+ <template>
2
+ <svg xmlns="https://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
3
+ <path d="M25.6667 -0.166626H0V16.1667H25.6667V-0.166626Z" fill="#DE2910" />
4
+ <path
5
+ d="M4.86468 3.34606L4.31446 1.69132L3.76588 3.34606H1.98837L3.42653 4.36857L2.87795 6.02331L4.31446 5.00079L5.75261 6.02331L5.20404 4.36857L6.64054 3.34606H4.86468Z"
6
+ fill="#FFDE00"
7
+ />
8
+ <path
9
+ d="M10.8446 5.43625H10.2664L10.0885 4.89919L9.91057 5.43625H9.33234L9.80019 5.76849L9.62228 6.30555L10.0885 5.97331L10.5547 6.30555L10.3768 5.76849L10.8446 5.43625Z"
10
+ fill="#FFDE00"
11
+ />
12
+ <path
13
+ d="M9.86279 3.45734L9.94351 4.01698L10.2137 3.51863L10.782 3.61701L10.3817 3.21058L10.6519 2.71061L10.1346 2.95899L9.73265 2.55256L9.81337 3.1122L9.29445 3.36057L9.86279 3.45734Z"
14
+ fill="#FFDE00"
15
+ />
16
+ <path
17
+ d="M8.31756 1.91711L8.61409 2.40096L8.66516 1.8397L9.22691 1.71229L8.69481 1.49133L8.74588 0.928467L8.36698 1.35425L7.83653 1.13329L8.13306 1.61875L7.75416 2.04453L8.31756 1.91711Z"
18
+ fill="#FFDE00"
19
+ />
20
+ <path
21
+ d="M8.71458 6.55715L8.35874 7.00228L7.81676 6.81036L8.13964 7.27807L7.78381 7.7232L8.33898 7.56837L8.66186 8.03609L8.68163 7.47161L9.23679 7.31516L8.69316 7.12324L8.71458 6.55715Z"
22
+ fill="#FFDE00"
23
+ />
24
+ </svg>
25
+ </template>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd"
4
+ 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"
5
+ fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" fill="currentColor" clip-rule="evenodd" d="M5.12024 3.69714C5.24646 3.57091 5.41766 3.5 5.59617 3.5H14.5355L19.0769 8.04143V19.8269C19.0769 20.0054 19.006 20.1766 18.8798 20.3029C18.7536 20.4291 18.5824 20.5 18.4039 20.5H5.59617C5.41766 20.5 5.24646 20.4291 5.12024 20.3029C4.99401 20.1766 4.9231 20.0054 4.9231 19.8269V4.17308C4.9231 3.99457 4.99401 3.82337 5.12024 3.69714ZM5.59617 2C5.01984 2 4.46711 2.22895 4.05958 2.63648C3.65204 3.04401 3.4231 3.59674 3.4231 4.17308V19.8269C3.4231 20.4033 3.65204 20.956 4.05958 21.3635C4.46711 21.771 5.01984 22 5.59617 22H18.4039C18.9802 22 19.5329 21.771 19.9405 21.3635C20.348 20.956 20.5769 20.4033 20.5769 19.8269V7.73077C20.5769 7.53186 20.4979 7.34109 20.3573 7.20044L15.3765 2.21967C15.2359 2.07902 15.0451 2 14.8462 2H5.59617ZM9.50672 6.3465C9.01681 6.3465 8.61966 6.74365 8.61966 7.23356C8.61966 7.72347 9.01681 8.12062 9.50672 8.12062C9.63196 8.12062 9.74929 8.09511 9.85532 8.04971C10.1733 7.91355 10.3938 7.59844 10.3938 7.23356C10.3938 6.74365 9.99663 6.3465 9.50672 6.3465ZM7.11966 7.23356C7.11966 5.91522 8.18838 4.8465 9.50672 4.8465C10.8251 4.8465 11.8938 5.91522 11.8938 7.23356C11.8938 7.78858 11.7044 8.29882 11.3873 8.70378C11.9192 9.06086 12.3541 9.55871 12.6611 10.1427C12.8539 10.5093 12.713 10.9628 12.3463 11.1555C11.9797 11.3483 11.5262 11.2074 11.3335 10.8407C11.1284 10.4506 10.8471 10.1415 10.5265 9.93284C10.2072 9.72497 9.85686 9.62149 9.50819 9.62149C9.15952 9.62149 8.8092 9.72497 8.48986 9.93284C8.16931 10.1415 7.88801 10.4506 7.68292 10.8407C7.49016 11.2074 7.03669 11.3483 6.67006 11.1555C6.30343 10.9628 6.16247 10.5093 6.35523 10.1427C6.66187 9.55944 7.09606 9.06211 7.62709 8.70513C7.30919 8.29966 7.11966 7.78874 7.11966 7.23356ZM6.26907 14.1346C6.26907 13.7203 6.60486 13.3846 7.01907 13.3846H16.9806C17.3948 13.3846 17.7306 13.7203 17.7306 14.1346C17.7306 14.5488 17.3948 14.8846 16.9806 14.8846H7.01907C6.60486 14.8846 6.26907 14.5488 6.26907 14.1346ZM7.01907 16.9424C6.60486 16.9424 6.26907 17.2782 6.26907 17.6924C6.26907 18.1066 6.60486 18.4424 7.01907 18.4424H12.7114C13.1256 18.4424 13.4614 18.1066 13.4614 17.6924C13.4614 17.2782 13.1256 16.9424 12.7114 16.9424H7.01907Z" />
4
+ </svg>
5
+ </template>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg class="fill-deepblue-900 dark:fill-gray-200" fill="none" height="16" viewBox="0 0 17 16" width="17"
3
+ xmlns="https://www.w3.org/2000/svg">
4
+ <path
5
+ d="M9.02496 1.525C9.02496 1.23505 8.78991 1 8.49996 1C8.21001 1 7.97496 1.23505 7.97496 1.525V9.97001L6.71285 8.7079C6.50783 8.50288 6.17542 8.50288 5.9704 8.7079C5.76537 8.91293 5.76537 9.24534 5.9704 9.45036L8.12872 11.6087C8.22717 11.7071 8.36071 11.7625 8.49994 11.7625C8.63918 11.7625 8.77272 11.7071 8.87117 11.6087L11.0295 9.45036C11.2345 9.24534 11.2345 8.91293 11.0295 8.7079C10.8245 8.50288 10.4921 8.50288 10.287 8.7079L9.02496 9.96999V1.525Z"
6
+ fill="currentColor"/>
7
+ <path
8
+ d="M2.025 10.7124C2.31494 10.7124 2.54999 10.9475 2.54999 11.2374V13.9499H14.4499V11.2374C14.4499 10.9475 14.685 10.7124 14.9749 10.7124C15.2649 10.7124 15.4999 10.9475 15.4999 11.2374V14.4749C15.4999 14.7649 15.2649 14.9999 14.9749 14.9999H2.025C1.73505 14.9999 1.5 14.7649 1.5 14.4749V11.2374C1.5 10.9475 1.73505 10.7124 2.025 10.7124Z"
9
+ fill="currentColor"/>
10
+ </svg>
11
+ </template>
package/icons/edit.vue ADDED
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd"
4
+ d="M12.6278 2.05C12.4541 2.05 12.2822 2.0842 12.1218 2.15065C11.9613 2.2171 11.8156 2.3145 11.6928 2.43728L2.97449 11.1556L2.27325 13.7268L4.84444 13.0255L13.5627 4.30723C13.6855 4.18445 13.7829 4.03868 13.8494 3.87826C13.9158 3.71784 13.95 3.5459 13.95 3.37226C13.95 3.19861 13.9158 3.02667 13.8494 2.86625C13.7829 2.70583 13.6855 2.56006 13.5627 2.43728C13.44 2.3145 13.2942 2.2171 13.1338 2.15065C12.9734 2.0842 12.8014 2.05 12.6278 2.05ZM11.72 1.18058C12.0078 1.06136 12.3162 1 12.6278 1C12.9393 1 13.2478 1.06136 13.5356 1.18058C13.8234 1.29979 14.0849 1.47453 14.3052 1.69482C14.5255 1.9151 14.7002 2.17662 14.8195 2.46443C14.9387 2.75225 15 3.06073 15 3.37226C15 3.68378 14.9387 3.99226 14.8195 4.28008C14.7002 4.5679 14.5255 4.82941 14.3052 5.0497L5.48831 13.8666C5.42371 13.9312 5.34336 13.9778 5.25522 14.0019L1.66315 14.9815C1.48139 15.0311 1.287 14.9795 1.15378 14.8463C1.02056 14.713 0.96894 14.5186 1.01851 14.3369L1.99817 10.7448C2.02221 10.6567 2.06883 10.5763 2.13344 10.5117L10.9503 1.69482C11.1706 1.47453 11.4321 1.29979 11.72 1.18058Z"
5
+ fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="currentColor"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M6.05638 1.61878C6.34764 1.4617 6.70586 1.46039 6.99831 1.61502L11.4033 3.94407C11.6179 4.05751 11.7489 4.27106 11.75 4.50507C11.7511 4.73916 11.6221 4.95413 11.4083 5.06946L10.1674 5.7387L10.1418 8.2351C10.1384 8.57021 9.94094 8.85607 9.66038 9.00603L7.21773 10.3116C6.73675 10.5687 6.14072 10.5624 5.66598 10.2943L3.47787 9.05864C3.20215 8.90294 3.01268 8.61438 3.01609 8.28122L3.04027 5.91529L1.59667 5.15202C1.38212 5.03858 1.25115 4.82504 1.25001 4.59103C1.24887 4.35693 1.37788 4.14197 1.59174 4.02663L6.05638 1.61878ZM3.81391 6.32434L3.79383 8.28927C3.79365 8.30652 3.80341 8.34504 3.85853 8.37617L6.04664 9.61184C6.28986 9.7492 6.60499 9.75294 6.85286 9.62045L9.29551 8.31488C9.35293 8.28419 9.36392 8.24459 9.3641 8.22705L9.38523 6.16052L6.94362 7.47732C6.65236 7.6344 6.29414 7.6357 6.00169 7.48108L3.81391 6.32434ZM6.63652 2.3078C6.57235 2.27388 6.48733 2.2743 6.42381 2.30855L2.19961 4.58674L6.36348 6.78829C6.42765 6.82222 6.51267 6.82179 6.57619 6.78754L10.8004 4.50936L6.63652 2.3078ZM1.95846 4.45923C1.95841 4.45921 1.95851 4.45926 1.95846 4.45923V4.45923Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path d="M8.05413 11.2325C7.13655 11.6968 5.99183 11.8421 5.12238 11.8421C2.86753 11.8421 1.70776 10.5749 1.70776 8.53775C1.70776 6.14861 3.44666 3.66211 6.29869 3.66211C7.89318 3.66211 9.0364 4.54437 9.0364 6.00332C9.0364 8.0075 7.08691 8.72948 3.93102 8.65009C3.93102 8.87478 4.01225 9.22678 4.17321 9.45147C4.47857 9.8529 5.01107 10.0611 5.68647 10.0611C6.53937 10.0611 7.26441 9.86938 7.89318 9.56381L8.05413 11.2325ZM6.00837 5.34574C4.92984 5.34574 4.31761 6.228 4.15666 6.96496C5.96024 6.98144 6.86278 6.7238 6.86278 6.0183C6.86128 5.61836 6.53937 5.34574 6.00837 5.34574ZM11.7997 7.46826C10.4248 7.46826 9.31017 8.5782 9.31017 9.94727C9.31017 11.0917 10.0909 12.0533 11.1499 12.3379C11.2747 11.2894 10.5737 10.3832 9.81559 10.4895C9.81559 10.4895 9.90886 9.93529 10.5196 9.75105C11.0506 9.59077 11.2762 9.8544 11.3258 9.9263C11.2672 9.83493 10.9949 9.36609 11.1348 8.87178C11.2897 8.32056 11.8012 8.0794 11.8012 8.0794C11.8012 8.0794 12.3126 8.32056 12.4676 8.87178C12.606 9.36609 12.3337 9.83493 12.2765 9.9263C12.3262 9.8544 12.5518 9.59077 13.0828 9.75105C13.6935 9.93529 13.7868 10.4895 13.7868 10.4895C13.0301 10.3832 12.3292 11.2894 12.4525 12.3379C13.5115 12.0533 14.2922 11.0917 14.2922 9.94727C14.2892 8.5782 13.1746 7.46826 11.7997 7.46826Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+ <script setup lang="ts">
7
+ </script>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd"
4
+ d="M2.7827 2.33301C2.66369 2.33301 2.54956 2.38028 2.46541 2.46443C2.38126 2.54858 2.33398 2.66272 2.33398 2.78172V13.2176C2.33398 13.3366 2.38126 13.4507 2.46541 13.5349C2.54956 13.619 2.66369 13.6663 2.7827 13.6663H13.2186C13.3376 13.6663 13.4517 13.619 13.5359 13.5349C13.62 13.4507 13.6673 13.3366 13.6673 13.2176V8.94838C13.6673 8.67223 13.8911 8.44838 14.1673 8.44838C14.4434 8.44838 14.6673 8.67223 14.6673 8.94838V13.2176C14.6673 13.6018 14.5147 13.9703 14.243 14.242C13.9713 14.5137 13.6028 14.6663 13.2186 14.6663H2.7827C2.39848 14.6663 2.02999 14.5137 1.7583 14.242C1.48662 13.9703 1.33398 13.6018 1.33398 13.2176V2.78172C1.33398 2.3975 1.48662 2.02901 1.7583 1.75733C2.02999 1.48564 2.39848 1.33301 2.7827 1.33301H7.05192C7.32806 1.33301 7.55192 1.55687 7.55192 1.83301C7.55192 2.10915 7.32806 2.33301 7.05192 2.33301H2.7827ZM10.3468 1.83301C10.3468 1.55687 10.5707 1.33301 10.8468 1.33301H14.1673C14.2998 1.33301 14.4202 1.38453 14.5097 1.46864C14.5174 1.47585 14.5248 1.48331 14.532 1.49099C14.5733 1.53491 14.6051 1.58445 14.6275 1.63706C14.6531 1.69723 14.6673 1.76346 14.6673 1.83301V5.15351C14.6673 5.42966 14.4434 5.65351 14.1673 5.65351C13.8912 5.65351 13.6673 5.42966 13.6673 5.15351V3.04011L8.3542 8.35321C8.15894 8.54848 7.84236 8.54848 7.6471 8.35321C7.45184 8.15795 7.45184 7.84137 7.6471 7.64611L12.9602 2.33301H10.8468C10.5707 2.33301 10.3468 2.10915 10.3468 1.83301Z"
5
+ fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -0,0 +1,26 @@
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="currentColor"
11
+ xmlns="https://www.w3.org/2000/svg"
12
+ >
13
+ <g id="eye-closed">
14
+ <path
15
+ id="Vector"
16
+ fill-rule="evenodd"
17
+ clip-rule="evenodd"
18
+ d="M1.15389 1.15389C1.35891 0.948867 1.69131 0.948867 1.89634 1.15389L4.86827 4.12582C4.87235 4.12977 4.87637 4.13379 4.88034 4.13789L7.12029 6.37784C7.12216 6.37969 7.12403 6.38155 7.12588 6.38343L9.61648 8.87403C9.61839 8.87592 9.62029 8.87782 9.62218 8.87973L11.8611 11.1186C11.8652 11.1226 11.8693 11.1267 11.8733 11.1308L14.8461 14.1036C15.0511 14.3087 15.0511 14.6411 14.8461 14.8461C14.6411 15.0511 14.3087 15.0511 14.1036 14.8461L11.4379 12.1804C10.42 12.8469 9.23139 13.2139 8.00857 13.2339L7.99999 13.234C5.73006 13.234 3.98219 11.9378 2.83441 10.7135C2.25573 10.0963 1.81375 9.48103 1.51637 9.02058C1.36736 8.78985 1.2538 8.59665 1.17676 8.4597C1.13822 8.39119 1.10877 8.33665 1.08853 8.29841C1.07841 8.27928 1.07059 8.26423 1.06509 8.25352L1.05858 8.24077L1.05663 8.23691L1.05598 8.23562C1.05598 8.23562 1.05555 8.23476 1.52511 7.99998L1.05555 8.23476C0.97926 8.08218 0.981858 7.90206 1.06251 7.75175C1.73568 6.49723 2.63732 5.38169 3.71923 4.46168L1.15389 1.89634C0.948867 1.69131 0.948867 1.35891 1.15389 1.15389ZM4.46435 5.2068C3.52524 5.99217 2.73273 6.9385 2.12424 8.00188C2.19077 8.11793 2.28241 8.27135 2.3984 8.45094C2.67125 8.87342 3.07541 9.43542 3.60041 9.99541C4.65915 11.1247 6.14724 12.1824 7.9957 12.184C8.94424 12.1677 9.86808 11.9021 10.6763 11.4187L9.21526 9.95771C9.11156 10.0259 9.00225 10.0858 8.88831 10.1366C8.6073 10.2618 8.30395 10.3291 7.99635 10.3345C7.68876 10.34 7.38322 10.2834 7.09797 10.1682C6.81271 10.0529 6.55359 9.88145 6.33605 9.66391C6.11852 9.44637 5.94702 9.18725 5.8318 8.902C5.71659 8.61674 5.66 8.31121 5.66543 8.00361C5.67086 7.69602 5.73818 7.39266 5.86339 7.11165C5.91416 6.99772 5.97402 6.8884 6.04226 6.78471L4.46435 5.2068ZM6.8146 7.55705C6.75183 7.70416 6.71807 7.86209 6.71525 8.02213C6.71231 8.18875 6.74296 8.35425 6.80537 8.50876C6.86778 8.66327 6.96067 8.80363 7.0785 8.92146C7.19633 9.0393 7.33669 9.13219 7.4912 9.1946C7.64572 9.25701 7.81122 9.28766 7.97783 9.28472C8.13787 9.28189 8.2958 9.24813 8.44291 9.18536L6.8146 7.55705ZM7.99877 3.81598C7.62335 3.81509 7.24909 3.85786 6.88354 3.94343C6.60123 4.00951 6.3188 3.83422 6.25272 3.55191C6.18664 3.2696 6.36193 2.98717 6.64424 2.92108C7.08883 2.81702 7.54401 2.76497 8.00062 2.766C10.2702 2.76623 12.0179 4.06224 13.1656 5.28642C13.7443 5.90368 14.1862 6.51893 14.4836 6.97939C14.6326 7.21012 14.7462 7.40331 14.8232 7.54027C14.8618 7.60878 14.8912 7.66331 14.9115 7.70156C14.9216 7.72068 14.9294 7.73574 14.9349 7.74644L14.9394 7.75523C15.0177 7.90413 15.0232 8.08794 14.9379 8.24748C14.5633 8.94815 14.1167 9.6078 13.6052 10.2157C13.4185 10.4376 13.0873 10.4661 12.8654 10.2794C12.6436 10.0927 12.6151 9.76154 12.8018 9.53969C13.2059 9.05942 13.5654 8.54357 13.876 7.99858C13.8095 7.88247 13.7177 7.72887 13.6016 7.54903C13.3287 7.12654 12.9246 6.56454 12.3996 6.00455C11.34 4.87435 9.85046 3.81598 8.00001 3.81598L7.99877 3.81598Z"
19
+ />
20
+ </g>
21
+ </svg>
22
+ </template>
23
+
24
+ <style scoped>
25
+
26
+ </style>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd"
4
+ d="M2.39875 8.4542C2.28159 8.27218 2.18927 8.11694 2.12256 8.00006C2.18927 7.88318 2.28159 7.72795 2.39875 7.54592C2.67167 7.12192 3.0759 6.55793 3.60097 5.99596C4.66082 4.86164 6.15027 3.80001 8.00008 3.80001C9.84989 3.80001 11.3393 4.86164 12.3992 5.99596C12.9243 6.55793 13.3285 7.12192 13.6014 7.54592C13.7186 7.72795 13.8109 7.88318 13.8776 8.00006C13.8109 8.11694 13.7186 8.27218 13.6014 8.4542C13.3285 8.8782 12.9243 9.44219 12.3992 10.0042C11.3393 11.1385 9.84989 12.2001 8.00008 12.2001C6.15027 12.2001 4.66082 11.1385 3.60097 10.0042C3.0759 9.44219 2.67167 8.8782 2.39875 8.4542ZM14.4752 8.00006C14.9451 7.7659 14.9449 7.76553 14.9449 7.76553L14.4752 8.00006ZM14.9449 7.76553C15.0183 7.91299 15.0185 8.08676 14.9451 8.23422L14.4752 8.00006C14.9451 8.23422 14.9446 8.23508 14.9446 8.23508L14.944 8.23637L14.942 8.24024L14.9355 8.25302C14.93 8.26375 14.9222 8.27885 14.9121 8.29803C14.8919 8.33639 14.8624 8.3911 14.8239 8.45982C14.7469 8.5972 14.6333 8.79102 14.4843 9.0225C14.187 9.48445 13.7451 10.1017 13.1664 10.721C12.0189 11.9492 10.2708 13.2501 8.00008 13.2501C5.72939 13.2501 3.98131 11.9492 2.83374 10.721C2.2551 10.1017 1.81316 9.48445 1.51583 9.0225C1.36683 8.79102 1.25329 8.5972 1.17627 8.45982C1.13775 8.3911 1.1083 8.33639 1.08807 8.29803C1.07796 8.27885 1.07014 8.26375 1.06464 8.25302L1.05813 8.24024L1.05619 8.23637L1.05511 8.23422C0.98163 8.08676 0.98163 7.91336 1.05511 7.7659L1.52501 8.00006C1.05511 7.7659 1.05554 7.76505 1.05554 7.76505L1.05619 7.76375L1.05813 7.75989L1.06464 7.7471C1.07014 7.73637 1.07796 7.72127 1.08807 7.70209C1.1083 7.66373 1.13775 7.60903 1.17627 7.5403C1.25329 7.40292 1.36683 7.2091 1.51583 6.97762C1.81316 6.51567 2.2551 5.8984 2.83374 5.27911C3.98131 4.0509 5.72939 2.75 8.00008 2.75C10.2708 2.75 12.0189 4.0509 13.1664 5.27911C13.7451 5.8984 14.187 6.51567 14.4843 6.97762C14.6333 7.2091 14.7469 7.40292 14.8239 7.5403C14.8624 7.60903 14.8919 7.66373 14.9121 7.70209C14.9222 7.72127 14.93 7.73637 14.9355 7.7471L14.942 7.75989L14.944 7.76375L14.9449 7.76553ZM6.75915 8.00006C6.75915 7.30975 7.3164 6.75317 8.00008 6.75317C8.68375 6.75317 9.241 7.30975 9.241 8.00006C9.241 8.69037 8.68375 9.24695 8.00008 9.24695C7.3164 9.24695 6.75915 8.69037 6.75915 8.00006ZM8.00008 5.70316C6.73316 5.70316 5.70914 6.73319 5.70914 8.00006C5.70914 9.26693 6.73316 10.297 8.00008 10.297C9.26699 10.297 10.291 9.26693 10.291 8.00006C10.291 6.73319 9.26699 5.70316 8.00008 5.70316Z"
5
+ fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -0,0 +1,23 @@
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="currentColor"
11
+ xmlns="https://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ d="M2.39875 8.4542C2.28159 8.27218 2.18927 8.11694 2.12256 8.00006C2.18927 7.88318 2.28159 7.72795 2.39875 7.54592C2.67167 7.12192 3.0759 6.55793 3.60097 5.99596C4.66082 4.86164 6.15027 3.80001 8.00008 3.80001C9.84989 3.80001 11.3393 4.86164 12.3992 5.99596C12.9243 6.55793 13.3285 7.12192 13.6014 7.54592C13.7186 7.72795 13.8109 7.88318 13.8776 8.00006C13.8109 8.11694 13.7186 8.27218 13.6014 8.4542C13.3285 8.8782 12.9243 9.44219 12.3992 10.0042C11.3393 11.1385 9.84989 12.2001 8.00008 12.2001C6.15027 12.2001 4.66082 11.1385 3.60097 10.0042C3.0759 9.44219 2.67167 8.8782 2.39875 8.4542ZM14.4752 8.00006C14.9451 7.7659 14.9449 7.76553 14.9449 7.76553L14.4752 8.00006ZM14.9449 7.76553C15.0183 7.91299 15.0185 8.08676 14.9451 8.23422L14.4752 8.00006C14.9451 8.23422 14.9446 8.23508 14.9446 8.23508L14.944 8.23637L14.942 8.24024L14.9355 8.25302C14.93 8.26375 14.9222 8.27885 14.9121 8.29803C14.8919 8.33639 14.8624 8.3911 14.8239 8.45982C14.7469 8.5972 14.6333 8.79102 14.4843 9.0225C14.187 9.48445 13.7451 10.1017 13.1664 10.721C12.0189 11.9492 10.2708 13.2501 8.00008 13.2501C5.72939 13.2501 3.98131 11.9492 2.83374 10.721C2.2551 10.1017 1.81316 9.48445 1.51583 9.0225C1.36683 8.79102 1.25329 8.5972 1.17627 8.45982C1.13775 8.3911 1.1083 8.33639 1.08807 8.29803C1.07796 8.27885 1.07014 8.26375 1.06464 8.25302L1.05813 8.24024L1.05619 8.23637L1.05511 8.23422C0.98163 8.08676 0.98163 7.91336 1.05511 7.7659L1.52501 8.00006C1.05511 7.7659 1.05554 7.76505 1.05554 7.76505L1.05619 7.76375L1.05813 7.75989L1.06464 7.7471C1.07014 7.73637 1.07796 7.72127 1.08807 7.70209C1.1083 7.66373 1.13775 7.60903 1.17627 7.5403C1.25329 7.40292 1.36683 7.2091 1.51583 6.97762C1.81316 6.51567 2.2551 5.8984 2.83374 5.27911C3.98131 4.0509 5.72939 2.75 8.00008 2.75C10.2708 2.75 12.0189 4.0509 13.1664 5.27911C13.7451 5.8984 14.187 6.51567 14.4843 6.97762C14.6333 7.2091 14.7469 7.40292 14.8239 7.5403C14.8624 7.60903 14.8919 7.66373 14.9121 7.70209C14.9222 7.72127 14.93 7.73637 14.9355 7.7471L14.942 7.75989L14.944 7.76375L14.9449 7.76553ZM6.75915 8.00006C6.75915 7.30975 7.3164 6.75317 8.00008 6.75317C8.68375 6.75317 9.241 7.30975 9.241 8.00006C9.241 8.69037 8.68375 9.24695 8.00008 9.24695C7.3164 9.24695 6.75915 8.69037 6.75915 8.00006ZM8.00008 5.70316C6.73316 5.70316 5.70914 6.73319 5.70914 8.00006C5.70914 9.26693 6.73316 10.297 8.00008 10.297C9.26699 10.297 10.291 9.26693 10.291 8.00006C10.291 6.73319 9.26699 5.70316 8.00008 5.70316Z"
17
+ />
18
+ </svg>
19
+ </template>
20
+
21
+ <style scoped>
22
+
23
+ </style>
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M4.11492 1C3.63222 1 3.1693 1.19175 2.82799 1.53306C2.48667 1.87438 2.29492 2.3373 2.29492 2.81999V13.18C2.29492 13.6627 2.48667 14.1256 2.82799 14.4669C3.1693 14.8082 3.63222 15 4.11492 15H11.8849C12.3676 15 12.8305 14.8082 13.1718 14.4669C13.5131 14.1256 13.7049 13.6627 13.7049 13.18V5.40999C13.7049 5.26732 13.648 5.13794 13.5556 5.04332C13.5541 5.04179 13.5526 5.04027 13.5511 5.03876L9.66639 1.15403L9.66613 1.15377C9.56767 1.05531 9.43414 1 9.2949 1M8.7699 2.05H4.11492C3.9107 2.05 3.71485 2.13112 3.57045 2.27552C3.42604 2.41993 3.34492 2.61578 3.34492 2.81999V13.18C3.34492 13.3842 3.42604 13.58 3.57045 13.7244C3.71485 13.8688 3.9107 13.95 4.11492 13.95H11.8849C12.0891 13.95 12.285 13.8688 12.4294 13.7244C12.5738 13.58 12.6549 13.3842 12.6549 13.18V5.93499H9.2949C9.00495 5.93499 8.7699 5.69994 8.7699 5.40999V2.05ZM11.9124 4.88499L9.8199 2.79246V4.88499H11.9124ZM5.40992 8.12251C5.11997 8.12251 4.88492 8.35756 4.88492 8.64751C4.88492 8.93746 5.11997 9.17251 5.40992 9.17251H10.5899C10.8799 9.17251 11.1149 8.93746 11.1149 8.64751C11.1149 8.35756 10.8799 8.12251 10.5899 8.12251H5.40992ZM4.88492 11.2375C4.88492 10.9475 5.11997 10.7125 5.40992 10.7125H10.5899C10.8799 10.7125 11.1149 10.9475 11.1149 11.2375C11.1149 11.5274 10.8799 11.7625 10.5899 11.7625H5.40992C5.11997 11.7625 4.88492 11.5274 4.88492 11.2375ZM4.88492 6.05747C4.88492 5.76752 5.11997 5.53247 5.40992 5.53247H6.70492C6.99487 5.53247 7.22992 5.76752 7.22992 6.05747C7.22992 6.34742 6.99487 6.58247 6.70492 6.58247H5.40992C5.11997 6.58247 4.88492 6.34742 4.88492 6.05747Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,16 @@
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg
5
+ width="18"
6
+ height="18"
7
+ viewBox="0 0 18 18"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ >
11
+ <path
12
+ d="M15.023 4.66453L12.2105 1.85203C12.1582 1.79981 12.0961 1.7584 12.0279 1.73017C11.9596 1.70194 11.8864 1.68744 11.8125 1.6875H6.1875C5.88913 1.6875 5.60298 1.80603 5.392 2.017C5.18103 2.22798 5.0625 2.51413 5.0625 2.8125V3.9375H3.9375C3.63913 3.9375 3.35298 4.05603 3.142 4.267C2.93103 4.47798 2.8125 4.76413 2.8125 5.0625V15.1875C2.8125 15.4859 2.93103 15.772 3.142 15.983C3.35298 16.194 3.63913 16.3125 3.9375 16.3125H11.8125C12.1109 16.3125 12.397 16.194 12.608 15.983C12.819 15.772 12.9375 15.4859 12.9375 15.1875V14.0625H14.0625C14.3609 14.0625 14.647 13.944 14.858 13.733C15.069 13.522 15.1875 13.2359 15.1875 12.9375V5.0625C15.1876 4.98861 15.1731 4.91543 15.1448 4.84715C15.1166 4.77886 15.0752 4.71681 15.023 4.66453ZM11.8125 15.1875H3.9375V5.0625H9.32977L11.8125 7.54523V13.4887C11.8125 13.493 11.8125 13.4965 11.8125 13.5C11.8125 13.5035 11.8125 13.507 11.8125 13.5113V15.1875ZM14.0625 12.9375H12.9375V7.3125C12.9376 7.23861 12.9231 7.16543 12.8948 7.09715C12.8666 7.02886 12.8252 6.96681 12.773 6.91453L9.96047 4.10203C9.90819 4.04981 9.84614 4.0084 9.77785 3.98017C9.70957 3.95194 9.63639 3.93744 9.5625 3.9375H6.1875V2.8125H11.5798L14.0625 5.29523V12.9375ZM10.125 10.6875C10.125 10.8367 10.0657 10.9798 9.96025 11.0852C9.85476 11.1907 9.71168 11.25 9.5625 11.25H6.1875C6.03832 11.25 5.89524 11.1907 5.78975 11.0852C5.68426 10.9798 5.625 10.8367 5.625 10.6875C5.625 10.5383 5.68426 10.3952 5.78975 10.2898C5.89524 10.1843 6.03832 10.125 6.1875 10.125H9.5625C9.71168 10.125 9.85476 10.1843 9.96025 10.2898C10.0657 10.3952 10.125 10.5383 10.125 10.6875ZM10.125 12.9375C10.125 13.0867 10.0657 13.2298 9.96025 13.3352C9.85476 13.4407 9.71168 13.5 9.5625 13.5H6.1875C6.03832 13.5 5.89524 13.4407 5.78975 13.3352C5.68426 13.2298 5.625 13.0867 5.625 12.9375C5.625 12.7883 5.68426 12.6452 5.78975 12.5398C5.89524 12.4343 6.03832 12.375 6.1875 12.375H9.5625C9.71168 12.375 9.85476 12.4343 9.96025 12.5398C10.0657 12.6452 10.125 12.7883 10.125 12.9375Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.0991 3.62619C10.0991 3.14308 10.4908 2.75143 10.9739 2.75143C11.457 2.75143 11.8486 3.14308 11.8486 3.62619C11.8486 4.10931 11.457 4.50095 10.9739 4.50095C10.4908 4.50095 10.0991 4.10931 10.0991 3.62619ZM9.12203 4.15173H1.52681C1.23694 4.15173 1.00195 3.91674 1.00195 3.62687C1.00195 3.33701 1.23694 3.10202 1.52681 3.10202H9.12164C9.34988 2.29392 10.0927 1.70172 10.9739 1.70172C11.855 1.70172 12.5979 2.29392 12.8261 3.10202H14.4752C14.765 3.10202 15 3.33701 15 3.62687C15 3.91674 14.765 4.15173 14.4752 4.15173H12.8257C12.597 4.95914 11.8545 5.55066 10.9739 5.55066C10.0932 5.55066 9.35072 4.95914 9.12203 4.15173ZM5.72668 6.07518C6.60814 6.07518 7.35119 6.66779 7.57914 7.47633H14.4732C14.7631 7.47633 14.9981 7.71131 14.9981 8.00118C14.9981 8.29105 14.7631 8.52604 14.4732 8.52604H7.57827C7.3493 9.33301 6.60702 9.92412 5.72668 9.92412C4.84634 9.92412 4.10405 9.33301 3.87509 8.52604H1.52681C1.23694 8.52604 1.00195 8.29105 1.00195 8.00118C1.00195 7.71131 1.23694 7.47633 1.52681 7.47633H3.87422C4.10217 6.66779 4.84522 6.07518 5.72668 6.07518ZM5.72668 7.12489C5.24356 7.12489 4.85192 7.51653 4.85192 7.99965C4.85192 8.48276 5.24356 8.87441 5.72668 8.87441C6.20979 8.87441 6.60144 8.48276 6.60144 7.99965C6.60144 7.51653 6.20979 7.12489 5.72668 7.12489ZM12.8257 12.8992C12.5971 13.7067 11.8546 14.2983 10.9739 14.2983C10.0932 14.2983 9.35067 13.7067 9.12201 12.8992H1.52681C1.23694 12.8992 1.00195 12.6643 1.00195 12.3744C1.00195 12.0845 1.23694 11.8495 1.52681 11.8495H9.12167C9.34993 11.0415 10.0927 10.4493 10.9739 10.4493C11.855 10.4493 12.5978 11.0415 12.8261 11.8495H14.4752C14.765 11.8495 15 12.0845 15 12.3744C15 12.6643 14.765 12.8992 14.4752 12.8992H12.8257ZM10.0991 12.3738C10.0991 11.8907 10.4908 11.499 10.9739 11.499C11.457 11.499 11.8486 11.8907 11.8486 12.3738C11.8486 12.8569 11.457 13.2485 10.9739 13.2485C10.4908 13.2485 10.0991 12.8569 10.0991 12.3738Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
package/icons/flag.vue ADDED
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path d="M17.854 12.33L16.7026 11.11C16.4289 10.86 16.2685 10.49 16.259 10.08C16.2402 9.63 16.41 9.18 16.7215 8.85L17.854 7.65C18.8355 6.61 19.2036 5.61 18.8921 4.82C18.5901 4.04 17.6558 3.61 16.2779 3.61H6.41564V2.75C6.41564 2.34 6.09476 2 5.70782 2C5.32088 2 5 2.34 5 2.75V21.25C5 21.66 5.32088 22 5.70782 22C6.09476 22 6.41564 21.66 6.41564 21.25V16.37H16.2779C17.6369 16.37 18.5524 15.93 18.8638 15.14C19.1753 14.35 18.8166 13.36 17.854 12.33Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+ <script setup lang="ts">
7
+ </script>
package/icons/gift.vue ADDED
@@ -0,0 +1,8 @@
1
+ <template>
2
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path
4
+ d="M18.4615 5.60101H15.0885C15.126 5.56801 15.1644 5.53601 15.201 5.50101C15.493 5.23121 15.7283 4.90164 15.8923 4.53293C16.0563 4.16422 16.1453 3.76429 16.1538 3.35816C16.1665 2.91387 16.0917 2.47157 15.934 2.05844C15.7763 1.6453 15.5391 1.27004 15.2369 0.955695C14.9347 0.641347 14.5739 0.394544 14.1767 0.23044C13.7795 0.0663363 13.3542 -0.0116068 12.9269 0.00139604C12.5362 0.0101473 12.1515 0.102674 11.7967 0.273184C11.442 0.443694 11.1249 0.688517 10.8654 0.992327C10.5062 1.42519 10.2143 1.9137 10 2.44023C9.78575 1.9137 9.49377 1.42519 9.13462 0.992327C8.87506 0.688517 8.558 0.443694 8.20327 0.273184C7.84854 0.102674 7.46378 0.0101473 7.07308 0.00139604C6.64584 -0.0116068 6.22055 0.0663363 5.82332 0.23044C5.4261 0.394544 5.06531 0.641347 4.76312 0.955695C4.46094 1.27004 4.22372 1.6453 4.06603 2.05844C3.90835 2.47157 3.83352 2.91387 3.84615 3.35816C3.8547 3.76429 3.94374 4.16422 4.1077 4.53293C4.27166 4.90164 4.50701 5.23121 4.79904 5.50101C4.83558 5.53401 4.87404 5.56601 4.91154 5.60101H1.53846C1.13044 5.60101 0.739122 5.76956 0.450605 6.0696C0.162087 6.36964 0 6.77658 0 7.20089V10.4007C0 10.825 0.162087 11.2319 0.450605 11.532C0.739122 11.832 1.13044 12.0006 1.53846 12.0006V18.4001C1.53846 18.8244 1.70055 19.2314 1.98907 19.5314C2.27758 19.8314 2.6689 20 3.07692 20H16.9231C17.3311 20 17.7224 19.8314 18.0109 19.5314C18.2995 19.2314 18.4615 18.8244 18.4615 18.4001V12.0006C18.8696 12.0006 19.2609 11.832 19.5494 11.532C19.8379 11.2319 20 10.825 20 10.4007V7.20089C20 6.77658 19.8379 6.36964 19.5494 6.0696C19.2609 5.76956 18.8696 5.60101 18.4615 5.60101ZM12.0192 2.05225C12.141 1.91238 12.2893 1.80021 12.4548 1.72278C12.6203 1.64534 12.7993 1.60432 12.9808 1.60228H13.0279C13.2405 1.60367 13.4508 1.64918 13.6463 1.73615C13.8419 1.82312 14.0187 1.9498 14.1666 2.10876C14.3144 2.26773 14.4303 2.45579 14.5074 2.66191C14.5844 2.86804 14.6211 3.08809 14.6154 3.30917C14.6134 3.49785 14.574 3.68408 14.4995 3.85615C14.4251 4.02823 14.3172 4.18244 14.1827 4.3091C13.2702 5.14904 11.7558 5.44502 10.8173 5.54901C10.9327 4.49008 11.25 2.95119 12.0192 2.05225ZM5.85673 2.08825C6.15475 1.77836 6.55837 1.60335 6.97981 1.60128H7.02692C7.20836 1.60332 7.38744 1.64434 7.55291 1.72178C7.71838 1.79921 7.86667 1.91138 7.98846 2.05125C8.79519 2.99919 9.07981 4.57108 9.17981 5.54301C8.24519 5.44302 6.73365 5.14304 5.82212 4.3041C5.68762 4.17744 5.57975 4.02323 5.50529 3.85115C5.43083 3.67908 5.39138 3.49285 5.38942 3.30417C5.38346 3.07942 5.42147 2.85575 5.50113 2.64673C5.5808 2.43772 5.70047 2.24772 5.85288 2.08825H5.85673ZM1.53846 7.20089H9.23077V10.4007H1.53846V7.20089ZM3.07692 12.0006H9.23077V18.4001H3.07692V12.0006ZM16.9231 18.4001H10.7692V12.0006H16.9231V18.4001ZM18.4615 10.4007H10.7692V7.20089H18.4615V10.4007Z"
5
+ fill="currentColor"
6
+ />
7
+ </svg>
8
+ </template>
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M6.89027 2.1533C4.30223 2.64152 2.30621 4.80563 2.07285 7.475H5.02171C5.20164 5.57197 5.84478 3.74533 6.89027 2.1533ZM8.00002 0.999985C4.13402 0.999985 1 4.134 1 8C1 11.866 4.13402 15 8.00002 15C11.866 15 15 11.866 15 8C15 4.134 11.866 0.999985 8.00002 0.999985ZM9.10977 2.15329C10.1553 3.74533 10.7984 5.57197 10.9783 7.475H13.9272C13.6938 4.80563 11.6978 2.64152 9.10977 2.15329ZM9.92318 7.475C9.7326 5.64189 9.06956 3.88997 8.00002 2.3907C6.93048 3.88997 6.26744 5.64189 6.07686 7.475H9.92318ZM6.07686 8.52501H9.92318C9.7326 10.3581 9.06956 12.11 8.00002 13.6093C6.93048 12.11 6.26744 10.3581 6.07686 8.52501ZM5.02171 8.52501H2.07285C2.30621 11.1944 4.30223 13.3585 6.89027 13.8467C5.84478 12.2547 5.20164 10.428 5.02171 8.52501ZM9.10977 13.8467C10.1553 12.2547 10.7984 10.428 10.9783 8.52501H13.9272C13.6938 11.1944 11.6978 13.3585 9.10977 13.8467Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,14 @@
1
+ <template>
2
+ <svg
3
+ width="40"
4
+ height="40"
5
+ viewBox="0 0 40 40"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M21.4672 3.75933C21.1219 3.72922 20.7741 3.77124 20.4459 3.88273C20.1177 3.99422 19.8163 4.17274 19.5608 4.40695C19.3052 4.64116 19.1012 4.92595 18.9616 5.24323C18.8221 5.5605 18.75 5.90334 18.75 6.24996V12.6046C18.7457 13.1943 18.9518 13.7662 19.3312 14.2175C19.7107 14.6689 20.2387 14.9701 20.8203 15.0671C21.7496 15.2231 22.616 15.6384 23.3195 16.2653C24.023 16.8922 24.535 17.7052 24.7966 18.6104C25.0581 19.5157 25.0585 20.4765 24.7977 21.382C24.5369 22.2875 24.0256 23.1009 23.3226 23.7284C22.6196 24.3559 21.7536 24.7719 20.8244 24.9286C19.8953 25.0853 18.9407 24.9762 18.0708 24.614C17.2009 24.2517 16.4511 23.651 15.9078 22.8811C15.3645 22.1112 15.0498 21.2034 15 20.2625C14.936 18.9781 15.1985 17.9187 15.7813 17.0968C16.1238 16.619 16.2853 16.035 16.2369 15.4491C16.1886 14.8632 15.9335 14.3136 15.5172 13.8984L11.2016 9.48121C10.9556 9.2352 10.661 9.04325 10.3365 8.91762C10.0121 8.79199 9.66504 8.73546 9.31752 8.75164C8.97 8.76782 8.62969 8.85635 8.31834 9.01157C8.00699 9.16679 7.73147 9.38529 7.50939 9.65308C4.90466 12.7749 3.5701 16.7626 3.77101 20.8235C3.97192 24.8843 5.6936 28.7208 8.59377 31.5703C11.6263 34.5789 15.7283 36.2618 20 36.25H20.2328C24.4587 36.178 28.4913 34.4672 31.4797 31.4785C34.4681 28.4898 36.1785 24.457 36.25 20.2312C36.3672 11.7468 29.8735 4.51246 21.4672 3.75933ZM9.42502 11.2406L13.7391 15.6453V15.6546C13.0987 16.5736 12.6966 17.6372 12.5688 18.75H6.30627C6.5566 15.9876 7.64473 13.3676 9.42502 11.2406ZM6.30783 21.25H12.6047C12.8639 22.7858 13.5949 24.2029 14.6961 25.3044C15.7974 26.4059 17.2142 27.1372 18.75 27.3968V33.6937C15.5485 33.4012 12.5507 31.9962 10.2776 29.7228C8.00455 27.4495 6.5999 24.4515 6.30783 21.25ZM29.7094 29.7093C27.4452 31.9893 24.45 33.3984 21.25 33.689V27.3968C22.6986 27.1557 24.0432 26.4907 25.1141 25.4859C26.1378 24.5321 26.8744 23.3109 27.2404 21.9604C27.6064 20.6099 27.5874 19.184 27.1854 17.8437C26.7834 16.5035 26.0145 15.3024 24.9656 14.3763C23.9167 13.4502 22.6297 12.836 21.25 12.6031V6.24996C28.3625 6.88745 33.8547 13.0125 33.75 20.1953C33.7009 23.7734 32.2501 27.1894 29.7094 29.7093Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.19653 6.43441L6.46582 2.77357C6.61067 2.5361 6.81417 2.33981 7.05708 2.20419C7.2972 2.07013 7.56753 2.00001 7.84241 2.00068C8.05679 1.99448 8.27023 2.0309 8.47053 2.10781C8.67461 2.18618 8.86073 2.30491 9.01801 2.45675C9.17528 2.60857 9.30053 2.79041 9.3866 2.99137C9.47266 3.19232 9.51787 3.40847 9.51968 3.62707L9.5197 3.63142V6.03146H13.3669L13.3841 6.03174C13.6204 6.03947 13.8523 6.09761 14.0644 6.20215C14.2765 6.30668 14.464 6.45515 14.6145 6.63751C14.7651 6.81986 14.8755 7.03201 14.9387 7.25992C15.0019 7.48781 15.0166 7.72654 14.9818 7.96047L14.9814 7.96301L14.1857 13.1425C14.1347 13.5421 13.9417 13.9105 13.6411 14.1789C13.6121 14.2048 13.5823 14.2296 13.5518 14.2533C13.2632 14.4768 12.9082 14.5997 12.5409 14.6001L12.5389 14.6001H6.00778C5.61434 14.6015 5.22625 14.51 4.87453 14.3331L4.20923 13.9973H4.19653V6.43441ZM3.19653 6.6047H2.02298C1.7501 6.6047 1.48939 6.71415 1.29792 6.90738C1.10662 7.10046 1 7.3613 1 7.63229V12.9697C1 13.2407 1.10662 13.5016 1.29792 13.6946C1.48939 13.8879 1.75011 13.9973 2.02298 13.9973H3.19653V6.6047Z" fill="#0070EB"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.09401 2.78798C8.0219 2.76029 7.94518 2.74752 7.86833 2.75032C7.8602 2.75062 7.85206 2.75072 7.84393 2.75064C7.74803 2.74967 7.65327 2.77377 7.56882 2.82092C7.48433 2.8681 7.41281 2.93688 7.36166 3.02103L7.35926 3.02497L7.35925 3.02496L4.90827 6.97891V12.8739L5.34624 13.095H5.34626C5.37183 13.1078 5.39773 13.1199 5.42392 13.1312C5.6073 13.2103 5.805 13.2508 6.0046 13.2501H6.00462H6.00467L6.00668 13.25L12.5398 13.2501C12.6686 13.2498 12.7942 13.2081 12.8982 13.131C12.9131 13.1199 12.9276 13.1082 12.9415 13.0957L12.9433 13.0941C13.054 12.9945 13.126 12.8567 13.1445 12.706C13.1451 12.7007 13.1459 12.6954 13.1467 12.6902L13.943 7.5062L13.9431 7.50603C13.9563 7.4173 13.9507 7.32676 13.9267 7.24046C13.9028 7.15417 13.8611 7.07429 13.8047 7.00598C13.7483 6.93769 13.6786 6.88256 13.6002 6.84393C13.524 6.80638 13.4412 6.78516 13.3569 6.7814H8.99456C8.70461 6.7814 8.46955 6.54634 8.46955 6.25639L8.46956 6.25334V3.33386C8.46867 3.25486 8.45221 3.17694 8.42126 3.10468C8.39008 3.03187 8.34489 2.96644 8.28861 2.91211C8.23235 2.85779 8.16613 2.81567 8.09401 2.78798ZM3.85825 12.6472V7.35464H2.04989V12.6472H3.85825ZM6.4657 2.4735L4.09086 6.30462H2.02286C1.74998 6.30462 1.48926 6.41407 1.2978 6.60731C1.10649 6.80038 0.999878 7.06123 0.999878 7.33221V12.6697C0.999878 12.9406 1.10649 13.2015 1.2978 13.3946C1.48927 13.5878 1.74998 13.6973 2.02286 13.6973H4.2091L4.8744 14.033C5.22613 14.2099 5.61422 14.3015 6.00766 14.3001H12.5388L12.5408 14.3001C12.908 14.2996 13.2631 14.1767 13.5516 13.9532C13.5822 13.9295 13.612 13.9048 13.641 13.8789C13.9415 13.6104 14.1345 13.242 14.1856 12.8424L14.9813 7.66293L14.9817 7.6604C15.0164 7.42647 15.0018 7.18774 14.9386 6.95984C14.8753 6.73194 14.765 6.51979 14.6144 6.33744C14.4638 6.15508 14.2764 6.0066 14.0643 5.90208C13.8522 5.79754 13.6203 5.7394 13.384 5.73167C13.3783 5.73148 13.3725 5.73139 13.3668 5.73139H9.51958V3.33135H9.51959L9.51956 3.327C9.51775 3.10839 9.47254 2.89225 9.38648 2.6913C9.30041 2.49034 9.17516 2.3085 9.01789 2.15668C8.8606 2.00484 8.67448 1.8861 8.47041 1.80774C8.27011 1.73083 8.05666 1.69441 7.84229 1.7006C7.56741 1.69993 7.29708 1.77006 7.05696 1.90412C6.81405 2.03974 6.61054 2.23603 6.4657 2.4735Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>