adata-ui 2.1.0 → 2.1.2

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 (307) hide show
  1. package/.editorconfig +12 -12
  2. package/.nuxtrc +1 -1
  3. package/.playground/app.config.ts +5 -5
  4. package/README.md +75 -75
  5. package/app.config.ts +4 -3
  6. package/app.vue +1 -0
  7. package/assets/styles/index.scss +104 -0
  8. package/assets/styles/modules/_base.scss +5 -0
  9. package/assets/styles/modules/_typography.scss +152 -0
  10. package/components/elements/README.md +1 -1
  11. package/components/elements/accordion/AAccordion.vue +13 -12
  12. package/components/elements/curve-block/ACurveBlock.vue +94 -19
  13. package/components/elements/feature-description/AFeatureDescription.vue +4 -4
  14. package/components/elements/illustrations/noAccess.vue +11 -2
  15. package/components/elements/photos-animation/APhotosAnimation.vue +3 -1
  16. package/components/elements/select/ASelect.vue +65 -9
  17. package/components/features/lang-switcher/lang-switcher.vue +8 -1
  18. package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -0
  19. package/components/features/payment/banner/PaymentBanner.vue +108 -0
  20. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +158 -0
  21. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -0
  22. package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -0
  23. package/components/features/payment/process/PaymentProcess.vue +138 -0
  24. package/components/features/payment/process/PaymentTopUpSidePanel.vue +130 -0
  25. package/components/features/pk-mobile-services/APkMobileServices.vue +21 -2
  26. package/components/forms/README.md +1 -1
  27. package/components/forms/checkbox/ACheckbox.vue +0 -2
  28. package/components/forms/radio-button/ARadioButton.vue +21 -13
  29. package/components/forms/request-demo/ARequestDemo.vue +21 -7
  30. package/components/modals/AConfirmationEmail.vue +40 -0
  31. package/components/modals/AnotherDeviceModal.vue +3 -2
  32. package/components/modals/ConnectingTariffModal.vue +0 -1
  33. package/components/modals/ContentNavigationModal.vue +148 -75
  34. package/components/modals/Insufficient-funds-modal.vue +5 -2
  35. package/components/modals/LimitReachedModal.vue +4 -3
  36. package/components/modals/ReportBugModal.vue +3 -3
  37. package/components/modals/Resend.vue +82 -0
  38. package/components/modals/SubmitApplicationModal.vue +4 -0
  39. package/components/modals/id/AuthModal.vue +78 -0
  40. package/components/modals/id/IdAutoLogoutModal.vue +45 -0
  41. package/components/modals/id/IdBanner.vue +58 -0
  42. package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -0
  43. package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -0
  44. package/components/modals/id/IdLoginModal.vue +316 -0
  45. package/components/modals/id/IdModals.vue +114 -0
  46. package/components/modals/id/IdNewPasswordModal.vue +129 -0
  47. package/components/modals/id/IdOtpInput.vue +155 -0
  48. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -0
  49. package/components/modals/id/IdRecoveryModal.vue +117 -0
  50. package/components/modals/id/IdRegistrationModal.vue +215 -0
  51. package/components/modals/id/IdResetPasswordOtpModal.vue +158 -0
  52. package/components/modals/id/IdTwoFactorModal.vue +130 -0
  53. package/components/navigation/README.md +1 -1
  54. package/components/navigation/bottom-navigation/ABottomNavigation.vue +34 -29
  55. package/components/navigation/footer/AFooter.vue +210 -57
  56. package/components/navigation/footer/ui/{new-footer-accordion.vue → a-footer-accordion.vue} +2 -4
  57. package/components/navigation/header/AHeader.vue +59 -51
  58. package/components/navigation/header/AlmatyContacts.vue +16 -14
  59. package/components/navigation/header/AstanaContacts.vue +13 -11
  60. package/components/navigation/header/CardGallery.vue +5 -4
  61. package/components/navigation/header/HeaderLink.vue +16 -8
  62. package/components/navigation/header/NavList.vue +21 -5
  63. package/components/navigation/header/ProductMenu.vue +8 -78
  64. package/components/navigation/header/ProfileMenu.vue +10 -5
  65. package/components/navigation/header/TopHeader.vue +2 -2
  66. package/components/navigation/mobile-navigation/AMobileNavigation.vue +3 -3
  67. package/components/navigation/pill-tabs/APillTabs.vue +18 -4
  68. package/components/navigation/pill-tabs/types.ts +1 -0
  69. package/components/navigation/side-navigation/ASideNavigation.vue +23 -21
  70. package/components/overlays/README.md +1 -1
  71. package/components/overlays/side-panel/ASidePanel.vue +439 -0
  72. package/components/overlays/tooltip/ATooltip.vue +149 -154
  73. package/components/utils/removeTrailingSlash.ts +7 -0
  74. package/composables/useBuyTariffs.ts +91 -0
  75. package/composables/useHeaderNavigationLinks.ts +174 -297
  76. package/composables/useIdModals.ts +36 -0
  77. package/composables/usePayment.ts +74 -0
  78. package/composables/useUrls.ts +21 -0
  79. package/eslint.config.mjs +45 -0
  80. package/icons/adata-logo.vue +1 -1
  81. package/icons/ai-assistant.vue +13 -0
  82. package/icons/akimat.vue +20 -0
  83. package/icons/arrow/arrow-bottom-left-on-square.vue +1 -1
  84. package/icons/arrow/arrow-circle-reset.vue +1 -1
  85. package/icons/arrow/arrow-corner.vue +1 -1
  86. package/icons/arrow/arrow-graph-down.vue +1 -1
  87. package/icons/arrow/arrow-graph-up.vue +1 -1
  88. package/icons/arrow/arrow-square-down.vue +1 -1
  89. package/icons/arrow/arrow-top-right-on-square.vue +1 -1
  90. package/icons/arrow-currency-gray.vue +1 -1
  91. package/icons/arrow-currency-green.vue +1 -1
  92. package/icons/arrow-currency-red.vue +1 -1
  93. package/icons/avatar.vue +1 -1
  94. package/icons/bank.vue +5 -0
  95. package/icons/block.vue +1 -1
  96. package/icons/bookmark/bookmark-filled.vue +1 -1
  97. package/icons/bookmark/bookmark.vue +1 -1
  98. package/icons/browsers/browser-duck.vue +1 -1
  99. package/icons/browsers/browser-google.vue +7 -1
  100. package/icons/browsers/browser-yandex.vue +1 -1
  101. package/icons/building-vector.vue +1 -1
  102. package/icons/calculator.vue +1 -1
  103. package/icons/calendar.vue +1 -1
  104. package/icons/car.vue +1 -1
  105. package/icons/chart-bar.vue +5 -0
  106. package/icons/chart-pie.vue +16 -0
  107. package/icons/check/check-circle.vue +1 -1
  108. package/icons/check/check.vue +1 -1
  109. package/icons/check/checkmark-circle.vue +1 -1
  110. package/icons/check-sb.vue +7 -0
  111. package/icons/checkbox/checkbox-active.vue +1 -1
  112. package/icons/checkbox/checkbox-empty.vue +1 -1
  113. package/icons/checkbox/checkbox-intermediate.vue +1 -1
  114. package/icons/chevron/chevron-down.vue +1 -1
  115. package/icons/chevron/chevron-left.vue +1 -1
  116. package/icons/chevron/chevron-right.vue +1 -1
  117. package/icons/chevron/chevron-up.vue +1 -1
  118. package/icons/chevron/double-chevron-right.vue +1 -1
  119. package/icons/clipboard-text.vue +1 -1
  120. package/icons/clock.vue +1 -1
  121. package/icons/company/company-bazis.vue +3 -3
  122. package/icons/company/company-bereke.vue +13 -13
  123. package/icons/company/company-bigroup.vue +5 -5
  124. package/icons/company/company-erg.vue +6 -6
  125. package/icons/company/company-forte.vue +11 -11
  126. package/icons/company/company-halyk.vue +4 -4
  127. package/icons/company/company-jusan.vue +20 -3
  128. package/icons/company/company-kaspi.vue +3 -3
  129. package/icons/company/company-mycar.vue +2 -2
  130. package/icons/company/company-samruk.vue +9 -9
  131. package/icons/company-egov-small.vue +1 -1
  132. package/icons/company.vue +1 -1
  133. package/icons/copy.vue +1 -1
  134. package/icons/currency/currency-dollar.vue +1 -1
  135. package/icons/currency/currency-down.vue +1 -1
  136. package/icons/currency/currency-eur.vue +1 -1
  137. package/icons/currency/currency-rub.vue +1 -1
  138. package/icons/currency/currency-tenge.vue +9 -0
  139. package/icons/currency/currency-usd.vue +1 -1
  140. package/icons/currency/currency-yuan.vue +1 -1
  141. package/icons/delete.vue +1 -1
  142. package/icons/document.vue +1 -1
  143. package/icons/download.vue +1 -1
  144. package/icons/edit.vue +1 -1
  145. package/icons/education.vue +1 -1
  146. package/icons/egov-small.vue +1 -1
  147. package/icons/excel-icon.vue +14 -0
  148. package/icons/expand-window.vue +1 -1
  149. package/icons/eye-closed.vue +1 -1
  150. package/icons/eye-open.vue +1 -1
  151. package/icons/eye-opened.vue +1 -1
  152. package/icons/file/file.vue +1 -1
  153. package/icons/filter.vue +1 -1
  154. package/icons/flag.vue +1 -1
  155. package/icons/gift.vue +1 -1
  156. package/icons/globe.vue +1 -1
  157. package/icons/google.vue +41 -0
  158. package/icons/hand/hand-thumb-up-filled.vue +1 -1
  159. package/icons/hand/hand-thumb-up.vue +1 -1
  160. package/icons/hand-with-phone/hand-with-phone-dark.vue +1 -1
  161. package/icons/hand-with-phone/hand-with-phone-light.vue +1 -1
  162. package/icons/handshake.vue +1 -1
  163. package/icons/hcheck.vue +1 -1
  164. package/icons/hdocument.vue +1 -1
  165. package/icons/history.vue +1 -1
  166. package/icons/horizontal-more.vue +1 -1
  167. package/icons/hot-line.vue +6 -0
  168. package/icons/hummer.vue +1 -1
  169. package/icons/info/info-circle.vue +1 -1
  170. package/icons/invoice.vue +1 -1
  171. package/icons/kaspi-qr.vue +13 -0
  172. package/icons/link-chain.vue +1 -1
  173. package/icons/link.vue +1 -1
  174. package/icons/linkedin.vue +24 -24
  175. package/icons/loader-circle.vue +1 -1
  176. package/icons/location.vue +1 -1
  177. package/icons/lock.vue +1 -1
  178. package/icons/logo.vue +1 -1
  179. package/icons/logout.vue +1 -1
  180. package/icons/magnify/magnifying-glass-minus.vue +1 -1
  181. package/icons/magnify/magnifying-glass-plus.vue +1 -1
  182. package/icons/magnify/magnifying-glass.vue +1 -1
  183. package/icons/mail.vue +1 -1
  184. package/icons/mailru.vue +34 -0
  185. package/icons/main-filter.vue +1 -1
  186. package/icons/map/map-pin-filled.vue +1 -1
  187. package/icons/map/map-pin-rect.vue +1 -1
  188. package/icons/map/map-pin.vue +1 -1
  189. package/icons/map-marker-start.vue +1 -1
  190. package/icons/medal.vue +1 -1
  191. package/icons/menu-filled.vue +1 -1
  192. package/icons/menu.vue +1 -1
  193. package/icons/message/message.vue +1 -1
  194. package/icons/minus/minus-circle.vue +1 -1
  195. package/icons/money.vue +1 -1
  196. package/icons/monitoring.vue +1 -1
  197. package/icons/moon.vue +1 -1
  198. package/icons/more.vue +1 -1
  199. package/icons/notification.vue +1 -1
  200. package/icons/paperclip.vue +1 -1
  201. package/icons/payment/payment-card.vue +1 -1
  202. package/icons/payment/payment-kaspi.vue +1 -1
  203. package/icons/person-vector.vue +1 -1
  204. package/icons/person-with-briefcase.vue +1 -1
  205. package/icons/phone-filled.vue +1 -1
  206. package/icons/phone.vue +1 -1
  207. package/icons/plus/plus-circle.vue +1 -1
  208. package/icons/plus/plus.vue +1 -1
  209. package/icons/profile.vue +1 -1
  210. package/icons/radio/radio-check.vue +1 -1
  211. package/icons/radio/radio-empty.vue +1 -1
  212. package/icons/receipt.vue +1 -1
  213. package/icons/sanctions.vue +8 -0
  214. package/icons/scales/scale.vue +1 -1
  215. package/icons/scales/scales.vue +1 -1
  216. package/icons/scales/standing-scales.vue +1 -1
  217. package/icons/search.vue +1 -1
  218. package/icons/share/share-alt.vue +1 -1
  219. package/icons/share/share.vue +1 -1
  220. package/icons/socials/face-book.vue +1 -1
  221. package/icons/socials/instagram.vue +1 -1
  222. package/icons/socials/telegram.vue +1 -1
  223. package/icons/socials/tik-tok.vue +1 -1
  224. package/icons/socials/youtube.vue +1 -1
  225. package/icons/sort/sort-asc.vue +1 -1
  226. package/icons/sort/sort-desc.vue +1 -1
  227. package/icons/splitting-arrows.vue +1 -1
  228. package/icons/star/star-filled.vue +1 -1
  229. package/icons/star/star-half-filled.vue +1 -1
  230. package/icons/star/star.vue +1 -1
  231. package/icons/sun.vue +14 -14
  232. package/icons/sviazi.vue +1 -1
  233. package/icons/tag.vue +1 -1
  234. package/icons/tasks.vue +10 -0
  235. package/icons/tender-search.vue +1 -1
  236. package/icons/toasts/check-circle-toast.vue +1 -1
  237. package/icons/toasts/warning-triangle-toast.vue +1 -1
  238. package/icons/trash.vue +1 -1
  239. package/icons/triangle.vue +1 -1
  240. package/icons/truck.vue +1 -1
  241. package/icons/user.vue +1 -1
  242. package/icons/users-focus.vue +1 -1
  243. package/icons/users.vue +1 -1
  244. package/icons/warning/warning-circle.vue +1 -1
  245. package/icons/warning/warning-triangle-filled.vue +1 -1
  246. package/icons/warning/warning-triangle.vue +1 -1
  247. package/icons/whatsapp.vue +1 -1
  248. package/icons/work-bag.vue +1 -1
  249. package/icons/work-case.vue +9 -0
  250. package/icons/work-search.vue +1 -1
  251. package/icons/work.vue +1 -1
  252. package/icons/x-mark.vue +1 -1
  253. package/icons/yandex.vue +28 -0
  254. package/illustrations/address-location.vue +1 -1
  255. package/illustrations/ball-with-chain.vue +1 -1
  256. package/illustrations/bill.vue +1 -1
  257. package/illustrations/buildings.vue +1 -1
  258. package/illustrations/calendar.vue +1 -1
  259. package/illustrations/chains.vue +1 -1
  260. package/illustrations/coin-percent.vue +1 -1
  261. package/illustrations/coins-stack.vue +1 -1
  262. package/illustrations/delete-dark.vue +1 -1
  263. package/illustrations/delete.vue +1 -1
  264. package/illustrations/doc-with-stamp.vue +1 -1
  265. package/illustrations/document.vue +1 -1
  266. package/illustrations/door.vue +1 -1
  267. package/illustrations/empty-box.vue +1 -1
  268. package/illustrations/empty-wallet.vue +1 -1
  269. package/illustrations/graph-in-coin.vue +1 -1
  270. package/illustrations/hammer.vue +1 -1
  271. package/illustrations/hand-cash.vue +1 -1
  272. package/illustrations/info.vue +1 -1
  273. package/illustrations/mail.vue +1 -1
  274. package/illustrations/ok.vue +1 -1
  275. package/illustrations/people-group.vue +1 -1
  276. package/illustrations/person-with-phone.vue +1 -1
  277. package/illustrations/person.vue +1 -1
  278. package/illustrations/phone-check.vue +1 -1
  279. package/illustrations/phone-payment-method.vue +1 -1
  280. package/illustrations/stop-hand.vue +1 -1
  281. package/illustrations/stop-sign.vue +1 -1
  282. package/illustrations/suit.vue +1 -1
  283. package/illustrations/suitcase.vue +1 -1
  284. package/illustrations/terminal-dark.vue +1 -1
  285. package/illustrations/terminal.vue +1 -1
  286. package/illustrations/trash-can.vue +1 -1
  287. package/illustrations/turn-on-tariff.vue +1 -1
  288. package/illustrations/two-persons.vue +1 -1
  289. package/lang/en.ts +475 -270
  290. package/lang/kk.ts +476 -271
  291. package/lang/ru.ts +315 -107
  292. package/layouts/default.vue +13 -13
  293. package/nuxt.config.ts +42 -14
  294. package/package.json +69 -53
  295. package/public/kaspi/logo.svg +4 -0
  296. package/shared/constans/pages.ts +17 -2
  297. package/tailwind.config.ts +163 -0
  298. package/vitest.config.ts +14 -0
  299. package/.eslintrc.cjs +0 -4
  300. package/.playground/app.vue +0 -9
  301. package/.playground/pages/index.vue +0 -13
  302. package/.prettierignore +0 -24
  303. package/.prettierrc +0 -10
  304. package/assets/styles/index.css +0 -226
  305. package/components/modals/AuthModal.vue +0 -50
  306. package/components/navigation/footer/NewFooter.vue +0 -276
  307. package/components/navigation/footer/ui/footer-acccordion.vue +0 -119
@@ -0,0 +1,36 @@
1
+ export function useIdModals() {
2
+ const loginModal = useState('login-modal', () => false)
3
+ const twoFactorModal = useState('two-factor-modal', () => false)
4
+
5
+ const registrationModal = useState('registration-modal', () => false)
6
+ const confirmAccountOtpModal = useState('confirm-account-otp-modal', () => false)
7
+ const confirmSuccessfulModal = useState('confirm-successful-modal', () => false)
8
+
9
+ const recoveryModal = useState('recovery-modal', () => false)
10
+ const resetPasswordOtpModal = useState('reset-password-otp-modal', () => false)
11
+ const newPasswordModal = useState('new-password-modal', () => false)
12
+ const passwordSuccessfulModal = useState('password-successful-modal', () => false)
13
+
14
+ const autoLogoutModal = useState('auto-logout-modal', () => false)
15
+
16
+ const intermediateState = useState('id-intermediate-state', () => ({
17
+ email: '',
18
+ password: '',
19
+ otp: '',
20
+ token: '',
21
+ }))
22
+
23
+ return {
24
+ loginModal,
25
+ twoFactorModal,
26
+ registrationModal,
27
+ confirmAccountOtpModal,
28
+ recoveryModal,
29
+ resetPasswordOtpModal,
30
+ newPasswordModal,
31
+ passwordSuccessfulModal,
32
+ confirmSuccessfulModal,
33
+ autoLogoutModal,
34
+ intermediateState,
35
+ }
36
+ }
@@ -0,0 +1,74 @@
1
+ import { removeTrailingSlash } from '#adata-ui/components/utils/removeTrailingSlash'
2
+
3
+ export function usePayment() {
4
+ const topUpSidePanel = useState('top-up-side-panel', () => false)
5
+ const methodSidePanel = useState('method-side-panel', () => false)
6
+ const kaspiQRSidePanel = useState('kaspi-qr-side-panel', () => false)
7
+ const kaspiRedirectSidePanel = useState('kaspi-redirect-side-panel', () => false)
8
+ const rateId = useState<string>('use-rate-id')
9
+
10
+ async function payByCard(sum: number, rate?: any) {
11
+ const { $toast, $i18n } = useNuxtApp()
12
+ const { myLayer, commonAuth } = useAppConfig()
13
+ const accessToken = useCookie('accessToken')
14
+
15
+ const t = $i18n.t
16
+
17
+ const publicId = myLayer.cloudPayments
18
+ const userApiURL = commonAuth.userApiURL
19
+
20
+ try {
21
+ const { data } = await $fetch(`${removeTrailingSlash(userApiURL)}/top_ups`, {
22
+ method: 'POST',
23
+ headers: {
24
+ Authorization: `Bearer ${accessToken.value}`,
25
+ },
26
+ params: {
27
+ amount: sum,
28
+ },
29
+ })
30
+
31
+ if (data) {
32
+ const { amount, id, user_id } = data
33
+ const widget = new tiptop.Widget()
34
+
35
+ widget.pay(
36
+ 'charge',
37
+ {
38
+ publicId,
39
+ description: t('payment.bank.description'),
40
+ amount: Number.parseInt(amount),
41
+ currency: 'KZT',
42
+ invoiceId: id.toString(),
43
+ accountId: user_id.toString(),
44
+ skin: 'modern',
45
+ data: {
46
+ myProp: 'myProp value',
47
+ rate,
48
+ },
49
+ },
50
+ {
51
+ onSuccess() {
52
+ $toast.success(t('payment.bank.paySuccess'))
53
+ },
54
+ onFail() {
55
+ $toast.error(t('payment.bank.payError'))
56
+ },
57
+ },
58
+ )
59
+ }
60
+ }
61
+ catch (error) {
62
+ throw new Error(error.data.message)
63
+ }
64
+ }
65
+
66
+ return {
67
+ rateId,
68
+ topUpSidePanel,
69
+ methodSidePanel,
70
+ kaspiQRSidePanel,
71
+ kaspiRedirectSidePanel,
72
+ payByCard,
73
+ }
74
+ }
@@ -0,0 +1,21 @@
1
+ export function useUrls() {
2
+ const { myLayer } = useAppConfig()
3
+ const mode = myLayer.mode
4
+
5
+ return {
6
+ landing: `https://${mode}.kz`,
7
+ pk: `https://pk.${mode}.kz`,
8
+ login: `https://id.${mode}.kz`,
9
+ work: `https://work.${mode}.kz`,
10
+ tender: `https://tender.${mode}.kz`,
11
+ zakupki: `https://zakupki.${mode}.kz`,
12
+ avto: `https://avto.${mode}.kz`,
13
+ analytics: `https://analytics.${mode}.kz`,
14
+ analyticsNew: `https://analytics-new.${mode}.kz`,
15
+ tnved: `https://tnved.${mode}.kz`,
16
+ edo: `https://edo.${mode}.kz`,
17
+ compliance: `https://ac.${mode}.kz/compliance`,
18
+ compliancemain: `https://ac.${mode}.kz/main`,
19
+ mode,
20
+ }
21
+ }
@@ -0,0 +1,45 @@
1
+ import antfu from '@antfu/eslint-config'
2
+ import tailwind from 'eslint-plugin-tailwindcss'
3
+ import withNuxt from './.nuxt/eslint.config.mjs'
4
+
5
+ export default withNuxt(
6
+ ...tailwind.configs['flat/recommended'],
7
+ await antfu({
8
+ javascript: {
9
+ overrides: {
10
+ 'no-console': ['off'],
11
+ 'unused-imports/no-unused-vars': ['warn'],
12
+ },
13
+ },
14
+ typescript: {
15
+ overrides: {
16
+ 'node/prefer-global/process': ['off'],
17
+ },
18
+ },
19
+ stylistic: {
20
+ overrides: {
21
+ 'antfu/if-newline': ['off'],
22
+ },
23
+ },
24
+ vue: {
25
+ overrides: {
26
+ 'vue/component-name-in-template-casing': ['error', 'kebab-case', {
27
+ registeredComponentsOnly: false,
28
+ ignores: ['Line', 'Bar', 'Doughnut'],
29
+ }],
30
+ 'vue/max-attributes-per-line': ['warn', {
31
+ singleline: {
32
+ max: 2,
33
+ },
34
+ multiline: {
35
+ max: 1,
36
+ },
37
+ }],
38
+ 'vue/no-dupe-keys': ['error'],
39
+ 'vue/no-multiple-template-root': ['off'],
40
+ 'tailwindcss/no-custom-classname': ['off'],
41
+ 'tailwindcss/enforces-negative-arbitrary-values': ['warn'],
42
+ },
43
+ },
44
+ }),
45
+ )
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="92" height="26" viewBox="0 0 92 26" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="92" height="26" viewBox="0 0 92 26" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <g clip-path="url(#clip0_867_102988)">
4
4
  <path d="M12.7943 8.26123H12.7098C12.6736 8.71061 12.5849 9.15419 12.4454 9.58289L10.7944 14.7331H14.6771L13.0478 9.63489C12.9159 9.18701 12.831 8.72666 12.7943 8.26123Z" fill="currentColor"/>
5
5
  <path d="M23.4 0H2.6C1.91044 0 1.24912 0.273926 0.761524 0.761521C0.273929 1.24912 0 1.91044 0 2.6V23.4C0 24.0896 0.273929 24.7509 0.761524 25.2385C1.24912 25.7261 1.91044 26 2.6 26H23.4C24.0896 26 24.7509 25.7261 25.2385 25.2385C25.7261 24.7509 26 24.0896 26 23.4V2.6C26 1.91044 25.7261 1.24912 25.2385 0.761521C24.7509 0.273926 24.0896 0 23.4 0ZM16.5382 20.7242L15.4548 17.3485H10.0598L8.99167 20.7242H5.29317L10.816 5.55751H14.8677L20.2627 20.7242H16.5382Z" fill="currentColor"/>
@@ -0,0 +1,13 @@
1
+ <template>
2
+ <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M14.4911 9.66964V1.09821C14.4911 0.80235 14.2512 0.5625 13.9554 0.5625H1.09821C0.814054 0.5625 0.5625 0.81405 0.5625 1.09821V9.66964C0.5625 9.95379 0.814054 10.2054 1.09821 10.2054H13.9554C14.2395 10.2054 14.4911 9.95379 14.4911 9.66964Z" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M6.45619 10.2056L5.38477 12.8842" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M8.59863 10.2056L9.67006 12.8842" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M4.3125 12.8841H10.7411" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M4.90918 6.53174C5.41954 7.05081 6.32095 7.52663 7.52687 7.52663C8.7328 7.52663 9.6342 7.05081 10.1446 6.53174" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M5.65188 3.77691C5.50382 3.77691 5.38379 3.65688 5.38379 3.50882C5.38379 3.36075 5.50382 3.24072 5.65188 3.24072" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M5.65137 3.77688C5.79943 3.77688 5.91946 3.65685 5.91946 3.50879C5.91946 3.36072 5.79943 3.24069 5.65137 3.24069" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M9.40165 3.77644C9.25371 3.77644 9.13379 3.65651 9.13379 3.50858C9.13379 3.36065 9.25371 3.24072 9.40165 3.24072" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <path d="M9.40137 3.77641C9.54931 3.77641 9.66922 3.65648 9.66922 3.50855C9.66922 3.36062 9.54931 3.24069 9.40137 3.24069" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
12
+ </svg>
13
+ </template>
@@ -0,0 +1,20 @@
1
+
2
+ <template>
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clip-path="url(#clip0_287_13679)">
5
+ <path d="M19.6002 10.0712H4.40303C3.68304 10.0712 3.37447 9.28688 3.94018 8.91402L11.5387 3.9383C11.679 3.85577 11.8388 3.81226 12.0016 3.81226C12.1644 3.81226 12.3242 3.85577 12.4645 3.9383L20.063 8.91402C20.6288 9.28688 20.3202 10.0712 19.6002 10.0712Z" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M19.7139 17.1428H4.28537C3.93033 17.1428 3.64252 17.4306 3.64252 17.7856V19.7142C3.64252 20.0692 3.93033 20.357 4.28537 20.357H19.7139C20.0689 20.357 20.3568 20.0692 20.3568 19.7142V17.7856C20.3568 17.4306 20.0689 17.1428 19.7139 17.1428Z" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M5.57111 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M9.8551 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M14.1442 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M18.4282 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
11
+ </g>
12
+ <defs>
13
+ <clipPath id="clip0_287_13679">
14
+ <rect width="18" height="18" fill="white" transform="translate(3.00134 3)"/>
15
+ </clipPath>
16
+ </defs>
17
+ </svg>
18
+ </template>
19
+ <script setup lang="ts">
20
+ </script>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M2.52113 2.05C2.39617 2.05 2.27633 2.09964 2.18797 2.188C2.09961 2.27636 2.04997 2.3962 2.04997 2.52116V7.00386C2.04997 7.29381 1.81492 7.52886 1.52497 7.52886C1.23502 7.52886 0.999969 7.29381 0.999969 7.00386V2.52116C0.999969 2.11772 1.16023 1.73081 1.44551 1.44554C1.73078 1.16026 2.11769 1 2.52113 1H13.4789C13.8823 1 14.2692 1.16026 14.5545 1.44554C14.8397 1.73081 15 2.11772 15 2.52116V13.4789C15 13.8823 14.8397 14.2692 14.5545 14.5545C14.2692 14.8398 13.8823 15 13.4789 15H8.99615C8.7062 15 8.47115 14.765 8.47115 14.475C8.47115 14.1851 8.7062 13.95 8.99615 13.95H13.4789C13.6038 13.95 13.7236 13.9004 13.812 13.812C13.9004 13.7237 13.95 13.6038 13.95 13.4789V2.52116C13.95 2.3962 13.9004 2.27636 13.812 2.188C13.7236 2.09964 13.6038 2.05 13.4789 2.05H2.52113ZM1.52497 10.4635C1.81492 10.4635 2.04997 10.6985 2.04997 10.9885V13.2076L7.62876 7.62879C7.83378 7.42376 8.1662 7.42376 8.37122 7.62879C8.57625 7.83381 8.57625 8.16623 8.37122 8.37125L2.79244 13.95H5.01152C5.30147 13.95 5.53652 14.1851 5.53652 14.475C5.53652 14.765 5.30147 15 5.01152 15H1.52665C1.52121 15.0001 1.51577 15 1.51032 14.9998C1.38089 14.9962 1.25253 14.9451 1.15374 14.8463C1.10309 14.7956 1.06495 14.7372 1.03933 14.6748C1.01396 14.6132 0.999969 14.5458 0.999969 14.475V10.9885C0.999969 10.6985 1.23502 10.4635 1.52497 10.4635Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -4,7 +4,7 @@
4
4
  height="16"
5
5
  viewBox="0 0 17 16"
6
6
  width="17"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  clip-rule="evenodd"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="https://www.w3.org/2000/svg">
2
+ <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
3
  <path clip-rule="evenodd" d="M9.69349 13.2928C9.49265 13.4936 9.49265 13.8192 9.69349 14.0201C9.89433 14.2209 10.22 14.2209 10.4208 14.0201L13.8494 10.5915C13.9498 10.4911 14 10.3595 14 10.2278C14 10.1581 13.9861 10.0916 13.961 10.031C13.9359 9.97032 13.8987 9.91349 13.8494 9.86418L10.4208 6.43561C10.22 6.23477 9.89433 6.23477 9.69349 6.43561C9.49265 6.63645 9.49265 6.96208 9.69349 7.16292L12.2441 9.71355H5.25714C4.66609 9.71355 4.09924 9.47875 3.6813 9.06082C3.26337 8.64288 3.02857 8.07603 3.02857 7.48498V2.34363C3.02857 2.0596 2.79832 1.82935 2.51429 1.82935C2.23025 1.82935 2 2.0596 2 2.34363V7.48498C2 8.34883 2.34316 9.17729 2.95399 9.78813C3.56483 10.399 4.3933 10.7421 5.25714 10.7421H12.2441L9.69349 13.2928Z"
4
4
  fill="currentColor"
5
5
  fill-rule="evenodd"/>
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <path fill-rule="evenodd" clip-rule="evenodd" d="M1.89695 4.15353C1.69232 3.94938 1.35991 3.94874 1.15449 4.1521C0.949065 4.35546 0.948424 4.68581 1.15305 4.88995L4.789 8.5173L4.79274 8.52096C4.98384 8.70783 5.24118 8.81285 5.50962 8.81285C5.77805 8.81285 6.03541 8.70785 6.22651 8.52098L8.49808 6.25481L13.211 10.9565H10.4904C10.2004 10.9565 9.96539 11.1901 9.96539 11.4783C9.96539 11.7664 10.2004 12 10.4904 12H14.475C14.765 12 15 11.7664 15 11.4783V7.5031C15 7.21495 14.765 6.98136 14.475 6.98136C14.1851 6.98136 13.95 7.21495 13.95 7.5031V10.2152L9.2187 5.49512L9.21495 5.49146C9.02386 5.30459 8.76651 5.19957 8.49808 5.19957C8.22964 5.19957 7.97228 5.30458 7.78118 5.49144L5.50962 7.75762L1.89695 4.15353Z" fill="currentColor"/>
8
8
  </svg>
9
9
  </template>
@@ -3,7 +3,7 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
7
  <path fill-rule="evenodd" clip-rule="evenodd" d="M15 8.4969C15 8.78505 14.765 9.01864 14.475 9.01864C14.1851 9.01864 13.95 8.78505 13.95 8.4969V5.78476L9.2187 10.5049L9.21495 10.5085C9.02386 10.6954 8.76651 10.8004 8.49808 10.8004C8.22964 10.8004 7.97228 10.6954 7.78118 10.5086L5.50962 8.24238L1.89695 11.8465C1.69232 12.0506 1.35991 12.0513 1.15449 11.8479C0.949065 11.6445 0.948424 11.3142 1.15305 11.11L4.789 7.4827L4.79274 7.47904C4.98384 7.29217 5.24118 7.18715 5.50962 7.18715C5.77805 7.18715 6.03541 7.29215 6.22651 7.47902L8.49808 9.74519L13.211 5.04348H10.4904C10.2004 5.04348 9.96539 4.80989 9.96539 4.52174C9.96539 4.23359 10.2004 4 10.4904 4H14.475C14.765 4 15 4.23359 15 4.52174V8.4969Z" fill="currentColor"/>
8
8
  </svg>
9
9
 
@@ -4,7 +4,7 @@
4
4
  height="40"
5
5
  viewBox="0 0 41 40"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  d="M33.167 5H8.16699C7.50395 5 6.86807 5.26339 6.39923 5.73223C5.93038 6.20107 5.66699 6.83696 5.66699 7.5V32.5C5.66699 33.163 5.93038 33.7989 6.39923 34.2678C6.86807 34.7366 7.50395 35 8.16699 35H33.167C33.83 35 34.4659 34.7366 34.9348 34.2678C35.4036 33.7989 35.667 33.163 35.667 32.5V7.5C35.667 6.83696 35.4036 6.20107 34.9348 5.73223C34.4659 5.26339 33.83 5 33.167 5ZM33.167 7.5V23.75H28.6826C28.3545 23.7492 28.0294 23.8135 27.7263 23.9393C27.4232 24.0651 27.1481 24.2498 26.917 24.4828L23.8998 27.5H17.4342L14.417 24.4828C14.1857 24.2497 13.9103 24.0648 13.607 23.939C13.3036 23.8132 12.9782 23.749 12.6498 23.75H8.16699V7.5H33.167ZM33.167 32.5H8.16699V26.25H12.6498L15.667 29.2672C15.8983 29.5003 16.1736 29.6852 16.477 29.811C16.7804 29.9368 17.1058 30.001 17.4342 30H23.8998C24.2282 30.001 24.5536 29.9368 24.857 29.811C25.1603 29.6852 25.4357 29.5003 25.667 29.2672L28.6842 26.25H33.167V32.5ZM14.7826 19.6344C14.5481 19.3998 14.4163 19.0817 14.4163 18.75C14.4163 18.4183 14.5481 18.1002 14.7826 17.8656C15.0172 17.6311 15.3353 17.4993 15.667 17.4993C15.9987 17.4993 16.3168 17.6311 16.5514 17.8656L19.417 20.7328V11.25C19.417 10.9185 19.5487 10.6005 19.7831 10.3661C20.0175 10.1317 20.3355 10 20.667 10C20.9985 10 21.3165 10.1317 21.5509 10.3661C21.7853 10.6005 21.917 10.9185 21.917 11.25V20.7328L24.7826 17.8656C24.8988 17.7495 25.0366 17.6574 25.1884 17.5945C25.3401 17.5317 25.5027 17.4993 25.667 17.4993C25.8312 17.4993 25.9939 17.5317 26.1456 17.5945C26.2974 17.6574 26.4352 17.7495 26.5514 17.8656C26.6675 17.9818 26.7596 18.1196 26.8225 18.2714C26.8853 18.4231 26.9177 18.5858 26.9177 18.75C26.9177 18.9142 26.8853 19.0769 26.8225 19.2286C26.7596 19.3804 26.6675 19.5182 26.5514 19.6344L21.5514 24.6344C21.4353 24.7506 21.2974 24.8428 21.1457 24.9057C20.9939 24.9686 20.8313 25.001 20.667 25.001C20.5027 25.001 20.3401 24.9686 20.1883 24.9057C20.0366 24.8428 19.8987 24.7506 19.7826 24.6344L14.7826 19.6344Z"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M2.52111 2.05C2.39615 2.05 2.27631 2.09964 2.18796 2.188C2.0996 2.27636 2.04996 2.3962 2.04996 2.52116V13.4789C2.04996 13.6038 2.0996 13.7237 2.18796 13.812C2.27632 13.9004 2.39615 13.95 2.52111 13.95H13.4788C13.6038 13.95 13.7236 13.9004 13.812 13.812C13.9003 13.7237 13.95 13.6038 13.95 13.4789V8.99617C13.95 8.70622 14.185 8.47117 14.475 8.47117C14.7649 8.47117 15 8.70622 15 8.99617V13.4789C15 13.8823 14.8397 14.2692 14.5544 14.5545C14.2692 14.8398 13.8823 15 13.4788 15H2.52111C2.11768 15 1.73076 14.8398 1.44549 14.5545C1.16022 14.2692 0.999954 13.8823 0.999954 13.4789V2.52116C0.999954 2.11772 1.16022 1.73081 1.44549 1.44554C1.73076 1.16026 2.11768 1 2.52111 1H7.00381C7.29377 1 7.52882 1.23505 7.52882 1.525C7.52882 1.81495 7.29377 2.05 7.00381 2.05H2.52111ZM10.4635 1.525C10.4635 1.23505 10.6985 1 10.9885 1H14.475C14.6141 1 14.7406 1.0541 14.8345 1.14241C14.8426 1.14999 14.8504 1.15781 14.858 1.16588C14.9013 1.21199 14.9347 1.26402 14.9582 1.31925C14.9851 1.38244 15 1.45198 15 1.525V5.01155C15 5.3015 14.765 5.53655 14.475 5.53655C14.1851 5.53655 13.95 5.3015 13.95 5.01155V2.79246L8.37122 8.37125C8.16619 8.57627 7.83378 8.57627 7.62875 8.37125C7.42373 8.16622 7.42373 7.83381 7.62875 7.62878L13.2075 2.05H10.9885C10.6985 2.05 10.4635 1.81495 10.4635 1.525Z" fill="currentColor"/>
4
4
  </svg>
5
5
 
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path d="M5.83494 6.75C6.79719 5.08333 9.20281 5.08333 10.1651 6.75C11.1273 8.41667 9.9245 10.5 8 10.5C6.0755 10.5 4.87269 8.41667 5.83494 6.75Z" fill="#9DA3AC"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path d="M8 4L12.3301 11.5H3.66987L8 4Z" fill="#4CAF50"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path d="M8 12L12.3301 4.5H3.66987L8 12Z" fill="#E74135"/>
4
4
  </svg>
5
5
  </template>
package/icons/avatar.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <mask id="mask0_5312_309" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="25" height="24">
4
4
  <circle cx="12.3333" cy="12" r="12" class="fill-white dark:fill-[#26282B]"/>
5
5
  </mask>
package/icons/bank.vue ADDED
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="19" height="18" viewBox="0 0 19 18" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M2.35449 7.31252H4.04199V11.8125H2.91699C2.76781 11.8125 2.62473 11.8718 2.51924 11.9773C2.41376 12.0828 2.35449 12.2258 2.35449 12.375C2.35449 12.5242 2.41376 12.6673 2.51924 12.7728C2.62473 12.8783 2.76781 12.9375 2.91699 12.9375H16.417C16.5662 12.9375 16.7093 12.8783 16.8147 12.7728C16.9202 12.6673 16.9795 12.5242 16.9795 12.375C16.9795 12.2258 16.9202 12.0828 16.8147 11.9773C16.7093 11.8718 16.5662 11.8125 16.417 11.8125H15.292V7.31252H16.9795C17.1019 7.31239 17.2209 7.27236 17.3185 7.19848C17.416 7.1246 17.4869 7.02091 17.5202 6.90315C17.5535 6.78538 17.5475 6.65996 17.5031 6.54591C17.4587 6.43186 17.3783 6.33541 17.2741 6.27119L9.9616 1.77119C9.87299 1.71671 9.77101 1.68787 9.66699 1.68787C9.56297 1.68787 9.46099 1.71671 9.37238 1.77119L2.05988 6.27119C1.9557 6.33541 1.87531 6.43186 1.8309 6.54591C1.78649 6.65996 1.78049 6.78538 1.8138 6.90315C1.84712 7.02091 1.91794 7.1246 2.01552 7.19848C2.11309 7.27236 2.2321 7.31239 2.35449 7.31252ZM5.16699 7.31252H7.41699V11.8125H5.16699V7.31252ZM10.792 7.31252V11.8125H8.54199V7.31252H10.792ZM14.167 11.8125H11.917V7.31252H14.167V11.8125ZM9.66699 2.91025L14.9925 6.18752H4.34152L9.66699 2.91025ZM18.1045 14.625C18.1045 14.7742 18.0452 14.9173 17.9397 15.0228C17.8343 15.1283 17.6912 15.1875 17.542 15.1875H1.79199C1.64281 15.1875 1.49973 15.1283 1.39424 15.0228C1.28876 14.9173 1.22949 14.7742 1.22949 14.625C1.22949 14.4758 1.28876 14.3328 1.39424 14.2273C1.49973 14.1218 1.64281 14.0625 1.79199 14.0625H17.542C17.6912 14.0625 17.8343 14.1218 17.9397 14.2273C18.0452 14.3328 18.1045 14.4758 18.1045 14.625Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
package/icons/block.vue CHANGED
@@ -4,7 +4,7 @@
4
4
  height="17"
5
5
  viewBox="0 0 16 17"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  fill-rule="evenodd"
@@ -2,7 +2,7 @@
2
2
  </script>
3
3
 
4
4
  <template>
5
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
5
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
6
6
  <path fill-rule="evenodd" clip-rule="evenodd" d="M3.13397 1.58033C3.4938 1.2105 3.98494 1 4.5002 1H11.5002C12.0155 1 12.5066 1.2105 12.8664 1.58033C13.2258 1.94967 13.4252 2.44761 13.4252 2.96389V14.475C13.4252 14.6729 13.3139 14.854 13.1374 14.9434C12.9609 15.0328 12.7491 15.0153 12.5895 14.8982L8.00021 11.5291L3.41088 14.8982C3.25136 15.0153 3.03955 15.0328 2.86301 14.9434C2.68647 14.854 2.5752 14.6729 2.5752 14.475V2.96389C2.5752 2.44761 2.77461 1.94967 3.13397 1.58033Z" fill="url(#paint0_linear_2287_15013)"/>
7
7
  <defs>
8
8
  <linearGradient id="paint0_linear_2287_15013" x1="8.40342" y1="-9.61211" x2="-3.2293" y2="-3.63487" gradientUnits="userSpaceOnUse">
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M4.49999 2.05C4.27263 2.05 4.05159 2.14269 3.88632 2.31255C3.72057 2.48291 3.62498 2.71694 3.62498 2.96389V13.4383L7.68931 10.4546C7.8742 10.3189 8.12579 10.3189 8.31068 10.4546L12.375 13.4383V2.96389C12.375 2.71694 12.2794 2.48291 12.1137 2.31255C11.9484 2.14269 11.7274 2.05 11.5 2.05H4.49999ZM3.13375 1.58033C3.49358 1.2105 3.98473 1 4.49999 1H11.5C12.0153 1 12.5064 1.2105 12.8662 1.58033C13.2256 1.94967 13.425 2.44761 13.425 2.96389V14.475C13.425 14.6729 13.3137 14.854 13.1372 14.9434C12.9607 15.0328 12.7488 15.0153 12.5893 14.8982L7.99999 11.5291L3.41067 14.8982C3.25115 15.0153 3.03934 15.0328 2.86279 14.9434C2.68625 14.854 2.57498 14.6729 2.57498 14.475V2.96389C2.57498 2.44761 2.7744 1.94967 3.13375 1.58033Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -1,7 +1,7 @@
1
1
  <script lang="ts" setup></script>
2
2
 
3
3
  <template>
4
- <svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="https://www.w3.org/2000/svg">
4
+ <svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
5
5
  <g clip-path="url(#clip0_984_69696)">
6
6
  <path
7
7
  d="M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z"
@@ -1,7 +1,13 @@
1
1
  <script lang="ts" setup></script>
2
2
 
3
3
  <template>
4
- <svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="https://www.w3.org/2000/svg">
4
+ <svg
5
+ fill="none"
6
+ height="24"
7
+ viewBox="0 0 24 24"
8
+ width="24"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ >
5
11
  <path
6
12
  d="M22.501 12.2331C22.501 11.3698 22.4296 10.7398 22.2748 10.0864H12.2153V13.983H18.12C18.001 14.9514 17.3582 16.4097 15.9296 17.3897L15.9096 17.5202L19.0902 19.9349L19.3106 19.9564C21.3343 18.1247 22.501 15.4297 22.501 12.2331Z"
7
13
  fill="#4285F4"
@@ -1,7 +1,7 @@
1
1
  <script lang="ts" setup></script>
2
2
 
3
3
  <template>
4
- <svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="https://www.w3.org/2000/svg">
4
+ <svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
5
5
  <circle cx="12" cy="12" fill="#FC3F1D" r="10.5" />
6
6
  <path
7
7
  d="M15.75 18.75H13.3928V7.07599H12.3409C10.4125 7.07599 9.39954 8.04685 9.39954 9.48449C9.39954 11.1158 10.1008 11.8736 11.5421 12.845L12.7304 13.6415L9.30193 18.75H6.75L9.82786 14.1853C8.05534 12.9224 7.06177 11.6988 7.06177 9.62055C7.06177 7.0174 8.87361 5.25 12.3215 5.25H15.75V18.75Z"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path d="M4 31.3516C3.72386 31.3516 3.5 31.5754 3.5 31.8516C3.5 32.1277 3.72386 32.3516 4 32.3516L4 31.3516ZM36 32.3516C36.2761 32.3516 36.5 32.1277 36.5 31.8516C36.5 31.5754 36.2761 31.3516 36 31.3516V32.3516ZM15.5557 8.14795V7.64795C15.2795 7.64795 15.0557 7.87181 15.0557 8.14795H15.5557ZM27.4075 8.14795H27.9075C27.9075 7.87181 27.6837 7.64795 27.4075 7.64795V8.14795ZM6.66699 15.5552V15.0552C6.39085 15.0552 6.16699 15.279 6.16699 15.5552H6.66699ZM33.3332 24.4443H33.8332C33.8332 24.1682 33.6093 23.9443 33.3332 23.9443V24.4443ZM4 32.3516L36 32.3516V31.3516L4 31.3516L4 32.3516ZM18.5186 14.5737H24.4445V13.5737H18.5186V14.5737ZM18.5186 11.6108H24.4445V10.6108H18.5186V11.6108ZM18.5186 17.5366H24.4445V16.5366H18.5186V17.5366ZM18.5186 20.5H24.4445V19.5H18.5186V20.5ZM18.5186 26.4258H24.4445V25.4258H18.5186V26.4258ZM18.5186 29.3887H24.4445V28.3887H18.5186V29.3887ZM18.5186 23.4629H24.4445V22.4629H18.5186V23.4629ZM16.0557 31.8517V8.14795H15.0557V31.8517H16.0557ZM15.5557 8.64795H27.4075V7.64795H15.5557V8.64795ZM26.9075 8.14795V31.8517H27.9075V8.14795H26.9075ZM7.16699 31.8515V15.5552H6.16699V31.8515H7.16699ZM6.66699 16.0552H15.5559V15.0552H6.66699V16.0552ZM9.12988 21.4829V22.9687H10.1299V21.4829H9.12988ZM9.12988 18.5181V20.0039H10.1299V18.5181H9.12988ZM9.12988 24.4443V25.9302H10.1299V24.4443H9.12988ZM12.0771 21.4829V22.9687H13.0771V21.4829H12.0771ZM12.0771 18.5181V20.0039H13.0771V18.5181H12.0771ZM12.0771 27.4072V28.893H13.0771V27.4072H12.0771ZM9.12988 27.4072V28.893H10.1299V27.4072H9.12988ZM12.0771 24.4443V25.9302H13.0771V24.4443H12.0771ZM33.8332 31.8517V24.4443H32.8332V31.8517H33.8332ZM33.3332 23.9443H27.4072V24.9443H33.3332V23.9443ZM29.8701 25.9258V27.4073H30.8701V25.9258H29.8701ZM29.8701 28.8887V30.3701H30.8701V28.8887H29.8701Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
4
  d="M3.77338 2.33301C3.53535 2.33301 3.33398 2.52924 3.33398 2.78173V6.0766H12.6673V2.78173C12.6673 2.52924 12.466 2.33301 12.2279 2.33301H3.77338ZM2.33398 2.78173V6.5766V13.2176C2.33398 14.0131 2.97378 14.6663 3.77338 14.6663H12.2279C13.0275 14.6663 13.6673 14.0131 13.6673 13.2176V6.5766V2.78173C13.6673 1.98629 13.0275 1.33301 12.2279 1.33301H3.77338C2.97378 1.33301 2.33398 1.98629 2.33398 2.78173ZM12.6673 13.2176V7.0766H3.33398V13.2176C3.33398 13.4701 3.53535 13.6663 3.77338 13.6663H12.2279C12.466 13.6663 12.6673 13.4701 12.6673 13.2176ZM11.3365 11.5599C11.3365 11.9742 11.0008 12.3099 10.5865 12.3099C10.1723 12.3099 9.83655 11.9742 9.83655 11.5599C9.83655 11.1457 10.1723 10.8099 10.5865 10.8099C11.0008 10.8099 11.3365 11.1457 11.3365 11.5599ZM10.5865 9.93557C11.0008 9.93557 11.3365 9.59978 11.3365 9.18557C11.3365 8.77135 11.0008 8.43557 10.5865 8.43557C10.1723 8.43557 9.83655 8.77135 9.83655 9.18557C9.83655 9.59978 10.1723 9.93557 10.5865 9.93557ZM8.75065 11.5599C8.75065 11.9742 8.41487 12.3099 8.00065 12.3099C7.58644 12.3099 7.25065 11.9742 7.25065 11.5599C7.25065 11.1457 7.58644 10.8099 8.00065 10.8099C8.41487 10.8099 8.75065 11.1457 8.75065 11.5599ZM8.00065 9.93557C8.41487 9.93557 8.75065 9.59978 8.75065 9.18557C8.75065 8.77135 8.41487 8.43557 8.00065 8.43557C7.58644 8.43557 7.25065 8.77135 7.25065 9.18557C7.25065 9.59978 7.58644 9.93557 8.00065 9.93557ZM6.16475 11.5599C6.16475 11.9742 5.82897 12.3099 5.41475 12.3099C5.00054 12.3099 4.66475 11.9742 4.66475 11.5599C4.66475 11.1457 5.00054 10.8099 5.41475 10.8099C5.82897 10.8099 6.16475 11.1457 6.16475 11.5599ZM5.41475 9.93557C5.82897 9.93557 6.16475 9.59978 6.16475 9.18557C6.16475 8.77135 5.82897 8.43557 5.41475 8.43557C5.00054 8.43557 4.66475 8.77135 4.66475 9.18557C4.66475 9.59978 5.00054 9.93557 5.41475 9.93557ZM9.87944 3.7048C9.60329 3.7048 9.37944 3.92866 9.37944 4.2048C9.37944 4.48095 9.60329 4.7048 9.87944 4.7048H10.8188C11.095 4.7048 11.3188 4.48095 11.3188 4.2048C11.3188 3.92866 11.095 3.7048 10.8188 3.7048H9.87944Z"
5
5
  fill="currentColor"/>
@@ -8,7 +8,7 @@
8
8
  height="16"
9
9
  viewBox="0 0 16 16"
10
10
  fill="none"
11
- xmlns="https://www.w3.org/2000/svg"
11
+ xmlns="http://www.w3.org/2000/svg"
12
12
  >
13
13
  <path
14
14
  fill-rule="evenodd"
package/icons/car.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 42 33" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 42 33" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M40.25 13.25H38.3937L33.6191 2.50781C33.403 2.0218 33.0506 1.60887 32.6046 1.31906C32.1586 1.02926 31.6381 0.875006 31.1063 0.875H10.8937C10.3619 0.875006 9.8414 1.02926 9.3954 1.31906C8.9494 1.60887 8.59702 2.0218 8.38094 2.50781L3.60625 13.25H1.75C1.38533 13.25 1.03559 13.3949 0.777728 13.6527C0.519866 13.9106 0.375 14.2603 0.375 14.625C0.375 14.9897 0.519866 15.3394 0.777728 15.5973C1.03559 15.8551 1.38533 16 1.75 16H3.125V29.75C3.125 30.4793 3.41473 31.1788 3.93046 31.6945C4.44618 32.2103 5.14565 32.5 5.875 32.5H10C10.7293 32.5 11.4288 32.2103 11.9445 31.6945C12.4603 31.1788 12.75 30.4793 12.75 29.75V27H29.25V29.75C29.25 30.4793 29.5397 31.1788 30.0555 31.6945C30.5712 32.2103 31.2707 32.5 32 32.5H36.125C36.8543 32.5 37.5538 32.2103 38.0695 31.6945C38.5853 31.1788 38.875 30.4793 38.875 29.75V16H40.25C40.6147 16 40.9644 15.8551 41.2223 15.5973C41.4801 15.3394 41.625 14.9897 41.625 14.625C41.625 14.2603 41.4801 13.9106 41.2223 13.6527C40.9644 13.3949 40.6147 13.25 40.25 13.25ZM10.8937 3.625H31.1063L35.3842 13.25H6.61578L10.8937 3.625ZM10 29.75H5.875V27H10V29.75ZM32 29.75V27H36.125V29.75H32ZM36.125 24.25H5.875V16H36.125V24.25ZM8.625 20.125C8.625 19.7603 8.76987 19.4106 9.02773 19.1527C9.28559 18.8949 9.63533 18.75 10 18.75H12.75C13.1147 18.75 13.4644 18.8949 13.7223 19.1527C13.9801 19.4106 14.125 19.7603 14.125 20.125C14.125 20.4897 13.9801 20.8394 13.7223 21.0973C13.4644 21.3551 13.1147 21.5 12.75 21.5H10C9.63533 21.5 9.28559 21.3551 9.02773 21.0973C8.76987 20.8394 8.625 20.4897 8.625 20.125ZM27.875 20.125C27.875 19.7603 28.0199 19.4106 28.2777 19.1527C28.5356 18.8949 28.8853 18.75 29.25 18.75H32C32.3647 18.75 32.7144 18.8949 32.9723 19.1527C33.2301 19.4106 33.375 19.7603 33.375 20.125C33.375 20.4897 33.2301 20.8394 32.9723 21.0973C32.7144 21.3551 32.3647 21.5 32 21.5H29.25C28.8853 21.5 28.5356 21.3551 28.2777 21.0973C28.0199 20.8394 27.875 20.4897 27.875 20.125Z"
5
5
  fill="currentColor"/>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="19" height="18" viewBox="0 0 19 18" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M16.417 14.0625H15.8545V2.8125C15.8545 2.66332 15.7952 2.52024 15.6897 2.41475C15.5843 2.30926 15.4412 2.25 15.292 2.25H11.3545C11.2053 2.25 11.0622 2.30926 10.9567 2.41475C10.8513 2.52024 10.792 2.66332 10.792 2.8125V5.625H7.41699C7.26781 5.625 7.12473 5.68426 7.01924 5.78975C6.91376 5.89524 6.85449 6.03832 6.85449 6.1875V9H4.04199C3.89281 9 3.74973 9.05926 3.64424 9.16475C3.53876 9.27024 3.47949 9.41332 3.47949 9.5625V14.0625H2.91699C2.76781 14.0625 2.62473 14.1218 2.51924 14.2273C2.41376 14.3327 2.35449 14.4758 2.35449 14.625C2.35449 14.7742 2.41376 14.9173 2.51924 15.0227C2.62473 15.1282 2.76781 15.1875 2.91699 15.1875H16.417C16.5662 15.1875 16.7093 15.1282 16.8147 15.0227C16.9202 14.9173 16.9795 14.7742 16.9795 14.625C16.9795 14.4758 16.9202 14.3327 16.8147 14.2273C16.7093 14.1218 16.5662 14.0625 16.417 14.0625ZM11.917 3.375H14.7295V14.0625H11.917V3.375ZM7.97949 6.75H10.792V14.0625H7.97949V6.75ZM4.60449 10.125H6.85449V14.0625H4.60449V10.125Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <mask id="path-1-inside-1_16139_4935" fill="white">
4
+ <path d="M11.5689 2.7041C9.95675 2.7041 8.36808 3.09007 6.93567 3.82973C5.50326 4.56938 4.26876 5.64124 3.33539 6.95565C2.40202 8.27007 1.79691 9.78886 1.57065 11.385C1.3444 12.9812 1.50358 14.6083 2.03488 16.1303C2.56618 17.6524 3.45416 19.0251 4.62458 20.1337C5.79499 21.2423 7.21382 22.0546 8.76241 22.5026C10.311 22.9506 11.9444 23.0214 13.5259 22.709C15.1074 22.3965 16.5912 21.71 17.8531 20.7067L11.5689 12.8023V2.7041Z"/>
5
+ </mask>
6
+ <path d="M11.5689 2.7041C9.95675 2.7041 8.36808 3.09007 6.93567 3.82973C5.50326 4.56938 4.26876 5.64124 3.33539 6.95565C2.40202 8.27007 1.79691 9.78886 1.57065 11.385C1.3444 12.9812 1.50358 14.6083 2.03488 16.1303C2.56618 17.6524 3.45416 19.0251 4.62458 20.1337C5.79499 21.2423 7.21382 22.0546 8.76241 22.5026C10.311 22.9506 11.9444 23.0214 13.5259 22.709C15.1074 22.3965 16.5912 21.71 17.8531 20.7067L11.5689 12.8023V2.7041Z" stroke="currentColor" stroke-width="2.44898" mask="url(#path-1-inside-1_16139_4935)"/>
7
+ <mask id="path-2-inside-2_16139_4935" fill="white">
8
+ <path d="M12.3329 0.979492C14.8031 0.979492 17.2017 1.80939 19.1436 3.336C21.0856 4.8626 22.4584 6.99738 23.0417 9.39772L12.3329 11.9999V0.979492Z"/>
9
+ </mask>
10
+ <path d="M12.3329 0.979492C14.8031 0.979492 17.2017 1.80939 19.1436 3.336C21.0856 4.8626 22.4584 6.99738 23.0417 9.39772L12.3329 11.9999V0.979492Z" stroke="currentColor" stroke-width="2.44898" mask="url(#path-2-inside-2_16139_4935)"/>
11
+ <mask id="path-3-inside-3_16139_4935" fill="white">
12
+ <path d="M21.6275 10.667C22.0329 12.3775 21.9429 14.168 21.3681 15.8292C20.7932 17.4904 19.7572 18.9536 18.3813 20.0476L12.6204 12.8021L21.6275 10.667Z"/>
13
+ </mask>
14
+ <path d="M21.6275 10.667C22.0329 12.3775 21.9429 14.168 21.3681 15.8292C20.7932 17.4904 19.7572 18.9536 18.3813 20.0476L12.6204 12.8021L21.6275 10.667Z" stroke="currentColor" stroke-width="2.44898" mask="url(#path-3-inside-3_16139_4935)"/>
15
+ </svg>
16
+ </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M10.306 2.82359C9.18983 2.32624 7.94278 2.20303 6.75085 2.47233C5.55892 2.74164 4.48598 3.38902 3.69203 4.31793C2.89809 5.24684 2.42569 6.40751 2.34529 7.62683C2.26489 8.84616 2.58079 10.0588 3.24589 11.0839C3.91098 12.109 4.88963 12.8917 6.03588 13.3152C7.18212 13.7387 8.43455 13.7803 9.60638 13.4338C10.7782 13.0873 11.8066 12.3713 12.5383 11.3926C13.27 10.4139 13.6656 9.22489 13.6663 8.00292V7.43587C13.6663 7.15973 13.8902 6.93587 14.1663 6.93587C14.4425 6.93587 14.6663 7.15973 14.6663 7.43587V8.00321C14.6655 9.44082 14.2 10.8399 13.3392 11.9914C12.4785 13.1428 11.2685 13.9851 9.88991 14.3928C8.5113 14.8004 7.03785 14.7514 5.68932 14.2532C4.3408 13.755 3.18944 12.8342 2.40698 11.6282C1.62452 10.4222 1.25287 8.99553 1.34746 7.56103C1.44205 6.12653 1.99781 4.76104 2.93186 3.66821C3.86591 2.57537 5.1282 1.81375 6.53047 1.49692C7.93274 1.1801 9.39985 1.32505 10.713 1.91016C10.9652 2.02255 11.0786 2.31814 10.9662 2.57037C10.8538 2.82261 10.5582 2.93598 10.306 2.82359Z" fill="currentColor"/>
4
4
  <path fill-rule="evenodd" clip-rule="evenodd" d="M14.5197 2.7126C14.7151 2.90776 14.7152 3.22434 14.5201 3.4197L8.35341 9.59254C8.25966 9.68638 8.13246 9.73913 7.9998 9.73916C7.86715 9.73919 7.73992 9.68651 7.64613 9.59271L5.79613 7.74271C5.60086 7.54745 5.60086 7.23087 5.79613 7.03561C5.99139 6.84034 6.30797 6.84034 6.50323 7.03561L7.9995 8.53188L13.8126 2.71295C14.0078 2.51759 14.3244 2.51743 14.5197 2.7126Z" fill="currentColor"/>
5
5
  </svg>
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts"></script>
2
2
 
3
3
  <template>
4
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
4
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
5
5
  <g id="check">
6
6
  <path
7
7
  id="Vector"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M7.99996 2.54999C4.71388 2.54999 2.04999 5.21388 2.04999 8.49996C2.04999 11.786 4.71388 14.4499 7.99996 14.4499C11.286 14.4499 13.9499 11.786 13.9499 8.49996C13.9499 5.21388 11.286 2.54999 7.99996 2.54999ZM1 8.49996C1 4.63399 4.13399 1.5 7.99996 1.5C11.8659 1.5 14.9999 4.63399 14.9999 8.49996C14.9999 12.3659 11.8659 15.4999 7.99996 15.4999C4.13399 15.4999 1 12.3659 1 8.49996Z" fill="currentColor"/>
4
4
  <path fill-rule="evenodd" clip-rule="evenodd" d="M11.2878 6.19945C11.4878 6.40941 11.4797 6.74172 11.2697 6.94168L7.19895 10.8186C7.00587 11.0025 6.70562 11.0124 6.50079 10.8417L4.75619 9.38789C4.53344 9.20227 4.50335 8.87122 4.68897 8.64848C4.87459 8.42574 5.20563 8.39564 5.42837 8.58126L6.81359 9.73561L10.5456 6.18134C10.7555 5.98138 11.0878 5.98948 11.2878 6.19945Z" fill="currentColor"/>
5
5
  </svg>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M1.38672 0.879223H13.2324C13.3669 0.879223 13.4957 0.932587 13.5908 1.02766C13.6859 1.12271 13.7393 1.25165 13.7393 1.38606V4.61653C13.7405 6.58649 13.1446 8.51119 12.0293 10.1351C10.9141 11.7589 9.33221 13.006 7.49316 13.7122H7.49219C7.37469 13.7575 7.24445 13.7575 7.12695 13.7122H7.12598C5.28693 13.0061 3.70507 11.7589 2.58984 10.1351C1.47456 8.51121 0.87869 6.58651 0.879883 4.61653V1.38606C0.879883 1.25163 0.933278 1.1227 1.02832 1.02766C1.12338 0.932604 1.2523 0.879223 1.38672 0.879223Z" stroke="currentColor" stroke-width="1.14015"/>
4
+ <path d="M7.68372 14.0053C7.44283 14.0982 7.17598 14.0982 6.93508 14.0053C5.05542 13.2836 3.4389 12.0088 2.29903 10.3491C1.15915 8.68941 0.549564 6.72299 0.550783 4.70957V1.59021C0.550783 1.31444 0.660331 1.04996 0.855329 0.854966C1.05033 0.659968 1.31481 0.550419 1.59057 0.550419H13.0282C13.304 0.550419 13.5685 0.659968 13.7635 0.854966C13.9585 1.04996 14.068 1.31444 14.068 1.59021V4.70957C14.0693 6.72299 13.4596 8.68941 12.3198 10.3491C11.18 12.0088 9.56338 13.2836 7.68372 14.0053Z" stroke="currentColor" stroke-width="1.10084" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M10.5708 4.05523L6.22738 8.9416L4.05566 7.31281" stroke="currentColor" stroke-width="1.14015" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
7
+ </template>
@@ -4,7 +4,7 @@
4
4
  height="1em"
5
5
  viewBox="0 0 20 20"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  fill-rule="evenodd"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="1em" height="1em" viewBox="0 0 20 20" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="1em" height="1em" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M3 2C2.44772 2 2 2.44772 2 3V17C2 17.5523 2.44772 18 3 18H17C17.5523 18 18 17.5523 18 17V3C18 2.44772 17.5523 2 17 2H3ZM0 3C0 1.34315 1.34315 0 3 0H17C18.6569 0 20 1.34315 20 3V17C20 18.6569 18.6569 20 17 20H3C1.34315 20 0 18.6569 0 17V3Z" fill="currentColor" fill-opacity="0.5"/>
4
4
  </svg>
5
5
 
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="1em" height="1em" viewBox="0 0 20 20" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="1em" height="1em" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M3 0C1.34315 0 0 1.34315 0 3V17C0 18.6569 1.34315 20 3 20H17C18.6569 20 20 18.6569 20 17V3C20 1.34315 18.6569 0 17 0H3ZM4 9C3.44772 9 3 9.44771 3 10C3 10.5523 3.44772 11 4 11H16C16.5523 11 17 10.5523 17 10C17 9.44771 16.5523 9 16 9H4Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M3.16441 5.15703C3.37768 4.94171 3.71681 4.94869 3.92188 5.17263L8 9.62594L12.0781 5.17263C12.2832 4.94869 12.6223 4.94171 12.8356 5.15703C13.0489 5.37235 13.0555 5.72844 12.8504 5.95237L8.38616 10.8274C8.28516 10.9377 8.14572 11 8 11C7.85428 11 7.71484 10.9377 7.61384 10.8274L3.14955 5.95237C2.94449 5.72844 2.95114 5.37235 3.16441 5.15703Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M10.843 3.16441C11.0583 3.37768 11.0513 3.71681 10.8274 3.92188L6.37406 8L10.8274 12.0781C11.0513 12.2832 11.0583 12.6223 10.843 12.8356C10.6276 13.0489 10.2716 13.0555 10.0476 12.8504L5.17263 8.38616C5.06233 8.28516 5 8.14572 5 8C5 7.85428 5.06233 7.71484 5.17263 7.61384L10.0476 3.14955C10.2716 2.94449 10.6276 2.95114 10.843 3.16441Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M5.15703 3.16441C5.37235 2.95114 5.72844 2.94449 5.95237 3.14955L10.8274 7.61384C10.9377 7.71484 11 7.85428 11 8C11 8.14572 10.9377 8.28516 10.8274 8.38616L5.95237 12.8504C5.72844 13.0555 5.37235 13.0489 5.15703 12.8356C4.94171 12.6223 4.94869 12.2832 5.17263 12.0781L9.62594 8L5.17263 3.92188C4.94869 3.71681 4.94171 3.37768 5.15703 3.16441Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8 5C8.14572 5 8.28516 5.06233 8.38616 5.17263L12.8504 10.0476C13.0555 10.2716 13.0489 10.6276 12.8356 10.843C12.6223 11.0583 12.2832 11.0513 12.0781 10.8274L8 6.37406L3.92188 10.8274C3.71681 11.0513 3.37768 11.0583 3.16441 10.843C2.95114 10.6276 2.94449 10.2716 3.14955 10.0476L7.61384 5.17263C7.71484 5.06233 7.85428 5 8 5Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
3
3
  <path
4
4
  fill="none"
5
5
  stroke="currentColor"