adata-ui 2.1.18 → 2.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (410) hide show
  1. package/-error.vue +170 -170
  2. package/.editorconfig +12 -12
  3. package/.gitlab-ci.yml +16 -16
  4. package/.nuxtrc +1 -1
  5. package/.nvmrc +1 -1
  6. package/.playground/app.config.ts +5 -5
  7. package/.playground/nuxt.config.ts +3 -3
  8. package/README.md +75 -75
  9. package/app.config.ts +28 -28
  10. package/app.vue +8 -8
  11. package/assets/styles/index.scss +104 -104
  12. package/assets/styles/modules/_base.scss +5 -5
  13. package/assets/styles/modules/_typography.scss +152 -152
  14. package/components/elements/README.md +1 -1
  15. package/components/elements/a-select-row/index.vue +140 -140
  16. package/components/elements/accordion/AAccordion.vue +197 -197
  17. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -145
  18. package/components/elements/accordion/AAccordionGroup/types.ts +20 -20
  19. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -22
  20. package/components/elements/accordion/types.ts +14 -14
  21. package/components/elements/accordion/ui.config.ts +22 -22
  22. package/components/elements/alert/AAlert.vue +65 -65
  23. package/components/elements/banner/ABanner.vue +49 -49
  24. package/components/elements/bg-block/ABgBlock.vue +11 -11
  25. package/components/elements/button/AButton.vue +188 -188
  26. package/components/elements/button/types.ts +24 -24
  27. package/components/elements/button-login/index.vue +21 -21
  28. package/components/elements/calendar/ACalendar.vue +83 -83
  29. package/components/elements/carousel/ACarousel.vue +159 -159
  30. package/components/elements/carousel/config.ui.ts +15 -15
  31. package/components/elements/carousel/types.ts +18 -18
  32. package/components/elements/chip-wrapper/AChipWrapper.vue +80 -80
  33. package/components/elements/chip-wrapper/types.ts +12 -12
  34. package/components/elements/chips/AChips.vue +32 -32
  35. package/components/elements/companies/AOurClients.vue +42 -42
  36. package/components/elements/curve-block/ACurveBlock.vue +291 -291
  37. package/components/elements/digit-badge/ADigitBadge.vue +83 -83
  38. package/components/elements/error-template/index.vue +48 -48
  39. package/components/elements/error-template/types.ts +23 -23
  40. package/components/elements/feature-description/AFeatureDescription.vue +112 -112
  41. package/components/elements/illustrations/noAccess.vue +71 -71
  42. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +57 -57
  43. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -33
  44. package/components/elements/leave-note/ALeaveNote.vue +78 -78
  45. package/components/elements/pagination/APagination.vue +110 -110
  46. package/components/elements/photos-animation/APhotosAnimation.vue +85 -85
  47. package/components/elements/select/ASelect.vue +445 -445
  48. package/components/elements/select/ASelectMobile.vue +186 -186
  49. package/components/elements/select/ui/select-button.vue +112 -112
  50. package/components/elements/select/ui/select-list.vue +99 -99
  51. package/components/elements/show-more/AShowMore.vue +35 -35
  52. package/components/elements/skeleton/ASkeleton.vue +44 -44
  53. package/components/elements/star-rating/AStarRating.vue +181 -181
  54. package/components/elements/star-rating/types.ts +7 -7
  55. package/components/elements/star-rating/ui/Star.vue +74 -74
  56. package/components/elements/status-badge/AStatusBadge.vue +74 -74
  57. package/components/elements/table/ATable.vue +93 -93
  58. package/components/elements/table/table.config.ts +32 -32
  59. package/components/elements/tree-select/ATreeSelect.vue +169 -169
  60. package/components/elements/tree-select/TreeService.ts +249 -249
  61. package/components/elements/tree-select/components/tree-select-nodes.vue +90 -90
  62. package/components/elements/tree-select/types.ts +34 -34
  63. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -79
  64. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -175
  65. package/components/features/color-mode/AColorMode.client.vue +53 -53
  66. package/components/features/dropdown/ADropdown.vue +124 -124
  67. package/components/features/go-top/GoTop.vue +58 -58
  68. package/components/features/lang-switcher/lang-switcher.vue +63 -63
  69. package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -104
  70. package/components/features/payment/banner/PaymentBanner.vue +108 -108
  71. package/components/features/payment/banner/UpSellBanner.vue +125 -125
  72. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +158 -158
  73. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -112
  74. package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -121
  75. package/components/features/payment/process/PaymentProcess.vue +138 -138
  76. package/components/features/payment/process/PaymentTopUpSidePanel.vue +130 -130
  77. package/components/features/pk-mobile-services/APkMobileServices.vue +149 -149
  78. package/components/features//321/201hange-version/AChangeVersion.vue +20 -20
  79. package/components/forms/README.md +1 -1
  80. package/components/forms/checkbox/ACheckbox.vue +149 -149
  81. package/components/forms/feedback-form/FeedbackForm.vue +177 -177
  82. package/components/forms/input/button/AInputButton.vue +53 -53
  83. package/components/forms/input/date/AInputDate.vue +213 -213
  84. package/components/forms/input/password/AInputPassword.vue +53 -53
  85. package/components/forms/input/standard/AInputStandard.vue +412 -412
  86. package/components/forms/input/textarea/ATextarea.vue +200 -200
  87. package/components/forms/radio-button/ARadioButton.vue +95 -95
  88. package/components/forms/request-demo/ARequestDemo.vue +108 -108
  89. package/components/forms/toggle/AToggle.vue +157 -157
  90. package/components/forms/toggle/types.ts +16 -16
  91. package/components/modals/AConfirmationEmail.vue +40 -40
  92. package/components/modals/AboutTariffModal.vue +114 -114
  93. package/components/modals/AnotherDeviceModal.vue +60 -60
  94. package/components/modals/ApplicationAcceptedModal.vue +47 -47
  95. package/components/modals/ConnectingTariffModal.vue +67 -67
  96. package/components/modals/ContactsMobileModel.vue +182 -182
  97. package/components/modals/ContentNavigationModal.vue +355 -355
  98. package/components/modals/Insufficient-funds-modal.vue +77 -77
  99. package/components/modals/LimitReachedModal.vue +30 -30
  100. package/components/modals/NoAccessModal.vue +37 -37
  101. package/components/modals/PaymentMethodModal.vue +101 -101
  102. package/components/modals/RedirectsBanksModal.vue +69 -69
  103. package/components/modals/ReplenishModal.vue +132 -132
  104. package/components/modals/ReportBugConfirmModal.vue +30 -30
  105. package/components/modals/ReportBugModal.vue +156 -156
  106. package/components/modals/Resend.vue +82 -82
  107. package/components/modals/SubmitApplicationModal.vue +123 -123
  108. package/components/modals/id/AuthModal.vue +82 -82
  109. package/components/modals/id/IdAutoLogoutModal.vue +45 -45
  110. package/components/modals/id/IdBanner.vue +61 -61
  111. package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -186
  112. package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -41
  113. package/components/modals/id/IdLoginModal.vue +330 -326
  114. package/components/modals/id/IdModals.vue +114 -114
  115. package/components/modals/id/IdNewPasswordModal.vue +129 -129
  116. package/components/modals/id/IdOtpInput.vue +155 -155
  117. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -25
  118. package/components/modals/id/IdRecoveryModal.vue +117 -117
  119. package/components/modals/id/IdRegistrationModal.vue +215 -215
  120. package/components/modals/id/IdResetPasswordOtpModal.vue +158 -158
  121. package/components/modals/id/IdTwoFactorModal.vue +130 -130
  122. package/components/navigation/README.md +1 -1
  123. package/components/navigation/bottom-navigation/ABottomNavigation.vue +106 -106
  124. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +66 -66
  125. package/components/navigation/breadcrumbs/types.ts +4 -4
  126. package/components/navigation/footer/AFooter.vue +279 -279
  127. package/components/navigation/footer/ui/a-footer-accordion.vue +118 -118
  128. package/components/navigation/header/AHeader.vue +217 -217
  129. package/components/navigation/header/AlmatyContacts.vue +145 -145
  130. package/components/navigation/header/AstanaContacts.vue +67 -67
  131. package/components/navigation/header/CardGallery.vue +249 -249
  132. package/components/navigation/header/ContactMenu.vue +114 -114
  133. package/components/navigation/header/HeaderLink.vue +267 -267
  134. package/components/navigation/header/ListItem.vue +31 -31
  135. package/components/navigation/header/NavCard.vue +41 -41
  136. package/components/navigation/header/NavList.vue +131 -131
  137. package/components/navigation/header/NotificationsMenu.vue +51 -51
  138. package/components/navigation/header/ProductMenu.vue +143 -143
  139. package/components/navigation/header/ProfileMenu.vue +194 -194
  140. package/components/navigation/header/TopHeader.vue +194 -194
  141. package/components/navigation/header/types.ts +28 -28
  142. package/components/navigation/line-tabs/ALineTabs.vue +111 -111
  143. package/components/navigation/line-tabs/types.ts +21 -21
  144. package/components/navigation/mobile-navigation/AMobileNavigation.vue +104 -104
  145. package/components/navigation/pill-tabs/APillTabs.vue +171 -171
  146. package/components/navigation/pill-tabs/types.ts +23 -23
  147. package/components/navigation/side-navigation/ASideNavigation.vue +406 -406
  148. package/components/overlays/README.md +1 -1
  149. package/components/overlays/modal/AModal.vue +332 -332
  150. package/components/overlays/side-panel/ASidePanel.vue +439 -439
  151. package/components/overlays/sideover/ASlideover.vue +351 -351
  152. package/components/overlays/tooltip/ATooltip.vue +237 -237
  153. package/components/transitions/ATransitionHeight.vue +67 -67
  154. package/components/utils/index.ts +19 -19
  155. package/components/utils/removeTrailingSlash.ts +7 -7
  156. package/composables/highlight.ts +18 -18
  157. package/composables/modalsState.ts +8 -8
  158. package/composables/projectState.ts +2 -2
  159. package/composables/useAdaptive.ts +46 -46
  160. package/composables/useBuyTariffs.ts +91 -91
  161. package/composables/useCarouselScroll.ts +49 -49
  162. package/composables/useHeaderNavigationLinks.ts +453 -453
  163. package/composables/useIdModals.ts +36 -36
  164. package/composables/usePayment.ts +74 -74
  165. package/composables/useUIValidation.ts +16 -16
  166. package/composables/useUrls.ts +21 -21
  167. package/eslint.config.mjs +45 -45
  168. package/i18n/i18n.config.ts +21 -21
  169. package/i18n.config.ts +21 -21
  170. package/icons/adata-logo.vue +17 -17
  171. package/icons/ai-assistant.vue +13 -13
  172. package/icons/akimat.vue +20 -20
  173. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -5
  174. package/icons/arrow/arrow-circle-down.vue +16 -16
  175. package/icons/arrow/arrow-circle-reset.vue +16 -16
  176. package/icons/arrow/arrow-corner.vue +9 -9
  177. package/icons/arrow/arrow-graph-down.vue +13 -13
  178. package/icons/arrow/arrow-graph-up.vue +14 -14
  179. package/icons/arrow/arrow-square-down.vue +15 -15
  180. package/icons/arrow/arrow-top-right-on-square.vue +6 -6
  181. package/icons/arrow-currency-gray.vue +5 -5
  182. package/icons/arrow-currency-green.vue +5 -5
  183. package/icons/arrow-currency-red.vue +5 -5
  184. package/icons/arrow-side-up.vue +6 -6
  185. package/icons/avatar.vue +12 -12
  186. package/icons/bank.vue +5 -5
  187. package/icons/block.vue +16 -16
  188. package/icons/bookmark/bookmark-filled.vue +18 -18
  189. package/icons/bookmark/bookmark.vue +5 -5
  190. package/icons/browsers/browser-duck.vue +65 -65
  191. package/icons/browsers/browser-google.vue +30 -30
  192. package/icons/browsers/browser-yandex.vue +13 -13
  193. package/icons/building-vector.vue +7 -7
  194. package/icons/calculator.vue +7 -7
  195. package/icons/calendar.vue +24 -24
  196. package/icons/car.vue +7 -7
  197. package/icons/chart-bar.vue +5 -5
  198. package/icons/chart-pie.vue +16 -16
  199. package/icons/check/check-circle.vue +6 -6
  200. package/icons/check/check-shield.vue +14 -14
  201. package/icons/check/check.vue +17 -17
  202. package/icons/check/checkmark-circle.vue +6 -6
  203. package/icons/check-sb.vue +7 -7
  204. package/icons/checkbox/checkbox-active.vue +17 -17
  205. package/icons/checkbox/checkbox-empty.vue +10 -10
  206. package/icons/checkbox/checkbox-intermediate.vue +7 -7
  207. package/icons/chevron/chevron-down.vue +5 -5
  208. package/icons/chevron/chevron-left.vue +5 -5
  209. package/icons/chevron/chevron-right.vue +5 -5
  210. package/icons/chevron/chevron-up.vue +5 -5
  211. package/icons/chevron/double-chevron-right.vue +12 -12
  212. package/icons/clipboard-text.vue +7 -7
  213. package/icons/clock.vue +25 -25
  214. package/icons/close.vue +16 -16
  215. package/icons/company/company-bazis.vue +21 -21
  216. package/icons/company/company-bereke.vue +25 -25
  217. package/icons/company/company-bigroup.vue +16 -16
  218. package/icons/company/company-erg.vue +17 -17
  219. package/icons/company/company-forte.vue +21 -21
  220. package/icons/company/company-halyk.vue +15 -15
  221. package/icons/company/company-jusan.vue +31 -31
  222. package/icons/company/company-kaspi.vue +14 -14
  223. package/icons/company/company-mycar.vue +13 -13
  224. package/icons/company/company-samruk.vue +21 -21
  225. package/icons/company-egov-small.vue +15 -15
  226. package/icons/company.vue +8 -8
  227. package/icons/copy.vue +7 -7
  228. package/icons/currency/currency-dollar.vue +16 -16
  229. package/icons/currency/currency-down.vue +22 -22
  230. package/icons/currency/currency-eur.vue +57 -57
  231. package/icons/currency/currency-rub.vue +7 -7
  232. package/icons/currency/currency-tenge.vue +9 -9
  233. package/icons/currency/currency-usd.vue +221 -221
  234. package/icons/currency/currency-yuan.vue +25 -25
  235. package/icons/default-avatar.vue +20 -20
  236. package/icons/delete.vue +7 -7
  237. package/icons/document.vue +5 -5
  238. package/icons/download.vue +11 -11
  239. package/icons/edit.vue +7 -7
  240. package/icons/education.vue +16 -16
  241. package/icons/egov-small.vue +7 -7
  242. package/icons/excel-icon.vue +14 -14
  243. package/icons/expand-window.vue +7 -7
  244. package/icons/eye-closed.vue +26 -26
  245. package/icons/eye-open.vue +7 -7
  246. package/icons/eye-opened.vue +23 -23
  247. package/icons/file/file.vue +16 -16
  248. package/icons/file/files.vue +16 -16
  249. package/icons/filter.vue +5 -5
  250. package/icons/flag.vue +7 -7
  251. package/icons/gift.vue +8 -8
  252. package/icons/globe.vue +16 -16
  253. package/icons/google.vue +41 -41
  254. package/icons/graph-pie.vue +14 -14
  255. package/icons/hand/hand-thumb-up-filled.vue +5 -5
  256. package/icons/hand/hand-thumb-up.vue +5 -5
  257. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -52
  258. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -52
  259. package/icons/handshake.vue +5 -5
  260. package/icons/hcheck.vue +14 -14
  261. package/icons/hdocument.vue +7 -7
  262. package/icons/history.vue +5 -5
  263. package/icons/horizontal-more.vue +13 -13
  264. package/icons/hot-line.vue +6 -6
  265. package/icons/hummer.vue +16 -16
  266. package/icons/id.vue +7 -7
  267. package/icons/info/info-circle.vue +29 -29
  268. package/icons/invoice.vue +7 -7
  269. package/icons/judge.vue +14 -14
  270. package/icons/kaspi-qr.vue +13 -13
  271. package/icons/link-chain.vue +28 -28
  272. package/icons/link.vue +7 -7
  273. package/icons/linkedin.vue +24 -24
  274. package/icons/loader-circle.vue +27 -27
  275. package/icons/location.vue +8 -8
  276. package/icons/lock.vue +5 -5
  277. package/icons/logo.vue +15 -15
  278. package/icons/logout.vue +16 -16
  279. package/icons/magnify/magnifying-glass-minus.vue +8 -8
  280. package/icons/magnify/magnifying-glass-plus.vue +9 -9
  281. package/icons/magnify/magnifying-glass.vue +9 -9
  282. package/icons/mail.vue +7 -7
  283. package/icons/mailru.vue +34 -34
  284. package/icons/main-filter.vue +5 -5
  285. package/icons/map/map-pin-filled.vue +7 -7
  286. package/icons/map/map-pin-rect.vue +15 -15
  287. package/icons/map/map-pin.vue +7 -7
  288. package/icons/map-marker-start.vue +7 -7
  289. package/icons/map-paper.vue +5 -5
  290. package/icons/medal.vue +7 -7
  291. package/icons/menu-filled.vue +20 -20
  292. package/icons/menu.vue +8 -8
  293. package/icons/message/message.vue +12 -12
  294. package/icons/minus/minus-circle.vue +10 -10
  295. package/icons/money.vue +5 -5
  296. package/icons/monitoring.vue +10 -10
  297. package/icons/moon.vue +8 -8
  298. package/icons/more.vue +29 -29
  299. package/icons/note-pencil.vue +14 -14
  300. package/icons/note.vue +14 -14
  301. package/icons/notification.vue +16 -16
  302. package/icons/paperclip.vue +7 -7
  303. package/icons/payment/payment-card.vue +6 -6
  304. package/icons/payment/payment-kaspi.vue +11 -11
  305. package/icons/person-vector.vue +7 -7
  306. package/icons/person-with-briefcase.vue +10 -10
  307. package/icons/phone-filled.vue +5 -5
  308. package/icons/phone.vue +7 -7
  309. package/icons/plus/plus-circle.vue +8 -8
  310. package/icons/plus/plus.vue +13 -13
  311. package/icons/profile.vue +5 -5
  312. package/icons/radio/radio-check.vue +8 -8
  313. package/icons/radio/radio-empty.vue +10 -10
  314. package/icons/receipt.vue +8 -8
  315. package/icons/robot.vue +14 -14
  316. package/icons/sanctions.vue +8 -8
  317. package/icons/scales/scale.vue +16 -16
  318. package/icons/scales/scales.vue +5 -5
  319. package/icons/scales/standing-scales.vue +15 -15
  320. package/icons/search.vue +27 -27
  321. package/icons/share/share-alt.vue +5 -5
  322. package/icons/share/share.vue +14 -14
  323. package/icons/ship.vue +8 -8
  324. package/icons/socials/face-book.vue +15 -15
  325. package/icons/socials/instagram.vue +19 -19
  326. package/icons/socials/telegram.vue +15 -15
  327. package/icons/socials/tik-tok.vue +15 -15
  328. package/icons/socials/youtube.vue +16 -16
  329. package/icons/sort/sort-asc.vue +15 -15
  330. package/icons/sort/sort-desc.vue +15 -15
  331. package/icons/splitting-arrows.vue +8 -8
  332. package/icons/star/star-filled.vue +40 -40
  333. package/icons/star/star-half-filled.vue +20 -20
  334. package/icons/star/star.vue +25 -25
  335. package/icons/sun.vue +14 -14
  336. package/icons/sviazi.vue +5 -5
  337. package/icons/tag.vue +30 -30
  338. package/icons/tasks.vue +10 -10
  339. package/icons/tender-search.vue +11 -11
  340. package/icons/toasts/check-circle-toast.vue +6 -6
  341. package/icons/toasts/warning-triangle-toast.vue +7 -7
  342. package/icons/trash.vue +13 -13
  343. package/icons/triangle.vue +10 -10
  344. package/icons/truck.vue +7 -7
  345. package/icons/user-square.vue +14 -14
  346. package/icons/user.vue +22 -22
  347. package/icons/users-focus.vue +8 -8
  348. package/icons/users-three.vue +7 -7
  349. package/icons/users.vue +8 -8
  350. package/icons/warning/warning-circle.vue +29 -29
  351. package/icons/warning/warning-triangle-filled.vue +12 -12
  352. package/icons/warning/warning-triangle.vue +28 -28
  353. package/icons/whatsapp.vue +8 -8
  354. package/icons/work-bag.vue +11 -11
  355. package/icons/work-case.vue +9 -9
  356. package/icons/work-search.vue +10 -10
  357. package/icons/work.vue +5 -5
  358. package/icons/x-mark.vue +15 -15
  359. package/icons/yandex.vue +28 -28
  360. package/illustrations/address-location.vue +38 -38
  361. package/illustrations/ball-with-chain.vue +120 -120
  362. package/illustrations/bill.vue +133 -133
  363. package/illustrations/buildings.vue +82 -82
  364. package/illustrations/calendar.vue +156 -156
  365. package/illustrations/chains.vue +152 -152
  366. package/illustrations/coin-percent.vue +126 -126
  367. package/illustrations/coins-stack.vue +202 -202
  368. package/illustrations/delete-dark.vue +31 -31
  369. package/illustrations/delete.vue +32 -32
  370. package/illustrations/doc-with-stamp.vue +126 -126
  371. package/illustrations/document.vue +64 -64
  372. package/illustrations/door.vue +74 -74
  373. package/illustrations/empty-box.vue +77 -77
  374. package/illustrations/empty-wallet.vue +161 -161
  375. package/illustrations/graph-in-coin.vue +119 -119
  376. package/illustrations/hammer.vue +156 -156
  377. package/illustrations/hand-cash.vue +108 -108
  378. package/illustrations/info.vue +39 -39
  379. package/illustrations/mail.vue +68 -68
  380. package/illustrations/ok.vue +62 -62
  381. package/illustrations/people-group.vue +237 -237
  382. package/illustrations/person-with-phone.vue +187 -187
  383. package/illustrations/person.vue +159 -159
  384. package/illustrations/phone-check.vue +90 -90
  385. package/illustrations/phone-payment-method.vue +223 -223
  386. package/illustrations/stop-hand.vue +77 -77
  387. package/illustrations/stop-sign.vue +34 -34
  388. package/illustrations/suit.vue +111 -111
  389. package/illustrations/suitcase.vue +105 -105
  390. package/illustrations/terminal-dark.vue +48 -48
  391. package/illustrations/terminal.vue +234 -234
  392. package/illustrations/trash-can.vue +108 -108
  393. package/illustrations/turn-on-tariff.vue +38 -38
  394. package/illustrations/two-persons.vue +169 -169
  395. package/lang/en.ts +834 -834
  396. package/lang/kk.ts +836 -836
  397. package/lang/ru.ts +837 -837
  398. package/layouts/default.vue +13 -13
  399. package/nuxt.config.ts +88 -88
  400. package/package.json +69 -69
  401. package/plugins/maska.ts +4 -4
  402. package/plugins/toast.client.ts +58 -58
  403. package/public/kaspi/logo.svg +4 -4
  404. package/shared/constans/pages.ts +89 -89
  405. package/tailwind.config.ts +163 -163
  406. package/tests/AButton.test.ts +81 -81
  407. package/tsconfig.json +6 -6
  408. package/utils/getMaxZindex.ts +25 -25
  409. package/utils/localizedNavigation.ts +36 -36
  410. package/vitest.config.ts +14 -14
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
- <path clip-rule="evenodd" d="M10.4369 2.33325C9.93143 2.33325 9.44714 2.53344 9.09042 2.88906L3.57403 8.38834C2.99212 8.96845 2.66561 9.75477 2.66561 10.5742C2.66561 11.3936 2.99212 12.1799 3.57403 12.7601C4.15602 13.3402 4.94584 13.6666 5.76986 13.6666C6.59388 13.6666 7.3837 13.3402 7.96569 12.7601L13.4821 7.26077C13.6775 7.06595 13.9937 7.06666 14.1882 7.26236C14.3828 7.45806 14.382 7.77464 14.1866 7.96946L8.67023 13.4687C7.90063 14.236 6.85729 14.6666 5.76986 14.6666C4.68243 14.6666 3.6391 14.236 2.86949 13.4687C2.0998 12.7014 1.66699 11.6603 1.66699 10.5742C1.66699 9.4881 2.0998 8.44695 2.86949 7.67965L8.38587 2.18036C8.93022 1.63771 9.66803 1.33325 10.4369 1.33325C11.2057 1.33325 11.9435 1.63771 12.4879 2.18036C13.0323 2.72309 13.3386 3.45967 13.3386 4.22818C13.3386 4.99669 13.0323 5.73326 12.4879 6.27599L6.9655 11.7753C6.64642 12.0934 6.21414 12.2717 5.76386 12.2717C5.31358 12.2717 4.88129 12.0934 4.56222 11.7753C4.24307 11.4571 4.06336 11.0251 4.06336 10.5742C4.06336 10.1233 4.24307 9.69128 4.56222 9.37312L9.65863 4.29849C9.85418 4.10378 10.1703 4.10468 10.3648 4.30049C10.5592 4.49631 10.5583 4.81289 10.3628 5.00759L5.26676 10.0818C5.13551 10.2128 5.06198 10.39 5.06198 10.5742C5.06198 10.7584 5.13538 10.9356 5.26676 11.0666C5.39822 11.1976 5.57699 11.2717 5.76386 11.2717C5.95073 11.2717 6.1295 11.1976 6.26095 11.0666L11.7833 5.5673C12.1399 5.21178 12.3399 4.72993 12.3399 4.22818C12.3399 3.72634 12.14 3.2446 11.7833 2.88906C11.4266 2.53344 10.9423 2.33325 10.4369 2.33325Z"
4
- fill="currentColor"
5
- fill-rule="evenodd"/>
6
- </svg>
7
- </template>
1
+ <template>
2
+ <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
+ <path clip-rule="evenodd" d="M10.4369 2.33325C9.93143 2.33325 9.44714 2.53344 9.09042 2.88906L3.57403 8.38834C2.99212 8.96845 2.66561 9.75477 2.66561 10.5742C2.66561 11.3936 2.99212 12.1799 3.57403 12.7601C4.15602 13.3402 4.94584 13.6666 5.76986 13.6666C6.59388 13.6666 7.3837 13.3402 7.96569 12.7601L13.4821 7.26077C13.6775 7.06595 13.9937 7.06666 14.1882 7.26236C14.3828 7.45806 14.382 7.77464 14.1866 7.96946L8.67023 13.4687C7.90063 14.236 6.85729 14.6666 5.76986 14.6666C4.68243 14.6666 3.6391 14.236 2.86949 13.4687C2.0998 12.7014 1.66699 11.6603 1.66699 10.5742C1.66699 9.4881 2.0998 8.44695 2.86949 7.67965L8.38587 2.18036C8.93022 1.63771 9.66803 1.33325 10.4369 1.33325C11.2057 1.33325 11.9435 1.63771 12.4879 2.18036C13.0323 2.72309 13.3386 3.45967 13.3386 4.22818C13.3386 4.99669 13.0323 5.73326 12.4879 6.27599L6.9655 11.7753C6.64642 12.0934 6.21414 12.2717 5.76386 12.2717C5.31358 12.2717 4.88129 12.0934 4.56222 11.7753C4.24307 11.4571 4.06336 11.0251 4.06336 10.5742C4.06336 10.1233 4.24307 9.69128 4.56222 9.37312L9.65863 4.29849C9.85418 4.10378 10.1703 4.10468 10.3648 4.30049C10.5592 4.49631 10.5583 4.81289 10.3628 5.00759L5.26676 10.0818C5.13551 10.2128 5.06198 10.39 5.06198 10.5742C5.06198 10.7584 5.13538 10.9356 5.26676 11.0666C5.39822 11.1976 5.57699 11.2717 5.76386 11.2717C5.95073 11.2717 6.1295 11.1976 6.26095 11.0666L11.7833 5.5673C12.1399 5.21178 12.3399 4.72993 12.3399 4.22818C12.3399 3.72634 12.14 3.2446 11.7833 2.88906C11.4266 2.53344 10.9423 2.33325 10.4369 2.33325Z"
4
+ fill="currentColor"
5
+ fill-rule="evenodd"/>
6
+ </svg>
7
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <svg width="44" height="34" viewBox="0 0 44 34" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <rect width="44" height="34" rx="3" class="dark:text-[#E3E5E8] text-deepblue-900" fill="currentColor"/>
4
- <path d="M0 10L44 10" class="text-white dark:text-[#26282B]" stroke="currentColor" stroke-width="3"/>
5
- </svg>
6
- </template>
1
+ <template>
2
+ <svg width="44" height="34" viewBox="0 0 44 34" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="44" height="34" rx="3" class="dark:text-[#E3E5E8] text-deepblue-900" fill="currentColor"/>
4
+ <path d="M0 10L44 10" class="text-white dark:text-[#26282B]" stroke="currentColor" stroke-width="3"/>
5
+ </svg>
6
+ </template>
@@ -1,11 +1,11 @@
1
- <template>
2
- <svg width="44" height="34" viewBox="0 0 44 34" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <rect width="44" height="34" rx="3" fill="#F14635"/>
4
- <mask id="mask0_222_47797" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="12" y="7" width="21" height="21">
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12 7.125H32.9847V27.9988H12" fill="white"/>
6
- </mask>
7
- <g mask="url(#mask0_222_47797)">
8
- <path fill-rule="evenodd" clip-rule="evenodd" d="M22.4926 7.125C25.3825 7.125 27.9994 8.28281 29.8969 10.1558C31.7945 12.0287 32.9726 14.6167 32.9849 17.4776V17.5228V17.5678C32.9739 20.1118 32.0384 22.4391 30.4957 24.2406C30.4747 24.2301 30.4475 24.2111 30.4109 24.1755C30.351 24.1168 30.2677 24.0157 30.1533 23.8436C30.0575 23.7047 29.5972 23.0006 29.1608 21.9673C28.7245 20.934 28.3121 19.5718 28.3121 18.1166C28.3121 17.8311 28.5179 17.4653 28.8148 17.0728C29.1116 16.6804 29.4994 16.2615 29.8634 15.87L29.8762 15.8562L29.8762 15.8562C30.1442 15.5663 30.4044 15.2848 30.6217 15.0217C30.8423 14.7546 31.0186 14.5063 31.1136 14.2879C31.2347 14.0061 31.2528 13.7668 31.2074 13.5812C31.1618 13.3956 31.0527 13.2639 30.9185 13.1972C30.7975 13.1379 30.6459 13.1299 30.4929 13.1934C30.3398 13.2568 30.1851 13.3918 30.0574 13.6187C29.8479 13.9856 29.7096 14.2033 29.5473 14.3908C29.385 14.5781 29.1986 14.7352 28.8931 14.9809C28.5925 15.2261 28.2031 15.4723 27.8891 15.5771C27.575 15.6821 27.3361 15.6458 27.3361 15.3263C27.3361 15.1536 27.4691 14.8717 27.635 14.5644C27.6936 14.4559 27.7564 14.3442 27.8188 14.233L27.8189 14.2329C27.9331 14.0295 28.0463 13.8279 28.1316 13.6508C28.2657 13.3734 28.2604 13.1346 28.1524 12.9649C28.0442 12.7952 27.8332 12.6949 27.5563 12.6949C27.0116 12.6949 26.5583 13.0417 26.2412 13.4488C25.9243 13.8559 25.7435 14.3229 25.7435 14.5631C25.7435 14.7941 25.7973 14.9297 25.8532 15.0706L25.86 15.0877C25.9185 15.2347 25.9767 15.3917 25.9767 15.6714C25.9767 15.9532 25.678 16.2769 25.2385 16.53C24.799 16.7831 24.2188 16.9659 23.6559 16.9659C23.0895 16.9659 22.6474 16.9059 22.3172 16.7606C21.9869 16.6151 21.7688 16.3843 21.65 16.0421L21.6127 15.9307L21.5752 15.8192L21.5545 15.7588L21.5545 15.7588C21.4294 15.3939 21.3203 15.0758 21.2037 14.7791C21.0809 14.466 20.9496 14.1767 20.7827 13.881C20.6942 13.7244 20.5816 13.5921 20.4617 13.4749C20.3485 13.3643 20.2288 13.2674 20.1166 13.1767L20.1166 13.1767L20.0965 13.1604C19.942 13.0404 19.8247 12.9251 19.7418 12.8194C19.6589 12.7136 19.6107 12.6171 19.5939 12.5347C19.5785 12.453 19.5666 12.3352 19.6245 12.1491C19.6824 11.9631 19.8101 11.7084 20.074 11.3535C20.3378 11.0004 20.488 10.6905 20.5394 10.4346C20.5907 10.1784 20.5432 9.97631 20.4115 9.83869C20.3637 9.78994 20.299 9.74981 20.2203 9.72206C20.1414 9.69413 20.0485 9.67838 19.9439 9.67838C19.7586 9.67838 19.5377 9.7275 19.2966 9.84375C19.0558 9.96 18.7949 10.1438 18.5301 10.413C18.1182 10.8349 18.0291 11.2463 18.0431 11.5961C18.0508 11.7926 18.0911 11.9696 18.125 12.1182L18.125 12.1182C18.1514 12.2342 18.1738 12.3328 18.1738 12.4099C18.1738 12.5858 18.136 12.7236 18.0365 12.8771C17.9369 13.0305 17.7756 13.1998 17.5285 13.4389C17.2797 13.6791 17.1123 13.9022 17.0001 14.2721C16.8877 14.6422 16.8304 15.159 16.8018 15.9866C16.7908 16.4132 16.7479 16.7492 16.6908 17.0331C16.6338 17.3169 16.5627 17.5485 16.4953 17.7662C16.4371 17.9571 16.3811 18.1421 16.3389 18.3442C16.2969 18.5464 16.2687 18.7656 16.2656 19.0249C16.2611 19.3119 16.2827 19.5482 16.3194 19.7659C16.3561 19.9836 16.4079 20.1829 16.4639 20.3964C16.5184 20.5939 16.5748 20.8057 16.6268 21.0628C16.6788 21.3197 16.7265 21.6219 16.7638 22.0003C16.8281 22.6348 16.8453 23.2159 16.8135 23.7761C16.7818 24.3362 16.7006 24.8752 16.5682 25.4258L16.5615 25.4621L16.5551 25.4983L16.5506 25.5165C16.526 25.615 16.4991 25.7232 16.4679 25.8127C16.4439 25.8818 16.4172 25.9389 16.3873 25.9729C15.9196 25.6408 15.479 25.2739 15.0732 24.8721C13.1745 22.9909 12 20.3925 12 17.523C12 14.652 13.1745 12.0525 15.0732 10.1707C16.9721 8.289 19.5952 7.125 22.4926 7.125ZM25.7725 26.0904C25.7725 26.2453 25.7657 26.3823 25.7527 26.4971C25.7396 26.6118 25.7201 26.7041 25.6951 26.7693C25.6352 26.9145 25.4933 27.056 25.2931 27.1843C25.2156 27.2338 25.127 27.2806 25.0334 27.3258C24.2219 27.5251 23.374 27.6326 22.5003 27.6326C22.4371 27.6326 22.3744 27.6305 22.3117 27.6284L22.3111 27.6283C22.2825 27.6274 22.2539 27.6264 22.2252 27.6256C22.1153 27.5945 22.0126 27.5576 21.921 27.5133C21.7184 27.4158 21.5631 27.2872 21.4662 27.1301C21.246 26.7731 21.1334 26.1877 21.0748 25.4566C21.0161 24.7256 21.0114 23.8488 21.0076 22.9085L21.0057 22.64L21.0038 22.3713C20.9968 21.4228 20.9904 20.5395 21.0721 19.82C21.154 19.1004 21.3239 18.5448 21.6696 18.2514C21.8035 18.1383 21.9657 18.0631 22.159 18.0264C22.3524 17.9896 22.5767 17.9911 22.835 18.0316C23.8169 18.183 24.3498 18.5604 24.6563 19.0331C24.9619 19.5041 25.0426 20.0698 25.1184 20.601V20.601L25.1193 20.6068L25.1276 20.666L25.1359 20.7251L25.1813 21.0253L25.2265 21.3255L25.2316 21.3585L25.2316 21.3585L25.2317 21.3588C25.3201 21.932 25.4535 22.7963 25.5657 23.672C25.6802 24.5649 25.7725 25.4698 25.7725 26.0904ZM29.0742 24.9626C29.1239 24.7185 28.8481 23.9059 28.476 23.1934C28.1038 22.4809 27.6352 21.8685 27.2996 22.0245C27.0419 22.1473 26.963 22.9142 27.0152 23.763C27.0673 24.6116 27.2504 25.5422 27.5166 25.9922C27.5652 26.0715 27.6583 26.0933 27.7669 26.0831C27.7772 26.0822 27.7878 26.0804 27.7985 26.0785L27.7986 26.0785L27.8136 26.076C28.2149 25.8431 28.5988 25.5848 28.9637 25.3029C28.9656 25.2992 28.9675 25.2956 28.9694 25.292C28.9706 25.2899 28.9718 25.2878 28.9729 25.2858C28.9776 25.2773 28.9823 25.2689 28.9864 25.2594C29.0227 25.1769 29.052 25.0804 29.0742 24.9626ZM18.9935 23.1771C19.1173 23.8681 19.1963 24.7527 19.2228 25.5158C19.244 26.1271 19.2164 26.5313 19.1549 26.7944C19.1095 26.9886 19.0456 27.1056 18.9695 27.1722C18.768 27.1049 18.569 27.0321 18.3732 26.9532C18.3189 26.8546 18.2697 26.7336 18.2266 26.5894C18.1658 26.3869 18.1164 26.1409 18.0796 25.8559C17.9827 25.0898 17.9763 24.1326 18.0495 23.3635C18.1225 22.5946 18.2752 22.0137 18.4963 22.0002C18.7014 21.9888 18.8698 22.4862 18.9935 23.1771Z" fill="#FEFEFE"/>
9
- </g>
10
- </svg>
11
- </template>
1
+ <template>
2
+ <svg width="44" height="34" viewBox="0 0 44 34" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="44" height="34" rx="3" fill="#F14635"/>
4
+ <mask id="mask0_222_47797" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="12" y="7" width="21" height="21">
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 7.125H32.9847V27.9988H12" fill="white"/>
6
+ </mask>
7
+ <g mask="url(#mask0_222_47797)">
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M22.4926 7.125C25.3825 7.125 27.9994 8.28281 29.8969 10.1558C31.7945 12.0287 32.9726 14.6167 32.9849 17.4776V17.5228V17.5678C32.9739 20.1118 32.0384 22.4391 30.4957 24.2406C30.4747 24.2301 30.4475 24.2111 30.4109 24.1755C30.351 24.1168 30.2677 24.0157 30.1533 23.8436C30.0575 23.7047 29.5972 23.0006 29.1608 21.9673C28.7245 20.934 28.3121 19.5718 28.3121 18.1166C28.3121 17.8311 28.5179 17.4653 28.8148 17.0728C29.1116 16.6804 29.4994 16.2615 29.8634 15.87L29.8762 15.8562L29.8762 15.8562C30.1442 15.5663 30.4044 15.2848 30.6217 15.0217C30.8423 14.7546 31.0186 14.5063 31.1136 14.2879C31.2347 14.0061 31.2528 13.7668 31.2074 13.5812C31.1618 13.3956 31.0527 13.2639 30.9185 13.1972C30.7975 13.1379 30.6459 13.1299 30.4929 13.1934C30.3398 13.2568 30.1851 13.3918 30.0574 13.6187C29.8479 13.9856 29.7096 14.2033 29.5473 14.3908C29.385 14.5781 29.1986 14.7352 28.8931 14.9809C28.5925 15.2261 28.2031 15.4723 27.8891 15.5771C27.575 15.6821 27.3361 15.6458 27.3361 15.3263C27.3361 15.1536 27.4691 14.8717 27.635 14.5644C27.6936 14.4559 27.7564 14.3442 27.8188 14.233L27.8189 14.2329C27.9331 14.0295 28.0463 13.8279 28.1316 13.6508C28.2657 13.3734 28.2604 13.1346 28.1524 12.9649C28.0442 12.7952 27.8332 12.6949 27.5563 12.6949C27.0116 12.6949 26.5583 13.0417 26.2412 13.4488C25.9243 13.8559 25.7435 14.3229 25.7435 14.5631C25.7435 14.7941 25.7973 14.9297 25.8532 15.0706L25.86 15.0877C25.9185 15.2347 25.9767 15.3917 25.9767 15.6714C25.9767 15.9532 25.678 16.2769 25.2385 16.53C24.799 16.7831 24.2188 16.9659 23.6559 16.9659C23.0895 16.9659 22.6474 16.9059 22.3172 16.7606C21.9869 16.6151 21.7688 16.3843 21.65 16.0421L21.6127 15.9307L21.5752 15.8192L21.5545 15.7588L21.5545 15.7588C21.4294 15.3939 21.3203 15.0758 21.2037 14.7791C21.0809 14.466 20.9496 14.1767 20.7827 13.881C20.6942 13.7244 20.5816 13.5921 20.4617 13.4749C20.3485 13.3643 20.2288 13.2674 20.1166 13.1767L20.1166 13.1767L20.0965 13.1604C19.942 13.0404 19.8247 12.9251 19.7418 12.8194C19.6589 12.7136 19.6107 12.6171 19.5939 12.5347C19.5785 12.453 19.5666 12.3352 19.6245 12.1491C19.6824 11.9631 19.8101 11.7084 20.074 11.3535C20.3378 11.0004 20.488 10.6905 20.5394 10.4346C20.5907 10.1784 20.5432 9.97631 20.4115 9.83869C20.3637 9.78994 20.299 9.74981 20.2203 9.72206C20.1414 9.69413 20.0485 9.67838 19.9439 9.67838C19.7586 9.67838 19.5377 9.7275 19.2966 9.84375C19.0558 9.96 18.7949 10.1438 18.5301 10.413C18.1182 10.8349 18.0291 11.2463 18.0431 11.5961C18.0508 11.7926 18.0911 11.9696 18.125 12.1182L18.125 12.1182C18.1514 12.2342 18.1738 12.3328 18.1738 12.4099C18.1738 12.5858 18.136 12.7236 18.0365 12.8771C17.9369 13.0305 17.7756 13.1998 17.5285 13.4389C17.2797 13.6791 17.1123 13.9022 17.0001 14.2721C16.8877 14.6422 16.8304 15.159 16.8018 15.9866C16.7908 16.4132 16.7479 16.7492 16.6908 17.0331C16.6338 17.3169 16.5627 17.5485 16.4953 17.7662C16.4371 17.9571 16.3811 18.1421 16.3389 18.3442C16.2969 18.5464 16.2687 18.7656 16.2656 19.0249C16.2611 19.3119 16.2827 19.5482 16.3194 19.7659C16.3561 19.9836 16.4079 20.1829 16.4639 20.3964C16.5184 20.5939 16.5748 20.8057 16.6268 21.0628C16.6788 21.3197 16.7265 21.6219 16.7638 22.0003C16.8281 22.6348 16.8453 23.2159 16.8135 23.7761C16.7818 24.3362 16.7006 24.8752 16.5682 25.4258L16.5615 25.4621L16.5551 25.4983L16.5506 25.5165C16.526 25.615 16.4991 25.7232 16.4679 25.8127C16.4439 25.8818 16.4172 25.9389 16.3873 25.9729C15.9196 25.6408 15.479 25.2739 15.0732 24.8721C13.1745 22.9909 12 20.3925 12 17.523C12 14.652 13.1745 12.0525 15.0732 10.1707C16.9721 8.289 19.5952 7.125 22.4926 7.125ZM25.7725 26.0904C25.7725 26.2453 25.7657 26.3823 25.7527 26.4971C25.7396 26.6118 25.7201 26.7041 25.6951 26.7693C25.6352 26.9145 25.4933 27.056 25.2931 27.1843C25.2156 27.2338 25.127 27.2806 25.0334 27.3258C24.2219 27.5251 23.374 27.6326 22.5003 27.6326C22.4371 27.6326 22.3744 27.6305 22.3117 27.6284L22.3111 27.6283C22.2825 27.6274 22.2539 27.6264 22.2252 27.6256C22.1153 27.5945 22.0126 27.5576 21.921 27.5133C21.7184 27.4158 21.5631 27.2872 21.4662 27.1301C21.246 26.7731 21.1334 26.1877 21.0748 25.4566C21.0161 24.7256 21.0114 23.8488 21.0076 22.9085L21.0057 22.64L21.0038 22.3713C20.9968 21.4228 20.9904 20.5395 21.0721 19.82C21.154 19.1004 21.3239 18.5448 21.6696 18.2514C21.8035 18.1383 21.9657 18.0631 22.159 18.0264C22.3524 17.9896 22.5767 17.9911 22.835 18.0316C23.8169 18.183 24.3498 18.5604 24.6563 19.0331C24.9619 19.5041 25.0426 20.0698 25.1184 20.601V20.601L25.1193 20.6068L25.1276 20.666L25.1359 20.7251L25.1813 21.0253L25.2265 21.3255L25.2316 21.3585L25.2316 21.3585L25.2317 21.3588C25.3201 21.932 25.4535 22.7963 25.5657 23.672C25.6802 24.5649 25.7725 25.4698 25.7725 26.0904ZM29.0742 24.9626C29.1239 24.7185 28.8481 23.9059 28.476 23.1934C28.1038 22.4809 27.6352 21.8685 27.2996 22.0245C27.0419 22.1473 26.963 22.9142 27.0152 23.763C27.0673 24.6116 27.2504 25.5422 27.5166 25.9922C27.5652 26.0715 27.6583 26.0933 27.7669 26.0831C27.7772 26.0822 27.7878 26.0804 27.7985 26.0785L27.7986 26.0785L27.8136 26.076C28.2149 25.8431 28.5988 25.5848 28.9637 25.3029C28.9656 25.2992 28.9675 25.2956 28.9694 25.292C28.9706 25.2899 28.9718 25.2878 28.9729 25.2858C28.9776 25.2773 28.9823 25.2689 28.9864 25.2594C29.0227 25.1769 29.052 25.0804 29.0742 24.9626ZM18.9935 23.1771C19.1173 23.8681 19.1963 24.7527 19.2228 25.5158C19.244 26.1271 19.2164 26.5313 19.1549 26.7944C19.1095 26.9886 19.0456 27.1056 18.9695 27.1722C18.768 27.1049 18.569 27.0321 18.3732 26.9532C18.3189 26.8546 18.2697 26.7336 18.2266 26.5894C18.1658 26.3869 18.1164 26.1409 18.0796 25.8559C17.9827 25.0898 17.9763 24.1326 18.0495 23.3635C18.1225 22.5946 18.2752 22.0137 18.4963 22.0002C18.7014 21.9888 18.8698 22.4862 18.9935 23.1771Z" fill="#FEFEFE"/>
9
+ </g>
10
+ </svg>
11
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M13.0035 14.5V9.51038C12.986 9.1636 13.0342 8.81662 13.145 8.49074C13.2558 8.16486 13.4269 7.86696 13.6479 7.61535C13.8688 7.36373 14.1349 7.16371 14.4298 7.02757C14.7247 6.89143 15.0421 6.82203 15.3626 6.82366C14.8335 6.47615 14.3942 5.98907 14.0858 5.40787C13.7774 4.82667 13.6099 4.17031 13.599 3.5H20.9703C24.3017 3.5 27 6.72568 27 10.7108V14.3857M13 14.2059C13 18.5557 16.1669 23.5 19.9898 23.5C22.7344 23.5 27.1756 19.5924 26.9946 14.2059M12.5473 13.5C12.2782 13.4989 12.0115 13.55 11.7626 13.6504C11.5137 13.7507 11.2875 13.8983 11.0972 14.0846C10.9068 14.2709 10.7561 14.4923 10.6536 14.7359C10.5511 14.9795 10.4989 15.2406 10.5 15.5041C10.5 15.7669 10.553 16.0271 10.656 16.2698C10.759 16.5125 10.91 16.7329 11.1002 16.9183C11.2904 17.1037 11.5162 17.2506 11.7645 17.3504C12.0129 17.4502 12.2789 17.5011 12.5473 17.5H13.5M27.2928 13.5C27.8782 13.5 28.4396 13.7111 28.8535 14.087C29.2675 14.4628 29.5 14.9726 29.5 15.5041C29.4976 16.0342 29.264 16.5418 28.8503 16.9159C28.4367 17.29 27.8766 17.5 27.2928 17.5H26.5M27 13.5C27 13.5 24.5392 13.2199 24.5392 9.5C24.5392 9.5 23.517 9.94524 19.9962 9.94524C16.4754 9.94524 15.4532 9.5 15.4532 9.5C15.4532 13.2199 13 13.5 13 13.5M17 36.5V25.5L10.4522 27.2266C9.66023 27.4348 8.9504 27.8907 8.42048 28.5315C7.89056 29.1723 7.56657 29.9665 7.49314 30.8047L7 36.5M14.5391 26.5L13 32.5L17 31.2855M17.1694 22.7688L17 25.3714C17 25.3714 19.9506 27.9108 23 25.3714L22.8306 22.7688M23 36.5V25.5L29.5426 27.2266C30.3354 27.4341 31.0458 27.89 31.5754 28.5311C32.105 29.1722 32.4276 29.9667 32.4985 30.8047L33 36.5M25.4609 26.5L27 32.5L23 31.2855" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
4
- </svg>
5
- </template>
6
- <script setup lang="ts">
7
- </script>
1
+ <template>
2
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M13.0035 14.5V9.51038C12.986 9.1636 13.0342 8.81662 13.145 8.49074C13.2558 8.16486 13.4269 7.86696 13.6479 7.61535C13.8688 7.36373 14.1349 7.16371 14.4298 7.02757C14.7247 6.89143 15.0421 6.82203 15.3626 6.82366C14.8335 6.47615 14.3942 5.98907 14.0858 5.40787C13.7774 4.82667 13.6099 4.17031 13.599 3.5H20.9703C24.3017 3.5 27 6.72568 27 10.7108V14.3857M13 14.2059C13 18.5557 16.1669 23.5 19.9898 23.5C22.7344 23.5 27.1756 19.5924 26.9946 14.2059M12.5473 13.5C12.2782 13.4989 12.0115 13.55 11.7626 13.6504C11.5137 13.7507 11.2875 13.8983 11.0972 14.0846C10.9068 14.2709 10.7561 14.4923 10.6536 14.7359C10.5511 14.9795 10.4989 15.2406 10.5 15.5041C10.5 15.7669 10.553 16.0271 10.656 16.2698C10.759 16.5125 10.91 16.7329 11.1002 16.9183C11.2904 17.1037 11.5162 17.2506 11.7645 17.3504C12.0129 17.4502 12.2789 17.5011 12.5473 17.5H13.5M27.2928 13.5C27.8782 13.5 28.4396 13.7111 28.8535 14.087C29.2675 14.4628 29.5 14.9726 29.5 15.5041C29.4976 16.0342 29.264 16.5418 28.8503 16.9159C28.4367 17.29 27.8766 17.5 27.2928 17.5H26.5M27 13.5C27 13.5 24.5392 13.2199 24.5392 9.5C24.5392 9.5 23.517 9.94524 19.9962 9.94524C16.4754 9.94524 15.4532 9.5 15.4532 9.5C15.4532 13.2199 13 13.5 13 13.5M17 36.5V25.5L10.4522 27.2266C9.66023 27.4348 8.9504 27.8907 8.42048 28.5315C7.89056 29.1723 7.56657 29.9665 7.49314 30.8047L7 36.5M14.5391 26.5L13 32.5L17 31.2855M17.1694 22.7688L17 25.3714C17 25.3714 19.9506 27.9108 23 25.3714L22.8306 22.7688M23 36.5V25.5L29.5426 27.2266C30.3354 27.4341 31.0458 27.89 31.5754 28.5311C32.105 29.1722 32.4276 29.9667 32.4985 30.8047L33 36.5M25.4609 26.5L27 32.5L23 31.2855" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
5
+ </template>
6
+ <script setup lang="ts">
7
+ </script>
@@ -1,10 +1,10 @@
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
- fill-rule="evenodd"
5
- clip-rule="evenodd"
6
- d="M3.64404 3.59616C3.64404 2.44163 4.58506 1.5 5.75292 1.5C6.92077 1.5 7.86179 2.44163 7.86179 3.59616C7.86179 4.75068 6.92077 5.69231 5.75292 5.69231C4.58506 5.69231 3.64404 4.75068 3.64404 3.59616ZM5.75292 0C3.76295 0 2.14404 1.6069 2.14404 3.59616C2.14404 4.6414 2.59101 5.58107 3.30391 6.23754C2.70878 6.51643 2.16044 6.89752 1.68621 7.36965C0.606937 8.44411 0 9.90212 0 11.4231V13.5577C0 13.9719 0.335786 14.3077 0.75 14.3077H2.51441L3.14669 19.3435C3.1938 19.7186 3.51277 20 3.89085 20H7.63195C8.01004 20 8.32901 19.7186 8.37611 19.3435L8.90777 15.1091C8.95937 14.6981 8.66803 14.3231 8.25705 14.2715C7.84606 14.2199 7.47106 14.5113 7.41945 14.9222L6.97023 18.5H4.55257L3.92029 13.4643C3.87319 13.0891 3.55422 12.8077 3.17613 12.8077H1.5V11.4231C1.5 10.3021 1.94727 9.22635 2.7445 8.43267C3.54184 7.63887 4.62398 7.19232 5.75303 7.19232C6.88208 7.19232 7.96421 7.63887 8.76155 8.43267C9.37475 9.04313 9.7809 9.82049 9.93574 10.6569C10.0111 11.0642 10.4024 11.3332 10.8097 11.2578C11.217 11.1824 11.4861 10.7911 11.4107 10.3838C11.2007 9.2494 10.65 8.19608 9.81985 7.36965C9.34558 6.89749 8.79718 6.51637 8.20199 6.23747C8.91485 5.58101 9.36179 4.64136 9.36179 3.59616C9.36179 1.6069 7.74288 0 5.75292 0ZM11.6824 13.7216C11.3969 13.7216 11.1711 13.9511 11.1711 14.2273V17.9943C11.1711 18.2704 11.3969 18.4999 11.6824 18.4999H17.9888C18.2743 18.4999 18.5001 18.2704 18.5001 17.9943V14.2273C18.5001 13.9511 18.2743 13.7216 17.9888 13.7216H16.5679C16.5647 13.7216 16.5614 13.7217 16.5581 13.7217C16.5548 13.7217 16.5516 13.7216 16.5483 13.7216H13.1193C13.116 13.7216 13.1128 13.7217 13.1095 13.7217C13.1062 13.7217 13.1029 13.7216 13.0997 13.7216H11.6824ZM12.3595 12.2216H11.6824C10.5748 12.2216 9.67114 13.1164 9.67114 14.2273V17.9943C9.67114 19.1051 10.5748 19.9999 11.6824 19.9999H17.9888C19.0964 19.9999 20.0001 19.1051 20.0001 17.9943V14.2273C20.0001 13.1164 19.0964 12.2216 17.9888 12.2216H17.3081V11.6223C17.3081 10.6558 16.5246 9.87225 15.5581 9.87225H14.1095C13.143 9.87225 12.3595 10.6558 12.3595 11.6223V12.2216ZM13.8595 12.2216H15.8081V11.6223C15.8081 11.4842 15.6962 11.3723 15.5581 11.3723H14.1095C13.9714 11.3723 13.8595 11.4842 13.8595 11.6223V12.2216Z"
7
- fill="currentColor"
8
- />
9
- </svg>
10
- </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
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M3.64404 3.59616C3.64404 2.44163 4.58506 1.5 5.75292 1.5C6.92077 1.5 7.86179 2.44163 7.86179 3.59616C7.86179 4.75068 6.92077 5.69231 5.75292 5.69231C4.58506 5.69231 3.64404 4.75068 3.64404 3.59616ZM5.75292 0C3.76295 0 2.14404 1.6069 2.14404 3.59616C2.14404 4.6414 2.59101 5.58107 3.30391 6.23754C2.70878 6.51643 2.16044 6.89752 1.68621 7.36965C0.606937 8.44411 0 9.90212 0 11.4231V13.5577C0 13.9719 0.335786 14.3077 0.75 14.3077H2.51441L3.14669 19.3435C3.1938 19.7186 3.51277 20 3.89085 20H7.63195C8.01004 20 8.32901 19.7186 8.37611 19.3435L8.90777 15.1091C8.95937 14.6981 8.66803 14.3231 8.25705 14.2715C7.84606 14.2199 7.47106 14.5113 7.41945 14.9222L6.97023 18.5H4.55257L3.92029 13.4643C3.87319 13.0891 3.55422 12.8077 3.17613 12.8077H1.5V11.4231C1.5 10.3021 1.94727 9.22635 2.7445 8.43267C3.54184 7.63887 4.62398 7.19232 5.75303 7.19232C6.88208 7.19232 7.96421 7.63887 8.76155 8.43267C9.37475 9.04313 9.7809 9.82049 9.93574 10.6569C10.0111 11.0642 10.4024 11.3332 10.8097 11.2578C11.217 11.1824 11.4861 10.7911 11.4107 10.3838C11.2007 9.2494 10.65 8.19608 9.81985 7.36965C9.34558 6.89749 8.79718 6.51637 8.20199 6.23747C8.91485 5.58101 9.36179 4.64136 9.36179 3.59616C9.36179 1.6069 7.74288 0 5.75292 0ZM11.6824 13.7216C11.3969 13.7216 11.1711 13.9511 11.1711 14.2273V17.9943C11.1711 18.2704 11.3969 18.4999 11.6824 18.4999H17.9888C18.2743 18.4999 18.5001 18.2704 18.5001 17.9943V14.2273C18.5001 13.9511 18.2743 13.7216 17.9888 13.7216H16.5679C16.5647 13.7216 16.5614 13.7217 16.5581 13.7217C16.5548 13.7217 16.5516 13.7216 16.5483 13.7216H13.1193C13.116 13.7216 13.1128 13.7217 13.1095 13.7217C13.1062 13.7217 13.1029 13.7216 13.0997 13.7216H11.6824ZM12.3595 12.2216H11.6824C10.5748 12.2216 9.67114 13.1164 9.67114 14.2273V17.9943C9.67114 19.1051 10.5748 19.9999 11.6824 19.9999H17.9888C19.0964 19.9999 20.0001 19.1051 20.0001 17.9943V14.2273C20.0001 13.1164 19.0964 12.2216 17.9888 12.2216H17.3081V11.6223C17.3081 10.6558 16.5246 9.87225 15.5581 9.87225H14.1095C13.143 9.87225 12.3595 10.6558 12.3595 11.6223V12.2216ZM13.8595 12.2216H15.8081V11.6223C15.8081 11.4842 15.6962 11.3723 15.5581 11.3723H14.1095C13.9714 11.3723 13.8595 11.4842 13.8595 11.6223V12.2216Z"
7
+ fill="currentColor"
8
+ />
9
+ </svg>
10
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M10.1732 20.5254C9.29863 21.0905 8.2565 21.3368 7.222 21.2228C6.1875 21.1088 5.22373 20.6416 4.49274 19.8996L3.85369 19.2738C3.57352 18.9868 3.41666 18.6014 3.41666 18.2C3.41666 17.7986 3.57352 17.4132 3.85369 17.1262L6.5661 14.438C6.85027 14.1583 7.23275 14.0016 7.63118 14.0016C8.0296 14.0016 8.41209 14.1583 8.69626 14.438C8.98283 14.7186 9.36767 14.8757 9.76844 14.8757C10.1692 14.8757 10.5541 14.7186 10.8406 14.438L15.1009 10.1712C15.2431 10.0309 15.3559 9.86372 15.433 9.67937C15.51 9.49502 15.5497 9.29717 15.5497 9.09733C15.5497 8.89749 15.51 8.69964 15.433 8.51529C15.3559 8.33094 15.2431 8.16377 15.1009 8.0235C14.8217 7.73889 14.6652 7.35582 14.6652 6.95678C14.6652 6.55774 14.8217 6.17467 15.1009 5.89006L17.7992 3.18771C18.0857 2.90711 18.4706 2.75 18.8713 2.75C19.2721 2.75 19.657 2.90711 19.9435 3.18771L20.5684 3.82774C21.3092 4.55985 21.7757 5.5251 21.8895 6.56119C22.0033 7.59728 21.7574 8.64102 21.1932 9.51691C18.2535 13.8559 14.5131 17.5924 10.1732 20.5254Z" fill="currentColor" fill-opacity="0.8"/>
4
- </svg>
5
- </template>
1
+ <template>
2
+ <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M10.1732 20.5254C9.29863 21.0905 8.2565 21.3368 7.222 21.2228C6.1875 21.1088 5.22373 20.6416 4.49274 19.8996L3.85369 19.2738C3.57352 18.9868 3.41666 18.6014 3.41666 18.2C3.41666 17.7986 3.57352 17.4132 3.85369 17.1262L6.5661 14.438C6.85027 14.1583 7.23275 14.0016 7.63118 14.0016C8.0296 14.0016 8.41209 14.1583 8.69626 14.438C8.98283 14.7186 9.36767 14.8757 9.76844 14.8757C10.1692 14.8757 10.5541 14.7186 10.8406 14.438L15.1009 10.1712C15.2431 10.0309 15.3559 9.86372 15.433 9.67937C15.51 9.49502 15.5497 9.29717 15.5497 9.09733C15.5497 8.89749 15.51 8.69964 15.433 8.51529C15.3559 8.33094 15.2431 8.16377 15.1009 8.0235C14.8217 7.73889 14.6652 7.35582 14.6652 6.95678C14.6652 6.55774 14.8217 6.17467 15.1009 5.89006L17.7992 3.18771C18.0857 2.90711 18.4706 2.75 18.8713 2.75C19.2721 2.75 19.657 2.90711 19.9435 3.18771L20.5684 3.82774C21.3092 4.55985 21.7757 5.5251 21.8895 6.56119C22.0033 7.59728 21.7574 8.64102 21.1932 9.51691C18.2535 13.8559 14.5131 17.5924 10.1732 20.5254Z" fill="currentColor" fill-opacity="0.8"/>
4
+ </svg>
5
+ </template>
package/icons/phone.vue CHANGED
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11.9618 2.2048L10.0775 4.09209C9.97918 4.19293 9.924 4.32845 9.924 4.46976C9.924 4.61065 9.97886 4.7458 10.0766 4.84655C10.2238 4.99285 10.3408 5.16675 10.4208 5.3583C10.5016 5.55148 10.5431 5.75878 10.5431 5.96814C10.5431 6.17751 10.5016 6.38481 10.4208 6.57799C10.3404 6.77054 10.2226 6.94525 10.0743 7.09203L7.08912 10.0818C6.79048 10.3742 6.38924 10.538 5.97126 10.538C5.55329 10.538 5.15207 10.3742 4.85343 10.0818L4.85245 10.0808C4.75166 9.9816 4.61616 9.92615 4.47518 9.92615C4.33442 9.92615 4.19914 9.98142 4.0984 10.0803L4.0979 10.0808L2.20409 11.9577C2.10536 12.0602 2.05 12.1972 2.05 12.34C2.05 12.4824 2.10502 12.6191 2.20318 12.7214L2.6523 13.1613C3.07934 13.5947 3.64218 13.8676 4.24624 13.9341C4.84858 14.0005 5.45541 13.8577 5.96531 13.5297C8.94408 11.5157 11.5117 8.95081 13.5304 5.97262C13.8579 5.46183 14.0005 4.85381 13.9342 4.25016C13.8676 3.64458 13.595 3.08054 13.1622 2.65284L13.1555 2.64623L12.723 2.20308C12.6208 2.10482 12.4848 2.05 12.3433 2.05C12.201 2.05 12.0642 2.10545 11.9618 2.2048ZM11.2255 1.45628C11.5241 1.16386 11.9253 1 12.3433 1C12.7613 1 13.1625 1.16386 13.4611 1.45628L13.4695 1.46465L13.9037 1.90943C14.5061 2.50627 14.8853 3.2922 14.9779 4.13553C15.0707 4.98047 14.8702 5.83172 14.41 6.54615L14.4033 6.55632C12.308 9.64899 9.64196 12.3123 6.54854 14.4028L6.53949 14.4088C5.82593 14.8699 4.97551 15.0708 4.13126 14.9778C3.28864 14.885 2.50365 14.505 1.90772 13.9017L1.4636 13.4668L1.45524 13.4584C1.16332 13.1594 1 12.7579 1 12.34C1 11.9221 1.16332 11.5207 1.45524 11.2216L1.46132 11.2154L3.36006 9.33375L3.36134 9.33249C3.65838 9.04012 4.05836 8.87615 4.47518 8.87615C4.89172 8.87615 5.29145 9.0399 5.58843 9.33191C5.69095 9.4321 5.82835 9.48804 5.97126 9.48804C6.11354 9.48804 6.25034 9.4326 6.35271 9.33326L9.33251 6.34888L9.33524 6.34617C9.38519 6.29687 9.42491 6.23806 9.45203 6.17315C9.47915 6.10825 9.49313 6.03856 9.49313 5.96814C9.49313 5.89773 9.47915 5.82804 9.45203 5.76313C9.42491 5.69823 9.38519 5.63942 9.33524 5.59012L9.32925 5.58421C9.03736 5.28675 8.874 4.88649 8.874 4.46976C8.874 4.05303 9.03741 3.65281 9.3293 3.35535L9.3325 3.35209L11.2255 1.45628Z" fill="currentColor"/>
4
- </svg>
5
- </template>
6
- <script setup lang="ts">
7
- </script>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.9618 2.2048L10.0775 4.09209C9.97918 4.19293 9.924 4.32845 9.924 4.46976C9.924 4.61065 9.97886 4.7458 10.0766 4.84655C10.2238 4.99285 10.3408 5.16675 10.4208 5.3583C10.5016 5.55148 10.5431 5.75878 10.5431 5.96814C10.5431 6.17751 10.5016 6.38481 10.4208 6.57799C10.3404 6.77054 10.2226 6.94525 10.0743 7.09203L7.08912 10.0818C6.79048 10.3742 6.38924 10.538 5.97126 10.538C5.55329 10.538 5.15207 10.3742 4.85343 10.0818L4.85245 10.0808C4.75166 9.9816 4.61616 9.92615 4.47518 9.92615C4.33442 9.92615 4.19914 9.98142 4.0984 10.0803L4.0979 10.0808L2.20409 11.9577C2.10536 12.0602 2.05 12.1972 2.05 12.34C2.05 12.4824 2.10502 12.6191 2.20318 12.7214L2.6523 13.1613C3.07934 13.5947 3.64218 13.8676 4.24624 13.9341C4.84858 14.0005 5.45541 13.8577 5.96531 13.5297C8.94408 11.5157 11.5117 8.95081 13.5304 5.97262C13.8579 5.46183 14.0005 4.85381 13.9342 4.25016C13.8676 3.64458 13.595 3.08054 13.1622 2.65284L13.1555 2.64623L12.723 2.20308C12.6208 2.10482 12.4848 2.05 12.3433 2.05C12.201 2.05 12.0642 2.10545 11.9618 2.2048ZM11.2255 1.45628C11.5241 1.16386 11.9253 1 12.3433 1C12.7613 1 13.1625 1.16386 13.4611 1.45628L13.4695 1.46465L13.9037 1.90943C14.5061 2.50627 14.8853 3.2922 14.9779 4.13553C15.0707 4.98047 14.8702 5.83172 14.41 6.54615L14.4033 6.55632C12.308 9.64899 9.64196 12.3123 6.54854 14.4028L6.53949 14.4088C5.82593 14.8699 4.97551 15.0708 4.13126 14.9778C3.28864 14.885 2.50365 14.505 1.90772 13.9017L1.4636 13.4668L1.45524 13.4584C1.16332 13.1594 1 12.7579 1 12.34C1 11.9221 1.16332 11.5207 1.45524 11.2216L1.46132 11.2154L3.36006 9.33375L3.36134 9.33249C3.65838 9.04012 4.05836 8.87615 4.47518 8.87615C4.89172 8.87615 5.29145 9.0399 5.58843 9.33191C5.69095 9.4321 5.82835 9.48804 5.97126 9.48804C6.11354 9.48804 6.25034 9.4326 6.35271 9.33326L9.33251 6.34888L9.33524 6.34617C9.38519 6.29687 9.42491 6.23806 9.45203 6.17315C9.47915 6.10825 9.49313 6.03856 9.49313 5.96814C9.49313 5.89773 9.47915 5.82804 9.45203 5.76313C9.42491 5.69823 9.38519 5.63942 9.33524 5.59012L9.32925 5.58421C9.03736 5.28675 8.874 4.88649 8.874 4.46976C8.874 4.05303 9.03741 3.65281 9.3293 3.35535L9.3325 3.35209L11.2255 1.45628Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+ <script setup lang="ts">
7
+ </script>
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
- <path clip-rule="evenodd"
4
- d="M7.99998 2.33337C4.87037 2.33337 2.33331 4.87043 2.33331 8.00004C2.33331 11.1297 4.87037 13.6667 7.99998 13.6667C11.1296 13.6667 13.6666 11.1297 13.6666 8.00004C13.6666 4.87043 11.1296 2.33337 7.99998 2.33337ZM1.33331 8.00004C1.33331 4.31814 4.31808 1.33337 7.99998 1.33337C11.6819 1.33337 14.6666 4.31814 14.6666 8.00004C14.6666 11.6819 11.6819 14.6667 7.99998 14.6667C4.31808 14.6667 1.33331 11.6819 1.33331 8.00004ZM7.99998 5.03341C8.27612 5.03341 8.49998 5.25726 8.49998 5.53341V7.50004H10.4666C10.7428 7.50004 10.9666 7.7239 10.9666 8.00004C10.9666 8.27618 10.7428 8.50004 10.4666 8.50004H8.49998V10.4667C8.49998 10.7429 8.27612 10.9667 7.99998 10.9667C7.72384 10.9667 7.49998 10.7429 7.49998 10.4667V8.50004H5.53332C5.25717 8.50004 5.03332 8.27618 5.03332 8.00004C5.03332 7.7239 5.25717 7.50004 5.53332 7.50004H7.49998V5.53341C7.49998 5.25726 7.72384 5.03341 7.99998 5.03341Z"
5
- fill="currentColor"
6
- fill-rule="evenodd"/>
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
+ <path clip-rule="evenodd"
4
+ d="M7.99998 2.33337C4.87037 2.33337 2.33331 4.87043 2.33331 8.00004C2.33331 11.1297 4.87037 13.6667 7.99998 13.6667C11.1296 13.6667 13.6666 11.1297 13.6666 8.00004C13.6666 4.87043 11.1296 2.33337 7.99998 2.33337ZM1.33331 8.00004C1.33331 4.31814 4.31808 1.33337 7.99998 1.33337C11.6819 1.33337 14.6666 4.31814 14.6666 8.00004C14.6666 11.6819 11.6819 14.6667 7.99998 14.6667C4.31808 14.6667 1.33331 11.6819 1.33331 8.00004ZM7.99998 5.03341C8.27612 5.03341 8.49998 5.25726 8.49998 5.53341V7.50004H10.4666C10.7428 7.50004 10.9666 7.7239 10.9666 8.00004C10.9666 8.27618 10.7428 8.50004 10.4666 8.50004H8.49998V10.4667C8.49998 10.7429 8.27612 10.9667 7.99998 10.9667C7.72384 10.9667 7.49998 10.7429 7.49998 10.4667V8.50004H5.53332C5.25717 8.50004 5.03332 8.27618 5.03332 8.00004C5.03332 7.7239 5.25717 7.50004 5.53332 7.50004H7.49998V5.53341C7.49998 5.25726 7.72384 5.03341 7.99998 5.03341Z"
5
+ fill="currentColor"
6
+ fill-rule="evenodd"/>
7
+ </svg>
8
+ </template>
@@ -1,13 +1,13 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.56247 2.56245C8.56247 2.25178 8.31062 1.99994 7.99996 1.99994C7.68929 1.99994 7.43745 2.25178 7.43745 2.56245V7.43751H2.56239C2.25172 7.43751 1.99988 7.68936 1.99988 8.00002C1.99988 8.31068 2.25172 8.56253 2.56239 8.56253H7.43745V13.4376C7.43745 13.7483 7.68929 14.0001 7.99996 14.0001C8.31062 14.0001 8.56247 13.7483 8.56247 13.4376V8.56253H13.4375C13.7482 8.56253 14 8.31068 14 8.00002C14 7.68936 13.7482 7.43751 13.4375 7.43751H8.56247V2.56245Z" fill="currentColor"/>
8
- </svg>
9
- </template>
10
-
11
- <style scoped>
12
-
13
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.56247 2.56245C8.56247 2.25178 8.31062 1.99994 7.99996 1.99994C7.68929 1.99994 7.43745 2.25178 7.43745 2.56245V7.43751H2.56239C2.25172 7.43751 1.99988 7.68936 1.99988 8.00002C1.99988 8.31068 2.25172 8.56253 2.56239 8.56253H7.43745V13.4376C7.43745 13.7483 7.68929 14.0001 7.99996 14.0001C8.31062 14.0001 8.56247 13.7483 8.56247 13.4376V8.56253H13.4375C13.7482 8.56253 14 8.31068 14 8.00002C14 7.68936 13.7482 7.43751 13.4375 7.43751H8.56247V2.56245Z" fill="currentColor"/>
8
+ </svg>
9
+ </template>
10
+
11
+ <style scoped>
12
+
13
+ </style>
package/icons/profile.vue CHANGED
@@ -1,5 +1,5 @@
1
- <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2 5.66321C2 4.77532 2.71978 4.05554 3.60767 4.05554H20.3923C21.2802 4.05554 22 4.77532 22 5.66321V18.3368C22 19.2247 21.2802 19.9444 20.3923 19.9444H3.60767C2.71978 19.9444 2 19.2247 2 18.3368V5.66321ZM3.60767 5.55554C3.54821 5.55554 3.5 5.60375 3.5 5.66321V18.3368C3.5 18.3962 3.54821 18.4444 3.60767 18.4444H20.3923C20.4518 18.4444 20.5 18.3962 20.5 18.3368V5.66321C20.5 5.60375 20.4518 5.55554 20.3923 5.55554H3.60767ZM14.3607 10.2724C14.3607 9.85819 14.6965 9.5224 15.1107 9.5224H18.1737C18.588 9.5224 18.9237 9.85819 18.9237 10.2724C18.9237 10.6866 18.588 11.0224 18.1737 11.0224H15.1107C14.6965 11.0224 14.3607 10.6866 14.3607 10.2724ZM15.1107 12.5578C14.6965 12.5578 14.3607 12.8936 14.3607 13.3078C14.3607 13.722 14.6965 14.0578 15.1107 14.0578H18.1737C18.588 14.0578 18.9237 13.722 18.9237 13.3078C18.9237 12.8936 18.588 12.5578 18.1737 12.5578H15.1107ZM9.14502 8.45419C8.1622 8.45419 7.36546 9.25093 7.36546 10.2338C7.36546 11.2166 8.1622 12.0133 9.14502 12.0133C9.39487 12.0133 9.63085 11.9623 9.84462 11.8707C10.481 11.5982 10.9246 10.9669 10.9246 10.2338C10.9246 9.25093 10.1278 8.45419 9.14502 8.45419ZM5.86546 10.2338C5.86546 8.4225 7.33377 6.95419 9.14502 6.95419C10.9563 6.95419 12.4246 8.4225 12.4246 10.2338C12.4246 11.5748 11.6198 12.7262 10.4698 13.2345C10.9213 13.3678 11.3555 13.5688 11.7606 13.8325C12.5496 14.346 13.1988 15.0777 13.6558 15.9468C13.8485 16.3135 13.7076 16.7669 13.3409 16.9597C12.9743 17.1525 12.5208 17.0115 12.3281 16.6449C11.9812 15.985 11.5005 15.453 10.9423 15.0896C10.3853 14.7271 9.76701 14.5423 9.14576 14.5423C8.52451 14.5423 7.90619 14.7271 7.3492 15.0896C6.79099 15.453 6.31038 15.985 5.96346 16.6449C5.77071 17.0115 5.31723 17.1525 4.9506 16.9597C4.58397 16.7669 4.44302 16.3135 4.63578 15.9468C5.09276 15.0777 5.74197 14.346 6.5309 13.8325C6.93566 13.569 7.36946 13.3681 7.82053 13.2349C6.66902 12.7259 5.86546 11.5737 5.86546 10.2338Z" fill="currentColor"/>
4
- </svg>
5
- </template>
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 5.66321C2 4.77532 2.71978 4.05554 3.60767 4.05554H20.3923C21.2802 4.05554 22 4.77532 22 5.66321V18.3368C22 19.2247 21.2802 19.9444 20.3923 19.9444H3.60767C2.71978 19.9444 2 19.2247 2 18.3368V5.66321ZM3.60767 5.55554C3.54821 5.55554 3.5 5.60375 3.5 5.66321V18.3368C3.5 18.3962 3.54821 18.4444 3.60767 18.4444H20.3923C20.4518 18.4444 20.5 18.3962 20.5 18.3368V5.66321C20.5 5.60375 20.4518 5.55554 20.3923 5.55554H3.60767ZM14.3607 10.2724C14.3607 9.85819 14.6965 9.5224 15.1107 9.5224H18.1737C18.588 9.5224 18.9237 9.85819 18.9237 10.2724C18.9237 10.6866 18.588 11.0224 18.1737 11.0224H15.1107C14.6965 11.0224 14.3607 10.6866 14.3607 10.2724ZM15.1107 12.5578C14.6965 12.5578 14.3607 12.8936 14.3607 13.3078C14.3607 13.722 14.6965 14.0578 15.1107 14.0578H18.1737C18.588 14.0578 18.9237 13.722 18.9237 13.3078C18.9237 12.8936 18.588 12.5578 18.1737 12.5578H15.1107ZM9.14502 8.45419C8.1622 8.45419 7.36546 9.25093 7.36546 10.2338C7.36546 11.2166 8.1622 12.0133 9.14502 12.0133C9.39487 12.0133 9.63085 11.9623 9.84462 11.8707C10.481 11.5982 10.9246 10.9669 10.9246 10.2338C10.9246 9.25093 10.1278 8.45419 9.14502 8.45419ZM5.86546 10.2338C5.86546 8.4225 7.33377 6.95419 9.14502 6.95419C10.9563 6.95419 12.4246 8.4225 12.4246 10.2338C12.4246 11.5748 11.6198 12.7262 10.4698 13.2345C10.9213 13.3678 11.3555 13.5688 11.7606 13.8325C12.5496 14.346 13.1988 15.0777 13.6558 15.9468C13.8485 16.3135 13.7076 16.7669 13.3409 16.9597C12.9743 17.1525 12.5208 17.0115 12.3281 16.6449C11.9812 15.985 11.5005 15.453 10.9423 15.0896C10.3853 14.7271 9.76701 14.5423 9.14576 14.5423C8.52451 14.5423 7.90619 14.7271 7.3492 15.0896C6.79099 15.453 6.31038 15.985 5.96346 16.6449C5.77071 17.0115 5.31723 17.1525 4.9506 16.9597C4.58397 16.7669 4.44302 16.3135 4.63578 15.9468C5.09276 15.0777 5.74197 14.346 6.5309 13.8325C6.93566 13.569 7.36946 13.3681 7.82053 13.2349C6.66902 12.7259 5.86546 11.5737 5.86546 10.2338Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg width="1.25em" height="1.25em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z" fill="currentColor" fill-opacity="0.5"/>
4
- <path d="M12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16Z" class="fill-blue-700 dark:fill-blue-500"/>
5
- </svg>
6
- </template>
7
-
8
-
1
+ <template>
2
+ <svg width="1.25em" height="1.25em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z" fill="currentColor" fill-opacity="0.5"/>
4
+ <path d="M12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16Z" class="fill-blue-700 dark:fill-blue-500"/>
5
+ </svg>
6
+ </template>
7
+
8
+
@@ -1,10 +1,10 @@
1
- <template>
2
- <svg width="1.25em" height="1.25em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z" fill="currentColor" fill-opacity="0.5"/>
4
- </svg>
5
-
6
- </template>
7
-
8
-
9
- <script setup lang="ts">
10
- </script>
1
+ <template>
2
+ <svg width="1.25em" height="1.25em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z" fill="currentColor" fill-opacity="0.5"/>
4
+ </svg>
5
+
6
+ </template>
7
+
8
+
9
+ <script setup lang="ts">
10
+ </script>
package/icons/receipt.vue CHANGED
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M4.49967 5.33301C4.49967 5.05687 4.72353 4.83301 4.99967 4.83301H8.33301C8.60915 4.83301 8.83301 5.05687 8.83301 5.33301C8.83301 5.60915 8.60915 5.83301 8.33301 5.83301H4.99967C4.72353 5.83301 4.49967 5.60915 4.49967 5.33301Z" fill="currentColor"/>
4
- <path d="M4.49967 7.61873C4.49967 7.34259 4.72353 7.11873 4.99967 7.11873H8.33301C8.60915 7.11873 8.83301 7.34259 8.83301 7.61873C8.83301 7.89488 8.60915 8.11873 8.33301 8.11873H7.16635V10.6663C7.16635 10.9425 6.94249 11.1663 6.66635 11.1663C6.3902 11.1663 6.16635 10.9425 6.16635 10.6663V8.11873H4.99967C4.72353 8.11873 4.49967 7.89488 4.49967 7.61873Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2.0352 2.0352C2.48481 1.58559 3.0946 1.33301 3.73044 1.33301H12.7433C13.2533 1.33301 13.7424 1.53562 14.1031 1.89626C14.4637 2.25691 14.6663 2.74605 14.6663 3.25608V6.5766C14.6663 6.85274 14.4425 7.0766 14.1663 7.0766H11.8202V14.1663C11.8202 14.3465 11.7233 14.5127 11.5665 14.6014C11.4098 14.6902 11.2174 14.6878 11.0629 14.5951L8.94839 13.3264L6.83385 14.5951C6.6755 14.6901 6.47769 14.6901 6.31935 14.5951L4.2048 13.3264L2.09026 14.5951C1.93579 14.6878 1.74341 14.6902 1.58666 14.6014C1.4299 14.5127 1.33301 14.3465 1.33301 14.1663V3.73044C1.33301 3.0946 1.58559 2.48481 2.0352 2.0352ZM11.8202 6.0766H13.6663V3.25608C13.6663 3.01127 13.5691 2.77648 13.396 2.60337C13.2229 2.43026 12.9881 2.33301 12.7433 2.33301C12.4984 2.33301 12.2637 2.43026 12.0905 2.60337C11.9174 2.77648 11.8202 3.01127 11.8202 3.25608V6.0766ZM11.0562 2.33301C10.9027 2.61354 10.8202 2.93056 10.8202 3.25608V13.2832L9.20564 12.3145C9.0473 12.2195 8.84949 12.2195 8.69114 12.3145L6.5766 13.5832L4.46205 12.3145C4.30371 12.2195 4.1059 12.2195 3.94755 12.3145L2.33301 13.2832V3.73044C2.33301 3.35982 2.48024 3.00438 2.74231 2.74231C3.00438 2.48024 3.35982 2.33301 3.73044 2.33301H11.0562Z" fill="currentColor"/>
6
- </svg>
7
-
8
- </template>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M4.49967 5.33301C4.49967 5.05687 4.72353 4.83301 4.99967 4.83301H8.33301C8.60915 4.83301 8.83301 5.05687 8.83301 5.33301C8.83301 5.60915 8.60915 5.83301 8.33301 5.83301H4.99967C4.72353 5.83301 4.49967 5.60915 4.49967 5.33301Z" fill="currentColor"/>
4
+ <path d="M4.49967 7.61873C4.49967 7.34259 4.72353 7.11873 4.99967 7.11873H8.33301C8.60915 7.11873 8.83301 7.34259 8.83301 7.61873C8.83301 7.89488 8.60915 8.11873 8.33301 8.11873H7.16635V10.6663C7.16635 10.9425 6.94249 11.1663 6.66635 11.1663C6.3902 11.1663 6.16635 10.9425 6.16635 10.6663V8.11873H4.99967C4.72353 8.11873 4.49967 7.89488 4.49967 7.61873Z" fill="currentColor"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.0352 2.0352C2.48481 1.58559 3.0946 1.33301 3.73044 1.33301H12.7433C13.2533 1.33301 13.7424 1.53562 14.1031 1.89626C14.4637 2.25691 14.6663 2.74605 14.6663 3.25608V6.5766C14.6663 6.85274 14.4425 7.0766 14.1663 7.0766H11.8202V14.1663C11.8202 14.3465 11.7233 14.5127 11.5665 14.6014C11.4098 14.6902 11.2174 14.6878 11.0629 14.5951L8.94839 13.3264L6.83385 14.5951C6.6755 14.6901 6.47769 14.6901 6.31935 14.5951L4.2048 13.3264L2.09026 14.5951C1.93579 14.6878 1.74341 14.6902 1.58666 14.6014C1.4299 14.5127 1.33301 14.3465 1.33301 14.1663V3.73044C1.33301 3.0946 1.58559 2.48481 2.0352 2.0352ZM11.8202 6.0766H13.6663V3.25608C13.6663 3.01127 13.5691 2.77648 13.396 2.60337C13.2229 2.43026 12.9881 2.33301 12.7433 2.33301C12.4984 2.33301 12.2637 2.43026 12.0905 2.60337C11.9174 2.77648 11.8202 3.01127 11.8202 3.25608V6.0766ZM11.0562 2.33301C10.9027 2.61354 10.8202 2.93056 10.8202 3.25608V13.2832L9.20564 12.3145C9.0473 12.2195 8.84949 12.2195 8.69114 12.3145L6.5766 13.5832L4.46205 12.3145C4.30371 12.2195 4.1059 12.2195 3.94755 12.3145L2.33301 13.2832V3.73044C2.33301 3.35982 2.48024 3.00438 2.74231 2.74231C3.00438 2.48024 3.35982 2.33301 3.73044 2.33301H11.0562Z" fill="currentColor"/>
6
+ </svg>
7
+
8
+ </template>
package/icons/robot.vue CHANGED
@@ -1,14 +1,14 @@
1
- <template>
2
- <svg
3
- width="24"
4
- height="24"
5
- viewBox="0 0 24 24"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path
10
- d="M18.75 4.5H12.75V1.5C12.75 1.30109 12.671 1.11032 12.5303 0.96967C12.3897 0.829018 12.1989 0.75 12 0.75C11.8011 0.75 11.6103 0.829018 11.4697 0.96967C11.329 1.11032 11.25 1.30109 11.25 1.5V4.5H5.25C4.45435 4.5 3.69129 4.81607 3.12868 5.37868C2.56607 5.94129 2.25 6.70435 2.25 7.5V18C2.25 18.7956 2.56607 19.5587 3.12868 20.1213C3.69129 20.6839 4.45435 21 5.25 21H18.75C19.5456 21 20.3087 20.6839 20.8713 20.1213C21.4339 19.5587 21.75 18.7956 21.75 18V7.5C21.75 6.70435 21.4339 5.94129 20.8713 5.37868C20.3087 4.81607 19.5456 4.5 18.75 4.5ZM20.25 18C20.25 18.3978 20.092 18.7794 19.8107 19.0607C19.5294 19.342 19.1478 19.5 18.75 19.5H5.25C4.85218 19.5 4.47064 19.342 4.18934 19.0607C3.90804 18.7794 3.75 18.3978 3.75 18V7.5C3.75 7.10218 3.90804 6.72064 4.18934 6.43934C4.47064 6.15804 4.85218 6 5.25 6H18.75C19.1478 6 19.5294 6.15804 19.8107 6.43934C20.092 6.72064 20.25 7.10218 20.25 7.5V18ZM15.375 12.75H8.625C7.92881 12.75 7.26113 13.0266 6.76884 13.5188C6.27656 14.0111 6 14.6788 6 15.375C6 16.0712 6.27656 16.7389 6.76884 17.2312C7.26113 17.7234 7.92881 18 8.625 18H15.375C16.0712 18 16.7389 17.7234 17.2312 17.2312C17.7234 16.7389 18 16.0712 18 15.375C18 14.6788 17.7234 14.0111 17.2312 13.5188C16.7389 13.0266 16.0712 12.75 15.375 12.75ZM12.75 14.25V16.5H11.25V14.25H12.75ZM7.5 15.375C7.5 15.0766 7.61853 14.7905 7.8295 14.5795C8.04048 14.3685 8.32663 14.25 8.625 14.25H9.75V16.5H8.625C8.32663 16.5 8.04048 16.3815 7.8295 16.1705C7.61853 15.9595 7.5 15.6734 7.5 15.375ZM15.375 16.5H14.25V14.25H15.375C15.6734 14.25 15.9595 14.3685 16.1705 14.5795C16.3815 14.7905 16.5 15.0766 16.5 15.375C16.5 15.6734 16.3815 15.9595 16.1705 16.1705C15.9595 16.3815 15.6734 16.5 15.375 16.5ZM6.75 10.125C6.75 9.9025 6.81598 9.68499 6.9396 9.49998C7.06321 9.31498 7.23891 9.17078 7.44448 9.08564C7.65005 9.00049 7.87625 8.97821 8.09448 9.02162C8.31271 9.06502 8.51316 9.17217 8.6705 9.3295C8.82783 9.48684 8.93498 9.68729 8.97838 9.90552C9.02179 10.1238 8.99951 10.35 8.91436 10.5555C8.82922 10.7611 8.68502 10.9368 8.50002 11.0604C8.31501 11.184 8.0975 11.25 7.875 11.25C7.57663 11.25 7.29048 11.1315 7.0795 10.9205C6.86853 10.7095 6.75 10.4234 6.75 10.125ZM15 10.125C15 9.9025 15.066 9.68499 15.1896 9.49998C15.3132 9.31498 15.4889 9.17078 15.6945 9.08564C15.9 9.00049 16.1262 8.97821 16.3445 9.02162C16.5627 9.06502 16.7632 9.17217 16.9205 9.3295C17.0778 9.48684 17.185 9.68729 17.2284 9.90552C17.2718 10.1238 17.2495 10.35 17.1644 10.5555C17.0792 10.7611 16.935 10.9368 16.75 11.0604C16.565 11.184 16.3475 11.25 16.125 11.25C15.8266 11.25 15.5405 11.1315 15.3295 10.9205C15.1185 10.7095 15 10.4234 15 10.125Z"
11
- fill="currentColor"
12
- />
13
- </svg>
14
- </template>
1
+ <template>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M18.75 4.5H12.75V1.5C12.75 1.30109 12.671 1.11032 12.5303 0.96967C12.3897 0.829018 12.1989 0.75 12 0.75C11.8011 0.75 11.6103 0.829018 11.4697 0.96967C11.329 1.11032 11.25 1.30109 11.25 1.5V4.5H5.25C4.45435 4.5 3.69129 4.81607 3.12868 5.37868C2.56607 5.94129 2.25 6.70435 2.25 7.5V18C2.25 18.7956 2.56607 19.5587 3.12868 20.1213C3.69129 20.6839 4.45435 21 5.25 21H18.75C19.5456 21 20.3087 20.6839 20.8713 20.1213C21.4339 19.5587 21.75 18.7956 21.75 18V7.5C21.75 6.70435 21.4339 5.94129 20.8713 5.37868C20.3087 4.81607 19.5456 4.5 18.75 4.5ZM20.25 18C20.25 18.3978 20.092 18.7794 19.8107 19.0607C19.5294 19.342 19.1478 19.5 18.75 19.5H5.25C4.85218 19.5 4.47064 19.342 4.18934 19.0607C3.90804 18.7794 3.75 18.3978 3.75 18V7.5C3.75 7.10218 3.90804 6.72064 4.18934 6.43934C4.47064 6.15804 4.85218 6 5.25 6H18.75C19.1478 6 19.5294 6.15804 19.8107 6.43934C20.092 6.72064 20.25 7.10218 20.25 7.5V18ZM15.375 12.75H8.625C7.92881 12.75 7.26113 13.0266 6.76884 13.5188C6.27656 14.0111 6 14.6788 6 15.375C6 16.0712 6.27656 16.7389 6.76884 17.2312C7.26113 17.7234 7.92881 18 8.625 18H15.375C16.0712 18 16.7389 17.7234 17.2312 17.2312C17.7234 16.7389 18 16.0712 18 15.375C18 14.6788 17.7234 14.0111 17.2312 13.5188C16.7389 13.0266 16.0712 12.75 15.375 12.75ZM12.75 14.25V16.5H11.25V14.25H12.75ZM7.5 15.375C7.5 15.0766 7.61853 14.7905 7.8295 14.5795C8.04048 14.3685 8.32663 14.25 8.625 14.25H9.75V16.5H8.625C8.32663 16.5 8.04048 16.3815 7.8295 16.1705C7.61853 15.9595 7.5 15.6734 7.5 15.375ZM15.375 16.5H14.25V14.25H15.375C15.6734 14.25 15.9595 14.3685 16.1705 14.5795C16.3815 14.7905 16.5 15.0766 16.5 15.375C16.5 15.6734 16.3815 15.9595 16.1705 16.1705C15.9595 16.3815 15.6734 16.5 15.375 16.5ZM6.75 10.125C6.75 9.9025 6.81598 9.68499 6.9396 9.49998C7.06321 9.31498 7.23891 9.17078 7.44448 9.08564C7.65005 9.00049 7.87625 8.97821 8.09448 9.02162C8.31271 9.06502 8.51316 9.17217 8.6705 9.3295C8.82783 9.48684 8.93498 9.68729 8.97838 9.90552C9.02179 10.1238 8.99951 10.35 8.91436 10.5555C8.82922 10.7611 8.68502 10.9368 8.50002 11.0604C8.31501 11.184 8.0975 11.25 7.875 11.25C7.57663 11.25 7.29048 11.1315 7.0795 10.9205C6.86853 10.7095 6.75 10.4234 6.75 10.125ZM15 10.125C15 9.9025 15.066 9.68499 15.1896 9.49998C15.3132 9.31498 15.4889 9.17078 15.6945 9.08564C15.9 9.00049 16.1262 8.97821 16.3445 9.02162C16.5627 9.06502 16.7632 9.17217 16.9205 9.3295C17.0778 9.48684 17.185 9.68729 17.2284 9.90552C17.2718 10.1238 17.2495 10.35 17.1644 10.5555C17.0792 10.7611 16.935 10.9368 16.75 11.0604C16.565 11.184 16.3475 11.25 16.125 11.25C15.8266 11.25 15.5405 11.1315 15.3295 10.9205C15.1185 10.7095 15 10.4234 15 10.125Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M0.589844 14.7188H9.01285" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M7.88976 14.7189V11.9112H1.71289V14.7189" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M8.77217 0.918553L4.74593 4.94478C4.30735 5.38338 4.30735 6.09446 4.74593 6.53305L6.52478 8.3119C6.96337 8.75048 7.67445 8.75048 8.11304 8.3119L12.1392 4.28566C12.5779 3.84707 12.5779 3.13598 12.1392 2.6974L10.3604 0.918553C9.92183 0.479969 9.21075 0.479969 8.77217 0.918553Z" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
6
- <path d="M10.1357 6.29609L15.1895 11.3498" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M0.589844 14.7188H9.01285" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M7.88976 14.7189V11.9112H1.71289V14.7189" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M8.77217 0.918553L4.74593 4.94478C4.30735 5.38338 4.30735 6.09446 4.74593 6.53305L6.52478 8.3119C6.96337 8.75048 7.67445 8.75048 8.11304 8.3119L12.1392 4.28566C12.5779 3.84707 12.5779 3.13598 12.1392 2.6974L10.3604 0.918553C9.92183 0.479969 9.21075 0.479969 8.77217 0.918553Z" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M10.1357 6.29609L15.1895 11.3498" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </svg>
8
+ </template>
@@ -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="M8.52518 1.525C8.52518 1.23505 8.29012 1 8.00018 1C7.71023 1 7.47518 1.23505 7.47518 1.525V2.37184C6.89218 2.54718 6.43237 3.007 6.25703 3.59L4.14481 3.59084V3.59C3.89864 3.59 3.72945 3.72384 3.65167 3.9284L1.68495 9.10033C1.67641 9.1217 1.66924 9.14377 1.66354 9.16642C1.65122 9.21494 1.64615 9.26395 1.64775 9.31217C1.65226 9.96037 1.91171 10.5811 2.3704 11.0397C2.83314 11.5025 3.46076 11.7625 4.11518 11.7625C4.7696 11.7625 5.39722 11.5025 5.85996 11.0397C6.31948 10.5802 6.57904 9.95812 6.58263 9.30864C6.58354 9.27411 6.58103 9.23918 6.57488 9.20432C6.56865 9.16856 6.55881 9.13405 6.54575 9.10116L4.89624 4.64L6.25705 4.64C6.4359 5.23463 6.91071 5.70111 7.5103 5.86828C7.48762 5.92698 7.47518 5.99077 7.47518 6.05747L7.47518 13.8274C7.47518 13.8696 7.48015 13.9107 7.48955 13.95H4.76269C4.47274 13.95 4.23769 14.185 4.23769 14.475C4.23769 14.7649 4.47274 15 4.76269 15H11.8852C12.1751 15 12.4102 14.7649 12.4102 14.475C12.4102 14.185 12.1751 13.95 11.8852 13.95H8.5108C8.5202 13.9107 8.52518 13.8696 8.52518 13.8274L8.52518 6.05747C8.52518 5.99077 8.51274 5.92697 8.49005 5.86828C9.08964 5.7011 9.56444 5.23463 9.74329 4.64H11.151L9.45493 9.10033C9.44639 9.1217 9.43922 9.14377 9.43352 9.16642C9.4212 9.21494 9.41613 9.26395 9.41773 9.31216C9.42224 9.96037 9.68169 10.5811 10.1404 11.0397C10.6031 11.5025 11.2307 11.7625 11.8852 11.7625C12.5396 11.7625 13.1672 11.5025 13.6299 11.0397C14.0895 10.5802 14.349 9.95811 14.3526 9.30861C14.3535 9.27402 14.351 9.23902 14.3448 9.20409C14.3386 9.16841 14.3288 9.13396 14.3157 9.10114L12.4048 3.93293C12.3289 3.72767 12.1336 3.59102 11.9148 3.59001L9.74331 3.59C9.56798 3.00701 9.10816 2.54719 8.52518 2.37184V1.525ZM5.53002 9.38175L4.13549 5.61018L2.70047 9.38388C2.72205 9.72737 2.86806 10.0525 3.11286 10.2973C3.37869 10.5631 3.73924 10.7125 4.11518 10.7125C4.49112 10.7125 4.85167 10.5631 5.1175 10.2973C5.3628 10.052 5.50891 9.72603 5.53002 9.38175ZM10.8828 10.2973C10.638 10.0525 10.492 9.72737 10.4705 9.38388L11.9055 5.61018L13.3 9.38175C13.2789 9.72603 13.1328 10.052 12.8875 10.2973C12.6216 10.5631 12.2611 10.7125 11.8852 10.7125C11.5092 10.7125 11.1487 10.5631 10.8828 10.2973ZM7.99686 3.34498L8.00018 3.34499L8.00349 3.34498C8.42628 3.34676 8.76864 3.68929 8.77016 4.11215L8.77016 4.115L8.77016 4.11783C8.76862 4.54178 8.42448 4.88497 8.00017 4.88497C7.57492 4.88497 7.23018 4.54023 7.23018 4.11497C7.23018 3.69082 7.57313 3.34677 7.99686 3.34498Z"
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="M8.52518 1.525C8.52518 1.23505 8.29012 1 8.00018 1C7.71023 1 7.47518 1.23505 7.47518 1.525V2.37184C6.89218 2.54718 6.43237 3.007 6.25703 3.59L4.14481 3.59084V3.59C3.89864 3.59 3.72945 3.72384 3.65167 3.9284L1.68495 9.10033C1.67641 9.1217 1.66924 9.14377 1.66354 9.16642C1.65122 9.21494 1.64615 9.26395 1.64775 9.31217C1.65226 9.96037 1.91171 10.5811 2.3704 11.0397C2.83314 11.5025 3.46076 11.7625 4.11518 11.7625C4.7696 11.7625 5.39722 11.5025 5.85996 11.0397C6.31948 10.5802 6.57904 9.95812 6.58263 9.30864C6.58354 9.27411 6.58103 9.23918 6.57488 9.20432C6.56865 9.16856 6.55881 9.13405 6.54575 9.10116L4.89624 4.64L6.25705 4.64C6.4359 5.23463 6.91071 5.70111 7.5103 5.86828C7.48762 5.92698 7.47518 5.99077 7.47518 6.05747L7.47518 13.8274C7.47518 13.8696 7.48015 13.9107 7.48955 13.95H4.76269C4.47274 13.95 4.23769 14.185 4.23769 14.475C4.23769 14.7649 4.47274 15 4.76269 15H11.8852C12.1751 15 12.4102 14.7649 12.4102 14.475C12.4102 14.185 12.1751 13.95 11.8852 13.95H8.5108C8.5202 13.9107 8.52518 13.8696 8.52518 13.8274L8.52518 6.05747C8.52518 5.99077 8.51274 5.92697 8.49005 5.86828C9.08964 5.7011 9.56444 5.23463 9.74329 4.64H11.151L9.45493 9.10033C9.44639 9.1217 9.43922 9.14377 9.43352 9.16642C9.4212 9.21494 9.41613 9.26395 9.41773 9.31216C9.42224 9.96037 9.68169 10.5811 10.1404 11.0397C10.6031 11.5025 11.2307 11.7625 11.8852 11.7625C12.5396 11.7625 13.1672 11.5025 13.6299 11.0397C14.0895 10.5802 14.349 9.95811 14.3526 9.30861C14.3535 9.27402 14.351 9.23902 14.3448 9.20409C14.3386 9.16841 14.3288 9.13396 14.3157 9.10114L12.4048 3.93293C12.3289 3.72767 12.1336 3.59102 11.9148 3.59001L9.74331 3.59C9.56798 3.00701 9.10816 2.54719 8.52518 2.37184V1.525ZM5.53002 9.38175L4.13549 5.61018L2.70047 9.38388C2.72205 9.72737 2.86806 10.0525 3.11286 10.2973C3.37869 10.5631 3.73924 10.7125 4.11518 10.7125C4.49112 10.7125 4.85167 10.5631 5.1175 10.2973C5.3628 10.052 5.50891 9.72603 5.53002 9.38175ZM10.8828 10.2973C10.638 10.0525 10.492 9.72737 10.4705 9.38388L11.9055 5.61018L13.3 9.38175C13.2789 9.72603 13.1328 10.052 12.8875 10.2973C12.6216 10.5631 12.2611 10.7125 11.8852 10.7125C11.5092 10.7125 11.1487 10.5631 10.8828 10.2973ZM7.99686 3.34498L8.00018 3.34499L8.00349 3.34498C8.42628 3.34676 8.76864 3.68929 8.77016 4.11215L8.77016 4.115L8.77016 4.11783C8.76862 4.54178 8.42448 4.88497 8.00017 4.88497C7.57492 4.88497 7.23018 4.54023 7.23018 4.11497C7.23018 3.69082 7.57313 3.34677 7.99686 3.34498Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.9568 1.30782C14.0768 1.57178 13.9601 1.88302 13.6961 2.003L12.6706 2.46915L14.9574 7.79283C14.9855 7.85829 15 7.92879 15 8.00004C15 8.79976 14.6823 9.56673 14.1169 10.1322C13.5514 10.6977 12.7844 11.0154 11.9847 11.0154C11.185 11.0154 10.418 10.6977 9.85249 10.1322C9.28701 9.56673 8.96932 8.79976 8.96932 8.00004C8.96932 7.92879 8.98382 7.85829 9.01194 7.79283L10.9659 3.24402L4.69028 6.09657L6.99252 11.7877C7.01783 11.8503 7.03084 11.9171 7.03084 11.9846C7.03084 12.7843 6.71315 13.5513 6.14766 14.1168C5.58217 14.6823 4.8152 15 4.01548 15C3.21576 15 2.44879 14.6823 1.8833 14.1168C1.31781 13.5513 1.00012 12.7843 1.00012 11.9846C1.00012 11.9171 1.01313 11.8503 1.03844 11.7877L3.0366 6.84824L2.73855 6.98372C2.47459 7.1037 2.16334 6.98699 2.04336 6.72303C1.92338 6.45907 2.0401 6.14783 2.30406 6.02785L7.47504 3.6774V1.52506C7.47504 1.23512 7.71009 1.00007 8.00004 1.00007C8.28998 1.00007 8.52503 1.23512 8.52503 1.52506V3.20013L13.2616 1.04712C13.5256 0.927144 13.8368 1.04386 13.9568 1.30782ZM13.3744 9.38976C13.6164 9.14776 13.7888 8.84914 13.8786 8.52503H10.0907C10.1806 8.84914 10.3529 9.14776 10.595 9.38976C10.9635 9.75834 11.4634 9.9654 11.9847 9.9654C12.5059 9.9654 13.0058 9.75834 13.3744 9.38976ZM10.2912 7.47504H13.6781L11.9847 3.53266L10.2912 7.47504ZM5.4052 13.3743C5.64721 13.1323 5.81958 12.8337 5.90943 12.5096H2.12153C2.21138 12.8337 2.38375 13.1323 2.62576 13.3743C2.99433 13.7429 3.49423 13.95 4.01548 13.95C4.53673 13.95 5.03662 13.7429 5.4052 13.3743ZM2.30382 11.4596H5.72714L4.01548 7.22838L2.30382 11.4596Z" fill="currentColor"/>
4
- </svg>
5
- </template>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.9568 1.30782C14.0768 1.57178 13.9601 1.88302 13.6961 2.003L12.6706 2.46915L14.9574 7.79283C14.9855 7.85829 15 7.92879 15 8.00004C15 8.79976 14.6823 9.56673 14.1169 10.1322C13.5514 10.6977 12.7844 11.0154 11.9847 11.0154C11.185 11.0154 10.418 10.6977 9.85249 10.1322C9.28701 9.56673 8.96932 8.79976 8.96932 8.00004C8.96932 7.92879 8.98382 7.85829 9.01194 7.79283L10.9659 3.24402L4.69028 6.09657L6.99252 11.7877C7.01783 11.8503 7.03084 11.9171 7.03084 11.9846C7.03084 12.7843 6.71315 13.5513 6.14766 14.1168C5.58217 14.6823 4.8152 15 4.01548 15C3.21576 15 2.44879 14.6823 1.8833 14.1168C1.31781 13.5513 1.00012 12.7843 1.00012 11.9846C1.00012 11.9171 1.01313 11.8503 1.03844 11.7877L3.0366 6.84824L2.73855 6.98372C2.47459 7.1037 2.16334 6.98699 2.04336 6.72303C1.92338 6.45907 2.0401 6.14783 2.30406 6.02785L7.47504 3.6774V1.52506C7.47504 1.23512 7.71009 1.00007 8.00004 1.00007C8.28998 1.00007 8.52503 1.23512 8.52503 1.52506V3.20013L13.2616 1.04712C13.5256 0.927144 13.8368 1.04386 13.9568 1.30782ZM13.3744 9.38976C13.6164 9.14776 13.7888 8.84914 13.8786 8.52503H10.0907C10.1806 8.84914 10.3529 9.14776 10.595 9.38976C10.9635 9.75834 11.4634 9.9654 11.9847 9.9654C12.5059 9.9654 13.0058 9.75834 13.3744 9.38976ZM10.2912 7.47504H13.6781L11.9847 3.53266L10.2912 7.47504ZM5.4052 13.3743C5.64721 13.1323 5.81958 12.8337 5.90943 12.5096H2.12153C2.21138 12.8337 2.38375 13.1323 2.62576 13.3743C2.99433 13.7429 3.49423 13.95 4.01548 13.95C4.53673 13.95 5.03662 13.7429 5.4052 13.3743ZM2.30382 11.4596H5.72714L4.01548 7.22838L2.30382 11.4596Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -1,15 +1,15 @@
1
- <template>
2
- <svg
3
- width="41"
4
- height="40"
5
- viewBox="0 0 41 40"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path
10
- d="M38.0779 20.7812L33.0779 8.28125C32.9679 8.00592 32.7635 7.77869 32.5013 7.64015C32.2391 7.50162 31.9362 7.46081 31.6467 7.525L21.917 9.6875V6.25C21.917 5.91848 21.7853 5.60054 21.5509 5.36612C21.3165 5.1317 20.9985 5 20.667 5C20.3355 5 20.0176 5.1317 19.7831 5.36612C19.5487 5.60054 19.417 5.91848 19.417 6.25V10.2469L9.14514 12.5297C8.94709 12.5734 8.76267 12.6647 8.60778 12.7957C8.45288 12.9266 8.33218 13.0932 8.25608 13.2812V13.2906L3.25608 25.7812C3.19626 25.9302 3.16602 26.0895 3.16702 26.25C3.16702 29.8922 7.00139 31.25 9.41702 31.25C11.8326 31.25 15.667 29.8922 15.667 26.25C15.668 26.0895 15.6378 25.9302 15.578 25.7812L11.1233 14.6516L19.417 12.8125V32.5H16.917C16.5855 32.5 16.2676 32.6317 16.0331 32.8661C15.7987 33.1005 15.667 33.4185 15.667 33.75C15.667 34.0815 15.7987 34.3995 16.0331 34.6339C16.2676 34.8683 16.5855 35 16.917 35H24.417C24.7485 35 25.0665 34.8683 25.3009 34.6339C25.5353 34.3995 25.667 34.0815 25.667 33.75C25.667 33.4185 25.5353 33.1005 25.3009 32.8661C25.0665 32.6317 24.7485 32.5 24.417 32.5H21.917V12.2531L29.8858 10.4844L25.7561 20.7812C25.6963 20.9302 25.666 21.0895 25.667 21.25C25.667 24.8922 29.5014 26.25 31.917 26.25C34.3326 26.25 38.167 24.8922 38.167 21.25C38.168 21.0895 38.1378 20.9302 38.0779 20.7812ZM9.41702 28.75C8.24045 28.75 5.86077 28.1859 5.67795 26.4625L9.41702 17.1156L13.1561 26.4625C12.9733 28.1859 10.5936 28.75 9.41702 28.75ZM31.917 23.75C30.7405 23.75 28.3608 23.1859 28.178 21.4625L31.917 12.1156L35.6561 21.4625C35.4733 23.1859 33.0936 23.75 31.917 23.75Z"
11
- fill="currentColor"
12
- />
13
- </svg>
14
- </template>
15
- <script setup lang="ts"></script>
1
+ <template>
2
+ <svg
3
+ width="41"
4
+ height="40"
5
+ viewBox="0 0 41 40"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M38.0779 20.7812L33.0779 8.28125C32.9679 8.00592 32.7635 7.77869 32.5013 7.64015C32.2391 7.50162 31.9362 7.46081 31.6467 7.525L21.917 9.6875V6.25C21.917 5.91848 21.7853 5.60054 21.5509 5.36612C21.3165 5.1317 20.9985 5 20.667 5C20.3355 5 20.0176 5.1317 19.7831 5.36612C19.5487 5.60054 19.417 5.91848 19.417 6.25V10.2469L9.14514 12.5297C8.94709 12.5734 8.76267 12.6647 8.60778 12.7957C8.45288 12.9266 8.33218 13.0932 8.25608 13.2812V13.2906L3.25608 25.7812C3.19626 25.9302 3.16602 26.0895 3.16702 26.25C3.16702 29.8922 7.00139 31.25 9.41702 31.25C11.8326 31.25 15.667 29.8922 15.667 26.25C15.668 26.0895 15.6378 25.9302 15.578 25.7812L11.1233 14.6516L19.417 12.8125V32.5H16.917C16.5855 32.5 16.2676 32.6317 16.0331 32.8661C15.7987 33.1005 15.667 33.4185 15.667 33.75C15.667 34.0815 15.7987 34.3995 16.0331 34.6339C16.2676 34.8683 16.5855 35 16.917 35H24.417C24.7485 35 25.0665 34.8683 25.3009 34.6339C25.5353 34.3995 25.667 34.0815 25.667 33.75C25.667 33.4185 25.5353 33.1005 25.3009 32.8661C25.0665 32.6317 24.7485 32.5 24.417 32.5H21.917V12.2531L29.8858 10.4844L25.7561 20.7812C25.6963 20.9302 25.666 21.0895 25.667 21.25C25.667 24.8922 29.5014 26.25 31.917 26.25C34.3326 26.25 38.167 24.8922 38.167 21.25C38.168 21.0895 38.1378 20.9302 38.0779 20.7812ZM9.41702 28.75C8.24045 28.75 5.86077 28.1859 5.67795 26.4625L9.41702 17.1156L13.1561 26.4625C12.9733 28.1859 10.5936 28.75 9.41702 28.75ZM31.917 23.75C30.7405 23.75 28.3608 23.1859 28.178 21.4625L31.917 12.1156L35.6561 21.4625C35.4733 23.1859 33.0936 23.75 31.917 23.75Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
15
+ <script setup lang="ts"></script>
package/icons/search.vue CHANGED
@@ -1,27 +1,27 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg
7
- width="16"
8
- height="16"
9
- viewBox="0 0 16 16"
10
- fill="none"
11
- xmlns="http://www.w3.org/2000/svg"
12
- >
13
- <g id="search">
14
- <path
15
- id="Vector"
16
- fill-rule="evenodd"
17
- clip-rule="evenodd"
18
- 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"
19
- fill="currentColor"
20
- />
21
- </g>
22
- </svg>
23
- </template>
24
-
25
- <style scoped>
26
-
27
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <g id="search">
14
+ <path
15
+ id="Vector"
16
+ fill-rule="evenodd"
17
+ clip-rule="evenodd"
18
+ 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"
19
+ fill="currentColor"
20
+ />
21
+ </g>
22
+ </svg>
23
+ </template>
24
+
25
+ <style scoped>
26
+
27
+ </style>
@@ -1,5 +1,5 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.5325 2.04999C11.7497 2.04999 11.1151 2.68463 11.1151 3.46748C11.1151 4.25034 11.7497 4.88497 12.5325 4.88497C13.3154 4.88497 13.95 4.25034 13.95 3.46748C13.95 2.68463 13.3154 2.04999 12.5325 2.04999ZM10.0651 3.46748C10.0651 2.10473 11.1698 1 12.5325 1C13.8953 1 15 2.10473 15 3.46748C15 4.83024 13.8953 5.93497 12.5325 5.93497C11.7559 5.93497 11.0631 5.57618 10.6108 5.01533L5.85939 7.39104C5.90882 7.58581 5.93509 7.78981 5.93509 7.99996C5.93509 8.21011 5.90882 8.41412 5.85938 8.60889L10.6108 10.9846C11.0631 10.4237 11.7559 10.0649 12.5326 10.0649C13.8953 10.0649 15 11.1697 15 12.5324C15 13.8952 13.8953 14.9999 12.5326 14.9999C11.1698 14.9999 10.0651 13.8952 10.0651 12.5324C10.0651 12.3223 10.0913 12.1183 10.1408 11.9235L5.38935 9.5478C4.93704 10.1087 4.24422 10.4674 3.46761 10.4674C2.10485 10.4674 1.00012 9.36271 1.00012 7.99996C1.00012 6.6372 2.10485 5.53247 3.46761 5.53247C4.24423 5.53247 4.93705 5.89126 5.38935 6.45213L10.1408 4.07642C10.0913 3.88164 10.0651 3.67763 10.0651 3.46748ZM3.46761 6.58247C2.68475 6.58247 2.05012 7.2171 2.05012 7.99996C2.05012 8.78282 2.68475 9.41745 3.46761 9.41745C4.25046 9.41745 4.8851 8.78282 4.8851 7.99996C4.8851 7.2171 4.25046 6.58247 3.46761 6.58247ZM12.5326 11.1149C11.7497 11.1149 11.1151 11.7496 11.1151 12.5324C11.1151 13.3153 11.7497 13.9499 12.5326 13.9499C13.3154 13.9499 13.95 13.3153 13.95 12.5324C13.95 11.7496 13.3154 11.1149 12.5326 11.1149Z" fill="currentColor"/>
4
- </svg>
5
- </template>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.5325 2.04999C11.7497 2.04999 11.1151 2.68463 11.1151 3.46748C11.1151 4.25034 11.7497 4.88497 12.5325 4.88497C13.3154 4.88497 13.95 4.25034 13.95 3.46748C13.95 2.68463 13.3154 2.04999 12.5325 2.04999ZM10.0651 3.46748C10.0651 2.10473 11.1698 1 12.5325 1C13.8953 1 15 2.10473 15 3.46748C15 4.83024 13.8953 5.93497 12.5325 5.93497C11.7559 5.93497 11.0631 5.57618 10.6108 5.01533L5.85939 7.39104C5.90882 7.58581 5.93509 7.78981 5.93509 7.99996C5.93509 8.21011 5.90882 8.41412 5.85938 8.60889L10.6108 10.9846C11.0631 10.4237 11.7559 10.0649 12.5326 10.0649C13.8953 10.0649 15 11.1697 15 12.5324C15 13.8952 13.8953 14.9999 12.5326 14.9999C11.1698 14.9999 10.0651 13.8952 10.0651 12.5324C10.0651 12.3223 10.0913 12.1183 10.1408 11.9235L5.38935 9.5478C4.93704 10.1087 4.24422 10.4674 3.46761 10.4674C2.10485 10.4674 1.00012 9.36271 1.00012 7.99996C1.00012 6.6372 2.10485 5.53247 3.46761 5.53247C4.24423 5.53247 4.93705 5.89126 5.38935 6.45213L10.1408 4.07642C10.0913 3.88164 10.0651 3.67763 10.0651 3.46748ZM3.46761 6.58247C2.68475 6.58247 2.05012 7.2171 2.05012 7.99996C2.05012 8.78282 2.68475 9.41745 3.46761 9.41745C4.25046 9.41745 4.8851 8.78282 4.8851 7.99996C4.8851 7.2171 4.25046 6.58247 3.46761 6.58247ZM12.5326 11.1149C11.7497 11.1149 11.1151 11.7496 11.1151 12.5324C11.1151 13.3153 11.7497 13.9499 12.5326 13.9499C13.3154 13.9499 13.95 13.3153 13.95 12.5324C13.95 11.7496 13.3154 11.1149 12.5326 11.1149Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -1,14 +1,14 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.6834 3.68338C10.6834 2.78132 11.4147 2.05006 12.3167 2.05006C13.2188 2.05006 13.95 2.78132 13.95 3.68338C13.95 4.58544 13.2188 5.3167 12.3167 5.3167C11.4147 5.3167 10.6834 4.58544 10.6834 3.68338ZM12.3167 1.00006C10.8348 1.00006 9.6334 2.20142 9.6334 3.68338C9.6334 4.09857 9.7277 4.49173 9.89605 4.84263L8.35139 6.00113C7.87651 5.57553 7.24908 5.3167 6.56121 5.3167C6.01003 5.3167 5.49767 5.48288 5.0715 5.76787L4.04762 4.744C4.15064 4.53224 4.20844 4.29441 4.20844 4.04309C4.20844 3.15714 3.49023 2.43893 2.60428 2.43893C1.71833 2.43893 1.00012 3.15714 1.00012 4.04309C1.00012 4.92904 1.71833 5.64725 2.60428 5.64725C2.85559 5.64725 3.0934 5.58946 3.30515 5.48645L4.32904 6.51033C4.04406 6.9365 3.87789 7.44885 3.87789 8.00002C3.87789 8.64717 4.10698 9.24081 4.48849 9.70427L3.87755 10.451C3.70493 10.3875 3.51837 10.3528 3.32372 10.3528C2.43776 10.3528 1.71956 11.071 1.71956 11.957C1.71956 12.8429 2.43776 13.5611 3.32372 13.5611C4.20967 13.5611 4.92787 12.8429 4.92787 11.957C4.92787 11.6486 4.84087 11.3605 4.69006 11.116L5.30085 10.3695C5.67662 10.5698 6.10566 10.6833 6.56121 10.6833C7.18625 10.6833 7.76138 10.4696 8.21751 10.1113L9.25724 11.0025C9.03866 11.3909 8.91397 11.8392 8.91397 12.3167C8.91397 13.7986 10.1153 15 11.5973 15C13.0792 15 14.2806 13.7986 14.2806 12.3167C14.2806 10.8347 13.0792 9.63336 11.5973 9.63336C10.9722 9.63336 10.397 9.84712 9.94081 10.2055L8.90115 9.31433C9.1198 8.92589 9.24452 8.47752 9.24452 8.00002C9.24452 7.58482 9.15023 7.19165 8.98188 6.84075L10.5265 5.68226C11.0014 6.10786 11.6288 6.3667 12.3167 6.3667C13.7987 6.3667 15 5.16534 15 3.68338C15 2.20142 13.7987 1.00006 12.3167 1.00006ZM6.56121 6.36669C5.65915 6.36669 4.92788 7.09796 4.92788 8.00002C4.92788 8.90208 5.65915 9.63334 6.56121 9.63334C7.46327 9.63334 8.19453 8.90208 8.19453 8.00002C8.19453 7.09796 7.46327 6.36669 6.56121 6.36669ZM11.5973 10.6833C10.6952 10.6833 9.96396 11.4146 9.96396 12.3167C9.96396 13.2187 10.6952 13.95 11.5973 13.95C12.4993 13.95 13.2306 13.2187 13.2306 12.3167C13.2306 11.4146 12.4993 10.6833 11.5973 10.6833ZM2.60428 3.48893C2.29822 3.48893 2.05012 3.73703 2.05012 4.04309C2.05012 4.34915 2.29822 4.59725 2.60428 4.59725C2.91034 4.59725 3.15844 4.34915 3.15844 4.04309C3.15844 3.73703 2.91034 3.48893 2.60428 3.48893ZM2.76955 11.957C2.76955 12.263 3.01766 12.5111 3.32372 12.5111C3.62977 12.5111 3.87788 12.263 3.87788 11.957C3.87788 11.6509 3.62977 11.4028 3.32372 11.4028C3.01766 11.4028 2.76955 11.6509 2.76955 11.957Z" fill="currentColor"/>
8
- </svg>
9
-
10
- </template>
11
-
12
- <style scoped>
13
-
14
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.6834 3.68338C10.6834 2.78132 11.4147 2.05006 12.3167 2.05006C13.2188 2.05006 13.95 2.78132 13.95 3.68338C13.95 4.58544 13.2188 5.3167 12.3167 5.3167C11.4147 5.3167 10.6834 4.58544 10.6834 3.68338ZM12.3167 1.00006C10.8348 1.00006 9.6334 2.20142 9.6334 3.68338C9.6334 4.09857 9.7277 4.49173 9.89605 4.84263L8.35139 6.00113C7.87651 5.57553 7.24908 5.3167 6.56121 5.3167C6.01003 5.3167 5.49767 5.48288 5.0715 5.76787L4.04762 4.744C4.15064 4.53224 4.20844 4.29441 4.20844 4.04309C4.20844 3.15714 3.49023 2.43893 2.60428 2.43893C1.71833 2.43893 1.00012 3.15714 1.00012 4.04309C1.00012 4.92904 1.71833 5.64725 2.60428 5.64725C2.85559 5.64725 3.0934 5.58946 3.30515 5.48645L4.32904 6.51033C4.04406 6.9365 3.87789 7.44885 3.87789 8.00002C3.87789 8.64717 4.10698 9.24081 4.48849 9.70427L3.87755 10.451C3.70493 10.3875 3.51837 10.3528 3.32372 10.3528C2.43776 10.3528 1.71956 11.071 1.71956 11.957C1.71956 12.8429 2.43776 13.5611 3.32372 13.5611C4.20967 13.5611 4.92787 12.8429 4.92787 11.957C4.92787 11.6486 4.84087 11.3605 4.69006 11.116L5.30085 10.3695C5.67662 10.5698 6.10566 10.6833 6.56121 10.6833C7.18625 10.6833 7.76138 10.4696 8.21751 10.1113L9.25724 11.0025C9.03866 11.3909 8.91397 11.8392 8.91397 12.3167C8.91397 13.7986 10.1153 15 11.5973 15C13.0792 15 14.2806 13.7986 14.2806 12.3167C14.2806 10.8347 13.0792 9.63336 11.5973 9.63336C10.9722 9.63336 10.397 9.84712 9.94081 10.2055L8.90115 9.31433C9.1198 8.92589 9.24452 8.47752 9.24452 8.00002C9.24452 7.58482 9.15023 7.19165 8.98188 6.84075L10.5265 5.68226C11.0014 6.10786 11.6288 6.3667 12.3167 6.3667C13.7987 6.3667 15 5.16534 15 3.68338C15 2.20142 13.7987 1.00006 12.3167 1.00006ZM6.56121 6.36669C5.65915 6.36669 4.92788 7.09796 4.92788 8.00002C4.92788 8.90208 5.65915 9.63334 6.56121 9.63334C7.46327 9.63334 8.19453 8.90208 8.19453 8.00002C8.19453 7.09796 7.46327 6.36669 6.56121 6.36669ZM11.5973 10.6833C10.6952 10.6833 9.96396 11.4146 9.96396 12.3167C9.96396 13.2187 10.6952 13.95 11.5973 13.95C12.4993 13.95 13.2306 13.2187 13.2306 12.3167C13.2306 11.4146 12.4993 10.6833 11.5973 10.6833ZM2.60428 3.48893C2.29822 3.48893 2.05012 3.73703 2.05012 4.04309C2.05012 4.34915 2.29822 4.59725 2.60428 4.59725C2.91034 4.59725 3.15844 4.34915 3.15844 4.04309C3.15844 3.73703 2.91034 3.48893 2.60428 3.48893ZM2.76955 11.957C2.76955 12.263 3.01766 12.5111 3.32372 12.5111C3.62977 12.5111 3.87788 12.263 3.87788 11.957C3.87788 11.6509 3.62977 11.4028 3.32372 11.4028C3.01766 11.4028 2.76955 11.6509 2.76955 11.957Z" fill="currentColor"/>
8
+ </svg>
9
+
10
+ </template>
11
+
12
+ <style scoped>
13
+
14
+ </style>