adata-ui 0.3.99 → 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,52 @@
1
+ <template>
2
+ <svg width="121" height="120" viewBox="0 0 121 120" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <circle cx="60.5" cy="60" r="50" fill="#BDC7CE" fill-opacity="0.15"/>
4
+ <g clip-path="url(#clip0_8796_3377)">
5
+ <path d="M30.5303 54.4273C30.167 54.1432 29.7634 53.9047 29.3303 53.7182C28.5331 53.3533 27.6528 53.1634 26.7603 53.1637C25.5619 53.16 24.3913 53.4915 23.4072 54.1133C22.4232 54.735 21.6735 55.617 21.2597 56.6394C20.8458 57.6618 20.788 58.7752 21.094 59.8285C21.4 60.8818 22.0552 61.824 22.9704 62.5273L32.4802 69.8546C32.6469 69.9807 32.8204 70.099 33.0003 70.2091C32.4046 70.0251 31.7794 69.9329 31.1503 69.9364C29.9519 69.9327 28.7813 70.2642 27.7973 70.886C26.8132 71.5078 26.0635 72.3897 25.6497 73.4121C25.2358 74.4345 25.178 75.5479 25.484 76.6012C25.79 77.6545 26.445 78.5967 27.3602 79.3L28.6203 80.2637C31.7003 82.8637 34.8703 85.3455 38.0203 87.6637C50.9203 97.1637 58.3603 97.4455 62.5603 98.1273C66.6982 98.6176 70.8818 98.706 75.0403 98.391C75.0403 98.391 83.3403 103.064 89.7103 106.009C89.7103 106.009 102.03 101.964 108.53 86.6546L104.53 84.4273C103.96 80.6364 100.93 71.5091 97.9003 64.9728C94.8703 58.4364 86.6503 57.4728 82.9003 54.3728C79.1503 51.2728 79.7903 36.1909 74.5703 34.5728C71.2203 33.5364 70.0303 35.7819 70.0303 35.7819L69.8303 35.9909V35.7909L67.8303 14.5273C67.7233 13.5299 67.211 12.6046 66.3937 11.9322C65.5763 11.2597 64.5126 10.8885 63.4103 10.8909H37.1002C36.0694 10.8861 35.0689 11.2075 34.2703 11.8C33.6637 11.8004 33.064 11.9155 32.509 12.138C31.9541 12.3606 31.4562 12.6857 31.047 13.0928C30.6378 13.4998 30.3263 13.9798 30.1323 14.5022C29.9384 15.0247 29.8662 15.5781 29.9203 16.1273L32.0303 41.8546L30.5303 54.4273ZM32.0303 41.8546L31.3502 41.3364C30.7652 40.8851 30.0882 40.543 29.3577 40.3296C28.6272 40.1163 27.8577 40.0358 27.093 40.0927C26.3283 40.1497 25.5834 40.3431 24.9009 40.6617C24.2184 40.9804 23.6116 41.4182 23.1153 41.95C22.6189 42.4819 22.2426 43.0974 22.0078 43.7615C21.7731 44.4255 21.6847 45.1251 21.7473 45.8203C21.81 46.5155 22.0226 47.1926 22.3732 47.8131C22.7237 48.4335 23.2053 48.9851 23.7903 49.4364L28.5403 53.0728C28.8081 53.2849 29.0997 53.4707 29.4103 53.6273" fill="#26282B"/>
6
+ <path d="M31.1797 40.3726L29.7396 24.6999C28.6933 23.7475 27.2738 23.212 25.7932 23.2111C24.3126 23.2103 22.8923 23.7442 21.8447 24.6953C20.7971 25.6465 20.208 26.937 20.207 28.283C20.2061 29.629 20.7934 30.9202 21.8397 31.8726L31.1797 40.3726Z" fill="#26282B"/>
7
+ <path opacity="0.2" d="M69.0498 35.6638C69.0498 35.6638 71.2497 57.7456 72.5997 73.6001C75.4097 88.791 79.2398 88.8819 86.7798 90.0638C84.2416 88.4893 82.0975 86.4453 80.488 84.0657C78.8785 81.6861 77.8399 79.0244 77.4398 76.2547C74.5298 55.7001 74.3498 54.5183 72.0698 33.9092C70.4798 33.7365 69.0498 35.6638 69.0498 35.6638Z" fill="#BDC7CE"/>
8
+ <path opacity="0.2" d="M23.0196 30.2273C22.2809 29.5571 21.7637 28.712 21.5268 27.7879C21.29 26.8639 21.3429 25.898 21.6797 25C20.7291 25.9658 20.2221 27.2262 20.263 28.5217C20.304 29.8171 20.8897 31.049 21.8996 31.9636L31.2396 40.4545L30.9597 37.4454L23.0196 30.2273Z" fill="#BDC7CE"/>
9
+ <path opacity="0.2" d="M89.8098 100.537C83.4298 98.0911 76.2598 92.9729 76.2598 92.9729C76.2598 92.9729 66.9998 94.3639 61.7798 93.5184C57.5798 92.8457 50.1397 92.6093 37.2397 83.0639C34.8397 81.2911 32.4298 79.4275 30.0598 77.4911L27.8398 79.8639C30.9198 82.4639 34.0897 84.9457 37.2397 87.2729C50.1397 96.7729 57.5798 97.0548 61.7798 97.7275C65.9171 98.2237 70.101 98.3151 74.2598 98.0002C74.2598 98.0002 82.5598 102.664 88.9298 105.618C88.9298 105.618 101.25 101.564 107.75 86.2638L104.47 84.4457C96.8799 98.4275 89.8098 100.537 89.8098 100.537Z" fill="#BDC7CE"/>
10
+ <path d="M56.2098 79.3364C56.8269 79.3364 57.43 79.5027 57.9431 79.8144C58.4562 80.1261 58.8561 80.569 59.0923 81.0873C59.3284 81.6056 59.3903 82.1759 59.2699 82.7261C59.1495 83.2763 58.8524 83.7817 58.416 84.1784C57.9797 84.575 57.4237 84.8452 56.8185 84.9546C56.2133 85.0641 55.586 85.0079 55.0159 84.7932C54.4458 84.5785 53.9584 84.215 53.6156 83.7485C53.2728 83.2821 53.0898 82.7337 53.0898 82.1727C53.0898 81.4205 53.4185 80.6991 54.0037 80.1671C54.5888 79.6352 55.3824 79.3364 56.2098 79.3364V79.3364Z" stroke="#9DA3AC" stroke-miterlimit="10"/>
11
+ <path opacity="0.2" d="M31.8802 14.8366L34.2203 43.7366L31.2203 41.4275L29.1102 15.6911C29.0549 15.145 29.1247 14.5944 29.315 14.0739C29.5053 13.5535 29.8121 13.0745 30.216 12.6672C30.6199 12.2598 31.1123 11.9329 31.662 11.7071C32.2118 11.4812 32.807 11.3612 33.4102 11.3548C32.8624 11.7778 32.4365 12.3162 32.1699 12.923C31.9032 13.5299 31.8038 14.1868 31.8802 14.8366Z" fill="#BDC7CE"/>
12
+ <path d="M31.2096 41.4184L29.0995 15.682C29.0456 15.1359 29.1168 14.5855 29.3083 14.0655C29.4999 13.5456 29.8078 13.0673 30.2126 12.6608C30.6175 12.2543 31.1106 11.9284 31.6608 11.7037C32.2109 11.4789 32.8064 11.3601 33.4095 11.3548" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
13
+ <path opacity="0.2" d="M57.5103 83.8275C56.9582 83.829 56.4156 83.6968 55.9383 83.4446C55.461 83.1923 55.0661 82.8291 54.7943 82.3923C54.5224 81.9554 54.3834 81.4606 54.3915 80.9587C54.3997 80.4569 54.5546 79.966 54.8404 79.5366C54.4359 79.7575 54.092 80.0592 53.8348 80.4188C53.5776 80.7784 53.4137 81.1865 53.3557 81.6122C53.2976 82.0379 53.3469 82.47 53.4997 82.8758C53.6525 83.2816 53.9049 83.6505 54.2377 83.9545C54.5706 84.2586 54.9753 84.4898 55.421 84.6306C55.8667 84.7714 56.3417 84.8182 56.8103 84.7674C57.2788 84.7167 57.7284 84.5696 58.1252 84.3375C58.522 84.1053 58.8554 83.7941 59.1003 83.4275C58.6206 83.6906 58.0706 83.829 57.5103 83.8275Z" fill="#BDC7CE"/>
14
+ <path d="M65.41 20.0273L70.41 76.2546H39.5901L39.0601 69.5364C39.3475 69.3266 39.612 69.0922 39.85 68.8364C40.8527 67.7618 41.3455 66.3694 41.2198 64.9649C41.0942 63.5604 40.3606 62.2586 39.1801 61.3455L38.35 60.7L37.35 48.3273L35.0801 19.8455L65.41 20.0273Z" fill="#26282B" stroke="#9DA3AC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
15
+ <path d="M39.2499 61.3543C40.4304 62.2675 41.1642 63.5693 41.2898 64.9738C41.4154 66.3783 40.9227 67.7707 39.9199 68.8453C39.6819 69.1011 39.4173 69.3355 39.1299 69.5453L38.4199 60.7089L39.2499 61.3543Z" fill="#26282B"/>
16
+ <path opacity="0.2" d="M38.4099 84.7911C38.4723 85.4419 38.7079 86.0691 39.0964 86.6187C39.4849 87.1682 40.0146 87.6237 40.6399 87.9456C40.041 88.0341 39.4284 88.0083 38.8411 87.8697C38.2537 87.7312 37.7046 87.483 37.2286 87.1409C36.7526 86.7988 36.3601 86.3704 36.0763 85.8829C35.7924 85.3953 35.6235 84.8594 35.58 84.3092L35.3799 82.0729C36.301 81.7523 37.1192 81.2273 37.7599 80.5456L37.8899 80.3911L38.0199 80.482L38.4099 84.7911Z" fill="#BDC7CE"/>
17
+ <path d="M37.4102 48.3274L38.4102 60.7002L36.0001 58.882L35.4102 52.5911C35.6049 52.4381 35.7856 52.2709 35.9502 52.0911C36.9132 51.0602 37.4037 49.7323 37.3202 48.382L37.4102 48.3274Z" fill="#26282B"/>
18
+ <path opacity="0.2" d="M32.5 53.8455C33.5894 53.6786 34.603 53.2305 35.42 52.5546L36.01 58.8455L32.74 56.3273L32.52 53.9273L32.5 53.8455Z" fill="#BDC7CE"/>
19
+ <path d="M39.6598 76.2545H70.4798L65.4798 20.0273L35.1999 19.8454L37.4699 48.3273H37.3598C37.3215 47.6028 37.1198 46.8933 36.7671 46.2427C36.4145 45.5921 35.9185 45.0144 35.3099 44.5455L34.2498 43.7364L31.9098 14.8364C31.8572 14.2795 31.9324 13.7188 32.1306 13.1897C32.3287 12.6607 32.6457 12.1748 33.0612 11.7629C33.4767 11.351 33.9817 11.022 34.5444 10.7968C35.107 10.5715 35.7151 10.455 36.3299 10.4545H62.6398C63.7415 10.4541 64.804 10.8261 65.6209 11.4981C66.4378 12.1702 66.9507 13.0943 67.0599 14.0909L69.0599 35.3545L72.6398 73.5364L73.6398 84.0273C73.694 84.5844 73.6199 85.1457 73.4223 85.6754C73.2247 86.205 72.9079 86.6915 72.4921 87.1037C72.0763 87.5159 71.5705 87.8449 71.0071 88.0696C70.4438 88.2944 69.8351 88.41 69.2199 88.4091H42.9098C41.8003 88.4084 40.7312 88.0302 39.9131 87.3487C39.0951 86.6673 38.5873 85.7321 38.4898 84.7273L38.0899 80.4273L37.9599 80.3364C38.8958 79.2577 39.3344 77.8909 39.1833 76.5239C39.0322 75.157 38.3031 73.8968 37.1498 73.0091L34.1498 70.7182C33.9909 70.5901 33.8203 70.4745 33.6398 70.3727C34.5685 70.653 35.5598 70.7166 36.5225 70.5577C37.4853 70.3989 38.3887 70.0227 39.1498 69.4636L39.6598 76.2545ZM59.3299 82.1727C59.3319 81.6114 59.1505 81.0621 58.8089 80.5945C58.4673 80.1268 57.9808 79.7619 57.4108 79.5458C56.8409 79.3297 56.2132 79.2722 55.6074 79.3807C55.0015 79.4891 54.4446 79.7585 54.0073 80.1548C53.5699 80.5511 53.2718 81.0565 53.1506 81.6069C53.0294 82.1574 53.0905 82.7281 53.3264 83.2469C53.5622 83.7658 53.9621 84.2093 54.4754 84.5213C54.9887 84.8334 55.5924 85 56.2099 85C57.0356 85 57.8277 84.7024 58.4125 84.1725C58.9974 83.6425 59.3272 82.9234 59.3299 82.1727Z" fill="#26282B"/>
20
+ <path d="M32.21 69.7998C32.7122 69.9469 33.1873 70.1614 33.6199 70.4362C33.1194 70.2852 32.6448 70.071 32.21 69.7998Z" fill="#26282B"/>
21
+ <path d="M30.4097 69.5362C31.0388 69.5327 31.6641 69.6249 32.2597 69.809C32.6945 70.0802 33.1692 70.2944 33.6697 70.4453C33.8502 70.5471 34.0208 70.6627 34.1797 70.7908L37.1797 73.0817C38.333 73.9694 39.0621 75.2296 39.2132 76.5965C39.3643 77.9635 38.9256 79.3303 37.9897 80.409L37.8597 80.5635C37.3105 81.1514 36.6271 81.6235 35.8569 81.947C35.0866 82.2704 34.2481 82.4373 33.3997 82.4362C32.0157 82.4399 30.6755 81.9951 29.6197 81.1817L27.9197 79.8726L26.6597 78.8999C25.7471 78.1986 25.0932 77.2597 24.7861 76.2098C24.4789 75.16 24.5334 74.0498 24.9422 73.029C25.351 72.0082 26.0945 71.126 27.0722 70.5014C28.0499 69.8769 29.2148 69.54 30.4097 69.5362Z" fill="#26282B"/>
22
+ <path d="M37.2397 87.2728C34.0897 84.9455 30.9198 82.4637 27.8398 79.8637L29.5398 81.1728C30.5956 81.9863 31.9358 82.4311 33.3198 82.4274C34.0303 82.4262 34.7348 82.3092 35.3998 82.0819L35.5997 84.3183C35.6451 84.8798 35.8211 85.4262 36.1158 85.9214C36.4106 86.4166 36.8176 86.8493 37.3098 87.191L37.2397 87.2728Z" fill="#26282B"/>
23
+ <path d="M28.5898 53.2182C29.4711 53.6823 30.4713 53.9269 31.4897 53.9273C31.8251 53.927 32.1597 53.8996 32.4897 53.8455V53.9273L32.7098 56.3273L29.7098 54.0182C29.3442 53.7345 28.941 53.4932 28.5098 53.3L28.5898 53.2182Z" fill="#26282B"/>
24
+ <path d="M26.7502 39.6365C28.1342 39.6328 29.4744 40.0776 30.5302 40.891L31.2103 41.4183L34.2103 43.7274L35.2702 44.5365C36.4476 45.4511 37.1797 46.7515 37.3071 48.1546C37.4344 49.5577 36.9468 50.9497 35.9503 52.0274C35.7857 52.2072 35.605 52.3745 35.4102 52.5274C34.5932 53.2034 33.5795 53.6515 32.4902 53.8183C32.1602 53.8724 31.8255 53.8998 31.4902 53.9001C30.4717 53.8997 29.4715 53.6551 28.5903 53.191C28.2819 53.0313 27.9906 52.8456 27.7203 52.6365L22.9703 49.0001C22.0557 48.2973 21.401 47.3559 21.0947 46.3035C20.7884 45.2511 20.8453 44.1385 21.2579 43.1165C21.6705 42.0945 22.4186 41.2125 23.4011 40.59C24.3835 39.9675 25.5527 39.6346 26.7502 39.6365Z" fill="#26282B"/>
25
+ <path d="M25.9704 52.7546C27.3523 52.7548 28.6889 53.2028 29.7403 54.0182L32.7403 56.3273L36.0103 58.8455L38.4203 60.6637L39.1303 69.5C38.3691 70.0591 37.4657 70.4353 36.5029 70.5941C35.5402 70.753 34.5489 70.6894 33.6203 70.4091C33.1877 70.1344 32.7126 69.9199 32.2103 69.7727C32.0305 69.6626 31.8569 69.5443 31.6903 69.4182L22.1803 62.0909C21.2651 61.3876 20.61 60.4454 20.304 59.3921C19.998 58.3388 20.0558 57.2254 20.4696 56.203C20.8834 55.1806 21.6333 54.2987 22.6173 53.6769C23.6013 53.0551 24.772 52.7236 25.9704 52.7273V52.7546Z" fill="#26282B"/>
26
+ <path d="M36.0002 58.8362L35.4102 52.5453" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
27
+ <path d="M34.2197 43.7364L31.8796 14.8364C31.827 14.2795 31.9021 13.7188 32.1003 13.1897C32.2985 12.6607 32.6154 12.1748 33.0309 11.7629C33.4465 11.351 33.9516 11.022 34.5142 10.7968C35.0769 10.5715 35.6848 10.455 36.2996 10.4545H62.6096C63.7113 10.4541 64.7739 10.8261 65.5908 11.4981C66.4076 12.1702 66.9204 13.0943 67.0296 14.0909L69.0296 35.3545L72.6096 73.5364L73.6096 84.0273C73.6637 84.5844 73.5896 85.1457 73.392 85.6754C73.1944 86.205 72.8777 86.6915 72.4619 87.1037C72.046 87.5159 71.5404 87.8449 70.977 88.0696C70.4136 88.2944 69.8049 88.41 69.1896 88.4091H42.8796C41.77 88.4084 40.7009 88.0301 39.8829 87.3487C39.0648 86.6673 38.5571 85.7321 38.4597 84.7273L38.0596 80.4273" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
28
+ <path d="M35.4102 82.0907L35.6101 84.3271C35.6536 84.8773 35.8227 85.4132 36.1066 85.9007C36.3904 86.3883 36.7829 86.8167 37.2589 87.1588C37.7349 87.5008 38.284 87.7491 38.8713 87.8876C39.4587 88.0261 40.0713 88.052 40.6702 87.9635" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
29
+ <path d="M32.5098 53.9182L32.7398 56.3182" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
30
+ <path opacity="0.2" d="M37.0297 50.3819C36.2118 51.0497 35.2031 51.494 34.1197 51.6637C33.7896 51.7174 33.455 51.7448 33.1197 51.7455C32.0996 51.744 31.0972 51.5029 30.2098 51.0455C29.9028 50.8804 29.6117 50.6918 29.3398 50.4819L24.5898 46.8455C23.649 46.1185 22.9847 45.1399 22.692 44.0494C22.3993 42.9588 22.493 41.8121 22.9598 40.7728C22.7998 40.9183 22.6297 41.0728 22.4797 41.2365C21.4787 42.3106 20.988 43.7023 21.1156 45.1054C21.2431 46.5084 21.9784 47.808 23.1597 48.7183L27.9097 52.3546C28.1793 52.5647 28.4707 52.7504 28.7797 52.9092C29.8493 53.4688 31.0864 53.706 32.3134 53.5867C33.5405 53.4675 34.6944 52.998 35.6097 52.2455C35.8021 52.0903 35.9825 51.9232 36.1497 51.7455C36.5391 51.3181 36.856 50.8401 37.0898 50.3274C37.0898 50.3274 37.0497 50.3728 37.0297 50.3819Z" fill="#BDC7CE"/>
31
+ <path opacity="0.2" d="M36.9599 80.1546C36.2945 80.3808 35.5902 80.4978 34.8798 80.5001C33.4964 80.5006 32.1574 80.0562 31.0998 79.2455L29.3998 77.9364L28.1498 76.9728C27.2214 76.2557 26.5624 75.2929 26.2648 74.2189C25.9672 73.1449 26.0458 72.0133 26.4898 70.9819C26.2882 71.1408 26.101 71.314 25.9299 71.5001C24.9283 72.5758 24.4373 73.9689 24.5648 75.3735C24.6923 76.778 25.4278 78.0791 26.6098 78.991L27.8598 79.9546L29.5599 81.2546C30.6103 82.0714 31.9476 82.5197 33.3299 82.5183C34.0414 82.5185 34.7467 82.3983 35.4098 82.1637C36.3375 81.8544 37.1586 81.3275 37.7899 80.6364L37.9199 80.491C38.28 80.0815 38.5699 79.6248 38.7798 79.1364C38.2451 79.5721 37.6287 79.917 36.9599 80.1546Z" fill="#BDC7CE"/>
32
+ <path opacity="0.2" d="M40.5696 67.7183C39.5283 68.4693 38.2388 68.8793 36.9096 68.882C36.2808 68.8824 35.6561 68.7902 35.0596 68.6092C34.5574 68.4621 34.0821 68.2476 33.6496 67.9729C33.4698 67.8628 33.2962 67.7444 33.1296 67.6183L23.6196 60.2911C22.6829 59.5653 22.0214 58.5899 21.7288 57.5031C21.4362 56.4164 21.5275 55.2735 21.9896 54.2365L21.6496 54.5638C20.648 55.6395 20.157 57.0326 20.2845 58.4372C20.412 59.8417 21.1476 61.1428 22.3296 62.0547L31.8296 69.382C31.9963 69.5081 32.1697 69.6264 32.3495 69.7365C32.7868 70.0096 33.2651 70.2239 33.7696 70.3729C34.3626 70.5539 34.984 70.646 35.6096 70.6456C36.9409 70.6454 38.2323 70.2316 39.2696 69.4729C39.5626 69.2658 39.8308 69.0312 40.0696 68.7729C40.4658 68.3448 40.7863 67.8633 41.0196 67.3456L40.5696 67.7183Z" fill="#BDC7CE"/>
33
+ <path d="M56.2098 79.3364C56.8269 79.3364 57.43 79.5027 57.9431 79.8144C58.4562 80.1261 58.8561 80.569 59.0923 81.0873C59.3284 81.6056 59.3903 82.1759 59.2699 82.7261C59.1495 83.2763 58.8524 83.7817 58.416 84.1784C57.9797 84.575 57.4237 84.8452 56.8185 84.9546C56.2133 85.0641 55.586 85.0079 55.0159 84.7932C54.4458 84.5785 53.9584 84.215 53.6156 83.7485C53.2728 83.2821 53.0898 82.7337 53.0898 82.1727C53.0898 81.4205 53.4185 80.6991 54.0037 80.1671C54.5888 79.6352 55.3824 79.3364 56.2098 79.3364V79.3364Z" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
34
+ <path d="M46.4902 15.2184H53.5502" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
35
+ <path d="M86.7797 90.0636C72.4797 87.0181 73.6196 79.4818 72.5996 73.6" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
36
+ <path d="M33.62 70.4453C33.8004 70.5471 33.971 70.6627 34.13 70.7908L37.13 73.0817C38.2833 73.9694 39.0123 75.2296 39.1634 76.5965C39.3145 77.9635 38.876 79.3303 37.94 80.409L37.81 80.5635C37.2609 81.1514 36.5773 81.6235 35.8071 81.947C35.0369 82.2704 34.1984 82.4373 33.3499 82.4362C31.9659 82.4399 30.6259 81.9951 29.57 81.1817L27.87 79.8726L26.6099 78.8999C25.6941 78.1961 25.0387 77.253 24.733 76.1988C24.4272 75.1446 24.486 74.0305 24.9011 73.0076C25.3162 71.9848 26.0676 71.103 27.0532 70.4819C28.0388 69.8608 29.2108 69.5306 30.41 69.5362C31.0391 69.5327 31.6644 69.6249 32.26 69.809" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
37
+ <path d="M27.8398 79.8635C30.9198 82.4635 34.0897 84.9453 37.2397 87.2726C50.1397 96.7726 57.5798 97.0544 61.7798 97.7271C65.9171 98.2234 70.101 98.3148 74.2598 97.9999C74.2598 97.9999 82.5598 102.664 88.9298 105.618C88.9298 105.618 101.25 101.563 107.75 86.2635L103.75 84.0271C103.18 80.2362 100.15 71.118 97.1198 64.5817C94.0898 58.0453 85.8698 57.0726 82.1198 53.9817C78.3698 50.8908 79.0098 35.7999 73.7898 34.1817C70.4398 33.1453 69.2498 35.3817 69.2498 35.3817" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
38
+ <path d="M32.2101 69.8C32.0303 69.6899 31.8567 69.5715 31.6901 69.4454L22.1801 62.1182C21.0846 61.2825 20.3643 60.1105 20.156 58.8244C19.9478 57.5382 20.2658 56.2272 21.05 55.14C21.8341 54.0528 23.0298 53.265 24.4103 52.9258C25.7909 52.5867 27.2603 52.7198 28.5401 53.3C28.9713 53.4932 29.3744 53.7344 29.74 54.0182L32.74 56.3273L36.01 58.8454L38.4201 60.6636L39.25 61.3091C40.4306 62.2222 41.1643 63.524 41.29 64.9285C41.4156 66.333 40.9229 67.7254 39.9201 68.8C39.6821 69.0558 39.4175 69.2903 39.13 69.5C38.3689 70.059 37.4655 70.4352 36.5027 70.5941C35.54 70.7529 34.5487 70.6893 33.62 70.4091C33.1212 70.2667 32.6467 70.0617 32.2101 69.8V69.8Z" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
39
+ <path d="M28.5904 53.2183C28.282 53.0586 27.9907 52.8729 27.7204 52.6638L22.9704 49.0274C21.8493 48.0999 21.1679 46.8131 21.0699 45.4379C20.9718 44.0628 21.4648 42.7068 22.4449 41.6555C23.4249 40.6043 24.8155 39.9399 26.3238 39.8024C27.832 39.6649 29.3401 40.0649 30.5303 40.9183L31.2104 41.4456L34.2104 43.7547L35.2703 44.5638C36.4477 45.4783 37.1798 46.7788 37.3072 48.1819C37.4345 49.585 36.9469 50.977 35.9504 52.0547C35.7858 52.2345 35.6051 52.4018 35.4103 52.5547V52.5547C34.5933 53.2306 33.5796 53.6787 32.4903 53.8456C32.1603 53.8997 31.8256 53.9271 31.4903 53.9274C30.4718 53.927 29.4716 53.6824 28.5904 53.2183V53.2183Z" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
40
+ <path d="M30.9803 40.4456L21.6404 31.9547C21.1223 31.4831 20.7115 30.9234 20.4314 30.3075C20.1513 29.6916 20.0073 29.0316 20.0078 28.3651C20.0083 27.6987 20.1531 27.0388 20.4341 26.4232C20.7151 25.8076 21.1267 25.2484 21.6454 24.7774C22.1641 24.3065 22.7798 23.933 23.4573 23.6783C24.1348 23.4237 24.8609 23.2928 25.594 23.2932C26.3271 23.2937 27.0528 23.4254 27.73 23.6808C28.4071 23.9362 29.0223 24.3104 29.5404 24.782" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
41
+ <path d="M42.7402 47.3726C43.8448 47.3726 44.7402 46.5586 44.7402 45.5544C44.7402 44.5503 43.8448 43.7362 42.7402 43.7362C41.6357 43.7362 40.7402 44.5503 40.7402 45.5544C40.7402 46.5586 41.6357 47.3726 42.7402 47.3726Z" fill="#9DA3AC"/>
42
+ <path d="M49.4004 47.3726C50.505 47.3726 51.4004 46.5586 51.4004 45.5544C51.4004 44.5503 50.505 43.7362 49.4004 43.7362C48.2958 43.7362 47.4004 44.5503 47.4004 45.5544C47.4004 46.5586 48.2958 47.3726 49.4004 47.3726Z" fill="#9DA3AC"/>
43
+ <path d="M56.0596 47.3726C57.1641 47.3726 58.0596 46.5586 58.0596 45.5544C58.0596 44.5503 57.1641 43.7362 56.0596 43.7362C54.955 43.7362 54.0596 44.5503 54.0596 45.5544C54.0596 46.5586 54.955 47.3726 56.0596 47.3726Z" fill="#9DA3AC"/>
44
+ <path d="M62.7197 47.3726C63.8243 47.3726 64.7197 46.5586 64.7197 45.5544C64.7197 44.5503 63.8243 43.7362 62.7197 43.7362C61.6152 43.7362 60.7197 44.5503 60.7197 45.5544C60.7197 46.5586 61.6152 47.3726 62.7197 47.3726Z" fill="#9DA3AC"/>
45
+ </g>
46
+ <defs>
47
+ <clipPath id="clip0_8796_3377">
48
+ <rect width="89.03" height="96.0636" fill="white" transform="translate(19.5 10)"/>
49
+ </clipPath>
50
+ </defs>
51
+ </svg>
52
+ </template>
@@ -0,0 +1,52 @@
1
+ <template>
2
+ <svg width="121" height="120" viewBox="0 0 121 120" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <circle cx="60.8099" cy="60" r="50" fill="#BDC7CE" fill-opacity="0.15"/>
4
+ <g clip-path="url(#clip0_8755_21057)">
5
+ <path d="M30.8402 54.4273C30.4769 54.1432 30.0733 53.9047 29.6403 53.7182C28.8431 53.3533 27.9628 53.1634 27.0702 53.1637C25.8718 53.16 24.7012 53.4915 23.7172 54.1133C22.7332 54.735 21.9834 55.617 21.5696 56.6394C21.1558 57.6618 21.0979 58.7752 21.4039 59.8285C21.71 60.8818 22.3651 61.824 23.2803 62.5273L32.7902 69.8546C32.9568 69.9807 33.1304 70.099 33.3102 70.2091C32.7146 70.0251 32.0893 69.9329 31.4602 69.9364C30.2619 69.9327 29.0912 70.2642 28.1072 70.886C27.1232 71.5078 26.3734 72.3897 25.9596 73.4121C25.5458 74.4345 25.4879 75.5479 25.794 76.6012C26.1 77.6545 26.755 78.5967 27.6702 79.3L28.9302 80.2637C32.0102 82.8637 35.1802 85.3455 38.3302 87.6637C51.2302 97.1637 58.6703 97.4455 62.8703 98.1273C67.0082 98.6176 71.1917 98.706 75.3502 98.391C75.3502 98.391 83.6503 103.064 90.0203 106.009C90.0203 106.009 102.34 101.964 108.84 86.6546L104.84 84.4273C104.27 80.6364 101.24 71.5091 98.2102 64.9728C95.1802 58.4364 86.9602 57.4728 83.2102 54.3728C79.4602 51.2728 80.1003 36.1909 74.8803 34.5728C71.5303 33.5364 70.3402 35.7819 70.3402 35.7819L70.1403 35.9909V35.7909L68.1403 14.5273C68.0333 13.5299 67.521 12.6046 66.7036 11.9322C65.8863 11.2597 64.8226 10.8885 63.7202 10.8909H37.4102C36.3794 10.8861 35.3789 11.2075 34.5802 11.8C33.9737 11.8004 33.3739 11.9155 32.819 12.138C32.2641 12.3606 31.7661 12.6857 31.3569 13.0928C30.9478 13.4998 30.6363 13.9798 30.4423 14.5022C30.2483 15.0247 30.1761 15.5781 30.2302 16.1273L32.3402 41.8546L30.8402 54.4273ZM32.3402 41.8546L31.6602 41.3364C31.0751 40.8851 30.3981 40.543 29.6676 40.3296C28.9372 40.1163 28.1677 40.0358 27.403 40.0927C26.6383 40.1497 25.8933 40.3431 25.2108 40.6617C24.5283 40.9804 23.9216 41.4182 23.4252 41.95C22.9288 42.4819 22.5525 43.0974 22.3178 43.7615C22.083 44.4255 21.9946 45.1251 22.0573 45.8203C22.1199 46.5155 22.3326 47.1926 22.6831 47.8131C23.0337 48.4335 23.5152 48.9851 24.1002 49.4364L28.8502 53.0728C29.118 53.2849 29.4096 53.4707 29.7202 53.6273" fill="white"/>
6
+ <path d="M31.4896 40.3726L30.0496 24.6999C29.0033 23.7475 27.5837 23.212 26.1032 23.2111C24.6226 23.2103 23.2023 23.7442 22.1547 24.6953C21.1071 25.6465 20.5179 26.937 20.517 28.283C20.516 29.629 21.1034 30.9202 22.1497 31.8726L31.4896 40.3726Z" fill="white"/>
7
+ <path opacity="0.2" d="M69.3597 35.6638C69.3597 35.6638 71.5597 57.7456 72.9097 73.6001C75.7197 88.791 79.5497 88.8819 87.0897 90.0638C84.5515 88.4893 82.4075 86.4453 80.798 84.0657C79.1885 81.6861 78.1498 79.0244 77.7498 76.2547C74.8398 55.7001 74.6598 54.5183 72.3798 33.9092C70.7898 33.7365 69.3597 35.6638 69.3597 35.6638Z" fill="#BDC7CE"/>
8
+ <path opacity="0.2" d="M23.3296 30.2273C22.5908 29.5571 22.0736 28.712 21.8368 27.7879C21.5999 26.8639 21.6529 25.898 21.9896 25C21.0391 25.9658 20.5321 27.2262 20.573 28.5217C20.6139 29.8171 21.1996 31.049 22.2096 31.9636L31.5495 40.4545L31.2696 37.4454L23.3296 30.2273Z" fill="#BDC7CE"/>
9
+ <path opacity="0.2" d="M90.1198 100.537C83.7397 98.0911 76.5697 92.9729 76.5697 92.9729C76.5697 92.9729 67.3097 94.3639 62.0897 93.5184C57.8897 92.8457 50.4497 92.6093 37.5497 83.0639C35.1497 81.2911 32.7398 79.4275 30.3698 77.4911L28.1498 79.8639C31.2298 82.4639 34.3997 84.9457 37.5497 87.2729C50.4497 96.7729 57.8897 97.0548 62.0897 97.7275C66.227 98.2237 70.4109 98.3151 74.5697 98.0002C74.5697 98.0002 82.8697 102.664 89.2397 105.618C89.2397 105.618 101.56 101.564 108.06 86.2638L104.78 84.4457C97.1898 98.4275 90.1198 100.537 90.1198 100.537Z" fill="#BDC7CE"/>
10
+ <path d="M56.5198 79.3364C57.1369 79.3364 57.74 79.5027 58.2531 79.8144C58.7661 80.1261 59.1661 80.569 59.4022 81.0873C59.6384 81.6056 59.7002 82.1759 59.5798 82.7261C59.4594 83.2763 59.1623 83.7817 58.726 84.1784C58.2896 84.575 57.7336 84.8452 57.1284 84.9546C56.5232 85.0641 55.8959 85.0079 55.3258 84.7932C54.7557 84.5785 54.2684 84.215 53.9255 83.7485C53.5827 83.2821 53.3998 82.7337 53.3998 82.1727C53.3998 81.4205 53.7285 80.6991 54.3136 80.1671C54.8987 79.6352 55.6923 79.3364 56.5198 79.3364V79.3364Z" stroke="#9DA3AC" stroke-miterlimit="10"/>
11
+ <path opacity="0.2" d="M32.1901 14.8366L34.5302 43.7366L31.5302 41.4275L29.4201 15.6911C29.3648 15.145 29.4346 14.5944 29.6249 14.0739C29.8152 13.5535 30.122 13.0745 30.5259 12.6672C30.9299 12.2598 31.4222 11.9329 31.972 11.7071C32.5217 11.4812 33.1169 11.3612 33.7201 11.3548C33.1723 11.7778 32.7465 12.3162 32.4798 12.923C32.2131 13.5299 32.1137 14.1868 32.1901 14.8366Z" fill="#BDC7CE"/>
12
+ <path d="M31.5195 41.4184L29.4094 15.682C29.3556 15.1359 29.4267 14.5855 29.6183 14.0655C29.8099 13.5456 30.1177 13.0673 30.5226 12.6608C30.9274 12.2543 31.4205 11.9284 31.9707 11.7037C32.5209 11.4789 33.1163 11.3601 33.7195 11.3548" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
13
+ <path opacity="0.2" d="M57.8203 83.8275C57.2681 83.829 56.7256 83.6968 56.2482 83.4446C55.7709 83.1923 55.376 82.8291 55.1042 82.3923C54.8324 81.9554 54.6934 81.4606 54.7015 80.9587C54.7096 80.4569 54.8645 79.966 55.1503 79.5366C54.7459 79.7575 54.4019 80.0592 54.1447 80.4188C53.8875 80.7784 53.7237 81.1865 53.6656 81.6122C53.6075 82.0379 53.6568 82.47 53.8096 82.8758C53.9625 83.2816 54.2148 83.6505 54.5477 83.9545C54.8805 84.2586 55.2852 84.4898 55.7309 84.6306C56.1766 84.7714 56.6517 84.8182 57.1202 84.7674C57.5887 84.7167 58.0384 84.5696 58.4351 84.3375C58.8319 84.1053 59.1653 83.7941 59.4102 83.4275C58.9305 83.6906 58.3805 83.829 57.8203 83.8275Z" fill="#BDC7CE"/>
14
+ <path d="M65.72 20.0273L70.72 76.2546H39.9L39.37 69.5364C39.6574 69.3266 39.9219 69.0922 40.1599 68.8364C41.1627 67.7618 41.6554 66.3694 41.5298 64.9649C41.4042 63.5604 40.6705 62.2586 39.49 61.3455L38.6599 60.7L37.6599 48.3273L35.39 19.8455L65.72 20.0273Z" fill="white" stroke="#9DA3AC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
15
+ <path d="M39.5598 61.3543C40.7404 62.2675 41.4741 63.5693 41.5997 64.9738C41.7254 66.3783 41.2326 67.7707 40.2299 68.8453C39.9919 69.1011 39.7273 69.3355 39.4398 69.5453L38.7299 60.7089L39.5598 61.3543Z" fill="white"/>
16
+ <path opacity="0.2" d="M38.7198 84.7911C38.7822 85.4419 39.0179 86.0691 39.4064 86.6187C39.7949 87.1682 40.3246 87.6237 40.9498 87.9456C40.3509 88.0341 39.7383 88.0083 39.151 87.8697C38.5637 87.7312 38.0146 87.483 37.5386 87.1409C37.0626 86.7988 36.6701 86.3704 36.3862 85.8829C36.1024 85.3953 35.9334 84.8594 35.8899 84.3092L35.6898 82.0729C36.6109 81.7523 37.4291 81.2273 38.0698 80.5456L38.1998 80.3911L38.3298 80.482L38.7198 84.7911Z" fill="#BDC7CE"/>
17
+ <path d="M37.7201 48.3274L38.7201 60.7002L36.3101 58.882L35.7201 52.5911C35.9149 52.4381 36.0955 52.2709 36.2601 52.0911C37.2232 51.0602 37.7136 49.7323 37.6301 48.382L37.7201 48.3274Z" fill="white"/>
18
+ <path opacity="0.2" d="M32.8099 53.8455C33.8993 53.6786 34.913 53.2305 35.73 52.5546L36.3199 58.8455L33.0499 56.3273L32.83 53.9273L32.8099 53.8455Z" fill="#BDC7CE"/>
19
+ <path d="M39.9698 76.2545H70.7897L65.7897 20.0273L35.5098 19.8454L37.7798 48.3273H37.6697C37.6314 47.6028 37.4297 46.8933 37.0771 46.2427C36.7244 45.5921 36.2284 45.0144 35.6198 44.5455L34.5598 43.7364L32.2198 14.8364C32.1672 14.2795 32.2423 13.7188 32.4405 13.1897C32.6387 12.6607 32.9556 12.1748 33.3712 11.7629C33.7867 11.351 34.2916 11.022 34.8543 10.7968C35.417 10.5715 36.025 10.455 36.6398 10.4545H62.9498C64.0515 10.4541 65.114 10.8261 65.9308 11.4981C66.7477 12.1702 67.2606 13.0943 67.3698 14.0909L69.3698 35.3545L72.9498 73.5364L73.9498 84.0273C74.0039 84.5844 73.9299 85.1457 73.7322 85.6754C73.5346 86.205 73.2179 86.6915 72.8021 87.1037C72.3862 87.5159 71.8805 87.8449 71.3171 88.0696C70.7537 88.2944 70.1451 88.41 69.5298 88.4091H43.2198C42.1102 88.4084 41.0412 88.0302 40.2231 87.3487C39.405 86.6673 38.8972 85.7321 38.7997 84.7273L38.3998 80.4273L38.2698 80.3364C39.2058 79.2577 39.6443 77.8909 39.4932 76.5239C39.3421 75.157 38.6131 73.8968 37.4598 73.0091L34.4598 70.7182C34.3008 70.5901 34.1302 70.4745 33.9498 70.3727C34.8784 70.653 35.8697 70.7166 36.8325 70.5577C37.7952 70.3989 38.6987 70.0227 39.4598 69.4636L39.9698 76.2545ZM59.6398 82.1727C59.6418 81.6114 59.4605 81.0621 59.1188 80.5945C58.7772 80.1268 58.2907 79.7619 57.7208 79.5458C57.1508 79.3297 56.5232 79.2722 55.9173 79.3807C55.3114 79.4891 54.7545 79.7585 54.3172 80.1548C53.8799 80.5511 53.5817 81.0565 53.4605 81.6069C53.3393 82.1574 53.4004 82.7281 53.6363 83.2469C53.8721 83.7658 54.272 84.2093 54.7853 84.5213C55.2986 84.8334 55.9023 85 56.5198 85C57.3456 85 58.1376 84.7024 58.7225 84.1725C59.3073 83.6425 59.6372 82.9234 59.6398 82.1727Z" fill="white"/>
20
+ <path d="M32.5199 69.7998C33.0221 69.9469 33.4973 70.1614 33.9298 70.4362C33.4293 70.2852 32.9547 70.071 32.5199 69.7998Z" fill="white"/>
21
+ <path d="M30.7197 69.5362C31.3487 69.5327 31.974 69.6249 32.5696 69.809C33.0045 70.0802 33.4791 70.2944 33.9797 70.4453C34.1601 70.5471 34.3307 70.6627 34.4897 70.7908L37.4897 73.0817C38.643 73.9694 39.372 75.2296 39.5231 76.5965C39.6742 77.9635 39.2355 79.3303 38.2996 80.409L38.1696 80.5635C37.6205 81.1514 36.937 81.6235 36.1668 81.947C35.3966 82.2704 34.5581 82.4373 33.7096 82.4362C32.3256 82.4399 30.9854 81.9951 29.9296 81.1817L28.2297 79.8726L26.9697 78.8999C26.0571 78.1986 25.4031 77.2597 25.096 76.2098C24.7889 75.16 24.8433 74.0498 25.2521 73.029C25.6609 72.0082 26.4044 71.126 27.3821 70.5014C28.3598 69.8769 29.5247 69.54 30.7197 69.5362Z" fill="white"/>
22
+ <path d="M37.5497 87.2728C34.3997 84.9455 31.2298 82.4637 28.1498 79.8637L29.8497 81.1728C30.9056 81.9863 32.2458 82.4311 33.6298 82.4274C34.3402 82.4262 35.0447 82.3092 35.7097 82.0819L35.9097 84.3183C35.9551 84.8798 36.131 85.4262 36.4258 85.9214C36.7205 86.4166 37.1275 86.8493 37.6198 87.191L37.5497 87.2728Z" fill="white"/>
23
+ <path d="M28.8998 53.2182C29.781 53.6823 30.7812 53.9269 31.7997 53.9273C32.135 53.927 32.4697 53.8996 32.7997 53.8455V53.9273L33.0198 56.3273L30.0198 54.0182C29.6541 53.7345 29.2509 53.4932 28.8197 53.3L28.8998 53.2182Z" fill="white"/>
24
+ <path d="M27.0601 39.6365C28.4441 39.6328 29.7843 40.0776 30.8402 40.891L31.5202 41.4183L34.5202 43.7274L35.5801 44.5365C36.7575 45.4511 37.4896 46.7515 37.617 48.1546C37.7444 49.5577 37.2567 50.9497 36.2602 52.0274C36.0956 52.2072 35.915 52.3745 35.7202 52.5274C34.9031 53.2034 33.8895 53.6515 32.8001 53.8183C32.4701 53.8724 32.1355 53.8998 31.8001 53.9001C30.7817 53.8997 29.7815 53.6551 28.9002 53.191C28.5918 53.0313 28.3005 52.8456 28.0302 52.6365L23.2802 49.0001C22.3657 48.2973 21.7109 47.3559 21.4046 46.3035C21.0983 45.2511 21.1553 44.1385 21.5678 43.1165C21.9804 42.0945 22.7286 41.2125 23.711 40.59C24.6934 39.9675 25.8626 39.6346 27.0601 39.6365Z" fill="white"/>
25
+ <path d="M26.2803 52.7546C27.6623 52.7548 28.9988 53.2028 30.0502 54.0182L33.0502 56.3273L36.3202 58.8455L38.7302 60.6637L39.4402 69.5C38.6791 70.0591 37.7757 70.4353 36.8129 70.5941C35.8501 70.753 34.8589 70.6894 33.9302 70.4091C33.4977 70.1344 33.0225 69.9199 32.5203 69.7727C32.3405 69.6626 32.1669 69.5443 32.0003 69.4182L22.4903 62.0909C21.575 61.3876 20.9199 60.4454 20.6139 59.3921C20.3079 58.3388 20.3657 57.2254 20.7796 56.203C21.1934 55.1806 21.9432 54.2987 22.9273 53.6769C23.9113 53.0551 25.0819 52.7236 26.2803 52.7273V52.7546Z" fill="white"/>
26
+ <path d="M36.3101 58.8362L35.7201 52.5453" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
27
+ <path d="M34.5296 43.7364L32.1895 14.8364C32.1369 14.2795 32.212 13.7188 32.4102 13.1897C32.6084 12.6607 32.9254 12.1748 33.3409 11.7629C33.7564 11.351 34.2615 11.022 34.8242 10.7968C35.3868 10.5715 35.9948 10.455 36.6096 10.4545H62.9195C64.0212 10.4541 65.0838 10.8261 65.9007 11.4981C66.7176 12.1702 67.2304 13.0943 67.3395 14.0909L69.3395 35.3545L72.9195 73.5364L73.9195 84.0273C73.9737 84.5844 73.8996 85.1457 73.702 85.6754C73.5044 86.205 73.1876 86.6915 72.7718 87.1037C72.356 87.5159 71.8503 87.8449 71.2869 88.0696C70.7235 88.2944 70.1148 88.41 69.4996 88.4091H43.1895C42.08 88.4084 41.0109 88.0301 40.1928 87.3487C39.3747 86.6673 38.8671 85.7321 38.7696 84.7273L38.3696 80.4273" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
28
+ <path d="M35.7201 82.0907L35.92 84.3271C35.9636 84.8773 36.1326 85.4132 36.4165 85.9007C36.7004 86.3883 37.0928 86.8167 37.5688 87.1588C38.0448 87.5008 38.594 87.7491 39.1813 87.8876C39.7686 88.0261 40.3812 88.052 40.9801 87.9635" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
29
+ <path d="M32.8197 53.9182L33.0497 56.3182" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
30
+ <path opacity="0.2" d="M37.3397 50.3819C36.5217 51.0497 35.513 51.494 34.4296 51.6637C34.0996 51.7174 33.765 51.7448 33.4296 51.7455C32.4095 51.744 31.4072 51.5029 30.5197 51.0455C30.2127 50.8804 29.9217 50.6918 29.6497 50.4819L24.8997 46.8455C23.9589 46.1185 23.2946 45.1399 23.0019 44.0494C22.7092 42.9588 22.803 41.8121 23.2697 40.7728C23.1097 40.9183 22.9396 41.0728 22.7896 41.2365C21.7886 42.3106 21.298 43.7023 21.4255 45.1054C21.553 46.5084 22.2883 47.808 23.4697 48.7183L28.2197 52.3546C28.4892 52.5647 28.7806 52.7504 29.0897 52.9092C30.1592 53.4688 31.3963 53.706 32.6234 53.5867C33.8504 53.4675 35.0043 52.998 35.9196 52.2455C36.112 52.0903 36.2925 51.9232 36.4597 51.7455C36.8491 51.3181 37.166 50.8401 37.3997 50.3274C37.3997 50.3274 37.3597 50.3728 37.3397 50.3819Z" fill="#BDC7CE"/>
31
+ <path opacity="0.2" d="M37.2698 80.1546C36.6045 80.3808 35.9001 80.4978 35.1898 80.5001C33.8064 80.5006 32.4673 80.0562 31.4097 79.2455L29.7098 77.9364L28.4598 76.9728C27.5313 76.2557 26.8724 75.2929 26.5748 74.2189C26.2772 73.1449 26.3558 72.0133 26.7997 70.9819C26.5982 71.1408 26.411 71.314 26.2398 71.5001C25.2382 72.5758 24.7472 73.9689 24.8747 75.3735C25.0022 76.778 25.7377 78.0791 26.9197 78.991L28.1697 79.9546L29.8698 81.2546C30.9203 82.0714 32.2575 82.5197 33.6398 82.5183C34.3514 82.5185 35.0567 82.3983 35.7198 82.1637C36.6474 81.8544 37.4686 81.3275 38.0998 80.6364L38.2298 80.491C38.5899 80.0815 38.8799 79.6248 39.0898 79.1364C38.555 79.5721 37.9386 79.917 37.2698 80.1546Z" fill="#BDC7CE"/>
32
+ <path opacity="0.2" d="M40.8796 67.7183C39.8382 68.4693 38.5488 68.8793 37.2195 68.882C36.5907 68.8824 35.966 68.7902 35.3696 68.6092C34.8673 68.4621 34.3921 68.2476 33.9595 67.9729C33.7797 67.8628 33.6061 67.7444 33.4395 67.6183L23.9295 60.2911C22.9929 59.5653 22.3313 58.5899 22.0388 57.5031C21.7462 56.4164 21.8374 55.2735 22.2995 54.2365L21.9595 54.5638C20.9579 55.6395 20.4669 57.0326 20.5944 58.4372C20.7219 59.8417 21.4576 61.1428 22.6396 62.0547L32.1396 69.382C32.3062 69.5081 32.4797 69.6264 32.6595 69.7365C33.0967 70.0096 33.575 70.2239 34.0795 70.3729C34.6725 70.5539 35.2939 70.646 35.9195 70.6456C37.2509 70.6454 38.5422 70.2316 39.5795 69.4729C39.8726 69.2658 40.1408 69.0312 40.3796 68.7729C40.7758 68.3448 41.0962 67.8633 41.3295 67.3456L40.8796 67.7183Z" fill="#BDC7CE"/>
33
+ <path d="M56.5198 79.3364C57.1369 79.3364 57.74 79.5027 58.2531 79.8144C58.7661 80.1261 59.1661 80.569 59.4022 81.0873C59.6384 81.6056 59.7002 82.1759 59.5798 82.7261C59.4594 83.2763 59.1623 83.7817 58.726 84.1784C58.2896 84.575 57.7336 84.8452 57.1284 84.9546C56.5232 85.0641 55.8959 85.0079 55.3258 84.7932C54.7557 84.5785 54.2684 84.215 53.9255 83.7485C53.5827 83.2821 53.3998 82.7337 53.3998 82.1727C53.3998 81.4205 53.7285 80.6991 54.3136 80.1671C54.8987 79.6352 55.6923 79.3364 56.5198 79.3364V79.3364Z" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
34
+ <path d="M46.8002 15.2184H53.8602" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
35
+ <path d="M87.0896 90.0636C72.7896 87.0181 73.9295 79.4818 72.9095 73.6" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
36
+ <path d="M33.9299 70.4453C34.1104 70.5471 34.281 70.6627 34.4399 70.7908L37.4399 73.0817C38.5932 73.9694 39.3222 75.2296 39.4734 76.5965C39.6245 77.9635 39.1859 79.3303 38.25 80.409L38.12 80.5635C37.5708 81.1514 36.8873 81.6235 36.117 81.947C35.3468 82.2704 34.5083 82.4373 33.6599 82.4362C32.2759 82.4399 30.9358 81.9951 29.88 81.1817L28.1799 79.8726L26.9199 78.8999C26.004 78.1961 25.3487 77.253 25.0429 76.1988C24.7372 75.1446 24.7959 74.0305 25.211 73.0076C25.6261 71.9848 26.3775 71.103 27.3631 70.4819C28.3487 69.8608 29.5207 69.5306 30.7199 69.5362C31.349 69.5327 31.9743 69.6249 32.5699 69.809" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
37
+ <path d="M28.1498 79.8635C31.2298 82.4635 34.3997 84.9453 37.5497 87.2726C50.4497 96.7726 57.8897 97.0544 62.0897 97.7271C66.227 98.2234 70.4109 98.3148 74.5697 97.9999C74.5697 97.9999 82.8697 102.664 89.2397 105.618C89.2397 105.618 101.56 101.563 108.06 86.2635L104.06 84.0271C103.49 80.2362 100.46 71.118 97.4297 64.5817C94.3997 58.0453 86.1797 57.0726 82.4297 53.9817C78.6797 50.8908 79.3197 35.7999 74.0997 34.1817C70.7497 33.1453 69.5597 35.3817 69.5597 35.3817" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
38
+ <path d="M32.5201 69.8C32.3402 69.6899 32.1667 69.5715 32 69.4454L22.49 62.1182C21.3945 61.2825 20.6743 60.1105 20.466 58.8244C20.2577 57.5382 20.5758 56.2272 21.3599 55.14C22.144 54.0528 23.3397 53.265 24.7203 52.9258C26.1008 52.5867 27.5703 52.7198 28.85 53.3C29.2813 53.4932 29.6843 53.7344 30.05 54.0182L33.05 56.3273L36.32 58.8454L38.73 60.6636L39.56 61.3091C40.7405 62.2222 41.4743 63.524 41.5999 64.9285C41.7255 66.333 41.2328 67.7254 40.23 68.8C39.992 69.0558 39.7274 69.2903 39.44 69.5C38.6789 70.059 37.7754 70.4352 36.8127 70.5941C35.8499 70.7529 34.8586 70.6893 33.93 70.4091C33.4311 70.2667 32.9566 70.0617 32.5201 69.8V69.8Z" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
39
+ <path d="M28.9003 53.2183C28.5919 53.0586 28.3006 52.8729 28.0303 52.6638L23.2803 49.0274C22.1592 48.0999 21.4778 46.8131 21.3798 45.4379C21.2818 44.0628 21.7747 42.7068 22.7548 41.6555C23.7349 40.6043 25.1255 39.9399 26.6337 39.8024C28.142 39.6649 29.6501 40.0649 30.8403 40.9183L31.5203 41.4456L34.5203 43.7547L35.5802 44.5638C36.7576 45.4783 37.4897 46.7788 37.6171 48.1819C37.7445 49.585 37.2568 50.977 36.2603 52.0547C36.0957 52.2345 35.915 52.4018 35.7203 52.5547V52.5547C34.9032 53.2306 33.8896 53.6787 32.8002 53.8456C32.4702 53.8997 32.1356 53.9271 31.8002 53.9274C30.7818 53.927 29.7816 53.6824 28.9003 53.2183V53.2183Z" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
40
+ <path d="M31.2903 40.4456L21.9503 31.9547C21.4323 31.4831 21.0215 30.9234 20.7413 30.3075C20.4612 29.6916 20.3173 29.0316 20.3178 28.3651C20.3182 27.6987 20.463 27.0388 20.744 26.4232C21.025 25.8076 21.4366 25.2484 21.9553 24.7774C22.474 24.3065 23.0897 23.933 23.7672 23.6783C24.4447 23.4237 25.1708 23.2928 25.9039 23.2932C26.6371 23.2937 27.3628 23.4254 28.0399 23.6808C28.7171 23.9362 29.3323 24.3104 29.8503 24.782" stroke="#9DA3AC" stroke-linecap="round" stroke-linejoin="round"/>
41
+ <path d="M43.0502 47.3726C44.1547 47.3726 45.0502 46.5586 45.0502 45.5544C45.0502 44.5503 44.1547 43.7362 43.0502 43.7362C41.9456 43.7362 41.0502 44.5503 41.0502 45.5544C41.0502 46.5586 41.9456 47.3726 43.0502 47.3726Z" fill="#9DA3AC"/>
42
+ <path d="M49.7103 47.3726C50.8149 47.3726 51.7103 46.5586 51.7103 45.5544C51.7103 44.5503 50.8149 43.7362 49.7103 43.7362C48.6058 43.7362 47.7103 44.5503 47.7103 45.5544C47.7103 46.5586 48.6058 47.3726 49.7103 47.3726Z" fill="#9DA3AC"/>
43
+ <path d="M56.3695 47.3726C57.4741 47.3726 58.3695 46.5586 58.3695 45.5544C58.3695 44.5503 57.4741 43.7362 56.3695 43.7362C55.2649 43.7362 54.3695 44.5503 54.3695 45.5544C54.3695 46.5586 55.2649 47.3726 56.3695 47.3726Z" fill="#9DA3AC"/>
44
+ <path d="M63.0297 47.3726C64.1342 47.3726 65.0297 46.5586 65.0297 45.5544C65.0297 44.5503 64.1342 43.7362 63.0297 43.7362C61.9251 43.7362 61.0297 44.5503 61.0297 45.5544C61.0297 46.5586 61.9251 47.3726 63.0297 47.3726Z" fill="#9DA3AC"/>
45
+ </g>
46
+ <defs>
47
+ <clipPath id="clip0_8755_21057">
48
+ <rect width="89.03" height="96.0636" fill="white" transform="translate(19.8099 10)"/>
49
+ </clipPath>
50
+ </defs>
51
+ </svg>
52
+ </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="M14.6089 3.38833C14.7371 3.63269 14.6435 3.93505 14.3998 4.06366L11.804 5.43336C11.7169 5.47935 11.6181 5.49844 11.5201 5.4882L9.17697 5.24346C8.77986 5.20198 8.38269 5.32137 8.07384 5.57505L6.54369 6.83188C6.28783 7.04204 6.24839 7.41954 6.45526 7.6783C6.65503 7.92818 7.01441 7.97869 7.27502 7.79353L8.50577 6.91906C8.68598 6.79102 8.92872 6.79708 9.10235 6.93394L9.26375 7.06117C9.49518 7.20314 9.7564 7.23738 10.0101 7.19507C10.3321 7.14137 10.5916 6.97226 10.7105 6.81228C10.8749 6.59079 11.1874 6.54493 11.4083 6.70985C11.6292 6.87477 11.6749 7.18802 11.5104 7.4095C11.287 7.7103 10.9441 7.94616 10.5589 8.08208L12.086 9.2858L13.8913 8.08151C14.1206 7.92855 14.4302 7.99092 14.5827 8.22082C14.7353 8.45073 14.6731 8.76111 14.4438 8.91407L12.3378 10.3189C12.3164 10.3332 12.2941 10.3457 12.2712 10.3563L9.11868 12.542C8.48761 12.9795 7.6515 12.9905 7.01899 12.5696L1.55101 8.93077C1.32195 8.77834 1.26415 8.47077 1.42191 8.2438C1.57966 8.01682 1.89323 7.95639 2.12229 8.10882L7.59026 11.7477C7.87777 11.939 8.25782 11.934 8.54467 11.7351L11.2234 9.87793L8.77864 7.95083L7.85171 8.60942C7.16037 9.10064 6.20698 8.96663 5.67702 8.30374C5.12822 7.6173 5.23285 6.61584 5.91161 6.05832L6.74015 5.37778C6.49692 5.29053 6.23123 5.26564 5.96856 5.31004L4.02143 5.63915C3.91123 5.65778 3.7983 5.63996 3.70036 5.58851L1.59529 4.48254C1.35121 4.3543 1.26141 4.05459 1.39473 3.81312C1.52805 3.57165 1.834 3.47986 2.07808 3.6081L4.03206 4.63469L5.80921 4.33431C6.43358 4.22878 7.06817 4.35811 7.58979 4.68887C8.08022 4.34385 8.68031 4.18617 9.28032 4.24884L11.4732 4.47789L13.9353 3.17873C14.179 3.05012 14.4806 3.14396 14.6089 3.38833Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,14 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 38 38" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path
4
+ d="M9.37435 11.667C9.37435 10.9076 9.98996 10.292 10.7493 10.292H19.916C20.6754 10.292 21.291 10.9076 21.291 11.667C21.291 12.4264 20.6754 13.042 19.916 13.042H10.7493C9.98996 13.042 9.37435 12.4264 9.37435 11.667Z"
5
+ fill="currentColor"/>
6
+ <path
7
+ d="M9.37435 17.9527C9.37435 17.1933 9.98996 16.5777 10.7493 16.5777H19.916C20.6754 16.5777 21.291 17.1933 21.291 17.9527C21.291 18.7121 20.6754 19.3277 19.916 19.3277H16.7077V26.3337C16.7077 27.093 16.0921 27.7087 15.3327 27.7087C14.5733 27.7087 13.9577 27.093 13.9577 26.3337V19.3277H10.7493C9.98996 19.3277 9.37435 18.7121 9.37435 17.9527Z"
8
+ fill="currentColor"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd"
10
+ d="M2.59705 2.59802C3.83346 1.3616 5.51041 0.666992 7.25896 0.666992H32.0442C33.4468 0.666992 34.7919 1.22417 35.7837 2.21595C36.7755 3.20773 37.3327 4.55287 37.3327 5.95545V15.0869C37.3327 15.8463 36.7171 16.4619 35.9577 16.4619H29.5058V35.9587C29.5058 36.454 29.2393 36.9111 28.8082 37.1552C28.3771 37.3993 27.8481 37.3926 27.4233 37.1377L21.6083 33.6487L15.7933 37.1377C15.3579 37.399 14.8139 37.399 14.3785 37.1377L8.56345 33.6487L2.74845 37.1377C2.32367 37.3926 1.79463 37.3993 1.36355 37.1552C0.932481 36.9111 0.666016 36.454 0.666016 35.9587V7.25994C0.666016 5.51138 1.36063 3.83444 2.59705 2.59802ZM29.5058 13.7119H34.5827V5.95545C34.5827 5.28221 34.3152 4.63654 33.8392 4.16049C33.3631 3.68444 32.7175 3.41699 32.0442 3.41699C31.371 3.41699 30.7253 3.68444 30.2493 4.16049C29.7732 4.63654 29.5058 5.28221 29.5058 5.95545V13.7119ZM27.4048 3.41699C26.9827 4.18845 26.7558 5.06025 26.7558 5.95545V33.5301L22.3158 30.8661C21.8803 30.6049 21.3363 30.6049 20.9009 30.8661L15.0859 34.3551L9.27088 30.8661C8.83544 30.6049 8.29146 30.6049 7.85602 30.8661L3.41602 33.5301V7.25994C3.41602 6.24073 3.8209 5.26326 4.54159 4.54257C5.26228 3.82187 6.23975 3.41699 7.25896 3.41699H27.4048Z"
11
+ fill="currentColor"/>
12
+ </svg>
13
+
14
+ </template>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 36 32" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path
4
+ d="M30.375 13.25C30.375 13.6147 30.2301 13.9644 29.9723 14.2223C29.7144 14.4801 29.3647 14.625 29 14.625H22.125C21.7603 14.625 21.4106 14.4801 21.1527 14.2223C20.8949 13.9644 20.75 13.6147 20.75 13.25C20.75 12.8853 20.8949 12.5356 21.1527 12.2777C21.4106 12.0199 21.7603 11.875 22.125 11.875H29C29.3647 11.875 29.7144 12.0199 29.9723 12.2777C30.2301 12.5356 30.375 12.8853 30.375 13.25ZM29 17.375H22.125C21.7603 17.375 21.4106 17.5199 21.1527 17.7777C20.8949 18.0356 20.75 18.3853 20.75 18.75C20.75 19.1147 20.8949 19.4644 21.1527 19.7223C21.4106 19.9801 21.7603 20.125 22.125 20.125H29C29.3647 20.125 29.7144 19.9801 29.9723 19.7223C30.2301 19.4644 30.375 19.1147 30.375 18.75C30.375 18.3853 30.2301 18.0356 29.9723 17.7777C29.7144 17.5199 29.3647 17.375 29 17.375ZM35.875 3.625V28.375C35.875 29.1043 35.5853 29.8038 35.0695 30.3195C34.5538 30.8353 33.8543 31.125 33.125 31.125H2.875C2.14565 31.125 1.44618 30.8353 0.930456 30.3195C0.414731 29.8038 0.125 29.1043 0.125 28.375V3.625C0.125 2.89565 0.414731 2.19618 0.930456 1.68046C1.44618 1.16473 2.14565 0.875 2.875 0.875H33.125C33.8543 0.875 34.5538 1.16473 35.0695 1.68046C35.5853 2.19618 35.875 2.89565 35.875 3.625ZM33.125 28.375V3.625H2.875V28.375H33.125ZM19.3303 22.5312C19.4215 22.8845 19.3686 23.2596 19.1832 23.5738C18.9979 23.8881 18.6953 24.1159 18.342 24.207C17.9888 24.2982 17.6137 24.2453 17.2995 24.06C16.9852 23.8746 16.7574 23.572 16.6663 23.2188C16.2142 21.4553 14.4216 20.125 12.4983 20.125C10.575 20.125 8.78406 21.4553 8.33031 23.2188C8.23914 23.572 8.01137 23.8746 7.6971 24.06C7.38283 24.2453 7.00781 24.2982 6.65453 24.207C6.30125 24.1159 5.99866 23.8881 5.81333 23.5738C5.62799 23.2596 5.57508 22.8845 5.66625 22.5312C6.11244 20.8705 7.16716 19.4384 8.62078 18.5197C7.84832 17.7518 7.32124 16.7719 7.10637 15.7041C6.8915 14.6363 6.9985 13.5287 7.41382 12.5218C7.82914 11.5149 8.53407 10.654 9.43925 10.0482C10.3444 9.44244 11.4091 9.11905 12.4983 9.11905C13.5875 9.11905 14.6521 9.44244 15.5573 10.0482C16.4625 10.654 17.1674 11.5149 17.5827 12.5218C17.9981 13.5287 18.1051 14.6363 17.8902 15.7041C17.6753 16.7719 17.1482 17.7518 16.3758 18.5197C17.831 19.4371 18.8867 20.8696 19.332 22.5312H19.3303ZM12.5 17.375C13.0439 17.375 13.5756 17.2137 14.0278 16.9115C14.4801 16.6094 14.8325 16.1799 15.0407 15.6774C15.2488 15.1749 15.3033 14.6219 15.1972 14.0885C15.0911 13.5551 14.8291 13.0651 14.4445 12.6805C14.0599 12.2959 13.5699 12.0339 13.0365 11.9278C12.5031 11.8217 11.9501 11.8762 11.4476 12.0843C10.9451 12.2925 10.5156 12.6449 10.2135 13.0972C9.91128 13.5494 9.75 14.0811 9.75 14.625C9.75 15.3543 10.0397 16.0538 10.5555 16.5695C11.0712 17.0853 11.7707 17.375 12.5 17.375Z"
5
+ fill="currentColor"/>
6
+ </svg>
7
+ </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="M9.80011 1.6639C8.54695 1.41463 7.248 1.54256 6.06755 2.03153C4.88709 2.52049 3.87813 3.34851 3.16827 4.4109C2.587 5.28083 2.22766 6.27591 2.11654 7.30941L1.89635 7.08921C1.69132 6.88419 1.35891 6.88419 1.15389 7.08921C0.948866 7.29424 0.948866 7.62665 1.15389 7.83167L2.23303 8.91081C2.43805 9.11583 2.77046 9.11583 2.97549 8.91081L4.05462 7.83167C4.25965 7.62665 4.25965 7.29424 4.05462 7.08921C3.8496 6.88419 3.51719 6.88419 3.31217 7.08921L3.18684 7.21454C3.30292 6.42344 3.59347 5.66449 4.04131 4.99424C4.6358 4.10453 5.48077 3.41108 6.46936 3.00159C7.45796 2.5921 8.54578 2.48496 9.59527 2.69372C10.6448 2.90247 11.6088 3.41775 12.3654 4.17439C13.1221 4.93103 13.6373 5.89505 13.8461 6.94453C14.0548 7.99402 13.9477 9.08185 13.5382 10.0704C13.1287 11.059 12.4353 11.904 11.5456 12.4985C10.6558 13.093 9.60983 13.4103 8.53978 13.4103C8.24983 13.4103 8.01478 13.6453 8.01478 13.9353C8.01478 14.2252 8.24983 14.4603 8.53978 14.4603C9.8175 14.4603 11.0665 14.0814 12.1289 13.3715C13.1913 12.6617 14.0193 11.6527 14.5083 10.4723C14.9972 9.2918 15.1252 7.99286 14.8759 6.73969C14.6266 5.48652 14.0114 4.33542 13.1079 3.43193C12.2044 2.52845 11.0533 1.91317 9.80011 1.6639ZM8.53978 4.76939C8.24984 4.76939 8.01479 5.00444 8.01479 5.29438V7.75953L5.4399 10.3344C5.23487 10.5394 5.23487 10.8719 5.4399 11.0769C5.64492 11.2819 5.97733 11.2819 6.18235 11.0769L8.91101 8.34822L9.06478 8.19445V7.97699V5.29438C9.06478 5.00444 8.82973 4.76939 8.53978 4.76939Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,13 @@
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.4782 8.00012C12.4782 7.30377 13.0427 6.73926 13.7391 6.73926C14.4354 6.73926 14.9999 7.30377 14.9999 8.00012C14.9999 8.69648 14.4354 9.26099 13.7391 9.26099C13.0427 9.26099 12.4782 8.69648 12.4782 8.00012Z"
5
+ fill="currentColor"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd"
7
+ d="M6.73909 8.00012C6.73909 7.30377 7.3036 6.73926 7.99996 6.73926C8.69631 6.73926 9.26082 7.30377 9.26082 8.00012C9.26082 8.69648 8.69631 9.26099 7.99996 9.26099C7.3036 9.26099 6.73909 8.69648 6.73909 8.00012Z"
8
+ fill="currentColor"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd"
10
+ d="M1 8.00012C1 7.30377 1.56451 6.73926 2.26086 6.73926C2.95722 6.73926 3.52173 7.30377 3.52173 8.00012C3.52173 8.69648 2.95722 9.26099 2.26086 9.26099C1.56451 9.26099 1 8.69648 1 8.00012Z"
11
+ fill="currentColor"/>
12
+ </svg>
13
+ </template>
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M8.53745 8.80032C8.27434 9.06333 8.27434 9.48976 8.53745 9.75277L10.7932 12.0077C11.0564 12.2707 11.483 12.2707 11.7461 12.0077L16.8518 6.90393C17.1149 6.64092 17.1149 6.21449 16.8518 5.95148L14.596 3.69657C14.3329 3.43356 13.9063 3.43356 13.6432 3.69657L8.53745 8.80032ZM7.47617 10.8136C6.62693 9.96473 6.62693 8.58837 7.47617 7.73946L12.5819 2.63571C13.4312 1.7868 14.8081 1.7868 15.6573 2.63571L17.9131 4.89062C18.7623 5.73953 18.7623 7.11589 17.9131 7.9648L15.8984 9.9787L21.7803 15.8583C22.0733 16.1512 22.0732 16.6261 21.7801 16.9189C21.4869 17.2118 21.0116 17.2117 20.7186 16.9187L14.8371 11.0396L12.8073 13.0685C11.9581 13.9175 10.5812 13.9175 9.73197 13.0685L7.47617 10.8136ZM4.17483 16.9413C3.7603 16.9413 3.42425 17.2771 3.42425 17.6913V20.5004H2.75058C2.33605 20.5004 2 20.8362 2 21.2504C2 21.6646 2.33605 22.0004 2.75058 22.0004H13.432C13.8465 22.0004 14.1825 21.6646 14.1825 21.2504C14.1825 20.8362 13.8465 20.5004 13.432 20.5004H12.7584V17.6913C12.7584 17.2771 12.4224 16.9413 12.0078 16.9413H4.17483ZM11.2573 20.5004V18.4413H4.92541V20.5004H11.2573Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
package/icons/id.vue ADDED
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1.6665 4.71961C1.6665 3.9797 2.26632 3.37988 3.00623 3.37988H16.9934C17.7334 3.37988 18.3332 3.9797 18.3332 4.71961V15.2809C18.3332 16.0208 17.7334 16.6206 16.9934 16.6206H3.00623C2.26632 16.6206 1.6665 16.0208 1.6665 15.2809V4.71961ZM3.00623 4.62988C2.95668 4.62988 2.9165 4.67005 2.9165 4.71961V15.2809C2.9165 15.3305 2.95668 15.3706 3.00623 15.3706H16.9934C17.043 15.3706 17.0832 15.3305 17.0832 15.2809V4.71961C17.0832 4.67005 17.043 4.62988 16.9934 4.62988H3.00623ZM11.9671 8.5606C11.9671 8.21542 12.2469 7.9356 12.5921 7.9356H15.1446C15.4898 7.9356 15.7696 8.21542 15.7696 8.5606C15.7696 8.90578 15.4898 9.1856 15.1446 9.1856H12.5921C12.2469 9.1856 11.9671 8.90578 11.9671 8.5606ZM12.5921 10.4651C12.2469 10.4651 11.9671 10.7449 11.9671 11.0901C11.9671 11.4353 12.2469 11.7151 12.5921 11.7151H15.1446C15.4898 11.7151 15.7696 11.4353 15.7696 11.0901C15.7696 10.7449 15.4898 10.4651 15.1446 10.4651H12.5921ZM7.62069 7.04543C6.80167 7.04543 6.13772 7.70937 6.13772 8.52839C6.13772 9.34741 6.80167 10.0114 7.62069 10.0114C7.8289 10.0114 8.02555 9.96882 8.20369 9.89254C8.73404 9.66547 9.10366 9.13938 9.10366 8.52839C9.10366 7.70937 8.43971 7.04543 7.62069 7.04543ZM4.88772 8.52839C4.88772 7.01902 6.11131 5.79543 7.62069 5.79543C9.13007 5.79543 10.3537 7.01902 10.3537 8.52839C10.3537 9.64592 9.68303 10.6054 8.7247 11.029C9.10094 11.1401 9.46277 11.3076 9.80036 11.5273C10.4578 11.9553 10.9988 12.565 11.3796 13.2893C11.5403 13.5948 11.4228 13.9727 11.1173 14.1333C10.8118 14.294 10.4339 14.1765 10.2732 13.871C9.98413 13.3211 9.58362 12.8777 9.11845 12.575C8.65428 12.2728 8.13902 12.1189 7.62131 12.1189C7.1036 12.1189 6.58833 12.2728 6.12417 12.575C5.65899 12.8777 5.25848 13.3211 4.96939 13.871C4.80876 14.1765 4.43087 14.294 4.12534 14.1333C3.81981 13.9727 3.70235 13.5948 3.86299 13.2893C4.2438 12.565 4.78481 11.9553 5.44225 11.5273C5.77955 11.3078 6.14105 11.1404 6.51694 11.0293C5.55736 10.6052 4.88772 9.64499 4.88772 8.52839Z"
4
+ fill="currentColor"
5
+ />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,29 @@
1
+ <script setup lang="ts">
2
+ </script>
3
+
4
+ <template>
5
+ <svg
6
+ width="1em"
7
+ height="1em"
8
+ viewBox="0 0 20 20"
9
+ fill="none"
10
+ xmlns="https://www.w3.org/2000/svg"
11
+ >
12
+ <path
13
+ d="M11.9401 13.5288L11.8136 14.0428C11.4341 14.1917 11.131 14.3051 10.9053 14.383C10.6793 14.4611 10.4168 14.5 10.1176 14.5C9.6582 14.5 9.30087 14.3881 9.04602 14.1659C8.79117 13.9428 8.6637 13.6601 8.6637 13.3171C8.6637 13.1843 8.67295 13.0478 8.69218 12.9086C8.71157 12.7693 8.7424 12.6124 8.7846 12.4371L9.25884 10.7684C9.30104 10.6086 9.3369 10.4572 9.36562 10.314C9.39475 10.1717 9.40879 10.0408 9.40879 9.92294C9.40879 9.70983 9.3644 9.56077 9.27605 9.47696C9.18769 9.39339 9.01908 9.35097 8.76877 9.35097C8.64618 9.35097 8.52017 9.37049 8.39173 9.40824C8.26272 9.44615 8.15245 9.48277 8.05988 9.51681L8.18669 9.00235C8.49737 8.87659 8.79433 8.76891 9.07839 8.67954C9.36246 8.58992 9.63086 8.54507 9.88474 8.54507C10.341 8.54507 10.693 8.65469 10.9403 8.87393C11.1875 9.09333 11.3111 9.37775 11.3111 9.72822C11.3111 9.80074 11.3029 9.9285 11.2855 10.1111C11.2685 10.2941 11.2367 10.4618 11.1905 10.6144L10.7183 12.2764C10.6796 12.4099 10.6448 12.5625 10.6145 12.7342C10.5833 12.9048 10.5683 13.0352 10.5683 13.1226C10.5683 13.3433 10.6178 13.494 10.717 13.5741C10.817 13.6542 10.9892 13.694 11.2337 13.694C11.3485 13.694 11.4792 13.6738 11.6243 13.634C11.7691 13.5943 11.8746 13.5593 11.9401 13.5288Z"
14
+ fill="currentColor"
15
+ />
16
+ <path
17
+ d="M11.5085 7.20803C11.7039 7.01413 11.8011 6.77831 11.8011 6.50219C11.8011 6.22669 11.704 5.9904 11.5085 5.79404C11.3137 5.59822 11.0789 5.5 10.8043 5.5C10.5288 5.5 10.2931 5.59799 10.0964 5.79404C9.89965 5.9904 9.80109 6.22661 9.80109 6.50219C9.80109 6.77831 9.89965 7.01406 10.0964 7.20803C10.2934 7.40263 10.5288 7.5 10.8043 7.5C11.0789 7.5 11.3137 7.40263 11.5085 7.20803Z"
18
+ fill="currentColor"
19
+ />
20
+ <path
21
+ fill-rule="evenodd"
22
+ clip-rule="evenodd"
23
+ d="M10 1.5C5.30558 1.5 1.5 5.30558 1.5 10C1.5 14.6944 5.30558 18.5 10 18.5C14.6944 18.5 18.5 14.6944 18.5 10C18.5 5.30558 14.6944 1.5 10 1.5ZM0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10Z"
24
+ fill="currentColor"
25
+ />
26
+ </svg>
27
+ </template>
28
+
29
+ <style scoped></style>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path d="M4.6665 18.6458V8.05426C4.6665 5.20025 4.6665 3.77325 5.54518 2.88663C6.42386 2 7.83808 2 10.6665 2H14.6665C17.4949 2 18.9091 2 19.7878 2.88663C20.6665 3.77325 20.6665 5.20025 20.6665 8.05426V18.6458C20.6665 20.1575 20.6665 20.9133 20.2046 21.2108C19.4496 21.6971 18.2826 20.6774 17.6956 20.3073C17.2107 20.0014 16.9682 19.8485 16.699 19.8397C16.4082 19.8301 16.1614 19.9768 15.6374 20.3073L13.7265 21.5124C13.211 21.8374 12.9533 22 12.6665 22C12.3797 22 12.122 21.8374 11.6065 21.5124L9.69563 20.3073C9.21065 20.0014 8.96816 19.8485 8.69904 19.8397C8.40822 19.8301 8.16143 19.9768 7.63738 20.3073C7.05045 20.6774 5.88338 21.6971 5.12846 21.2108C4.6665 20.9133 4.6665 20.1575 4.6665 18.6458Z" fill="#566573" stroke="#566573" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M11.6665 11H8.6665" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M14.6665 7L8.6665 7" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
7
+ </template>
@@ -0,0 +1,14 @@
1
+ <template>
2
+ <svg
3
+ width="32"
4
+ height="32"
5
+ viewBox="0 0 32 32"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M30.4152 14.5862L28.4152 12.5862C28.076 12.2474 27.6264 12.0417 27.1482 12.0066C26.6701 11.9715 26.1952 12.1093 25.8102 12.395L19.6052 6.18997C19.891 5.80507 20.029 5.33031 19.9942 4.85217C19.9593 4.37403 19.7538 3.92433 19.4152 3.58497L17.4152 1.58497C17.2295 1.39921 17.009 1.25185 16.7663 1.15131C16.5236 1.05077 16.2635 0.999023 16.0008 0.999023C15.7381 0.999023 15.478 1.05077 15.2353 1.15131C14.9927 1.25185 14.7722 1.39921 14.5864 1.58497L6.58644 9.58497C6.40068 9.77069 6.25332 9.99119 6.15278 10.2339C6.05224 10.4766 6.00049 10.7367 6.00049 10.9993C6.00049 11.262 6.05224 11.5221 6.15278 11.7648C6.25332 12.0075 6.40068 12.228 6.58644 12.4137L8.58644 14.4137C8.92573 14.752 9.37519 14.9573 9.85304 14.9921C10.3309 15.027 10.8054 14.8892 11.1902 14.6037L12.0864 15.5L3.91394 23.6725C3.37099 24.2663 3.07801 25.0466 3.096 25.8511C3.11398 26.6555 3.44156 27.422 4.01051 27.9909C4.57946 28.5599 5.34594 28.8874 6.15035 28.9054C6.95477 28.9234 7.73513 28.6304 8.32894 28.0875L16.5002 19.915L17.3964 20.81C17.1106 21.1949 16.9726 21.6696 17.0075 22.1478C17.0424 22.6259 17.2478 23.0756 17.5864 23.415L19.5864 25.415C19.7722 25.6007 19.9927 25.7481 20.2353 25.8486C20.478 25.9492 20.7381 26.0009 21.0008 26.0009C21.2635 26.0009 21.5236 25.9492 21.7663 25.8486C22.009 25.7481 22.2295 25.6007 22.4152 25.415L30.4152 17.415C30.601 17.2292 30.7483 17.0088 30.8489 16.7661C30.9494 16.5234 31.0011 16.2633 31.0011 16.0006C31.0011 15.7379 30.9494 15.4778 30.8489 15.2351C30.7483 14.9924 30.601 14.7719 30.4152 14.5862ZM10.0002 13L8.00019 11L16.0002 2.99997L18.0002 4.99997L10.0002 13ZM6.91519 26.6725C6.70441 26.882 6.41928 26.9996 6.12207 26.9996C5.82486 26.9996 5.53972 26.882 5.32894 26.6725C5.11979 26.4617 5.00242 26.1769 5.00242 25.88C5.00242 25.5831 5.11979 25.2982 5.32894 25.0875L13.5002 16.915L15.0864 18.5L6.91519 26.6725ZM12.6252 13.2075L18.2077 7.62497L24.3752 13.7925L18.7939 19.375L12.6252 13.2075ZM21.0002 24L19.0002 22L19.5002 21.5L26.5002 14.5L27.0002 14L29.0002 16L21.0002 24Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="17"
5
+ viewBox="0 0 16 17"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M8.47751 3.4889L6.93233 5.03417C6.72732 5.2392 6.39491 5.23921 6.18988 5.03419C5.98484 4.82917 5.98483 4.49676 6.18985 4.29173L7.73504 2.74645C9.39699 1.08453 12.0915 1.08451 13.7535 2.74644C15.4154 4.40836 15.4154 7.10287 13.7535 8.7648L12.2083 10.3101C12.0033 10.5151 11.6709 10.5151 11.4659 10.3101C11.2608 10.1051 11.2608 9.77267 11.4658 9.56764L13.011 8.02236C14.2629 6.77048 14.2629 4.74078 13.011 3.4889C11.7591 2.23702 9.72941 2.23703 8.47751 3.4889Z"
13
+ fill="currentColor"
14
+ />
15
+ <path
16
+ fill-rule="evenodd"
17
+ clip-rule="evenodd"
18
+ d="M4.53409 6.68986C4.73913 6.89488 4.73914 7.22729 4.53412 7.43232L2.98893 8.97759C1.73704 10.2295 1.73702 12.2592 2.98892 13.5111C4.24081 14.7629 6.27054 14.7629 7.52244 13.5111L9.06762 11.9658C9.27264 11.7608 9.60505 11.7607 9.81008 11.9658C10.0151 12.1708 10.0151 12.5032 9.81011 12.7082L8.26492 14.2535C6.60297 15.9154 3.90841 15.9154 2.24646 14.2535C0.584516 12.5916 0.584512 9.89708 2.24645 8.23516L3.79163 6.68988C3.99665 6.48485 4.32906 6.48484 4.53409 6.68986Z"
19
+ fill="currentColor"
20
+ />
21
+ <path
22
+ fill-rule="evenodd"
23
+ clip-rule="evenodd"
24
+ d="M10.5295 5.97043C10.7346 6.17545 10.7346 6.50787 10.5295 6.71289L6.21289 11.0295C6.00786 11.2346 5.67545 11.2346 5.47043 11.0295C5.2654 10.8245 5.2654 10.4921 5.47043 10.2871L9.78708 5.97043C9.9921 5.76541 10.3245 5.76541 10.5295 5.97043Z"
25
+ fill="currentColor"
26
+ />
27
+ </svg>
28
+ </template>
package/icons/link.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" d="M8.47751 2.9889L6.93233 4.53417C6.72732 4.7392 6.39491 4.73921 6.18988 4.53419C5.98484 4.32917 5.98483 3.99676 6.18985 3.79173L7.73504 2.24645C9.39699 0.584526 12.0915 0.584512 13.7535 2.24644C15.4154 3.90836 15.4154 6.60287 13.7535 8.2648L12.2083 9.81008C12.0033 10.0151 11.6709 10.0151 11.4659 9.8101C11.2608 9.60508 11.2608 9.27267 11.4658 9.06764L13.011 7.52236C14.2629 6.27048 14.2629 4.24078 13.011 2.9889C11.7591 1.73702 9.72941 1.73703 8.47751 2.9889Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.53409 6.18986C4.73913 6.39488 4.73914 6.72729 4.53412 6.93232L2.98893 8.47759C1.73704 9.72947 1.73702 11.7592 2.98892 13.0111C4.24081 14.2629 6.27054 14.2629 7.52244 13.0111L9.06762 11.4658C9.27264 11.2608 9.60505 11.2607 9.81008 11.4658C10.0151 11.6708 10.0151 12.0032 9.81011 12.2082L8.26492 13.7535C6.60297 15.4154 3.90841 15.4154 2.24646 13.7535C0.584516 12.0916 0.584512 9.39708 2.24645 7.73516L3.79163 6.18988C3.99665 5.98485 4.32906 5.98484 4.53409 6.18986Z" fill="currentColor"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5295 5.47043C10.7346 5.67545 10.7346 6.00787 10.5295 6.21289L6.21289 10.5295C6.00786 10.7346 5.67545 10.7346 5.47043 10.5295C5.2654 10.3245 5.2654 9.99211 5.47043 9.78708L9.78708 5.47043C9.9921 5.26541 10.3245 5.26541 10.5295 5.47043Z" fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -0,0 +1,24 @@
1
+ <template>
2
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="28" height="28" rx="14" fill="white" />
4
+ <g clip-path="url(#clip0_11045_8656)">
5
+ <path
6
+ d="M9.72564 11.1482H6.51458C6.37207 11.1482 6.25659 11.2637 6.25659 11.4062V21.722C6.25659 21.8645 6.37207 21.9799 6.51458 21.9799H9.72564C9.86815 21.9799 9.98363 21.8645 9.98363 21.722V11.4062C9.98363 11.2637 9.86815 11.1482 9.72564 11.1482Z"
7
+ fill="#2C3E50"
8
+ />
9
+ <path
10
+ d="M8.12134 6.02002C6.95297 6.02002 6.00244 6.96952 6.00244 8.1366C6.00244 9.3042 6.95297 10.2541 8.12134 10.2541C9.28878 10.2541 10.2385 9.30414 10.2385 8.1366C10.2386 6.96952 9.28878 6.02002 8.12134 6.02002Z"
11
+ fill="#2C3E50"
12
+ />
13
+ <path
14
+ d="M17.8931 10.8918C16.6035 10.8918 15.6501 11.4463 15.0718 12.0762V11.4062C15.0718 11.2638 14.9564 11.1482 14.8139 11.1482H11.7387C11.5962 11.1482 11.4807 11.2638 11.4807 11.4062V21.722C11.4807 21.8645 11.5962 21.98 11.7387 21.98H14.9427C15.0853 21.98 15.2007 21.8645 15.2007 21.722V16.6181C15.2007 14.8982 15.6679 14.2281 16.8668 14.2281C18.1725 14.2281 18.2763 15.3023 18.2763 16.7066V21.722C18.2763 21.8646 18.3918 21.98 18.5343 21.98H21.7395C21.882 21.98 21.9975 21.8646 21.9975 21.722V16.0637C21.9975 13.5062 21.5099 10.8918 17.8931 10.8918Z"
15
+ fill="#2C3E50"
16
+ />
17
+ </g>
18
+ <defs>
19
+ <clipPath id="clip0_11045_8656">
20
+ <rect width="15.9952" height="16" fill="white" transform="translate(6.00244 6)" />
21
+ </clipPath>
22
+ </defs>
23
+ </svg>
24
+ </template>
@@ -0,0 +1,27 @@
1
+ <script setup lang="ts">
2
+ const id = useId()
3
+ </script>
4
+
5
+ <template>
6
+ <svg fill="none" height="16" viewBox="0 0 17 16" width="17" xmlns="https://www.w3.org/2000/svg">
7
+ <path
8
+ d="M14.5 8C14.5 6.61187 14.0187 5.26668 13.1381 4.19365C12.2574 3.12061 11.032 2.38611 9.67054 2.1153C8.30908 1.84449 6.89584 2.05412 5.67162 2.70848C4.4474 3.36284 3.48794 4.42144 2.95672 5.7039C2.42551 6.98637 2.35541 8.41335 2.75836 9.7417C3.16131 11.0701 4.01239 12.2176 5.16658 12.9888C6.32077 13.76 7.70666 14.1072 9.0881 13.9711"
9
+ :stroke="`url(#${id})`"
10
+ stroke-linecap="round"
11
+ stroke-width="1.3"
12
+ />
13
+ <defs>
14
+ <linearGradient
15
+ :id="id"
16
+ gradientUnits="userSpaceOnUse"
17
+ x1="12.64"
18
+ x2="8.50001"
19
+ y1="3.44"
20
+ y2="14"
21
+ >
22
+ <stop offset="0.150973" stop-color="currentColor" />
23
+ <stop offset="0.588542" stop-color="currentColor" stop-opacity="0.15" />
24
+ </linearGradient>
25
+ </defs>
26
+ </svg>
27
+ </template>
@@ -0,0 +1,8 @@
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 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z" fill="currentColor"/>
5
+ </svg>
6
+ </template>
7
+ <script setup lang="ts">
8
+ </script>
package/icons/lock.vue ADDED
@@ -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" clip-rule="evenodd" d="M9.25996 4.63496C9.98666 3.90826 10.9723 3.5 12 3.5C13.0277 3.5 14.0133 3.90826 14.74 4.63496C15.4667 5.36166 15.875 6.34729 15.875 7.375V10.325H8.125V7.375C8.125 6.34729 8.53326 5.36166 9.25996 4.63496ZM6.625 10.325V7.375C6.625 5.94946 7.19129 4.58231 8.1993 3.5743C9.20731 2.56629 10.5745 2 12 2C13.4255 2 14.7927 2.56629 15.8007 3.5743C16.8087 4.58231 17.375 5.94946 17.375 7.375V10.325H18.475C19.911 10.325 21.075 11.4891 21.075 12.925V19.4C21.075 20.836 19.911 22 18.475 22H5.52505C4.08911 22 2.92505 20.836 2.92505 19.4V12.925C2.92505 11.4891 4.08911 10.325 5.52505 10.325H6.625ZM4.42505 12.925C4.42505 12.3175 4.91754 11.825 5.52505 11.825H18.475C19.0826 11.825 19.575 12.3175 19.575 12.925V19.4C19.575 20.0075 19.0826 20.5 18.475 20.5H5.52505C4.91754 20.5 4.42505 20.0075 4.42505 19.4V12.925Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
package/icons/logo.vue ADDED
@@ -0,0 +1,15 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg class="text-deepblue-900 dark:text-gray-200" width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="https://www.w3.org/2000/svg">
7
+ <path d="M12.7943 8.26123H12.7098C12.6736 8.71061 12.5849 9.15419 12.4454 9.58289L10.7944 14.7331H14.6771L13.0478 9.63489C12.9159 9.18701 12.831 8.72666 12.7943 8.26123Z" fill="currentColor"/>
8
+ <path d="M23.4 0H2.6C1.91044 0 1.24912 0.273926 0.761524 0.761521C0.273929 1.24912 0 1.91044 0 2.6V23.4C0 24.0896 0.273929 24.7509 0.761524 25.2385C1.24912 25.7261 1.91044 26 2.6 26H23.4C24.0896 26 24.7509 25.7261 25.2385 25.2385C25.7261 24.7509 26 24.0896 26 23.4V2.6C26 1.91044 25.7261 1.24912 25.2385 0.761521C24.7509 0.273926 24.0896 0 23.4 0ZM16.5382 20.7242L15.4548 17.3485H10.0598L8.99167 20.7242H5.29317L10.816 5.55751H14.8677L20.2627 20.7242H16.5382Z" fill="currentColor"/>
9
+ </svg>
10
+
11
+ </template>
12
+
13
+ <style scoped>
14
+
15
+ </style>
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M19.8796 3.5C20.0348 3.5 20.1897 3.56376 20.3084 3.68704C20.428 3.81128 20.5 3.98562 20.5 4.17308V19.8269C20.5 20.0144 20.428 20.1887 20.3084 20.313C20.1897 20.4362 20.0348 20.5 19.8796 20.5H10.2871C10.1318 20.5 9.97701 20.4362 9.85829 20.313C9.73865 20.1887 9.66668 20.0144 9.66668 19.8269V16.9808C9.66668 16.5666 9.33089 16.2308 8.91668 16.2308C8.50247 16.2308 8.16668 16.5666 8.16668 16.9808V19.8269C8.16668 20.3943 8.38346 20.9439 8.77781 21.3534C9.17309 21.7639 9.71536 22 10.2871 22H19.8796C20.4513 22 20.9936 21.7639 21.3889 21.3534C21.7832 20.9439 22 20.3943 22 19.8269V4.17308C22 3.60568 21.7832 3.05609 21.3889 2.64658C20.9936 2.2361 20.4513 2 19.8796 2H10.2871C9.71536 2 9.17309 2.2361 8.77781 2.64658C8.38346 3.05609 8.16668 3.60568 8.16668 4.17308V7.01923C8.16668 7.43344 8.50247 7.76923 8.91668 7.76923C9.33089 7.76923 9.66668 7.43344 9.66668 7.01923V4.17308C9.66668 3.98562 9.73865 3.81128 9.85829 3.68704C9.97701 3.56376 10.1318 3.5 10.2871 3.5H19.8796ZM13.2727 11.25L11.4697 9.44702C11.1768 9.15412 11.1768 8.67925 11.4697 8.38636C11.7626 8.09346 12.2375 8.09346 12.5304 8.38636L15.6137 11.4697C15.9066 11.7626 15.9066 12.2375 15.6137 12.5304L12.5304 15.6137C12.2375 15.9066 11.7626 15.9066 11.4697 15.6137C11.1768 15.3208 11.1768 14.8459 11.4697 14.553L13.2727 12.75H2.75C2.33579 12.75 2 12.4142 2 12C2 11.5858 2.33579 11.25 2.75 11.25H13.2727Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,8 @@
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="M2.05003 7.28054C2.05003 4.39179 4.39182 2.05 7.28057 2.05C10.1693 2.05 12.5111 4.39179 12.5111 7.28054C12.5111 10.1693 10.1693 12.5111 7.28057 12.5111C4.39182 12.5111 2.05003 10.1693 2.05003 7.28054ZM7.28057 1C3.81192 1 1.00003 3.81189 1.00003 7.28054C1.00003 10.7492 3.81192 13.5611 7.28057 13.5611C8.82589 13.5611 10.2409 13.003 11.3349 12.0773L14.1038 14.8462C14.3088 15.0512 14.6412 15.0512 14.8462 14.8462C15.0513 14.6412 15.0513 14.3088 14.8462 14.1037L12.0774 11.3349C13.003 10.2408 13.5611 8.82585 13.5611 7.28054C13.5611 3.81189 10.7492 1 7.28057 1Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 7.29999C4.5 7.01004 4.71129 6.77499 4.97192 6.77499H9.62811C9.88874 6.77499 10.1 7.01004 10.1 7.29999C10.1 7.58994 9.88874 7.82499 9.62811 7.82499H4.97192C4.71129 7.82499 4.5 7.58994 4.5 7.29999Z" fill="currentColor"/>
5
+ </svg>
6
+ </template>
7
+ <script setup lang="ts">
8
+ </script>
@@ -0,0 +1,9 @@
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="M2.05003 7.28054C2.05003 4.39179 4.39182 2.05 7.28057 2.05C10.1693 2.05 12.5111 4.39179 12.5111 7.28054C12.5111 10.1693 10.1693 12.5111 7.28057 12.5111C4.39182 12.5111 2.05003 10.1693 2.05003 7.28054ZM7.28057 1C3.81192 1 1.00003 3.81189 1.00003 7.28054C1.00003 10.7492 3.81192 13.5611 7.28057 13.5611C8.82589 13.5611 10.2409 13.003 11.3349 12.0773L14.1038 14.8462C14.3088 15.0512 14.6412 15.0512 14.8462 14.8462C15.0513 14.6412 15.0513 14.3088 14.8462 14.1037L12.0774 11.3349C13.003 10.2408 13.5611 8.82585 13.5611 7.28054C13.5611 3.81189 10.7492 1 7.28057 1Z" fill="currentColor"/>
4
+ <path d="M7.30001 4.18503C7.58996 4.18503 7.82501 4.42008 7.82501 4.71003V6.77499H9.89001C10.18 6.77499 10.415 7.01004 10.415 7.29999C10.415 7.58994 10.18 7.82499 9.89001 7.82499H7.82501V9.89002C7.82501 10.18 7.58996 10.415 7.30001 10.415C7.01006 10.415 6.77501 10.18 6.77501 9.89002V7.82499H4.71002C4.42007 7.82499 4.18502 7.58994 4.18502 7.29999C4.18502 7.01004 4.42007 6.77499 4.71002 6.77499H6.77501V4.71003C6.77501 4.42008 7.01006 4.18503 7.30001 4.18503Z" fill="currentColor"/>
5
+ </svg>
6
+
7
+ </template>
8
+ <script setup lang="ts">
9
+ </script>
@@ -0,0 +1,9 @@
1
+ <template>
2
+ <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="https://www.w3.org/2000/svg">
3
+ <path clip-rule="evenodd" d="M2.05012 7.28051C2.05012 4.39178 4.3919 2.04999 7.28063 2.04999C10.1694 2.04999 12.5111 4.39178 12.5111 7.28051C12.5111 10.1692 10.1694 12.511 7.28063 12.511C4.3919 12.511 2.05012 10.1692 2.05012 7.28051ZM7.28063 1C3.812 1 1.00012 3.81188 1.00012 7.28051C1.00012 10.7491 3.812 13.561 7.28063 13.561C8.82595 13.561 10.2409 13.0029 11.335 12.0773L14.1038 14.8461C14.3088 15.0512 14.6412 15.0512 14.8463 14.8461C15.0513 14.6411 15.0513 14.3087 14.8463 14.1037L12.0774 11.3348C13.003 10.2408 13.5611 8.82582 13.5611 7.28051C13.5611 3.81188 10.7493 1 7.28063 1Z"
4
+ fill="currentColor"
5
+ fill-rule="evenodd"/>
6
+ </svg>
7
+ </template>
8
+ <script setup lang="ts">
9
+ </script>
package/icons/mail.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" d="M13.9472 3.75645C13.9218 3.52873 13.7258 3.34491 13.4788 3.34491H2.52121C2.27415 3.34491 2.07818 3.52873 2.05284 3.75645L7.62834 8.07766C7.71751 8.12894 7.84903 8.16645 8 8.16645C8.15098 8.16645 8.2825 8.12894 8.37167 8.07764L13.9472 3.75645ZM14.9999 3.80657C15 3.81272 15 3.80043 14.9999 3.80657V12.1931C14.9999 13.0327 14.3141 13.7048 13.4788 13.7048H2.52121C1.68586 13.7048 1.00007 13.0327 1.00007 12.1931V3.80657C0.999964 3.80046 0.999964 3.8127 1.00007 3.80657C1.00007 2.96699 1.68586 2.29492 2.52121 2.29492H13.4788C14.3141 2.29492 14.9999 2.96699 14.9999 3.80657ZM2.05006 4.97695V12.1931C2.05006 12.4434 2.25625 12.6548 2.52121 12.6548H13.4788C13.7437 12.6548 13.9499 12.4434 13.9499 12.1931V4.97696L8.9062 8.9814L8.90143 8.9842C8.63265 9.1405 8.31382 9.21644 8 9.21644C7.68617 9.21644 7.36735 9.1405 7.09856 8.9842L7.09379 8.9814L2.05006 4.97695Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+ <script setup lang="ts">
7
+ </script>
@@ -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 class="fill-deepblue-900 dark:fill-gray-200" fill-rule="evenodd" clip-rule="evenodd" d="M15.1487 5.43944C15.1487 4.71477 15.7361 4.1273 16.4608 4.1273C17.1855 4.1273 17.7729 4.71477 17.7729 5.43944C17.7729 6.16411 17.1855 6.75158 16.4608 6.75158C15.7361 6.75158 15.1487 6.16411 15.1487 5.43944ZM13.683 6.22775H2.29021C1.85541 6.22775 1.50293 5.87527 1.50293 5.44046C1.50293 5.00566 1.85541 4.65318 2.29021 4.65318H13.6825C14.0248 3.44103 15.1391 2.55273 16.4608 2.55273C17.7825 2.55273 18.8968 3.44103 19.2391 4.65318H21.7128C22.1476 4.65318 22.5 5.00566 22.5 5.44046C22.5 5.87527 22.1476 6.22775 21.7128 6.22775H19.2386C18.8955 7.43886 17.7818 8.32615 16.4608 8.32615C15.1398 8.32615 14.0261 7.43886 13.683 6.22775ZM8.59002 9.11292C9.91221 9.11292 11.0268 10.0018 11.3687 11.2146H21.7099C22.1447 11.2146 22.4972 11.5671 22.4972 12.0019C22.4972 12.4367 22.1447 12.7892 21.7099 12.7892H11.3674C11.024 13.9997 9.91053 14.8863 8.59002 14.8863C7.2695 14.8863 6.15608 13.9997 5.81263 12.7892H2.29021C1.85541 12.7892 1.50293 12.4367 1.50293 12.0019C1.50293 11.5671 1.85541 11.2146 2.29021 11.2146H5.81132C6.15325 10.0018 7.26783 9.11292 8.59002 9.11292ZM8.59002 10.6875C7.86534 10.6875 7.27788 11.2749 7.27788 11.9996C7.27788 12.7243 7.86534 13.3118 8.59002 13.3118C9.31469 13.3118 9.90216 12.7243 9.90216 11.9996C9.90216 11.2749 9.31469 10.6875 8.59002 10.6875ZM19.2386 19.349C18.8956 20.5602 17.7818 21.4475 16.4608 21.4475C15.1398 21.4475 14.026 20.5602 13.683 19.349H2.29021C1.85541 19.349 1.50293 18.9965 1.50293 18.5617C1.50293 18.1269 1.85541 17.7744 2.29021 17.7744H13.6825C14.0249 16.5624 15.1391 15.6741 16.4608 15.6741C17.7825 15.6741 18.8967 16.5624 19.2391 17.7744H21.7128C22.1476 17.7744 22.5 18.1269 22.5 18.5617C22.5 18.9965 22.1476 19.349 21.7128 19.349H19.2386ZM15.1487 18.5608C15.1487 17.8362 15.7361 17.2487 16.4608 17.2487C17.1855 17.2487 17.7729 17.8362 17.7729 18.5608C17.7729 19.2855 17.1855 19.873 16.4608 19.873C15.7361 19.873 15.1487 19.2855 15.1487 18.5608Z"/>
4
+ </svg>
5
+ </template>
@@ -1,4 +1,7 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z" fill="white"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z" fill="white"/>
4
- </svg>
1
+
2
+ <template>
3
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z" fill="currentColor"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z" fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -0,0 +1,15 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00003 2.05C5.8484 2.05 4.04233 3.85607 4.04233 6.00769C4.04233 6.62916 4.27782 7.31609 4.67533 8.02278C5.07012 8.72463 5.60363 9.4088 6.14891 10.0147C6.69267 10.6188 7.23813 11.1342 7.6484 11.4988C7.78191 11.6175 7.90072 11.7199 8.00003 11.8038C8.09933 11.7199 8.21814 11.6175 8.35166 11.4988C8.76192 11.1342 9.30739 10.6188 9.85114 10.0147C10.3964 9.4088 10.9299 8.72463 11.3247 8.02278C11.7222 7.31609 11.9577 6.62916 11.9577 6.00769C11.9577 3.85607 10.1516 2.05 8.00003 2.05ZM8.00003 12.4827C7.67771 12.8971 7.67749 12.8969 7.67749 12.8969L7.67621 12.8959L7.6731 12.8935L7.66209 12.8849C7.65267 12.8774 7.63912 12.8667 7.62172 12.8528C7.58692 12.8249 7.53668 12.7843 7.47321 12.7319C7.34632 12.6272 7.1663 12.4752 6.95081 12.2836C6.52058 11.9012 5.94537 11.3581 5.36845 10.7171C4.79306 10.0778 4.20589 9.32994 3.76018 8.53756C3.31719 7.75002 2.99233 6.88046 2.99233 6.00769C2.99233 3.27617 5.2685 1 8.00003 1C10.7315 1 13.0077 3.27617 13.0077 6.00769C13.0077 6.88046 12.6829 7.75002 12.2399 8.53756C11.7942 9.32994 11.207 10.0778 10.6316 10.7171C10.0547 11.3581 9.47947 11.9012 9.04924 12.2836C8.83375 12.4752 8.65373 12.6272 8.52684 12.7319C8.46337 12.7843 8.41314 12.8249 8.37833 12.8528C8.36093 12.8667 8.34738 12.8774 8.33796 12.8849L8.32695 12.8935L8.32384 12.8959L8.32289 12.8967C8.32289 12.8967 8.32234 12.8971 8.00003 12.4827ZM8.00003 12.4827L8.32289 12.8967C8.1333 13.0441 7.86707 13.0444 7.67749 12.8969L8.00003 12.4827Z" fill="currentColor"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00004 5.03846C7.46475 5.03846 7.03081 5.4724 7.03081 6.00769C7.03081 6.54298 7.46475 6.97692 8.00004 6.97692C8.53533 6.97692 8.96927 6.54298 8.96927 6.00769C8.96927 5.4724 8.53533 5.03846 8.00004 5.03846ZM5.98081 6.00769C5.98081 4.8925 6.88485 3.98846 8.00004 3.98846C9.11523 3.98846 10.0193 4.8925 10.0193 6.00769C10.0193 7.12288 9.11523 8.02692 8.00004 8.02692C6.88485 8.02692 5.98081 7.12288 5.98081 6.00769Z" fill="currentColor"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.53668 10.7817C2.61941 10.5886 2.80922 10.4635 3.01923 10.4635H3.93839C4.22834 10.4635 4.46339 10.6985 4.46339 10.9885C4.46339 11.2784 4.22834 11.5135 3.93839 11.5135H3.36541L2.32118 13.95H13.6788L12.6346 11.5135H12.0616C11.7717 11.5135 11.5366 11.2784 11.5366 10.9885C11.5366 10.6985 11.7717 10.4635 12.0616 10.4635H12.9808C13.1908 10.4635 13.3806 10.5886 13.4633 10.7817L14.9575 14.2682C15.0271 14.4304 15.0104 14.6167 14.9133 14.764C14.8161 14.9113 14.6515 15 14.475 15H1.525C1.34853 15 1.18386 14.9113 1.08671 14.764C0.989562 14.6167 0.972934 14.4304 1.04245 14.2682L2.53668 10.7817Z" fill="currentColor"/>
10
+ </svg>
11
+ </template>
12
+
13
+ <style scoped>
14
+
15
+ </style>