adata-ui 2.1.41-beta.2 → 2.1.41-beta.21

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 (628) hide show
  1. package/-error.vue +170 -170
  2. package/.editorconfig +12 -12
  3. package/.gitlab-ci.yml +16 -16
  4. package/.nuxtrc +1 -1
  5. package/.nvmrc +1 -1
  6. package/.playground/app.config.ts +5 -5
  7. package/.playground/app.vue +102 -102
  8. package/.playground/nuxt.config.ts +4 -4
  9. package/CLAUDE.md +63 -63
  10. package/README.md +75 -75
  11. package/app.config.ts +28 -28
  12. package/app.vue +8 -8
  13. package/assets/styles/main.css +12 -12
  14. package/assets/styles/theme.css +590 -583
  15. package/assets/styles/ui.css +247 -247
  16. package/components/elements/README.md +1 -1
  17. package/components/elements/a-select-row/ASelectRowV2.vue +210 -210
  18. package/components/elements/a-select-row/index.vue +139 -139
  19. package/components/elements/accordion/AAccordion.vue +199 -199
  20. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -145
  21. package/components/elements/accordion/AAccordionGroup/types.ts +20 -20
  22. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -22
  23. package/components/elements/accordion/types.ts +14 -14
  24. package/components/elements/accordion/ui.config.ts +22 -22
  25. package/components/elements/alert/AAlert.vue +52 -52
  26. package/components/elements/banner/ABanner.vue +67 -49
  27. package/components/elements/bg-block/ABgBlock.vue +11 -11
  28. package/components/elements/button/AButton.vue +191 -191
  29. package/components/elements/button/AButtonV2.vue +179 -179
  30. package/components/elements/button/types.ts +24 -24
  31. package/components/elements/button-login/index.vue +19 -19
  32. package/components/elements/calendar/ACalendar.vue +83 -83
  33. package/components/elements/carousel/ACarousel.vue +159 -159
  34. package/components/elements/carousel/config.ui.ts +15 -15
  35. package/components/elements/carousel/types.ts +18 -18
  36. package/components/elements/chip-wrapper/AChipWrapper.vue +81 -81
  37. package/components/elements/chip-wrapper/types.ts +12 -12
  38. package/components/elements/chips/AChips.vue +33 -33
  39. package/components/elements/companies/AOurClients.vue +47 -47
  40. package/components/elements/count-up/ACountUp.vue +54 -54
  41. package/components/elements/curve-block/ACurveBlock.vue +259 -259
  42. package/components/elements/curve-block-v2/ACurveBlockV2.vue +122 -122
  43. package/components/elements/digit-badge/ADigitBadge.vue +86 -86
  44. package/components/elements/empty-box/empty-box-V2.vue +92 -92
  45. package/components/elements/error-template/index.vue +121 -116
  46. package/components/elements/feature-description/AFeatureDescription.vue +112 -112
  47. package/components/elements/illustrations/noAccess.vue +71 -71
  48. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +85 -85
  49. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -33
  50. package/components/elements/leave-note/ALeaveNote.vue +102 -102
  51. package/components/elements/pagination/APagination.vue +110 -110
  52. package/components/elements/photos-animation/APhotosAnimation.vue +85 -85
  53. package/components/elements/section-heading/ASectionHeading.vue +35 -35
  54. package/components/elements/segmented/ASegmentedV2.vue +154 -154
  55. package/components/elements/select/ACascadeSelectV2.vue +710 -0
  56. package/components/elements/select/AGroupSelectV2.vue +592 -0
  57. package/components/elements/select/ASelect.vue +448 -448
  58. package/components/elements/select/ASelectMobile.vue +186 -186
  59. package/components/elements/select/ASelectV2.vue +513 -580
  60. package/components/elements/select/cascade-utils.ts +115 -0
  61. package/components/elements/select/types.ts +27 -0
  62. package/components/elements/select/ui/cascade-drawer.vue +146 -0
  63. package/components/elements/select/ui/cascade-panel.vue +237 -0
  64. package/components/elements/select/ui/select-button.vue +112 -112
  65. package/components/elements/select/ui/select-list.vue +99 -99
  66. package/components/elements/select/ui/select-trigger.vue +167 -0
  67. package/components/elements/show-more/AShowMore.vue +35 -35
  68. package/components/elements/show-more/AShowMoreV2.vue +26 -26
  69. package/components/elements/skeleton/ASkeleton.vue +44 -44
  70. package/components/elements/slider/ASlider.vue +175 -175
  71. package/components/elements/slider/ASliderItem.vue +31 -31
  72. package/components/elements/slider/ASliderV2.vue +182 -182
  73. package/components/elements/slider/types.ts +21 -21
  74. package/components/elements/star-rating/AStarRating.vue +189 -189
  75. package/components/elements/star-rating/types.ts +7 -7
  76. package/components/elements/star-rating/ui/Star.vue +74 -74
  77. package/components/elements/status-badge/AStatusBadge.vue +160 -125
  78. package/components/elements/step-slider/AStepSliderColCard.vue +266 -270
  79. package/components/elements/step-slider/AStepSliderColNumber.vue +199 -199
  80. package/components/elements/step-slider/AStepSliderRowCard.vue +197 -0
  81. package/components/elements/table/ATable.vue +93 -93
  82. package/components/elements/table/table.config.ts +32 -32
  83. package/components/elements/tree-select/ATreeSelect.vue +157 -157
  84. package/components/elements/tree-select/TreeService.ts +184 -184
  85. package/components/elements/tree-select/components/ATreeSelectNode.vue +104 -104
  86. package/components/elements/tree-select/types.ts +63 -63
  87. package/components/elements/tree-select/utils.ts +30 -30
  88. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -79
  89. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -175
  90. package/components/elements/tree-select-modal/ATreeSelectModal.vue +217 -217
  91. package/components/features/color-mode/AColorMode.client.vue +74 -74
  92. package/components/features/dropdown/ADropdown.vue +127 -127
  93. package/components/features/dropdown/ADropdownV2.vue +140 -140
  94. package/components/features/go-top/GoTop.vue +67 -63
  95. package/components/features/lang-switcher/lang-switcher.vue +160 -158
  96. package/components/features/payment/banner/BasicPlusLimitBanner.vue +84 -84
  97. package/components/features/payment/banner/PaymentBanner.vue +88 -88
  98. package/components/features/payment/banner/UpSellBanner.vue +105 -105
  99. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +180 -180
  100. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +123 -123
  101. package/components/features/payment/process/PaymentMethodSidePanel.vue +138 -138
  102. package/components/features/payment/process/PaymentProcess.vue +162 -158
  103. package/components/features/payment/process/PaymentTopUpSidePanel.vue +134 -119
  104. package/components/features/pk-mobile-services/APkMobileServices.vue +107 -107
  105. package/components/features//321/201hange-version/AChangeVersion.vue +20 -20
  106. package/components/forms/README.md +1 -1
  107. package/components/forms/checkbox/ACheckbox.vue +149 -149
  108. package/components/forms/checkbox/ACheckboxV2.vue +229 -229
  109. package/components/forms/feedback-form/FeedbackForm.vue +177 -177
  110. package/components/forms/feedback-form/FeedbackFormV2.vue +183 -186
  111. package/components/forms/input/AInputV2.vue +580 -560
  112. package/components/forms/input/button/AInputButton.vue +53 -53
  113. package/components/forms/input/date/AInputDate.vue +217 -217
  114. package/components/forms/input/password/AInputPassword.vue +59 -59
  115. package/components/forms/input/password/AInputPasswordV2.vue +72 -0
  116. package/components/forms/input/standard/AInputStandard.vue +424 -424
  117. package/components/forms/input/textarea/ATextarea.vue +207 -207
  118. package/components/forms/input/textarea/ATextareaV2.vue +253 -253
  119. package/components/forms/password/APasswordRequirements.vue +50 -0
  120. package/components/forms/radio-button/ARadioButton.vue +95 -95
  121. package/components/forms/request-demo/ARequestDemo.vue +108 -108
  122. package/components/forms/toggle/AToggle.vue +157 -157
  123. package/components/forms/toggle/AToggleV2.vue +72 -72
  124. package/components/forms/toggle/types.ts +16 -16
  125. package/components/modals/AConfirmationEmail.vue +40 -40
  126. package/components/modals/AboutTariffModal.vue +115 -115
  127. package/components/modals/AnotherDeviceModal.vue +65 -65
  128. package/components/modals/ApplicationAcceptedModal.vue +45 -45
  129. package/components/modals/ConnectingTariffModal.vue +60 -60
  130. package/components/modals/ContactsMobileModel.vue +182 -182
  131. package/components/modals/ContentNavigationModal.vue +100 -100
  132. package/components/modals/Insufficient-funds-modal.vue +62 -62
  133. package/components/modals/LimitReachedModal.vue +44 -44
  134. package/components/modals/NoAccessModal.vue +39 -39
  135. package/components/modals/PaymentMethodModal.vue +101 -101
  136. package/components/modals/RedirectsBanksModal.vue +69 -69
  137. package/components/modals/ReplenishModal.vue +132 -132
  138. package/components/modals/ReportBugConfirmModal.vue +32 -32
  139. package/components/modals/ReportBugModal.vue +172 -172
  140. package/components/modals/Resend.vue +81 -81
  141. package/components/modals/SubmitApplicationModal.vue +126 -126
  142. package/components/modals/id/AuthModal.vue +72 -72
  143. package/components/modals/id/IdAutoLogoutModal.vue +44 -44
  144. package/components/modals/id/IdBanner.vue +41 -41
  145. package/components/modals/id/IdConfirmAccountOtpModal.vue +176 -182
  146. package/components/modals/id/IdConfirmSuccessfulModal.vue +44 -41
  147. package/components/modals/id/IdLoginModal.vue +370 -336
  148. package/components/modals/id/IdModals.vue +171 -125
  149. package/components/modals/id/IdNewPasswordModal.vue +172 -129
  150. package/components/modals/id/IdOtpInput.vue +156 -156
  151. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -25
  152. package/components/modals/id/IdRecoveryModal.vue +133 -117
  153. package/components/modals/id/IdRegistrationModal.vue +260 -215
  154. package/components/modals/id/IdResetPasswordOtpModal.vue +145 -159
  155. package/components/modals/id/IdTwoFactorModal.vue +111 -126
  156. package/components/navigation/README.md +1 -1
  157. package/components/navigation/bottom-navigation/ABottomNavigation.vue +112 -106
  158. package/components/navigation/bottom-navigation/types.ts +6 -0
  159. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +128 -128
  160. package/components/navigation/breadcrumbs/types.ts +8 -8
  161. package/components/navigation/footer/AFooter.vue +283 -283
  162. package/components/navigation/footer/ui/a-footer-accordion.vue +118 -118
  163. package/components/navigation/header/AHeader.vue +241 -237
  164. package/components/navigation/header/AlmatyContacts.vue +145 -145
  165. package/components/navigation/header/AstanaContacts.vue +67 -67
  166. package/components/navigation/header/CardGallery.vue +252 -252
  167. package/components/navigation/header/ContactMenu.vue +48 -48
  168. package/components/navigation/header/HeaderLink.vue +250 -250
  169. package/components/navigation/header/HeaderUsage.vue +139 -139
  170. package/components/navigation/header/ListItem.vue +32 -32
  171. package/components/navigation/header/NavCard.vue +42 -42
  172. package/components/navigation/header/NavList.vue +73 -73
  173. package/components/navigation/header/NotificationsMenu.vue +50 -50
  174. package/components/navigation/header/ProductMenu.vue +53 -101
  175. package/components/navigation/header/ProfileMenu.vue +168 -168
  176. package/components/navigation/header/SystemNotification.vue +108 -108
  177. package/components/navigation/header/types.ts +28 -28
  178. package/components/navigation/line-tabs/ALineTabs.vue +112 -112
  179. package/components/navigation/line-tabs/types.ts +21 -21
  180. package/components/navigation/mobile-navigation/AMobileNavigation.vue +129 -112
  181. package/components/navigation/pill-tabs/APillTabs.vue +179 -179
  182. package/components/navigation/pill-tabs/APillTabsV2.vue +241 -241
  183. package/components/navigation/pill-tabs/types.ts +24 -24
  184. package/components/navigation/side-navigation/ASideNavigation.vue +406 -406
  185. package/components/overlays/README.md +1 -1
  186. package/components/overlays/drawer/ADrawerV2.vue +342 -335
  187. package/components/overlays/modal/AModal.vue +335 -335
  188. package/components/overlays/modal/AModalV2.vue +401 -400
  189. package/components/overlays/side-panel/ASidePanel.vue +445 -445
  190. package/components/overlays/sideover/ASlideover.vue +351 -351
  191. package/components/overlays/tooltip/ATooltip.vue +238 -238
  192. package/components/overlays/tooltip/ATooltipV2.vue +226 -226
  193. package/components/overlays/tooltip/types.ts +26 -26
  194. package/components/overlays/tooltip/useTooltipTrigger.ts +101 -101
  195. package/components/transitions/ATransitionHeight.vue +67 -67
  196. package/components/utils/index.ts +19 -19
  197. package/components/utils/removeTrailingSlash.ts +7 -7
  198. package/composables/highlight.ts +19 -19
  199. package/composables/modalsState.ts +8 -8
  200. package/composables/projectState.ts +2 -2
  201. package/composables/useAccessTokenCookie.ts +25 -25
  202. package/composables/useActiveNavigation.ts +84 -84
  203. package/composables/useAdaptive.ts +46 -46
  204. package/composables/useBuyTariffs.ts +91 -91
  205. package/composables/useCarouselScroll.ts +49 -49
  206. package/composables/useChipOverflow.ts +92 -92
  207. package/composables/useHeaderNavigationLinks.ts +535 -519
  208. package/composables/useIdModals.ts +36 -36
  209. package/composables/usePayment.ts +81 -78
  210. package/composables/useUIValidation.ts +16 -16
  211. package/composables/useUrls.ts +23 -23
  212. package/eslint.config.mjs +58 -58
  213. package/i18n/i18n.config.ts +21 -21
  214. package/i18n.config.ts +21 -21
  215. package/icons/adata-logo.vue +17 -17
  216. package/icons/ai/ai-diamond-unfilled.vue +26 -0
  217. package/icons/ai/ai-diamond.vue +11 -0
  218. package/icons/ai-assistant.vue +13 -13
  219. package/icons/akimat.vue +20 -20
  220. package/icons/archive.vue +16 -16
  221. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -5
  222. package/icons/arrow/arrow-circle-down.vue +16 -16
  223. package/icons/arrow/arrow-circle-reset.vue +16 -16
  224. package/icons/arrow/arrow-corner.vue +9 -9
  225. package/icons/arrow/arrow-down-left.vue +6 -0
  226. package/icons/arrow/arrow-graph-down.vue +13 -13
  227. package/icons/arrow/arrow-graph-up.vue +14 -14
  228. package/icons/arrow/arrow-left-right.vue +8 -8
  229. package/icons/arrow/arrow-left.vue +14 -14
  230. package/icons/arrow/arrow-right.vue +14 -14
  231. package/icons/arrow/arrow-square-down.vue +15 -15
  232. package/icons/arrow/arrow-top-right-on-square.vue +6 -6
  233. package/icons/arrow/arrow-up-right.vue +6 -0
  234. package/icons/arrow/arrows-in.vue +11 -11
  235. package/icons/arrow/arrows-out.vue +11 -11
  236. package/icons/arrow/arrows-resize-in.vue +38 -38
  237. package/icons/arrow/arrows-resize-out.vue +17 -17
  238. package/icons/arrow-currency-gray.vue +5 -5
  239. package/icons/arrow-currency-green.vue +5 -5
  240. package/icons/arrow-currency-red.vue +5 -5
  241. package/icons/arrow-side-up.vue +6 -6
  242. package/icons/avatar.vue +12 -12
  243. package/icons/bank.vue +5 -5
  244. package/icons/bar-chart-3.vue +3 -3
  245. package/icons/bill.vue +3 -3
  246. package/icons/block.vue +16 -16
  247. package/icons/book-open.vue +3 -3
  248. package/icons/bookmark/bookmark-filled.vue +19 -19
  249. package/icons/bookmark/bookmark.vue +5 -5
  250. package/icons/bot.vue +52 -52
  251. package/icons/braces.vue +3 -3
  252. package/icons/briefcase.vue +14 -14
  253. package/icons/browsers/browser-duck.vue +65 -65
  254. package/icons/browsers/browser-google.vue +30 -30
  255. package/icons/browsers/browser-yandex.vue +13 -13
  256. package/icons/building-org.vue +15 -0
  257. package/icons/building-vector.vue +7 -7
  258. package/icons/building.vue +9 -9
  259. package/icons/calculator.vue +7 -7
  260. package/icons/calendar.vue +24 -24
  261. package/icons/calendar2.vue +23 -0
  262. package/icons/car-avto.vue +19 -0
  263. package/icons/car-front.vue +21 -0
  264. package/icons/car-side.vue +16 -16
  265. package/icons/car.vue +7 -7
  266. package/icons/cart.vue +15 -15
  267. package/icons/chart-bar.vue +5 -5
  268. package/icons/chart-no-axes-column.vue +3 -3
  269. package/icons/chart-pie-piece.vue +6 -0
  270. package/icons/chart-pie.vue +16 -16
  271. package/icons/check/check-circle.vue +6 -6
  272. package/icons/check/check-outline.vue +3 -3
  273. package/icons/check/check-shield.vue +14 -14
  274. package/icons/check/check.vue +17 -17
  275. package/icons/check/checkmark-circle.vue +6 -6
  276. package/icons/check-sb.vue +7 -7
  277. package/icons/checkbox/checkbox-active.vue +17 -17
  278. package/icons/checkbox/checkbox-empty.vue +10 -10
  279. package/icons/checkbox/checkbox-intermediate.vue +7 -7
  280. package/icons/chevron/chevron-down-outline.vue +3 -3
  281. package/icons/chevron/chevron-down.vue +5 -5
  282. package/icons/chevron/chevron-left.vue +5 -5
  283. package/icons/chevron/chevron-right.vue +5 -5
  284. package/icons/chevron/chevron-up.vue +5 -5
  285. package/icons/chevron/double-chevron-right.vue +12 -12
  286. package/icons/clipboard-check.vue +18 -0
  287. package/icons/clipboard-list.vue +3 -3
  288. package/icons/clipboard-text.vue +7 -7
  289. package/icons/clock-outline.vue +3 -3
  290. package/icons/clock-rotate-ccw.vue +7 -0
  291. package/icons/clock-time.vue +24 -24
  292. package/icons/clock.vue +25 -25
  293. package/icons/close.vue +16 -16
  294. package/icons/cloud/cloud-upload.vue +3 -3
  295. package/icons/code.vue +9 -9
  296. package/icons/cog.vue +29 -0
  297. package/icons/company/company-bazis.vue +21 -21
  298. package/icons/company/company-bereke.vue +25 -25
  299. package/icons/company/company-bigroup.vue +16 -16
  300. package/icons/company/company-erg.vue +17 -17
  301. package/icons/company/company-forte.vue +21 -21
  302. package/icons/company/company-halyk.vue +15 -15
  303. package/icons/company/company-jusan.vue +31 -31
  304. package/icons/company/company-kaspi.vue +14 -14
  305. package/icons/company/company-kazzinc.vue +22 -22
  306. package/icons/company/company-mycar.vue +13 -13
  307. package/icons/company/company-samruk.vue +21 -21
  308. package/icons/company-egov-small.vue +15 -15
  309. package/icons/company.vue +8 -8
  310. package/icons/compare-outlined.vue +8 -8
  311. package/icons/copy.vue +7 -7
  312. package/icons/credit-card.vue +17 -0
  313. package/icons/crown.vue +6 -0
  314. package/icons/currency/currency-dollar.vue +16 -16
  315. package/icons/currency/currency-down.vue +22 -22
  316. package/icons/currency/currency-eur.vue +57 -57
  317. package/icons/currency/currency-rub.vue +7 -7
  318. package/icons/currency/currency-tenge.vue +9 -9
  319. package/icons/currency/currency-usd.vue +221 -221
  320. package/icons/currency/currency-yuan.vue +25 -25
  321. package/icons/database.vue +3 -3
  322. package/icons/default-avatar.vue +20 -20
  323. package/icons/delete.vue +7 -7
  324. package/icons/document.vue +5 -5
  325. package/icons/dots-horizontal.vue +31 -31
  326. package/icons/download-line.vue +13 -13
  327. package/icons/download-outline.vue +3 -3
  328. package/icons/download-rounded.vue +15 -15
  329. package/icons/download.vue +11 -11
  330. package/icons/edit.vue +7 -7
  331. package/icons/education.vue +16 -16
  332. package/icons/egov-small.vue +7 -7
  333. package/icons/egov.vue +41 -41
  334. package/icons/elicense.vue +38 -38
  335. package/icons/excel-icon.vue +14 -14
  336. package/icons/expand-window.vue +7 -7
  337. package/icons/eye-closed.vue +26 -26
  338. package/icons/eye-open.vue +7 -7
  339. package/icons/eye-opened.vue +23 -23
  340. package/icons/factory.vue +7 -0
  341. package/icons/favourite-bookmark-outline.vue +17 -17
  342. package/icons/file/file-check-corner.vue +3 -3
  343. package/icons/file/file-scan.vue +5 -0
  344. package/icons/file/file-spreadsheet.vue +3 -3
  345. package/icons/file/file.vue +16 -16
  346. package/icons/file/files.vue +16 -16
  347. package/icons/file/folder.vue +15 -0
  348. package/icons/file-download.vue +8 -0
  349. package/icons/file-json.vue +3 -3
  350. package/icons/file-pen.vue +31 -31
  351. package/icons/file-search.vue +3 -3
  352. package/icons/file-stack.vue +31 -31
  353. package/icons/file-text.vue +3 -3
  354. package/icons/file-types/excel.vue +131 -131
  355. package/icons/file-types/html.vue +13 -13
  356. package/icons/file-types/jpeg.vue +16 -16
  357. package/icons/file-types/pdf.vue +11 -11
  358. package/icons/file-types/png.vue +11 -11
  359. package/icons/file-types/rar.vue +11 -11
  360. package/icons/file-types/word.vue +50 -50
  361. package/icons/file-types/zip.vue +11 -11
  362. package/icons/filter.vue +5 -5
  363. package/icons/filter2.vue +22 -0
  364. package/icons/flag.vue +7 -7
  365. package/icons/flask-conical.vue +3 -3
  366. package/icons/folder-open.vue +3 -3
  367. package/icons/funnel.vue +5 -0
  368. package/icons/gauge.vue +17 -17
  369. package/icons/gift-outline.vue +3 -3
  370. package/icons/gift.vue +8 -8
  371. package/icons/git-compare.vue +38 -38
  372. package/icons/git-fork.vue +3 -3
  373. package/icons/globe-2.vue +3 -3
  374. package/icons/globe.vue +16 -16
  375. package/icons/google.vue +19 -41
  376. package/icons/gradiend-icons/files-gradient.vue +22 -22
  377. package/icons/gradiend-icons/hammer-gradient.vue +62 -62
  378. package/icons/graduation-cap.vue +31 -31
  379. package/icons/graph-loading.vue +34 -34
  380. package/icons/graph-pie.vue +14 -14
  381. package/icons/hand/hand-thumb-up-filled.vue +5 -5
  382. package/icons/hand/hand-thumb-up.vue +5 -5
  383. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -52
  384. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -52
  385. package/icons/handshake.vue +5 -5
  386. package/icons/hcheck.vue +14 -14
  387. package/icons/hdocument.vue +7 -7
  388. package/icons/headset.vue +6 -6
  389. package/icons/heart-pulse.vue +6 -0
  390. package/icons/help-question-circle.vue +26 -26
  391. package/icons/history.vue +5 -5
  392. package/icons/home.vue +14 -14
  393. package/icons/horizontal-more.vue +13 -13
  394. package/icons/hot-line.vue +6 -6
  395. package/icons/hummer.vue +16 -16
  396. package/icons/id.vue +7 -7
  397. package/icons/in-row-type.vue +46 -46
  398. package/icons/in-table-type.vue +29 -29
  399. package/icons/info/info-circle.vue +29 -29
  400. package/icons/invoice.vue +8 -8
  401. package/icons/judge.vue +14 -14
  402. package/icons/kaspi-qr.vue +13 -13
  403. package/icons/key-round.vue +3 -3
  404. package/icons/landmark.vue +3 -3
  405. package/icons/layers.vue +3 -3
  406. package/icons/letter/letter-a.vue +8 -8
  407. package/icons/letter/letter-b.vue +6 -6
  408. package/icons/letter/letter-c.vue +6 -6
  409. package/icons/letter/letter-d.vue +6 -6
  410. package/icons/letter/letter-e.vue +6 -6
  411. package/icons/link-chain.vue +28 -28
  412. package/icons/link-url.vue +3 -3
  413. package/icons/link.vue +7 -7
  414. package/icons/linkedin.vue +24 -24
  415. package/icons/list-checks.vue +3 -0
  416. package/icons/list-tree.vue +3 -3
  417. package/icons/loader-circle.vue +27 -27
  418. package/icons/location.vue +8 -8
  419. package/icons/lock.vue +5 -5
  420. package/icons/log-out.vue +21 -0
  421. package/icons/logo.vue +15 -15
  422. package/icons/logout.vue +16 -16
  423. package/icons/magnify/magnifying-glass-minus.vue +8 -8
  424. package/icons/magnify/magnifying-glass-plus.vue +9 -9
  425. package/icons/magnify/magnifying-glass.vue +9 -9
  426. package/icons/mail-question-mark.vue +8 -8
  427. package/icons/mail.vue +7 -7
  428. package/icons/mailru.vue +19 -34
  429. package/icons/main-filter.vue +10 -5
  430. package/icons/map/map-pin-filled.vue +7 -7
  431. package/icons/map/map-pin-rect.vue +15 -15
  432. package/icons/map/map-pin.vue +7 -7
  433. package/icons/map-marker-start.vue +7 -7
  434. package/icons/map-paper.vue +5 -5
  435. package/icons/medal.vue +7 -7
  436. package/icons/menu-filled.vue +20 -20
  437. package/icons/menu.vue +8 -8
  438. package/icons/message/message-square.vue +3 -3
  439. package/icons/message/message.vue +12 -12
  440. package/icons/message-dotted.vue +30 -30
  441. package/icons/messages-square.vue +3 -3
  442. package/icons/minus/minus-circle.vue +10 -10
  443. package/icons/money.vue +5 -5
  444. package/icons/monitoring.vue +10 -10
  445. package/icons/moon.vue +8 -8
  446. package/icons/more.vue +29 -29
  447. package/icons/network.vue +3 -3
  448. package/icons/newspaper.vue +3 -3
  449. package/icons/note-pencil.vue +14 -14
  450. package/icons/note.vue +14 -14
  451. package/icons/notification-error.vue +17 -17
  452. package/icons/notification.vue +16 -16
  453. package/icons/paperclip.vue +7 -7
  454. package/icons/payment/payment-card.vue +6 -6
  455. package/icons/payment/payment-kaspi.vue +11 -11
  456. package/icons/person-vector.vue +7 -7
  457. package/icons/person-with-briefcase.vue +10 -10
  458. package/icons/person.vue +22 -22
  459. package/icons/phone-call.vue +6 -6
  460. package/icons/phone-filled.vue +5 -5
  461. package/icons/phone-reversed.vue +3 -3
  462. package/icons/phone.vue +7 -7
  463. package/icons/plus/plus-circle.vue +8 -8
  464. package/icons/plus/plus.vue +13 -13
  465. package/icons/profile.vue +5 -5
  466. package/icons/qr-code.vue +25 -0
  467. package/icons/radio/radio-check.vue +8 -8
  468. package/icons/radio/radio-empty.vue +10 -10
  469. package/icons/receipt-text.vue +19 -0
  470. package/icons/receipt.vue +8 -8
  471. package/icons/recycle.vue +10 -0
  472. package/icons/refresh-cw.vue +8 -0
  473. package/icons/reply.vue +15 -0
  474. package/icons/robot-outline.vue +3 -3
  475. package/icons/robot.vue +14 -14
  476. package/icons/route.vue +7 -7
  477. package/icons/sanctions.vue +8 -8
  478. package/icons/scales/scale-outline.vue +3 -3
  479. package/icons/scales/scale.vue +16 -16
  480. package/icons/scales/scales.vue +5 -5
  481. package/icons/scales/standing-scales.vue +15 -15
  482. package/icons/scan-search.vue +3 -3
  483. package/icons/search-outline.vue +3 -3
  484. package/icons/search.vue +27 -27
  485. package/icons/send.vue +3 -3
  486. package/icons/settings.vue +26 -26
  487. package/icons/share/share-alt.vue +5 -5
  488. package/icons/share/share.vue +14 -14
  489. package/icons/shield-alert.vue +31 -31
  490. package/icons/shield-check.vue +20 -0
  491. package/icons/shield-verified.vue +14 -14
  492. package/icons/ship.vue +8 -8
  493. package/icons/shuffle.vue +3 -0
  494. package/icons/siren.vue +23 -0
  495. package/icons/socials/face-book.vue +15 -15
  496. package/icons/socials/facebook-color.vue +16 -16
  497. package/icons/socials/globe-color.vue +16 -16
  498. package/icons/socials/instagram-color.vue +46 -46
  499. package/icons/socials/instagram.vue +19 -19
  500. package/icons/socials/linkedin-color.vue +14 -14
  501. package/icons/socials/telegram-color.vue +16 -16
  502. package/icons/socials/telegram.vue +15 -15
  503. package/icons/socials/tik-tok.vue +15 -15
  504. package/icons/socials/tiktok-color.vue +14 -14
  505. package/icons/socials/vk-color.vue +16 -16
  506. package/icons/socials/youtube-color.vue +16 -16
  507. package/icons/socials/youtube.vue +16 -16
  508. package/icons/sort/sort-asc.vue +15 -15
  509. package/icons/sort/sort-desc.vue +15 -15
  510. package/icons/sparkles.vue +3 -3
  511. package/icons/splitting-arrows.vue +8 -8
  512. package/icons/star/star-filled.vue +41 -41
  513. package/icons/star/star-half-filled.vue +21 -21
  514. package/icons/star/star.vue +25 -25
  515. package/icons/store.vue +7 -0
  516. package/icons/sun.vue +25 -25
  517. package/icons/sviazi.vue +5 -5
  518. package/icons/tag.vue +30 -30
  519. package/icons/target.vue +7 -0
  520. package/icons/tasks.vue +10 -10
  521. package/icons/tender-search.vue +11 -11
  522. package/icons/terminal.vue +3 -3
  523. package/icons/toasts/check-circle-toast.vue +6 -6
  524. package/icons/toasts/warning-triangle-toast.vue +8 -8
  525. package/icons/trash.vue +13 -13
  526. package/icons/trees.vue +8 -0
  527. package/icons/triangle-alert.vue +3 -3
  528. package/icons/triangle.vue +10 -10
  529. package/icons/trophy.vue +10 -0
  530. package/icons/truck.vue +7 -7
  531. package/icons/upload.vue +16 -0
  532. package/icons/user-plus.vue +3 -0
  533. package/icons/user-square.vue +14 -14
  534. package/icons/user-x.vue +11 -0
  535. package/icons/user-xmark.vue +10 -0
  536. package/icons/user.vue +22 -22
  537. package/icons/users-focus.vue +8 -8
  538. package/icons/users-outline.vue +3 -3
  539. package/icons/users-round.vue +3 -3
  540. package/icons/users-three.vue +7 -7
  541. package/icons/users.vue +8 -8
  542. package/icons/view-eye-open.vue +13 -13
  543. package/icons/wallet.vue +6 -0
  544. package/icons/warning/warning-circle.vue +29 -29
  545. package/icons/warning/warning-triangle-filled.vue +12 -12
  546. package/icons/warning/warning-triangle.vue +28 -28
  547. package/icons/webhook.vue +3 -3
  548. package/icons/whatsapp.vue +8 -8
  549. package/icons/work-bag.vue +11 -11
  550. package/icons/work-case.vue +9 -9
  551. package/icons/work-search.vue +10 -10
  552. package/icons/work.vue +5 -5
  553. package/icons/workflow.vue +3 -3
  554. package/icons/x-mark.vue +15 -15
  555. package/icons/x-outline.vue +3 -3
  556. package/icons/yandex.vue +19 -29
  557. package/icons/zap.vue +3 -3
  558. package/illustrations/address-location.vue +38 -38
  559. package/illustrations/award-badge.vue +105 -105
  560. package/illustrations/ball-with-chain.vue +120 -120
  561. package/illustrations/bill.vue +133 -133
  562. package/illustrations/buildings.vue +82 -82
  563. package/illustrations/calendar.vue +156 -156
  564. package/illustrations/chains.vue +152 -152
  565. package/illustrations/coin-percent.vue +126 -126
  566. package/illustrations/coins-stack.vue +202 -202
  567. package/illustrations/delete-dark.vue +32 -32
  568. package/illustrations/delete.vue +33 -33
  569. package/illustrations/doc-with-stamp.vue +126 -126
  570. package/illustrations/document.vue +64 -64
  571. package/illustrations/door.vue +85 -85
  572. package/illustrations/empty-badge-check.vue +20 -20
  573. package/illustrations/empty-ban.vue +18 -18
  574. package/illustrations/empty-box.vue +77 -77
  575. package/illustrations/empty-filter.vue +20 -20
  576. package/illustrations/empty-inbox.vue +19 -19
  577. package/illustrations/empty-scale.vue +22 -22
  578. package/illustrations/empty-search-x.vue +21 -21
  579. package/illustrations/empty-shopping-cart.vue +21 -21
  580. package/illustrations/empty-users-round.vue +20 -20
  581. package/illustrations/empty-wallet.vue +127 -127
  582. package/illustrations/graph-in-coin.vue +119 -119
  583. package/illustrations/hammer.vue +156 -156
  584. package/illustrations/hand-cash.vue +108 -108
  585. package/illustrations/info.vue +52 -52
  586. package/illustrations/mail-active.vue +86 -86
  587. package/illustrations/mail.vue +68 -68
  588. package/illustrations/no-access.vue +92 -92
  589. package/illustrations/notes-search.vue +20 -0
  590. package/illustrations/notes-sticky.vue +20 -0
  591. package/illustrations/ok.vue +90 -90
  592. package/illustrations/people-group.vue +237 -237
  593. package/illustrations/person-with-phone.vue +187 -187
  594. package/illustrations/person.vue +159 -159
  595. package/illustrations/phone-check.vue +110 -110
  596. package/illustrations/phone-payment-method.vue +223 -223
  597. package/illustrations/scheme-notes.vue +21 -0
  598. package/illustrations/scheme-waypoints.vue +25 -0
  599. package/illustrations/search.vue +14 -14
  600. package/illustrations/shield-user.vue +94 -94
  601. package/illustrations/stop-hand.vue +84 -84
  602. package/illustrations/stop-sign.vue +34 -34
  603. package/illustrations/suit.vue +97 -97
  604. package/illustrations/suitcase.vue +105 -105
  605. package/illustrations/terminal.vue +100 -100
  606. package/illustrations/trash-can.vue +66 -66
  607. package/illustrations/turn-on-tariff.vue +38 -38
  608. package/illustrations/two-persons.vue +169 -169
  609. package/lang/en.ts +911 -877
  610. package/lang/kk.ts +913 -879
  611. package/lang/ru.ts +913 -879
  612. package/layouts/default.vue +13 -13
  613. package/nuxt.config.ts +119 -95
  614. package/package.json +64 -64
  615. package/plugins/maska.ts +4 -4
  616. package/plugins/toast.client.ts +41 -41
  617. package/public/kaspi/logo.svg +4 -4
  618. package/server/middleware/color-mode-cookie.ts +58 -0
  619. package/shared/constans/pages.ts +96 -96
  620. package/tsconfig.json +6 -6
  621. package/utils/apiErrorMessage.ts +22 -0
  622. package/utils/getMaxZindex.ts +25 -25
  623. package/utils/localizedNavigation.ts +36 -36
  624. package/utils/passwordRules.ts +20 -0
  625. package/utils/toCssSize.ts +11 -0
  626. package/utils/twMerge.ts +34 -34
  627. package/vitest.config.ts +14 -14
  628. package/.claude/settings.local.json +0 -19
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-funnel">
3
+ <path d="M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z"/>
4
+ </svg>
5
+ </template>
package/icons/gauge.vue CHANGED
@@ -1,17 +1,17 @@
1
- <template>
2
- <svg
3
- xmlns="http://www.w3.org/2000/svg"
4
- width="1em"
5
- height="1em"
6
- viewBox="0 0 24 24"
7
- >
8
- <path
9
- fill="none"
10
- stroke="currentColor"
11
- stroke-linecap="round"
12
- stroke-linejoin="round"
13
- stroke-width="2"
14
- d="m12 14l4-4M3.34 19a10 10 0 1 1 17.32 0"
15
- />
16
- </svg>
17
- </template>
1
+ <template>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ width="1em"
5
+ height="1em"
6
+ viewBox="0 0 24 24"
7
+ >
8
+ <path
9
+ fill="none"
10
+ stroke="currentColor"
11
+ stroke-linecap="round"
12
+ stroke-linejoin="round"
13
+ stroke-width="2"
14
+ d="m12 14l4-4M3.34 19a10 10 0 1 1 17.32 0"
15
+ />
16
+ </svg>
17
+ </template>
@@ -1,3 +1,3 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-gift-icon lucide-gift"><path d="M12 7v14"/><path d="M20 11v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8"/><path d="M7.5 7a1 1 0 0 1 0-5A4.8 8 0 0 1 12 7a4.8 8 0 0 1 4.5-5 1 1 0 0 1 0 5"/><rect x="3" y="7" width="18" height="4" rx="1"/></svg>
3
- </template>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-gift-icon lucide-gift"><path d="M12 7v14"/><path d="M20 11v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8"/><path d="M7.5 7a1 1 0 0 1 0-5A4.8 8 0 0 1 12 7a4.8 8 0 0 1 4.5-5 1 1 0 0 1 0 5"/><rect x="3" y="7" width="18" height="4" rx="1"/></svg>
3
+ </template>
package/icons/gift.vue CHANGED
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- d="M18.4615 5.60101H15.0885C15.126 5.56801 15.1644 5.53601 15.201 5.50101C15.493 5.23121 15.7283 4.90164 15.8923 4.53293C16.0563 4.16422 16.1453 3.76429 16.1538 3.35816C16.1665 2.91387 16.0917 2.47157 15.934 2.05844C15.7763 1.6453 15.5391 1.27004 15.2369 0.955695C14.9347 0.641347 14.5739 0.394544 14.1767 0.23044C13.7795 0.0663363 13.3542 -0.0116068 12.9269 0.00139604C12.5362 0.0101473 12.1515 0.102674 11.7967 0.273184C11.442 0.443694 11.1249 0.688517 10.8654 0.992327C10.5062 1.42519 10.2143 1.9137 10 2.44023C9.78575 1.9137 9.49377 1.42519 9.13462 0.992327C8.87506 0.688517 8.558 0.443694 8.20327 0.273184C7.84854 0.102674 7.46378 0.0101473 7.07308 0.00139604C6.64584 -0.0116068 6.22055 0.0663363 5.82332 0.23044C5.4261 0.394544 5.06531 0.641347 4.76312 0.955695C4.46094 1.27004 4.22372 1.6453 4.06603 2.05844C3.90835 2.47157 3.83352 2.91387 3.84615 3.35816C3.8547 3.76429 3.94374 4.16422 4.1077 4.53293C4.27166 4.90164 4.50701 5.23121 4.79904 5.50101C4.83558 5.53401 4.87404 5.56601 4.91154 5.60101H1.53846C1.13044 5.60101 0.739122 5.76956 0.450605 6.0696C0.162087 6.36964 0 6.77658 0 7.20089V10.4007C0 10.825 0.162087 11.2319 0.450605 11.532C0.739122 11.832 1.13044 12.0006 1.53846 12.0006V18.4001C1.53846 18.8244 1.70055 19.2314 1.98907 19.5314C2.27758 19.8314 2.6689 20 3.07692 20H16.9231C17.3311 20 17.7224 19.8314 18.0109 19.5314C18.2995 19.2314 18.4615 18.8244 18.4615 18.4001V12.0006C18.8696 12.0006 19.2609 11.832 19.5494 11.532C19.8379 11.2319 20 10.825 20 10.4007V7.20089C20 6.77658 19.8379 6.36964 19.5494 6.0696C19.2609 5.76956 18.8696 5.60101 18.4615 5.60101ZM12.0192 2.05225C12.141 1.91238 12.2893 1.80021 12.4548 1.72278C12.6203 1.64534 12.7993 1.60432 12.9808 1.60228H13.0279C13.2405 1.60367 13.4508 1.64918 13.6463 1.73615C13.8419 1.82312 14.0187 1.9498 14.1666 2.10876C14.3144 2.26773 14.4303 2.45579 14.5074 2.66191C14.5844 2.86804 14.6211 3.08809 14.6154 3.30917C14.6134 3.49785 14.574 3.68408 14.4995 3.85615C14.4251 4.02823 14.3172 4.18244 14.1827 4.3091C13.2702 5.14904 11.7558 5.44502 10.8173 5.54901C10.9327 4.49008 11.25 2.95119 12.0192 2.05225ZM5.85673 2.08825C6.15475 1.77836 6.55837 1.60335 6.97981 1.60128H7.02692C7.20836 1.60332 7.38744 1.64434 7.55291 1.72178C7.71838 1.79921 7.86667 1.91138 7.98846 2.05125C8.79519 2.99919 9.07981 4.57108 9.17981 5.54301C8.24519 5.44302 6.73365 5.14304 5.82212 4.3041C5.68762 4.17744 5.57975 4.02323 5.50529 3.85115C5.43083 3.67908 5.39138 3.49285 5.38942 3.30417C5.38346 3.07942 5.42147 2.85575 5.50113 2.64673C5.5808 2.43772 5.70047 2.24772 5.85288 2.08825H5.85673ZM1.53846 7.20089H9.23077V10.4007H1.53846V7.20089ZM3.07692 12.0006H9.23077V18.4001H3.07692V12.0006ZM16.9231 18.4001H10.7692V12.0006H16.9231V18.4001ZM18.4615 10.4007H10.7692V7.20089H18.4615V10.4007Z"
5
- fill="currentColor"
6
- />
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M18.4615 5.60101H15.0885C15.126 5.56801 15.1644 5.53601 15.201 5.50101C15.493 5.23121 15.7283 4.90164 15.8923 4.53293C16.0563 4.16422 16.1453 3.76429 16.1538 3.35816C16.1665 2.91387 16.0917 2.47157 15.934 2.05844C15.7763 1.6453 15.5391 1.27004 15.2369 0.955695C14.9347 0.641347 14.5739 0.394544 14.1767 0.23044C13.7795 0.0663363 13.3542 -0.0116068 12.9269 0.00139604C12.5362 0.0101473 12.1515 0.102674 11.7967 0.273184C11.442 0.443694 11.1249 0.688517 10.8654 0.992327C10.5062 1.42519 10.2143 1.9137 10 2.44023C9.78575 1.9137 9.49377 1.42519 9.13462 0.992327C8.87506 0.688517 8.558 0.443694 8.20327 0.273184C7.84854 0.102674 7.46378 0.0101473 7.07308 0.00139604C6.64584 -0.0116068 6.22055 0.0663363 5.82332 0.23044C5.4261 0.394544 5.06531 0.641347 4.76312 0.955695C4.46094 1.27004 4.22372 1.6453 4.06603 2.05844C3.90835 2.47157 3.83352 2.91387 3.84615 3.35816C3.8547 3.76429 3.94374 4.16422 4.1077 4.53293C4.27166 4.90164 4.50701 5.23121 4.79904 5.50101C4.83558 5.53401 4.87404 5.56601 4.91154 5.60101H1.53846C1.13044 5.60101 0.739122 5.76956 0.450605 6.0696C0.162087 6.36964 0 6.77658 0 7.20089V10.4007C0 10.825 0.162087 11.2319 0.450605 11.532C0.739122 11.832 1.13044 12.0006 1.53846 12.0006V18.4001C1.53846 18.8244 1.70055 19.2314 1.98907 19.5314C2.27758 19.8314 2.6689 20 3.07692 20H16.9231C17.3311 20 17.7224 19.8314 18.0109 19.5314C18.2995 19.2314 18.4615 18.8244 18.4615 18.4001V12.0006C18.8696 12.0006 19.2609 11.832 19.5494 11.532C19.8379 11.2319 20 10.825 20 10.4007V7.20089C20 6.77658 19.8379 6.36964 19.5494 6.0696C19.2609 5.76956 18.8696 5.60101 18.4615 5.60101ZM12.0192 2.05225C12.141 1.91238 12.2893 1.80021 12.4548 1.72278C12.6203 1.64534 12.7993 1.60432 12.9808 1.60228H13.0279C13.2405 1.60367 13.4508 1.64918 13.6463 1.73615C13.8419 1.82312 14.0187 1.9498 14.1666 2.10876C14.3144 2.26773 14.4303 2.45579 14.5074 2.66191C14.5844 2.86804 14.6211 3.08809 14.6154 3.30917C14.6134 3.49785 14.574 3.68408 14.4995 3.85615C14.4251 4.02823 14.3172 4.18244 14.1827 4.3091C13.2702 5.14904 11.7558 5.44502 10.8173 5.54901C10.9327 4.49008 11.25 2.95119 12.0192 2.05225ZM5.85673 2.08825C6.15475 1.77836 6.55837 1.60335 6.97981 1.60128H7.02692C7.20836 1.60332 7.38744 1.64434 7.55291 1.72178C7.71838 1.79921 7.86667 1.91138 7.98846 2.05125C8.79519 2.99919 9.07981 4.57108 9.17981 5.54301C8.24519 5.44302 6.73365 5.14304 5.82212 4.3041C5.68762 4.17744 5.57975 4.02323 5.50529 3.85115C5.43083 3.67908 5.39138 3.49285 5.38942 3.30417C5.38346 3.07942 5.42147 2.85575 5.50113 2.64673C5.5808 2.43772 5.70047 2.24772 5.85288 2.08825H5.85673ZM1.53846 7.20089H9.23077V10.4007H1.53846V7.20089ZM3.07692 12.0006H9.23077V18.4001H3.07692V12.0006ZM16.9231 18.4001H10.7692V12.0006H16.9231V18.4001ZM18.4615 10.4007H10.7692V7.20089H18.4615V10.4007Z"
5
+ fill="currentColor"
6
+ />
7
+ </svg>
8
+ </template>
@@ -1,38 +1,38 @@
1
- <template>
2
- <svg
3
- width="22"
4
- height="22"
5
- viewBox="0 0 22 22"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path
10
- d="M16.5 19.25C18.0188 19.25 19.25 18.0188 19.25 16.5C19.25 14.9812 18.0188 13.75 16.5 13.75C14.9812 13.75 13.75 14.9812 13.75 16.5C13.75 18.0188 14.9812 19.25 16.5 19.25Z"
11
- stroke="currentColor"
12
- stroke-width="1.83333"
13
- stroke-linecap="round"
14
- stroke-linejoin="round"
15
- />
16
- <path
17
- d="M5.5 8.25C7.01878 8.25 8.25 7.01878 8.25 5.5C8.25 3.98122 7.01878 2.75 5.5 2.75C3.98122 2.75 2.75 3.98122 2.75 5.5C2.75 7.01878 3.98122 8.25 5.5 8.25Z"
18
- stroke="currentColor"
19
- stroke-width="1.83333"
20
- stroke-linecap="round"
21
- stroke-linejoin="round"
22
- />
23
- <path
24
- d="M11.9165 5.5H14.6665C15.1527 5.5 15.619 5.69315 15.9629 6.03697C16.3067 6.38079 16.4998 6.8471 16.4998 7.33333V13.75"
25
- stroke="currentColor"
26
- stroke-width="1.83333"
27
- stroke-linecap="round"
28
- stroke-linejoin="round"
29
- />
30
- <path
31
- d="M10.0833 16.5H7.33333C6.8471 16.5 6.38079 16.3068 6.03697 15.963C5.69315 15.6192 5.5 15.1529 5.5 14.6667V8.25"
32
- stroke="currentColor"
33
- stroke-width="1.83333"
34
- stroke-linecap="round"
35
- stroke-linejoin="round"
36
- />
37
- </svg>
38
- </template>
1
+ <template>
2
+ <svg
3
+ width="22"
4
+ height="22"
5
+ viewBox="0 0 22 22"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M16.5 19.25C18.0188 19.25 19.25 18.0188 19.25 16.5C19.25 14.9812 18.0188 13.75 16.5 13.75C14.9812 13.75 13.75 14.9812 13.75 16.5C13.75 18.0188 14.9812 19.25 16.5 19.25Z"
11
+ stroke="currentColor"
12
+ stroke-width="1.83333"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ />
16
+ <path
17
+ d="M5.5 8.25C7.01878 8.25 8.25 7.01878 8.25 5.5C8.25 3.98122 7.01878 2.75 5.5 2.75C3.98122 2.75 2.75 3.98122 2.75 5.5C2.75 7.01878 3.98122 8.25 5.5 8.25Z"
18
+ stroke="currentColor"
19
+ stroke-width="1.83333"
20
+ stroke-linecap="round"
21
+ stroke-linejoin="round"
22
+ />
23
+ <path
24
+ d="M11.9165 5.5H14.6665C15.1527 5.5 15.619 5.69315 15.9629 6.03697C16.3067 6.38079 16.4998 6.8471 16.4998 7.33333V13.75"
25
+ stroke="currentColor"
26
+ stroke-width="1.83333"
27
+ stroke-linecap="round"
28
+ stroke-linejoin="round"
29
+ />
30
+ <path
31
+ d="M10.0833 16.5H7.33333C6.8471 16.5 6.38079 16.3068 6.03697 15.963C5.69315 15.6192 5.5 15.1529 5.5 14.6667V8.25"
32
+ stroke="currentColor"
33
+ stroke-width="1.83333"
34
+ stroke-linecap="round"
35
+ stroke-linejoin="round"
36
+ />
37
+ </svg>
38
+ </template>
@@ -1,3 +1,3 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-git-fork-icon lucide-git-fork"><circle cx="12" cy="18" r="3"/><circle cx="6" cy="6" r="3"/><circle cx="18" cy="6" r="3"/><path d="M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9"/><path d="M12 12v3"/></svg>
3
- </template>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-git-fork-icon lucide-git-fork"><circle cx="12" cy="18" r="3"/><circle cx="6" cy="6" r="3"/><circle cx="18" cy="6" r="3"/><path d="M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9"/><path d="M12 12v3"/></svg>
3
+ </template>
package/icons/globe-2.vue CHANGED
@@ -1,3 +1,3 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-earth-icon lucide-earth"><path d="M21.54 15H17a2 2 0 0 0-2 2v4.54"/><path d="M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17"/><path d="M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"/><circle cx="12" cy="12" r="10"/></svg>
3
- </template>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-earth-icon lucide-earth"><path d="M21.54 15H17a2 2 0 0 0-2 2v4.54"/><path d="M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17"/><path d="M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"/><circle cx="12" cy="12" r="10"/></svg>
3
+ </template>
package/icons/globe.vue CHANGED
@@ -1,16 +1,16 @@
1
- <template>
2
- <svg
3
- width="16"
4
- height="16"
5
- viewBox="0 0 16 16"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path
10
- fill-rule="evenodd"
11
- clip-rule="evenodd"
12
- d="M6.89027 2.1533C4.30223 2.64152 2.30621 4.80563 2.07285 7.475H5.02171C5.20164 5.57197 5.84478 3.74533 6.89027 2.1533ZM8.00002 0.999985C4.13402 0.999985 1 4.134 1 8C1 11.866 4.13402 15 8.00002 15C11.866 15 15 11.866 15 8C15 4.134 11.866 0.999985 8.00002 0.999985ZM9.10977 2.15329C10.1553 3.74533 10.7984 5.57197 10.9783 7.475H13.9272C13.6938 4.80563 11.6978 2.64152 9.10977 2.15329ZM9.92318 7.475C9.7326 5.64189 9.06956 3.88997 8.00002 2.3907C6.93048 3.88997 6.26744 5.64189 6.07686 7.475H9.92318ZM6.07686 8.52501H9.92318C9.7326 10.3581 9.06956 12.11 8.00002 13.6093C6.93048 12.11 6.26744 10.3581 6.07686 8.52501ZM5.02171 8.52501H2.07285C2.30621 11.1944 4.30223 13.3585 6.89027 13.8467C5.84478 12.2547 5.20164 10.428 5.02171 8.52501ZM9.10977 13.8467C10.1553 12.2547 10.7984 10.428 10.9783 8.52501H13.9272C13.6938 11.1944 11.6978 13.3585 9.10977 13.8467Z"
13
- fill="currentColor"
14
- />
15
- </svg>
16
- </template>
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M6.89027 2.1533C4.30223 2.64152 2.30621 4.80563 2.07285 7.475H5.02171C5.20164 5.57197 5.84478 3.74533 6.89027 2.1533ZM8.00002 0.999985C4.13402 0.999985 1 4.134 1 8C1 11.866 4.13402 15 8.00002 15C11.866 15 15 11.866 15 8C15 4.134 11.866 0.999985 8.00002 0.999985ZM9.10977 2.15329C10.1553 3.74533 10.7984 5.57197 10.9783 7.475H13.9272C13.6938 4.80563 11.6978 2.64152 9.10977 2.15329ZM9.92318 7.475C9.7326 5.64189 9.06956 3.88997 8.00002 2.3907C6.93048 3.88997 6.26744 5.64189 6.07686 7.475H9.92318ZM6.07686 8.52501H9.92318C9.7326 10.3581 9.06956 12.11 8.00002 13.6093C6.93048 12.11 6.26744 10.3581 6.07686 8.52501ZM5.02171 8.52501H2.07285C2.30621 11.1944 4.30223 13.3585 6.89027 13.8467C5.84478 12.2547 5.20164 10.428 5.02171 8.52501ZM9.10977 13.8467C10.1553 12.2547 10.7984 10.428 10.9783 8.52501H13.9272C13.6938 11.1944 11.6978 13.3585 9.10977 13.8467Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
package/icons/google.vue CHANGED
@@ -1,41 +1,19 @@
1
-
2
-
3
- <script lang="ts" setup>
4
- </script>
5
-
6
- <template>
7
- <svg
8
- width="32"
9
- height="32"
10
- viewBox="0 0 32 32"
11
- fill="none"
12
- xmlns="http://www.w3.org/2000/svg"
13
- >
14
- <rect
15
- x="0.5"
16
- y="0.5"
17
- width="31"
18
- height="31"
19
- rx="5.5"
20
- stroke="#9DA3AC"
21
- />
22
- <path
23
- d="M26.501 16.2332C26.501 15.3699 26.4296 14.7399 26.2748 14.0865H16.2153V17.9832H22.12C22.001 18.9515 21.3582 20.4099 19.9296 21.3898L19.9096 21.5203L23.0902 23.935L23.3106 23.9565C25.3343 22.1249 26.501 19.4298 26.501 16.2332Z"
24
- fill="#4285F4"
25
- />
26
- <path
27
- d="M16.2147 26.5C19.1075 26.5 21.5361 25.5666 23.3099 23.9566L19.929 21.3898C19.0242 22.0082 17.8099 22.4399 16.2147 22.4399C13.3814 22.4399 10.9767 20.6082 10.1195 18.0765L9.99382 18.087L6.68656 20.5954L6.64331 20.7132C8.40519 24.1432 12.0242 26.5 16.2147 26.5Z"
28
- fill="#34A853"
29
- />
30
- <path
31
- d="M10.12 18.0766C9.89379 17.4233 9.76289 16.7232 9.76289 15.9999C9.76289 15.2765 9.89379 14.5766 10.1081 13.9232L10.1021 13.7841L6.75337 11.2355L6.64381 11.2865C5.91765 12.7099 5.50098 14.3083 5.50098 15.9999C5.50098 17.6916 5.91765 19.2899 6.64381 20.7132L10.12 18.0766Z"
32
- fill="#FBBC05"
33
- />
34
- <path
35
- d="M16.2148 9.55997C18.2267 9.55997 19.5838 10.4116 20.3576 11.1233L23.3814 8.23C21.5243 6.53834 19.1076 5.5 16.2148 5.5C12.0243 5.5 8.4052 7.85665 6.64331 11.2866L10.1076 13.9233C10.9767 11.3917 13.3815 9.55997 16.2148 9.55997Z"
36
- fill="#EB4335"
37
- />
38
- </svg>
39
- </template>
40
-
41
- <style scoped></style>
1
+ <script lang="ts" setup>
2
+ </script>
3
+
4
+ <template>
5
+ <!-- осознанно константные: фирменные цвета логотипа Google -->
6
+ <svg
7
+ width="24"
8
+ height="24"
9
+ viewBox="0 0 24 24"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ aria-hidden="true"
12
+ focusable="false"
13
+ >
14
+ <path fill="#4285F4" d="M23.52 12.27c0-.85-.08-1.67-.22-2.45H12v4.64h6.46a5.52 5.52 0 0 1-2.4 3.62v3.01h3.88c2.27-2.09 3.58-5.17 3.58-8.82Z" />
15
+ <path fill="#34A853" d="M12 24c3.24 0 5.96-1.08 7.94-2.91l-3.88-3.01c-1.08.72-2.45 1.15-4.06 1.15-3.12 0-5.77-2.11-6.71-4.95H1.28v3.1A12 12 0 0 0 12 24Z" />
16
+ <path fill="#FBBC05" d="M5.29 14.28a7.2 7.2 0 0 1 0-4.56v-3.1H1.28a12 12 0 0 0 0 10.76l4.01-3.1Z" />
17
+ <path fill="#EA4335" d="M12 4.77c1.76 0 3.35.61 4.6 1.8l3.44-3.44C17.95 1.19 15.24 0 12 0A12 12 0 0 0 1.28 6.62l4.01 3.1C6.23 6.88 8.88 4.77 12 4.77Z" />
18
+ </svg>
19
+ </template>
@@ -1,22 +1,22 @@
1
- <script setup lang="ts">
2
- </script>
3
- <template>
4
- <svg class="dark:hidden" width="59" height="59" viewBox="0 0 59 59" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M41.9159 14.0748L32.7257 8.77953C32.5549 8.68125 32.3665 8.61759 32.1711 8.59217C31.9757 8.56675 31.7772 8.58008 31.5869 8.6314L17.1015 12.5263C16.3331 12.7329 15.6783 13.2363 15.2811 13.9257C14.8838 14.6151 14.7767 15.4341 14.9833 16.2024L15.7623 19.0995L12.8652 19.8785C12.0969 20.0851 11.4421 20.5885 11.0448 21.2779C10.6476 21.9673 10.5405 22.7862 10.7471 23.5546L17.758 49.6285C17.9646 50.3968 18.468 51.0516 19.1574 51.4489C19.8468 51.8461 20.6657 51.9532 21.4341 51.7466L41.7138 46.2937C42.4821 46.0871 43.1369 45.5837 43.5342 44.8943C43.9314 44.2049 44.0385 43.386 43.8319 42.6176L43.0529 39.7205L45.95 38.9415C46.7183 38.7349 47.3732 38.2315 47.7704 37.5421C48.1676 36.8527 48.2747 36.0338 48.0681 35.2654L42.6152 14.9857C42.5642 14.7954 42.4762 14.617 42.3562 14.4607C42.2362 14.3044 42.0866 14.1733 41.9159 14.0748ZM40.9348 43.3966L20.6551 48.8495L13.6442 22.7756L27.5304 19.0418L35.643 23.7162L39.7585 39.022C39.7614 39.0328 39.7639 39.0419 39.7663 39.0509C39.7687 39.06 39.7712 39.069 39.7741 39.0799L40.9348 43.3966ZM45.171 36.0444L42.2739 36.8234L38.379 22.3379C38.328 22.1476 38.2399 21.9692 38.12 21.8129C38 21.6566 37.8504 21.5254 37.6797 21.427L28.4895 16.1317C28.3187 16.0334 28.1302 15.9698 27.9348 15.9443C27.7395 15.9189 27.541 15.9323 27.3507 15.9836L18.6594 18.3205L17.8804 15.4234L31.7666 11.6896L39.8793 16.3641L45.171 36.0444ZM33.4732 32.9767C33.5765 33.3608 33.5229 33.7703 33.3243 34.115C33.1257 34.4597 32.7983 34.7114 32.4141 34.8147L23.7228 37.1517C23.3387 37.255 22.9292 37.2014 22.5845 37.0028C22.2398 36.8042 21.9881 36.4768 21.8848 36.0926C21.7815 35.7084 21.835 35.2989 22.0336 34.9542C22.2323 34.6095 22.5597 34.3579 22.9438 34.2546L31.6351 31.9176C32.0193 31.8143 32.4288 31.8679 32.7735 32.0665C33.1182 32.2651 33.3699 32.5925 33.4732 32.9767ZM35.0312 38.7709C35.1345 39.155 35.0809 39.5645 34.8823 39.9092C34.6837 40.2539 34.3563 40.5056 33.9721 40.6089L25.2808 42.9459C24.8966 43.0492 24.4871 42.9956 24.1424 42.797C23.7977 42.5984 23.5461 42.271 23.4428 41.8868C23.3395 41.5026 23.393 41.0931 23.5916 40.7484C23.7902 40.4037 24.1176 40.1521 24.5018 40.0488L33.1931 37.7118C33.5773 37.6085 33.9868 37.6621 34.3315 37.8607C34.6762 38.0593 34.9279 38.3867 35.0312 38.7709Z" fill="url(#paint0_linear_20009_83697)"/>
6
- <defs>
7
- <linearGradient id="paint0_linear_20009_83697" x1="16.0606" y1="14.0315" x2="4.8324" y2="29.769" gradientUnits="userSpaceOnUse">
8
- <stop stop-color="#72B5FF"/>
9
- <stop offset="1" stop-color="#0070EB"/>
10
- </linearGradient>
11
- </defs>
12
- </svg>
13
- <svg class="hidden dark:block" width="59" height="59" viewBox="0 0 59 59" fill="none" xmlns="http://www.w3.org/2000/svg">
14
- <path d="M41.9159 14.0748L32.7257 8.77953C32.5549 8.68125 32.3665 8.61759 32.1711 8.59217C31.9757 8.56675 31.7772 8.58008 31.5869 8.6314L17.1015 12.5263C16.3331 12.7329 15.6783 13.2363 15.2811 13.9257C14.8838 14.6151 14.7767 15.4341 14.9833 16.2024L15.7623 19.0995L12.8652 19.8785C12.0969 20.0851 11.4421 20.5885 11.0448 21.2779C10.6476 21.9673 10.5405 22.7862 10.7471 23.5546L17.758 49.6285C17.9646 50.3968 18.468 51.0516 19.1574 51.4489C19.8468 51.8461 20.6657 51.9532 21.4341 51.7466L41.7138 46.2937C42.4821 46.0871 43.1369 45.5837 43.5342 44.8943C43.9314 44.2049 44.0385 43.386 43.8319 42.6176L43.0529 39.7205L45.95 38.9415C46.7183 38.7349 47.3732 38.2315 47.7704 37.5421C48.1676 36.8527 48.2747 36.0338 48.0681 35.2654L42.6152 14.9857C42.5642 14.7954 42.4762 14.617 42.3562 14.4607C42.2362 14.3044 42.0866 14.1733 41.9159 14.0748ZM40.9348 43.3966L20.6551 48.8495L13.6442 22.7756L27.5304 19.0418L35.643 23.7162L39.7585 39.022C39.7614 39.0328 39.7639 39.0419 39.7663 39.0509C39.7687 39.06 39.7712 39.069 39.7741 39.0799L40.9348 43.3966ZM45.171 36.0444L42.2739 36.8234L38.379 22.3379C38.328 22.1476 38.2399 21.9692 38.12 21.8129C38 21.6566 37.8504 21.5254 37.6797 21.427L28.4895 16.1317C28.3187 16.0334 28.1302 15.9698 27.9348 15.9443C27.7395 15.9189 27.541 15.9323 27.3507 15.9836L18.6594 18.3205L17.8804 15.4234L31.7666 11.6896L39.8793 16.3641L45.171 36.0444ZM33.4732 32.9767C33.5765 33.3608 33.5229 33.7703 33.3243 34.115C33.1257 34.4597 32.7983 34.7114 32.4141 34.8147L23.7228 37.1517C23.3387 37.255 22.9292 37.2014 22.5845 37.0028C22.2398 36.8042 21.9881 36.4768 21.8848 36.0926C21.7815 35.7084 21.835 35.2989 22.0336 34.9542C22.2323 34.6095 22.5597 34.3579 22.9438 34.2546L31.6351 31.9176C32.0193 31.8143 32.4288 31.8679 32.7735 32.0665C33.1182 32.2651 33.3699 32.5925 33.4732 32.9767ZM35.0312 38.7709C35.1345 39.155 35.0809 39.5645 34.8823 39.9092C34.6837 40.2539 34.3563 40.5056 33.9721 40.6089L25.2808 42.9459C24.8966 43.0492 24.4871 42.9956 24.1424 42.797C23.7977 42.5984 23.5461 42.271 23.4428 41.8868C23.3395 41.5026 23.393 41.0931 23.5916 40.7484C23.7902 40.4037 24.1176 40.1521 24.5018 40.0488L33.1931 37.7118C33.5773 37.6085 33.9868 37.6621 34.3315 37.8607C34.6762 38.0593 34.9279 38.3867 35.0312 38.7709Z" fill="url(#paint0_linear_20295_15506)"/>
15
- <defs>
16
- <linearGradient id="paint0_linear_20295_15506" x1="17.8523" y1="-18.2878" x2="-10.0418" y2="8.97344" gradientUnits="userSpaceOnUse">
17
- <stop stop-color="#4FBDFF"/>
18
- <stop offset="1" stop-color="#1B98E2"/>
19
- </linearGradient>
20
- </defs>
21
- </svg>
22
- </template>
1
+ <script setup lang="ts">
2
+ </script>
3
+ <template>
4
+ <svg class="dark:hidden" width="59" height="59" viewBox="0 0 59 59" fill="none" xmlns="http://www.w3.org/2000/svg">
5
+ <path d="M41.9159 14.0748L32.7257 8.77953C32.5549 8.68125 32.3665 8.61759 32.1711 8.59217C31.9757 8.56675 31.7772 8.58008 31.5869 8.6314L17.1015 12.5263C16.3331 12.7329 15.6783 13.2363 15.2811 13.9257C14.8838 14.6151 14.7767 15.4341 14.9833 16.2024L15.7623 19.0995L12.8652 19.8785C12.0969 20.0851 11.4421 20.5885 11.0448 21.2779C10.6476 21.9673 10.5405 22.7862 10.7471 23.5546L17.758 49.6285C17.9646 50.3968 18.468 51.0516 19.1574 51.4489C19.8468 51.8461 20.6657 51.9532 21.4341 51.7466L41.7138 46.2937C42.4821 46.0871 43.1369 45.5837 43.5342 44.8943C43.9314 44.2049 44.0385 43.386 43.8319 42.6176L43.0529 39.7205L45.95 38.9415C46.7183 38.7349 47.3732 38.2315 47.7704 37.5421C48.1676 36.8527 48.2747 36.0338 48.0681 35.2654L42.6152 14.9857C42.5642 14.7954 42.4762 14.617 42.3562 14.4607C42.2362 14.3044 42.0866 14.1733 41.9159 14.0748ZM40.9348 43.3966L20.6551 48.8495L13.6442 22.7756L27.5304 19.0418L35.643 23.7162L39.7585 39.022C39.7614 39.0328 39.7639 39.0419 39.7663 39.0509C39.7687 39.06 39.7712 39.069 39.7741 39.0799L40.9348 43.3966ZM45.171 36.0444L42.2739 36.8234L38.379 22.3379C38.328 22.1476 38.2399 21.9692 38.12 21.8129C38 21.6566 37.8504 21.5254 37.6797 21.427L28.4895 16.1317C28.3187 16.0334 28.1302 15.9698 27.9348 15.9443C27.7395 15.9189 27.541 15.9323 27.3507 15.9836L18.6594 18.3205L17.8804 15.4234L31.7666 11.6896L39.8793 16.3641L45.171 36.0444ZM33.4732 32.9767C33.5765 33.3608 33.5229 33.7703 33.3243 34.115C33.1257 34.4597 32.7983 34.7114 32.4141 34.8147L23.7228 37.1517C23.3387 37.255 22.9292 37.2014 22.5845 37.0028C22.2398 36.8042 21.9881 36.4768 21.8848 36.0926C21.7815 35.7084 21.835 35.2989 22.0336 34.9542C22.2323 34.6095 22.5597 34.3579 22.9438 34.2546L31.6351 31.9176C32.0193 31.8143 32.4288 31.8679 32.7735 32.0665C33.1182 32.2651 33.3699 32.5925 33.4732 32.9767ZM35.0312 38.7709C35.1345 39.155 35.0809 39.5645 34.8823 39.9092C34.6837 40.2539 34.3563 40.5056 33.9721 40.6089L25.2808 42.9459C24.8966 43.0492 24.4871 42.9956 24.1424 42.797C23.7977 42.5984 23.5461 42.271 23.4428 41.8868C23.3395 41.5026 23.393 41.0931 23.5916 40.7484C23.7902 40.4037 24.1176 40.1521 24.5018 40.0488L33.1931 37.7118C33.5773 37.6085 33.9868 37.6621 34.3315 37.8607C34.6762 38.0593 34.9279 38.3867 35.0312 38.7709Z" fill="url(#paint0_linear_20009_83697)"/>
6
+ <defs>
7
+ <linearGradient id="paint0_linear_20009_83697" x1="16.0606" y1="14.0315" x2="4.8324" y2="29.769" gradientUnits="userSpaceOnUse">
8
+ <stop stop-color="#72B5FF"/>
9
+ <stop offset="1" stop-color="#0070EB"/>
10
+ </linearGradient>
11
+ </defs>
12
+ </svg>
13
+ <svg class="hidden dark:block" width="59" height="59" viewBox="0 0 59 59" fill="none" xmlns="http://www.w3.org/2000/svg">
14
+ <path d="M41.9159 14.0748L32.7257 8.77953C32.5549 8.68125 32.3665 8.61759 32.1711 8.59217C31.9757 8.56675 31.7772 8.58008 31.5869 8.6314L17.1015 12.5263C16.3331 12.7329 15.6783 13.2363 15.2811 13.9257C14.8838 14.6151 14.7767 15.4341 14.9833 16.2024L15.7623 19.0995L12.8652 19.8785C12.0969 20.0851 11.4421 20.5885 11.0448 21.2779C10.6476 21.9673 10.5405 22.7862 10.7471 23.5546L17.758 49.6285C17.9646 50.3968 18.468 51.0516 19.1574 51.4489C19.8468 51.8461 20.6657 51.9532 21.4341 51.7466L41.7138 46.2937C42.4821 46.0871 43.1369 45.5837 43.5342 44.8943C43.9314 44.2049 44.0385 43.386 43.8319 42.6176L43.0529 39.7205L45.95 38.9415C46.7183 38.7349 47.3732 38.2315 47.7704 37.5421C48.1676 36.8527 48.2747 36.0338 48.0681 35.2654L42.6152 14.9857C42.5642 14.7954 42.4762 14.617 42.3562 14.4607C42.2362 14.3044 42.0866 14.1733 41.9159 14.0748ZM40.9348 43.3966L20.6551 48.8495L13.6442 22.7756L27.5304 19.0418L35.643 23.7162L39.7585 39.022C39.7614 39.0328 39.7639 39.0419 39.7663 39.0509C39.7687 39.06 39.7712 39.069 39.7741 39.0799L40.9348 43.3966ZM45.171 36.0444L42.2739 36.8234L38.379 22.3379C38.328 22.1476 38.2399 21.9692 38.12 21.8129C38 21.6566 37.8504 21.5254 37.6797 21.427L28.4895 16.1317C28.3187 16.0334 28.1302 15.9698 27.9348 15.9443C27.7395 15.9189 27.541 15.9323 27.3507 15.9836L18.6594 18.3205L17.8804 15.4234L31.7666 11.6896L39.8793 16.3641L45.171 36.0444ZM33.4732 32.9767C33.5765 33.3608 33.5229 33.7703 33.3243 34.115C33.1257 34.4597 32.7983 34.7114 32.4141 34.8147L23.7228 37.1517C23.3387 37.255 22.9292 37.2014 22.5845 37.0028C22.2398 36.8042 21.9881 36.4768 21.8848 36.0926C21.7815 35.7084 21.835 35.2989 22.0336 34.9542C22.2323 34.6095 22.5597 34.3579 22.9438 34.2546L31.6351 31.9176C32.0193 31.8143 32.4288 31.8679 32.7735 32.0665C33.1182 32.2651 33.3699 32.5925 33.4732 32.9767ZM35.0312 38.7709C35.1345 39.155 35.0809 39.5645 34.8823 39.9092C34.6837 40.2539 34.3563 40.5056 33.9721 40.6089L25.2808 42.9459C24.8966 43.0492 24.4871 42.9956 24.1424 42.797C23.7977 42.5984 23.5461 42.271 23.4428 41.8868C23.3395 41.5026 23.393 41.0931 23.5916 40.7484C23.7902 40.4037 24.1176 40.1521 24.5018 40.0488L33.1931 37.7118C33.5773 37.6085 33.9868 37.6621 34.3315 37.8607C34.6762 38.0593 34.9279 38.3867 35.0312 38.7709Z" fill="url(#paint0_linear_20295_15506)"/>
15
+ <defs>
16
+ <linearGradient id="paint0_linear_20295_15506" x1="17.8523" y1="-18.2878" x2="-10.0418" y2="8.97344" gradientUnits="userSpaceOnUse">
17
+ <stop stop-color="#4FBDFF"/>
18
+ <stop offset="1" stop-color="#1B98E2"/>
19
+ </linearGradient>
20
+ </defs>
21
+ </svg>
22
+ </template>
@@ -1,62 +1,62 @@
1
- <script setup lang="ts">
2
- </script>
3
- <template>
4
- <svg class="dark:hidden" width="53" height="53" viewBox="0 0 53 53" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <g clip-path="url(#clip0_20012_84783)">
6
- <path d="M2.01954 41.1016L25.0215 46.2515" stroke="url(#paint0_linear_20012_84783)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
7
- <path d="M21.9561 45.5651L23.6728 37.8977L6.8047 34.1211L5.08804 41.7884" stroke="url(#paint1_linear_20012_84783)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
8
- <path d="M32.8055 8.41658L19.3487 16.9499C17.8829 17.8795 17.4481 19.8213 18.3776 21.2872L22.1478 27.2326C23.0774 28.6984 25.0192 29.1332 26.4851 28.2037L39.9417 19.6703C41.4078 18.7408 41.8426 16.7989 40.9128 15.333L37.1428 9.38767C36.2132 7.9218 34.2714 7.48703 32.8055 8.41658Z" stroke="url(#paint2_linear_20012_84783)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
9
- <path d="M33.2383 23.9375L43.9495 40.8285" stroke="url(#paint3_linear_20012_84783)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
10
- </g>
11
- <defs>
12
- <linearGradient id="paint0_linear_20012_84783" x1="14.5409" y1="43.1282" x2="13.9691" y2="45.0863" gradientUnits="userSpaceOnUse">
13
- <stop stop-color="#479FFF"/>
14
- <stop offset="1" stop-color="#0070EB"/>
15
- </linearGradient>
16
- <linearGradient id="paint1_linear_20012_84783" x1="17.1668" y1="30.3379" x2="7.47074" y2="39.3626" gradientUnits="userSpaceOnUse">
17
- <stop stop-color="#479FFF"/>
18
- <stop offset="1" stop-color="#0070EB"/>
19
- </linearGradient>
20
- <linearGradient id="paint2_linear_20012_84783" x1="36.6551" y1="-9.16628" x2="12.8846" y2="-0.0774515" gradientUnits="userSpaceOnUse">
21
- <stop stop-color="#479FFF"/>
22
- <stop offset="1" stop-color="#0070EB"/>
23
- </linearGradient>
24
- <linearGradient id="paint3_linear_20012_84783" x1="42.994" y1="15.136" x2="28.0731" y2="20.8412" gradientUnits="userSpaceOnUse">
25
- <stop stop-color="#479FFF"/>
26
- <stop offset="1" stop-color="#0070EB"/>
27
- </linearGradient>
28
- <clipPath id="clip0_20012_84783">
29
- <rect width="44" height="44" fill="white" transform="translate(9.61329) rotate(12.62)"/>
30
- </clipPath>
31
- </defs>
32
- </svg>
33
- <svg class="hidden dark:block" width="53" height="53" viewBox="0 0 53 53" fill="none" xmlns="http://www.w3.org/2000/svg">
34
- <g clip-path="url(#clip0_20295_32593)">
35
- <path d="M2.01954 41.1016L25.0215 46.2515" stroke="url(#paint0_linear_20295_32593)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
36
- <path d="M21.9522 45.5651L23.6689 37.8977L6.80079 34.1211L5.08413 41.7884" stroke="url(#paint1_linear_20295_32593)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
37
- <path d="M32.8055 8.42049L19.3487 16.9538C17.8829 17.8834 17.4481 19.8252 18.3776 21.2911L22.1478 27.2365C23.0774 28.7024 25.0192 29.1371 26.4851 28.2076L39.9417 19.6742C41.4078 18.7447 41.8426 16.8028 40.9128 15.3369L37.1428 9.39157C36.2132 7.92571 34.2714 7.49094 32.8055 8.42049Z" stroke="url(#paint2_linear_20295_32593)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
38
- <path d="M33.2383 23.9375L43.9495 40.8285" stroke="url(#paint3_linear_20295_32593)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
39
- </g>
40
- <defs>
41
- <linearGradient id="paint0_linear_20295_32593" x1="14.5409" y1="43.1282" x2="13.9691" y2="45.0863" gradientUnits="userSpaceOnUse">
42
- <stop stop-color="#4FBDFF"/>
43
- <stop offset="1" stop-color="#1B98E2"/>
44
- </linearGradient>
45
- <linearGradient id="paint1_linear_20295_32593" x1="17.1629" y1="30.3379" x2="7.46683" y2="39.3626" gradientUnits="userSpaceOnUse">
46
- <stop stop-color="#4FBDFF"/>
47
- <stop offset="1" stop-color="#1B98E2"/>
48
- </linearGradient>
49
- <linearGradient id="paint2_linear_20295_32593" x1="36.6551" y1="-9.16238" x2="12.8846" y2="-0.0735454" gradientUnits="userSpaceOnUse">
50
- <stop stop-color="#4FBDFF"/>
51
- <stop offset="1" stop-color="#1B98E2"/>
52
- </linearGradient>
53
- <linearGradient id="paint3_linear_20295_32593" x1="42.994" y1="15.136" x2="28.0731" y2="20.8412" gradientUnits="userSpaceOnUse">
54
- <stop stop-color="#4FBDFF"/>
55
- <stop offset="1" stop-color="#1B98E2"/>
56
- </linearGradient>
57
- <clipPath id="clip0_20295_32593">
58
- <rect width="44" height="44" fill="white" transform="translate(9.61329) rotate(12.62)"/>
59
- </clipPath>
60
- </defs>
61
- </svg>
62
- </template>
1
+ <script setup lang="ts">
2
+ </script>
3
+ <template>
4
+ <svg class="dark:hidden" width="53" height="53" viewBox="0 0 53 53" fill="none" xmlns="http://www.w3.org/2000/svg">
5
+ <g clip-path="url(#clip0_20012_84783)">
6
+ <path d="M2.01954 41.1016L25.0215 46.2515" stroke="url(#paint0_linear_20012_84783)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M21.9561 45.5651L23.6728 37.8977L6.8047 34.1211L5.08804 41.7884" stroke="url(#paint1_linear_20012_84783)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M32.8055 8.41658L19.3487 16.9499C17.8829 17.8795 17.4481 19.8213 18.3776 21.2872L22.1478 27.2326C23.0774 28.6984 25.0192 29.1332 26.4851 28.2037L39.9417 19.6703C41.4078 18.7408 41.8426 16.7989 40.9128 15.333L37.1428 9.38767C36.2132 7.9218 34.2714 7.48703 32.8055 8.41658Z" stroke="url(#paint2_linear_20012_84783)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M33.2383 23.9375L43.9495 40.8285" stroke="url(#paint3_linear_20012_84783)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </g>
11
+ <defs>
12
+ <linearGradient id="paint0_linear_20012_84783" x1="14.5409" y1="43.1282" x2="13.9691" y2="45.0863" gradientUnits="userSpaceOnUse">
13
+ <stop stop-color="#479FFF"/>
14
+ <stop offset="1" stop-color="#0070EB"/>
15
+ </linearGradient>
16
+ <linearGradient id="paint1_linear_20012_84783" x1="17.1668" y1="30.3379" x2="7.47074" y2="39.3626" gradientUnits="userSpaceOnUse">
17
+ <stop stop-color="#479FFF"/>
18
+ <stop offset="1" stop-color="#0070EB"/>
19
+ </linearGradient>
20
+ <linearGradient id="paint2_linear_20012_84783" x1="36.6551" y1="-9.16628" x2="12.8846" y2="-0.0774515" gradientUnits="userSpaceOnUse">
21
+ <stop stop-color="#479FFF"/>
22
+ <stop offset="1" stop-color="#0070EB"/>
23
+ </linearGradient>
24
+ <linearGradient id="paint3_linear_20012_84783" x1="42.994" y1="15.136" x2="28.0731" y2="20.8412" gradientUnits="userSpaceOnUse">
25
+ <stop stop-color="#479FFF"/>
26
+ <stop offset="1" stop-color="#0070EB"/>
27
+ </linearGradient>
28
+ <clipPath id="clip0_20012_84783">
29
+ <rect width="44" height="44" fill="white" transform="translate(9.61329) rotate(12.62)"/>
30
+ </clipPath>
31
+ </defs>
32
+ </svg>
33
+ <svg class="hidden dark:block" width="53" height="53" viewBox="0 0 53 53" fill="none" xmlns="http://www.w3.org/2000/svg">
34
+ <g clip-path="url(#clip0_20295_32593)">
35
+ <path d="M2.01954 41.1016L25.0215 46.2515" stroke="url(#paint0_linear_20295_32593)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
36
+ <path d="M21.9522 45.5651L23.6689 37.8977L6.80079 34.1211L5.08413 41.7884" stroke="url(#paint1_linear_20295_32593)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
37
+ <path d="M32.8055 8.42049L19.3487 16.9538C17.8829 17.8834 17.4481 19.8252 18.3776 21.2911L22.1478 27.2365C23.0774 28.7024 25.0192 29.1371 26.4851 28.2076L39.9417 19.6742C41.4078 18.7447 41.8426 16.8028 40.9128 15.3369L37.1428 9.39157C36.2132 7.92571 34.2714 7.49094 32.8055 8.42049Z" stroke="url(#paint2_linear_20295_32593)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
38
+ <path d="M33.2383 23.9375L43.9495 40.8285" stroke="url(#paint3_linear_20295_32593)" stroke-width="3.3" stroke-linecap="round" stroke-linejoin="round"/>
39
+ </g>
40
+ <defs>
41
+ <linearGradient id="paint0_linear_20295_32593" x1="14.5409" y1="43.1282" x2="13.9691" y2="45.0863" gradientUnits="userSpaceOnUse">
42
+ <stop stop-color="#4FBDFF"/>
43
+ <stop offset="1" stop-color="#1B98E2"/>
44
+ </linearGradient>
45
+ <linearGradient id="paint1_linear_20295_32593" x1="17.1629" y1="30.3379" x2="7.46683" y2="39.3626" gradientUnits="userSpaceOnUse">
46
+ <stop stop-color="#4FBDFF"/>
47
+ <stop offset="1" stop-color="#1B98E2"/>
48
+ </linearGradient>
49
+ <linearGradient id="paint2_linear_20295_32593" x1="36.6551" y1="-9.16238" x2="12.8846" y2="-0.0735454" gradientUnits="userSpaceOnUse">
50
+ <stop stop-color="#4FBDFF"/>
51
+ <stop offset="1" stop-color="#1B98E2"/>
52
+ </linearGradient>
53
+ <linearGradient id="paint3_linear_20295_32593" x1="42.994" y1="15.136" x2="28.0731" y2="20.8412" gradientUnits="userSpaceOnUse">
54
+ <stop stop-color="#4FBDFF"/>
55
+ <stop offset="1" stop-color="#1B98E2"/>
56
+ </linearGradient>
57
+ <clipPath id="clip0_20295_32593">
58
+ <rect width="44" height="44" fill="white" transform="translate(9.61329) rotate(12.62)"/>
59
+ </clipPath>
60
+ </defs>
61
+ </svg>
62
+ </template>
@@ -1,31 +1,31 @@
1
- <template>
2
- <svg
3
- width="20"
4
- height="20"
5
- viewBox="0 0 20 20"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path
10
- d="M17.8503 9.10168C17.9995 9.03587 18.1261 8.92774 18.2144 8.79068C18.3028 8.65363 18.3489 8.49367 18.3473 8.33063C18.3456 8.16758 18.2961 8.00862 18.2049 7.87342C18.1138 7.73822 17.985 7.63273 17.8345 7.57001L10.692 4.31668C10.4749 4.21764 10.239 4.16638 10.0003 4.16638C9.76166 4.16638 9.52579 4.21764 9.30865 4.31668L2.16699 7.56668C2.01863 7.63166 1.89242 7.73846 1.80379 7.87403C1.71517 8.00959 1.66797 8.16805 1.66797 8.33001C1.66797 8.49198 1.71517 8.65043 1.80379 8.786C1.89242 8.92157 2.01863 9.02837 2.16699 9.09335L9.30865 12.35C9.52579 12.4491 9.76166 12.5003 10.0003 12.5003C10.239 12.5003 10.4749 12.4491 10.692 12.35L17.8503 9.10168Z"
11
- stroke="currentColor"
12
- stroke-width="1.25"
13
- stroke-linecap="round"
14
- stroke-linejoin="round"
15
- />
16
- <path
17
- d="M18.333 8.33331V13.3333"
18
- stroke="currentColor"
19
- stroke-width="1.25"
20
- stroke-linecap="round"
21
- stroke-linejoin="round"
22
- />
23
- <path
24
- d="M5 10.4167V13.3334C5 13.9964 5.52678 14.6323 6.46447 15.1011C7.40215 15.57 8.67392 15.8334 10 15.8334C11.3261 15.8334 12.5979 15.57 13.5355 15.1011C14.4732 14.6323 15 13.9964 15 13.3334V10.4167"
25
- stroke="currentColor"
26
- stroke-width="1.25"
27
- stroke-linecap="round"
28
- stroke-linejoin="round"
29
- />
30
- </svg>
31
- </template>
1
+ <template>
2
+ <svg
3
+ width="20"
4
+ height="20"
5
+ viewBox="0 0 20 20"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M17.8503 9.10168C17.9995 9.03587 18.1261 8.92774 18.2144 8.79068C18.3028 8.65363 18.3489 8.49367 18.3473 8.33063C18.3456 8.16758 18.2961 8.00862 18.2049 7.87342C18.1138 7.73822 17.985 7.63273 17.8345 7.57001L10.692 4.31668C10.4749 4.21764 10.239 4.16638 10.0003 4.16638C9.76166 4.16638 9.52579 4.21764 9.30865 4.31668L2.16699 7.56668C2.01863 7.63166 1.89242 7.73846 1.80379 7.87403C1.71517 8.00959 1.66797 8.16805 1.66797 8.33001C1.66797 8.49198 1.71517 8.65043 1.80379 8.786C1.89242 8.92157 2.01863 9.02837 2.16699 9.09335L9.30865 12.35C9.52579 12.4491 9.76166 12.5003 10.0003 12.5003C10.239 12.5003 10.4749 12.4491 10.692 12.35L17.8503 9.10168Z"
11
+ stroke="currentColor"
12
+ stroke-width="1.25"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ />
16
+ <path
17
+ d="M18.333 8.33331V13.3333"
18
+ stroke="currentColor"
19
+ stroke-width="1.25"
20
+ stroke-linecap="round"
21
+ stroke-linejoin="round"
22
+ />
23
+ <path
24
+ d="M5 10.4167V13.3334C5 13.9964 5.52678 14.6323 6.46447 15.1011C7.40215 15.57 8.67392 15.8334 10 15.8334C11.3261 15.8334 12.5979 15.57 13.5355 15.1011C14.4732 14.6323 15 13.9964 15 13.3334V10.4167"
25
+ stroke="currentColor"
26
+ stroke-width="1.25"
27
+ stroke-linecap="round"
28
+ stroke-linejoin="round"
29
+ />
30
+ </svg>
31
+ </template>
@@ -1,34 +1,34 @@
1
- <template>
2
- <svg
3
- class="animate-spin"
4
- width="150"
5
- height="150"
6
- viewBox="0 0 101 100"
7
- fill="none"
8
- xmlns="http://www.w3.org/2000/svg"
9
- >
10
- <path
11
- fill-rule="evenodd"
12
- clip-rule="evenodd"
13
- d="M30.8586 13.253C39.3602 8.70885 49.1744 7.25306 58.6289 9.13369C68.0835 11.0143 76.5935 16.115 82.7089 23.5667C88.8243 31.0183 92.1668 40.3599 92.1668 49.9997C92.1668 51.7256 90.7677 53.1247 89.0418 53.1247C87.3159 53.1247 85.9168 51.7256 85.9168 49.9997C85.9168 41.8059 83.0757 33.8655 77.8776 27.5316C72.6795 21.1977 65.446 16.8621 57.4096 15.2636C49.3732 13.6651 41.0312 14.9025 33.8049 18.765C26.5786 22.6276 20.9151 28.8762 17.7794 36.4463C14.6438 44.0164 14.23 52.4396 16.6085 60.2806C18.9871 68.1216 24.0108 74.8953 30.8237 79.4475C37.6366 83.9998 45.8172 86.0489 53.9716 85.2458C55.6892 85.0766 57.2187 86.3318 57.3879 88.0494C57.557 89.767 56.3018 91.2965 54.5842 91.4657C44.9908 92.4105 35.3666 89.9998 27.3514 84.6442C19.3362 79.2886 13.4259 71.3196 10.6277 62.0949C7.82937 52.8702 8.3162 42.9606 12.0052 34.0546C15.6942 25.1486 22.3571 17.7972 30.8586 13.253Z"
14
- fill="url(#paint0_linear_5815_153835)"
15
- />
16
- <defs>
17
- <linearGradient
18
- id="paint0_linear_5815_153835"
19
- x1="77.0939"
20
- y1="20.708"
21
- x2="50.5002"
22
- y2="88.5414"
23
- gradientUnits="userSpaceOnUse"
24
- >
25
- <stop offset="0.150973" stop-color="var(--color-brand-500)" />
26
- <stop
27
- offset="0.588542"
28
- stop-color="var(--color-brand-500)"
29
- stop-opacity="0.1"
30
- />
31
- </linearGradient>
32
- </defs>
33
- </svg>
34
- </template>
1
+ <template>
2
+ <svg
3
+ class="animate-spin"
4
+ width="150"
5
+ height="150"
6
+ viewBox="0 0 101 100"
7
+ fill="none"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ >
10
+ <path
11
+ fill-rule="evenodd"
12
+ clip-rule="evenodd"
13
+ d="M30.8586 13.253C39.3602 8.70885 49.1744 7.25306 58.6289 9.13369C68.0835 11.0143 76.5935 16.115 82.7089 23.5667C88.8243 31.0183 92.1668 40.3599 92.1668 49.9997C92.1668 51.7256 90.7677 53.1247 89.0418 53.1247C87.3159 53.1247 85.9168 51.7256 85.9168 49.9997C85.9168 41.8059 83.0757 33.8655 77.8776 27.5316C72.6795 21.1977 65.446 16.8621 57.4096 15.2636C49.3732 13.6651 41.0312 14.9025 33.8049 18.765C26.5786 22.6276 20.9151 28.8762 17.7794 36.4463C14.6438 44.0164 14.23 52.4396 16.6085 60.2806C18.9871 68.1216 24.0108 74.8953 30.8237 79.4475C37.6366 83.9998 45.8172 86.0489 53.9716 85.2458C55.6892 85.0766 57.2187 86.3318 57.3879 88.0494C57.557 89.767 56.3018 91.2965 54.5842 91.4657C44.9908 92.4105 35.3666 89.9998 27.3514 84.6442C19.3362 79.2886 13.4259 71.3196 10.6277 62.0949C7.82937 52.8702 8.3162 42.9606 12.0052 34.0546C15.6942 25.1486 22.3571 17.7972 30.8586 13.253Z"
14
+ fill="url(#paint0_linear_5815_153835)"
15
+ />
16
+ <defs>
17
+ <linearGradient
18
+ id="paint0_linear_5815_153835"
19
+ x1="77.0939"
20
+ y1="20.708"
21
+ x2="50.5002"
22
+ y2="88.5414"
23
+ gradientUnits="userSpaceOnUse"
24
+ >
25
+ <stop offset="0.150973" stop-color="var(--color-brand-500)" />
26
+ <stop
27
+ offset="0.588542"
28
+ stop-color="var(--color-brand-500)"
29
+ stop-opacity="0.1"
30
+ />
31
+ </linearGradient>
32
+ </defs>
33
+ </svg>
34
+ </template>