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.
- package/.editorconfig +12 -12
- package/.nuxtrc +1 -1
- package/.playground/app.config.ts +5 -5
- package/README.md +75 -75
- package/app.config.ts +4 -3
- package/app.vue +1 -0
- package/assets/styles/index.scss +104 -0
- package/assets/styles/modules/_base.scss +5 -0
- package/assets/styles/modules/_typography.scss +152 -0
- package/components/elements/README.md +1 -1
- package/components/elements/accordion/AAccordion.vue +13 -12
- package/components/elements/curve-block/ACurveBlock.vue +94 -19
- package/components/elements/feature-description/AFeatureDescription.vue +4 -4
- package/components/elements/illustrations/noAccess.vue +11 -2
- package/components/elements/photos-animation/APhotosAnimation.vue +3 -1
- package/components/elements/select/ASelect.vue +65 -9
- package/components/features/lang-switcher/lang-switcher.vue +8 -1
- package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -0
- package/components/features/payment/banner/PaymentBanner.vue +108 -0
- package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +158 -0
- package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -0
- package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -0
- package/components/features/payment/process/PaymentProcess.vue +138 -0
- package/components/features/payment/process/PaymentTopUpSidePanel.vue +130 -0
- package/components/features/pk-mobile-services/APkMobileServices.vue +21 -2
- package/components/forms/README.md +1 -1
- package/components/forms/checkbox/ACheckbox.vue +0 -2
- package/components/forms/radio-button/ARadioButton.vue +21 -13
- package/components/forms/request-demo/ARequestDemo.vue +21 -7
- package/components/modals/AConfirmationEmail.vue +40 -0
- package/components/modals/AnotherDeviceModal.vue +3 -2
- package/components/modals/ConnectingTariffModal.vue +0 -1
- package/components/modals/ContentNavigationModal.vue +148 -75
- package/components/modals/Insufficient-funds-modal.vue +5 -2
- package/components/modals/LimitReachedModal.vue +4 -3
- package/components/modals/ReportBugModal.vue +3 -3
- package/components/modals/Resend.vue +82 -0
- package/components/modals/SubmitApplicationModal.vue +4 -0
- package/components/modals/id/AuthModal.vue +78 -0
- package/components/modals/id/IdAutoLogoutModal.vue +45 -0
- package/components/modals/id/IdBanner.vue +58 -0
- package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -0
- package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -0
- package/components/modals/id/IdLoginModal.vue +316 -0
- package/components/modals/id/IdModals.vue +114 -0
- package/components/modals/id/IdNewPasswordModal.vue +129 -0
- package/components/modals/id/IdOtpInput.vue +155 -0
- package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -0
- package/components/modals/id/IdRecoveryModal.vue +117 -0
- package/components/modals/id/IdRegistrationModal.vue +215 -0
- package/components/modals/id/IdResetPasswordOtpModal.vue +158 -0
- package/components/modals/id/IdTwoFactorModal.vue +130 -0
- package/components/navigation/README.md +1 -1
- package/components/navigation/bottom-navigation/ABottomNavigation.vue +34 -29
- package/components/navigation/footer/AFooter.vue +210 -57
- package/components/navigation/footer/ui/{new-footer-accordion.vue → a-footer-accordion.vue} +2 -4
- package/components/navigation/header/AHeader.vue +59 -51
- package/components/navigation/header/AlmatyContacts.vue +16 -14
- package/components/navigation/header/AstanaContacts.vue +13 -11
- package/components/navigation/header/CardGallery.vue +5 -4
- package/components/navigation/header/HeaderLink.vue +16 -8
- package/components/navigation/header/NavList.vue +21 -5
- package/components/navigation/header/ProductMenu.vue +8 -78
- package/components/navigation/header/ProfileMenu.vue +10 -5
- package/components/navigation/header/TopHeader.vue +2 -2
- package/components/navigation/mobile-navigation/AMobileNavigation.vue +3 -3
- package/components/navigation/pill-tabs/APillTabs.vue +18 -4
- package/components/navigation/pill-tabs/types.ts +1 -0
- package/components/navigation/side-navigation/ASideNavigation.vue +23 -21
- package/components/overlays/README.md +1 -1
- package/components/overlays/side-panel/ASidePanel.vue +439 -0
- package/components/overlays/tooltip/ATooltip.vue +149 -154
- package/components/utils/removeTrailingSlash.ts +7 -0
- package/composables/useBuyTariffs.ts +91 -0
- package/composables/useHeaderNavigationLinks.ts +174 -297
- package/composables/useIdModals.ts +36 -0
- package/composables/usePayment.ts +74 -0
- package/composables/useUrls.ts +21 -0
- package/eslint.config.mjs +45 -0
- package/icons/adata-logo.vue +1 -1
- package/icons/ai-assistant.vue +13 -0
- package/icons/akimat.vue +20 -0
- package/icons/arrow/arrow-bottom-left-on-square.vue +1 -1
- package/icons/arrow/arrow-circle-reset.vue +1 -1
- package/icons/arrow/arrow-corner.vue +1 -1
- package/icons/arrow/arrow-graph-down.vue +1 -1
- package/icons/arrow/arrow-graph-up.vue +1 -1
- package/icons/arrow/arrow-square-down.vue +1 -1
- package/icons/arrow/arrow-top-right-on-square.vue +1 -1
- package/icons/arrow-currency-gray.vue +1 -1
- package/icons/arrow-currency-green.vue +1 -1
- package/icons/arrow-currency-red.vue +1 -1
- package/icons/avatar.vue +1 -1
- package/icons/bank.vue +5 -0
- package/icons/block.vue +1 -1
- package/icons/bookmark/bookmark-filled.vue +1 -1
- package/icons/bookmark/bookmark.vue +1 -1
- package/icons/browsers/browser-duck.vue +1 -1
- package/icons/browsers/browser-google.vue +7 -1
- package/icons/browsers/browser-yandex.vue +1 -1
- package/icons/building-vector.vue +1 -1
- package/icons/calculator.vue +1 -1
- package/icons/calendar.vue +1 -1
- package/icons/car.vue +1 -1
- package/icons/chart-bar.vue +5 -0
- package/icons/chart-pie.vue +16 -0
- package/icons/check/check-circle.vue +1 -1
- package/icons/check/check.vue +1 -1
- package/icons/check/checkmark-circle.vue +1 -1
- package/icons/check-sb.vue +7 -0
- package/icons/checkbox/checkbox-active.vue +1 -1
- package/icons/checkbox/checkbox-empty.vue +1 -1
- package/icons/checkbox/checkbox-intermediate.vue +1 -1
- package/icons/chevron/chevron-down.vue +1 -1
- package/icons/chevron/chevron-left.vue +1 -1
- package/icons/chevron/chevron-right.vue +1 -1
- package/icons/chevron/chevron-up.vue +1 -1
- package/icons/chevron/double-chevron-right.vue +1 -1
- package/icons/clipboard-text.vue +1 -1
- package/icons/clock.vue +1 -1
- package/icons/company/company-bazis.vue +3 -3
- package/icons/company/company-bereke.vue +13 -13
- package/icons/company/company-bigroup.vue +5 -5
- package/icons/company/company-erg.vue +6 -6
- package/icons/company/company-forte.vue +11 -11
- package/icons/company/company-halyk.vue +4 -4
- package/icons/company/company-jusan.vue +20 -3
- package/icons/company/company-kaspi.vue +3 -3
- package/icons/company/company-mycar.vue +2 -2
- package/icons/company/company-samruk.vue +9 -9
- package/icons/company-egov-small.vue +1 -1
- package/icons/company.vue +1 -1
- package/icons/copy.vue +1 -1
- package/icons/currency/currency-dollar.vue +1 -1
- package/icons/currency/currency-down.vue +1 -1
- package/icons/currency/currency-eur.vue +1 -1
- package/icons/currency/currency-rub.vue +1 -1
- package/icons/currency/currency-tenge.vue +9 -0
- package/icons/currency/currency-usd.vue +1 -1
- package/icons/currency/currency-yuan.vue +1 -1
- package/icons/delete.vue +1 -1
- package/icons/document.vue +1 -1
- package/icons/download.vue +1 -1
- package/icons/edit.vue +1 -1
- package/icons/education.vue +1 -1
- package/icons/egov-small.vue +1 -1
- package/icons/excel-icon.vue +14 -0
- package/icons/expand-window.vue +1 -1
- package/icons/eye-closed.vue +1 -1
- package/icons/eye-open.vue +1 -1
- package/icons/eye-opened.vue +1 -1
- package/icons/file/file.vue +1 -1
- package/icons/filter.vue +1 -1
- package/icons/flag.vue +1 -1
- package/icons/gift.vue +1 -1
- package/icons/globe.vue +1 -1
- package/icons/google.vue +41 -0
- package/icons/hand/hand-thumb-up-filled.vue +1 -1
- package/icons/hand/hand-thumb-up.vue +1 -1
- package/icons/hand-with-phone/hand-with-phone-dark.vue +1 -1
- package/icons/hand-with-phone/hand-with-phone-light.vue +1 -1
- package/icons/handshake.vue +1 -1
- package/icons/hcheck.vue +1 -1
- package/icons/hdocument.vue +1 -1
- package/icons/history.vue +1 -1
- package/icons/horizontal-more.vue +1 -1
- package/icons/hot-line.vue +6 -0
- package/icons/hummer.vue +1 -1
- package/icons/info/info-circle.vue +1 -1
- package/icons/invoice.vue +1 -1
- package/icons/kaspi-qr.vue +13 -0
- package/icons/link-chain.vue +1 -1
- package/icons/link.vue +1 -1
- package/icons/linkedin.vue +24 -24
- package/icons/loader-circle.vue +1 -1
- package/icons/location.vue +1 -1
- package/icons/lock.vue +1 -1
- package/icons/logo.vue +1 -1
- package/icons/logout.vue +1 -1
- package/icons/magnify/magnifying-glass-minus.vue +1 -1
- package/icons/magnify/magnifying-glass-plus.vue +1 -1
- package/icons/magnify/magnifying-glass.vue +1 -1
- package/icons/mail.vue +1 -1
- package/icons/mailru.vue +34 -0
- package/icons/main-filter.vue +1 -1
- package/icons/map/map-pin-filled.vue +1 -1
- package/icons/map/map-pin-rect.vue +1 -1
- package/icons/map/map-pin.vue +1 -1
- package/icons/map-marker-start.vue +1 -1
- package/icons/medal.vue +1 -1
- package/icons/menu-filled.vue +1 -1
- package/icons/menu.vue +1 -1
- package/icons/message/message.vue +1 -1
- package/icons/minus/minus-circle.vue +1 -1
- package/icons/money.vue +1 -1
- package/icons/monitoring.vue +1 -1
- package/icons/moon.vue +1 -1
- package/icons/more.vue +1 -1
- package/icons/notification.vue +1 -1
- package/icons/paperclip.vue +1 -1
- package/icons/payment/payment-card.vue +1 -1
- package/icons/payment/payment-kaspi.vue +1 -1
- package/icons/person-vector.vue +1 -1
- package/icons/person-with-briefcase.vue +1 -1
- package/icons/phone-filled.vue +1 -1
- package/icons/phone.vue +1 -1
- package/icons/plus/plus-circle.vue +1 -1
- package/icons/plus/plus.vue +1 -1
- package/icons/profile.vue +1 -1
- package/icons/radio/radio-check.vue +1 -1
- package/icons/radio/radio-empty.vue +1 -1
- package/icons/receipt.vue +1 -1
- package/icons/sanctions.vue +8 -0
- package/icons/scales/scale.vue +1 -1
- package/icons/scales/scales.vue +1 -1
- package/icons/scales/standing-scales.vue +1 -1
- package/icons/search.vue +1 -1
- package/icons/share/share-alt.vue +1 -1
- package/icons/share/share.vue +1 -1
- package/icons/socials/face-book.vue +1 -1
- package/icons/socials/instagram.vue +1 -1
- package/icons/socials/telegram.vue +1 -1
- package/icons/socials/tik-tok.vue +1 -1
- package/icons/socials/youtube.vue +1 -1
- package/icons/sort/sort-asc.vue +1 -1
- package/icons/sort/sort-desc.vue +1 -1
- package/icons/splitting-arrows.vue +1 -1
- package/icons/star/star-filled.vue +1 -1
- package/icons/star/star-half-filled.vue +1 -1
- package/icons/star/star.vue +1 -1
- package/icons/sun.vue +14 -14
- package/icons/sviazi.vue +1 -1
- package/icons/tag.vue +1 -1
- package/icons/tasks.vue +10 -0
- package/icons/tender-search.vue +1 -1
- package/icons/toasts/check-circle-toast.vue +1 -1
- package/icons/toasts/warning-triangle-toast.vue +1 -1
- package/icons/trash.vue +1 -1
- package/icons/triangle.vue +1 -1
- package/icons/truck.vue +1 -1
- package/icons/user.vue +1 -1
- package/icons/users-focus.vue +1 -1
- package/icons/users.vue +1 -1
- package/icons/warning/warning-circle.vue +1 -1
- package/icons/warning/warning-triangle-filled.vue +1 -1
- package/icons/warning/warning-triangle.vue +1 -1
- package/icons/whatsapp.vue +1 -1
- package/icons/work-bag.vue +1 -1
- package/icons/work-case.vue +9 -0
- package/icons/work-search.vue +1 -1
- package/icons/work.vue +1 -1
- package/icons/x-mark.vue +1 -1
- package/icons/yandex.vue +28 -0
- package/illustrations/address-location.vue +1 -1
- package/illustrations/ball-with-chain.vue +1 -1
- package/illustrations/bill.vue +1 -1
- package/illustrations/buildings.vue +1 -1
- package/illustrations/calendar.vue +1 -1
- package/illustrations/chains.vue +1 -1
- package/illustrations/coin-percent.vue +1 -1
- package/illustrations/coins-stack.vue +1 -1
- package/illustrations/delete-dark.vue +1 -1
- package/illustrations/delete.vue +1 -1
- package/illustrations/doc-with-stamp.vue +1 -1
- package/illustrations/document.vue +1 -1
- package/illustrations/door.vue +1 -1
- package/illustrations/empty-box.vue +1 -1
- package/illustrations/empty-wallet.vue +1 -1
- package/illustrations/graph-in-coin.vue +1 -1
- package/illustrations/hammer.vue +1 -1
- package/illustrations/hand-cash.vue +1 -1
- package/illustrations/info.vue +1 -1
- package/illustrations/mail.vue +1 -1
- package/illustrations/ok.vue +1 -1
- package/illustrations/people-group.vue +1 -1
- package/illustrations/person-with-phone.vue +1 -1
- package/illustrations/person.vue +1 -1
- package/illustrations/phone-check.vue +1 -1
- package/illustrations/phone-payment-method.vue +1 -1
- package/illustrations/stop-hand.vue +1 -1
- package/illustrations/stop-sign.vue +1 -1
- package/illustrations/suit.vue +1 -1
- package/illustrations/suitcase.vue +1 -1
- package/illustrations/terminal-dark.vue +1 -1
- package/illustrations/terminal.vue +1 -1
- package/illustrations/trash-can.vue +1 -1
- package/illustrations/turn-on-tariff.vue +1 -1
- package/illustrations/two-persons.vue +1 -1
- package/lang/en.ts +475 -270
- package/lang/kk.ts +476 -271
- package/lang/ru.ts +315 -107
- package/layouts/default.vue +13 -13
- package/nuxt.config.ts +42 -14
- package/package.json +69 -53
- package/public/kaspi/logo.svg +4 -0
- package/shared/constans/pages.ts +17 -2
- package/tailwind.config.ts +163 -0
- package/vitest.config.ts +14 -0
- package/.eslintrc.cjs +0 -4
- package/.playground/app.vue +0 -9
- package/.playground/pages/index.vue +0 -13
- package/.prettierignore +0 -24
- package/.prettierrc +0 -10
- package/assets/styles/index.css +0 -226
- package/components/modals/AuthModal.vue +0 -50
- package/components/navigation/footer/NewFooter.vue +0 -276
- package/components/navigation/footer/ui/footer-acccordion.vue +0 -119
package/icons/hummer.vue
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
height="1em"
|
|
8
8
|
viewBox="0 0 20 20"
|
|
9
9
|
fill="none"
|
|
10
|
-
xmlns="
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
11
|
>
|
|
12
12
|
<path
|
|
13
13
|
d="M11.9401 13.5288L11.8136 14.0428C11.4341 14.1917 11.131 14.3051 10.9053 14.383C10.6793 14.4611 10.4168 14.5 10.1176 14.5C9.6582 14.5 9.30087 14.3881 9.04602 14.1659C8.79117 13.9428 8.6637 13.6601 8.6637 13.3171C8.6637 13.1843 8.67295 13.0478 8.69218 12.9086C8.71157 12.7693 8.7424 12.6124 8.7846 12.4371L9.25884 10.7684C9.30104 10.6086 9.3369 10.4572 9.36562 10.314C9.39475 10.1717 9.40879 10.0408 9.40879 9.92294C9.40879 9.70983 9.3644 9.56077 9.27605 9.47696C9.18769 9.39339 9.01908 9.35097 8.76877 9.35097C8.64618 9.35097 8.52017 9.37049 8.39173 9.40824C8.26272 9.44615 8.15245 9.48277 8.05988 9.51681L8.18669 9.00235C8.49737 8.87659 8.79433 8.76891 9.07839 8.67954C9.36246 8.58992 9.63086 8.54507 9.88474 8.54507C10.341 8.54507 10.693 8.65469 10.9403 8.87393C11.1875 9.09333 11.3111 9.37775 11.3111 9.72822C11.3111 9.80074 11.3029 9.9285 11.2855 10.1111C11.2685 10.2941 11.2367 10.4618 11.1905 10.6144L10.7183 12.2764C10.6796 12.4099 10.6448 12.5625 10.6145 12.7342C10.5833 12.9048 10.5683 13.0352 10.5683 13.1226C10.5683 13.3433 10.6178 13.494 10.717 13.5741C10.817 13.6542 10.9892 13.694 11.2337 13.694C11.3485 13.694 11.4792 13.6738 11.6243 13.634C11.7691 13.5943 11.8746 13.5593 11.9401 13.5288Z"
|
package/icons/invoice.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="
|
|
2
|
+
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path d="M4.6665 18.6458V8.05426C4.6665 5.20025 4.6665 3.77325 5.54518 2.88663C6.42386 2 7.83808 2 10.6665 2H14.6665C17.4949 2 18.9091 2 19.7878 2.88663C20.6665 3.77325 20.6665 5.20025 20.6665 8.05426V18.6458C20.6665 20.1575 20.6665 20.9133 20.2046 21.2108C19.4496 21.6971 18.2826 20.6774 17.6956 20.3073C17.2107 20.0014 16.9682 19.8485 16.699 19.8397C16.4082 19.8301 16.1614 19.9768 15.6374 20.3073L13.7265 21.5124C13.211 21.8374 12.9533 22 12.6665 22C12.3797 22 12.122 21.8374 11.6065 21.5124L9.69563 20.3073C9.21065 20.0014 8.96816 19.8485 8.69904 19.8397C8.40822 19.8301 8.16143 19.9768 7.63738 20.3073C7.05045 20.6774 5.88338 21.6971 5.12846 21.2108C4.6665 20.9133 4.6665 20.1575 4.6665 18.6458Z" fill="#566573" stroke="#566573" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
4
|
<path d="M11.6665 11H8.6665" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
5
|
<path d="M14.6665 7L8.6665 7" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
|
|
3
|
+
</script>
|
|
4
|
+
|
|
5
|
+
<template>
|
|
6
|
+
<svg width="51" height="51" viewBox="0 0 51 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.49674 0C9.66206 0 9.79716 0.129346 9.80628 0.29232L9.80677 0.309906V2.82853C9.80677 2.99378 9.67738 3.12883 9.51434 3.13794L9.49674 3.13844L3.13881 3.13838L3.13882 9.49584C3.13882 9.65519 3.0185 9.78646 2.86372 9.8038L2.84638 9.80526L2.82879 9.80575H0.310031C0.14471 9.80575 0.00961136 9.6764 0.000490783 9.51343L0 9.49584V2.83918C0 1.30673 1.21545 0.0545687 2.74059 0.00171709L2.7869 0.000483577L2.8395 0H9.49674ZM23.2957 6.66658C23.5537 6.66658 23.7642 6.87031 23.7748 7.12563L23.7752 7.14589V23.2954C23.7752 23.5534 23.5714 23.7637 23.316 23.7743L23.2957 23.7747H7.14495C6.88692 23.7747 6.6765 23.571 6.66588 23.3157L6.66546 23.2954V9.60849C6.66546 7.9934 7.92636 6.69282 9.52191 6.66697L9.57036 6.66658H23.2957ZM23.2957 26.3513C23.5442 26.3513 23.7499 26.5407 23.7732 26.7882L23.7747 26.809L23.7752 26.8306V29.4898L9.80423 29.4898V40.321H20.6363L20.6364 32.0662H23.7752V42.9802C23.7752 43.2285 23.5858 43.4342 23.3382 43.4575L23.3174 43.459L23.2957 43.4595H9.57036C7.98586 43.4595 6.71679 42.2024 6.66696 40.6133L6.66582 40.565L6.66546 40.5176V26.8306C6.66546 26.5823 6.85487 26.3767 7.10252 26.3534L7.12328 26.3519L7.14495 26.3513H23.2957ZM35.0492 40.3227L35.0492 31.7504H31.9104L31.9104 37.4652L26.3538 37.4652V42.9818L26.3542 43.0021C26.3648 43.2574 26.5752 43.4611 26.8333 43.4611H29.4926L29.4926 40.6037H34.9268L34.9268 43.4611H40.5586L40.6071 43.4607C42.2026 43.4349 43.4635 42.1343 43.4635 40.5192V34.6078H37.467V37.7463L40.3246 37.7462V40.3227H35.0492ZM2.82879 40.321C2.99411 40.321 3.12921 40.4503 3.13833 40.6133L3.13882 40.6309L3.13881 46.9883L9.33798 46.9884C9.4974 46.9884 9.62871 47.1086 9.64606 47.2634L9.64752 47.2807L9.64801 47.2983V49.8169C9.64801 49.9822 9.51861 50.1172 9.35557 50.1263L9.33798 50.1268H2.8395C1.30686 50.1268 0.0545731 48.9115 0.00171723 47.3865L0.000483618 47.3402L0 47.2876V40.6309C0 40.4657 0.129398 40.3306 0.292438 40.3215L0.310031 40.321H2.82879ZM49.8224 40.321C49.9877 40.321 50.1228 40.4503 50.1319 40.6133L50.1324 40.6309V47.2876C50.1324 48.8201 48.917 50.0722 47.3918 50.1251L47.3455 50.1263L47.2929 50.1268H40.6357C40.4704 50.1268 40.3353 49.9975 40.3261 49.8345L40.3256 49.8169V47.2983C40.3256 47.133 40.455 46.998 40.6181 46.9888L40.6357 46.9884L46.9935 46.9883L46.9936 40.6309C46.9936 40.4716 47.1139 40.3403 47.2687 40.3229L47.286 40.3215L47.3036 40.321H49.8224ZM18.5411 31.5906V38.2213H11.9096V31.5906H18.5411ZM34.8904 29.4898V26.3513H26.8333L26.813 26.3518C26.5576 26.3624 26.3538 26.5727 26.3538 26.8306V34.8872H29.4926L29.4926 29.4898L34.8904 29.4898ZM43.464 26.8104C43.4534 26.5551 43.2429 26.3513 42.9849 26.3513H40.3256L40.3255 29.2088L37.4679 29.2088V32.3473H40.6067L40.6067 29.4898L43.4644 29.4898V26.8306L43.464 26.8104ZM43.462 9.51281C43.4122 7.92367 42.1431 6.66658 40.5586 6.66658H26.8333L26.8116 6.6671L26.7908 6.66862C26.5432 6.69192 26.3538 6.89753 26.3538 7.14589V23.2954L26.3543 23.3171L26.3558 23.3379C26.3791 23.5854 26.5848 23.7747 26.8333 23.7747L29.4926 23.7747L29.4926 9.80496H40.3246V20.6362L37.7845 20.6363V23.7747L42.984 23.7747L43.0057 23.7742L43.0265 23.7727C43.2741 23.7494 43.4635 23.5438 43.4635 23.2954V9.60849L43.4632 9.56106L43.462 9.51281ZM35.2072 20.6362V23.7747H32.0684V20.6362H35.2072ZM9.80642 9.80488H20.6385V20.6361H9.80642V9.80488ZM18.5411 11.9051V18.5359H11.9096V11.9051H18.5411ZM38.2294 18.5359V11.9051H31.5979V18.5359H38.2294ZM50.1307 2.74029C50.0778 1.21533 48.8256 0 47.2929 0H40.6357L40.6181 0.000490585C40.455 0.00960747 40.3256 0.144652 40.3256 0.309906V2.82853L40.3261 2.84612L40.3276 2.86344C40.3449 3.01816 40.4763 3.13844 40.6357 3.13844L46.9935 3.13838L46.9936 9.49584L46.9941 9.51343C47.0032 9.6764 47.1383 9.80575 47.3036 9.80575H49.8224L49.84 9.80526C50.003 9.79614 50.1324 9.6611 50.1324 9.49584V2.83918L50.1319 2.78659L50.1307 2.74029Z" fill="#F14635"></path>
|
|
8
|
+
</svg>
|
|
9
|
+
</template>
|
|
10
|
+
|
|
11
|
+
<style scoped>
|
|
12
|
+
|
|
13
|
+
</style>
|
package/icons/link-chain.vue
CHANGED
package/icons/link.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="
|
|
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.47751 2.9889L6.93233 4.53417C6.72732 4.7392 6.39491 4.73921 6.18988 4.53419C5.98484 4.32917 5.98483 3.99676 6.18985 3.79173L7.73504 2.24645C9.39699 0.584526 12.0915 0.584512 13.7535 2.24644C15.4154 3.90836 15.4154 6.60287 13.7535 8.2648L12.2083 9.81008C12.0033 10.0151 11.6709 10.0151 11.4659 9.8101C11.2608 9.60508 11.2608 9.27267 11.4658 9.06764L13.011 7.52236C14.2629 6.27048 14.2629 4.24078 13.011 2.9889C11.7591 1.73702 9.72941 1.73703 8.47751 2.9889Z" fill="currentColor"/>
|
|
4
4
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.53409 6.18986C4.73913 6.39488 4.73914 6.72729 4.53412 6.93232L2.98893 8.47759C1.73704 9.72947 1.73702 11.7592 2.98892 13.0111C4.24081 14.2629 6.27054 14.2629 7.52244 13.0111L9.06762 11.4658C9.27264 11.2608 9.60505 11.2607 9.81008 11.4658C10.0151 11.6708 10.0151 12.0032 9.81011 12.2082L8.26492 13.7535C6.60297 15.4154 3.90841 15.4154 2.24646 13.7535C0.584516 12.0916 0.584512 9.39708 2.24645 7.73516L3.79163 6.18988C3.99665 5.98485 4.32906 5.98484 4.53409 6.18986Z" fill="currentColor"/>
|
|
5
5
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.5295 5.47043C10.7346 5.67545 10.7346 6.00787 10.5295 6.21289L6.21289 10.5295C6.00786 10.7346 5.67545 10.7346 5.47043 10.5295C5.2654 10.3245 5.2654 9.99211 5.47043 9.78708L9.78708 5.47043C9.9921 5.26541 10.3245 5.26541 10.5295 5.47043Z" fill="currentColor"/>
|
package/icons/linkedin.vue
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<rect width="28" height="28" rx="14" fill="white" />
|
|
4
|
-
<g clip-path="url(#clip0_11045_8656)">
|
|
5
|
-
<path
|
|
6
|
-
d="M9.72564 11.1482H6.51458C6.37207 11.1482 6.25659 11.2637 6.25659 11.4062V21.722C6.25659 21.8645 6.37207 21.9799 6.51458 21.9799H9.72564C9.86815 21.9799 9.98363 21.8645 9.98363 21.722V11.4062C9.98363 11.2637 9.86815 11.1482 9.72564 11.1482Z"
|
|
7
|
-
fill="#2C3E50"
|
|
8
|
-
/>
|
|
9
|
-
<path
|
|
10
|
-
d="M8.12134 6.02002C6.95297 6.02002 6.00244 6.96952 6.00244 8.1366C6.00244 9.3042 6.95297 10.2541 8.12134 10.2541C9.28878 10.2541 10.2385 9.30414 10.2385 8.1366C10.2386 6.96952 9.28878 6.02002 8.12134 6.02002Z"
|
|
11
|
-
fill="#2C3E50"
|
|
12
|
-
/>
|
|
13
|
-
<path
|
|
14
|
-
d="M17.8931 10.8918C16.6035 10.8918 15.6501 11.4463 15.0718 12.0762V11.4062C15.0718 11.2638 14.9564 11.1482 14.8139 11.1482H11.7387C11.5962 11.1482 11.4807 11.2638 11.4807 11.4062V21.722C11.4807 21.8645 11.5962 21.98 11.7387 21.98H14.9427C15.0853 21.98 15.2007 21.8645 15.2007 21.722V16.6181C15.2007 14.8982 15.6679 14.2281 16.8668 14.2281C18.1725 14.2281 18.2763 15.3023 18.2763 16.7066V21.722C18.2763 21.8646 18.3918 21.98 18.5343 21.98H21.7395C21.882 21.98 21.9975 21.8646 21.9975 21.722V16.0637C21.9975 13.5062 21.5099 10.8918 17.8931 10.8918Z"
|
|
15
|
-
fill="#2C3E50"
|
|
16
|
-
/>
|
|
17
|
-
</g>
|
|
18
|
-
<defs>
|
|
19
|
-
<clipPath id="clip0_11045_8656">
|
|
20
|
-
<rect width="15.9952" height="16" fill="white" transform="translate(6.00244 6)" />
|
|
21
|
-
</clipPath>
|
|
22
|
-
</defs>
|
|
23
|
-
</svg>
|
|
24
|
-
</template>
|
|
1
|
+
<template>
|
|
2
|
+
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<rect width="28" height="28" rx="14" fill="white" />
|
|
4
|
+
<g clip-path="url(#clip0_11045_8656)">
|
|
5
|
+
<path
|
|
6
|
+
d="M9.72564 11.1482H6.51458C6.37207 11.1482 6.25659 11.2637 6.25659 11.4062V21.722C6.25659 21.8645 6.37207 21.9799 6.51458 21.9799H9.72564C9.86815 21.9799 9.98363 21.8645 9.98363 21.722V11.4062C9.98363 11.2637 9.86815 11.1482 9.72564 11.1482Z"
|
|
7
|
+
fill="#2C3E50"
|
|
8
|
+
/>
|
|
9
|
+
<path
|
|
10
|
+
d="M8.12134 6.02002C6.95297 6.02002 6.00244 6.96952 6.00244 8.1366C6.00244 9.3042 6.95297 10.2541 8.12134 10.2541C9.28878 10.2541 10.2385 9.30414 10.2385 8.1366C10.2386 6.96952 9.28878 6.02002 8.12134 6.02002Z"
|
|
11
|
+
fill="#2C3E50"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M17.8931 10.8918C16.6035 10.8918 15.6501 11.4463 15.0718 12.0762V11.4062C15.0718 11.2638 14.9564 11.1482 14.8139 11.1482H11.7387C11.5962 11.1482 11.4807 11.2638 11.4807 11.4062V21.722C11.4807 21.8645 11.5962 21.98 11.7387 21.98H14.9427C15.0853 21.98 15.2007 21.8645 15.2007 21.722V16.6181C15.2007 14.8982 15.6679 14.2281 16.8668 14.2281C18.1725 14.2281 18.2763 15.3023 18.2763 16.7066V21.722C18.2763 21.8646 18.3918 21.98 18.5343 21.98H21.7395C21.882 21.98 21.9975 21.8646 21.9975 21.722V16.0637C21.9975 13.5062 21.5099 10.8918 17.8931 10.8918Z"
|
|
15
|
+
fill="#2C3E50"
|
|
16
|
+
/>
|
|
17
|
+
</g>
|
|
18
|
+
<defs>
|
|
19
|
+
<clipPath id="clip0_11045_8656">
|
|
20
|
+
<rect width="15.9952" height="16" fill="white" transform="translate(6.00244 6)" />
|
|
21
|
+
</clipPath>
|
|
22
|
+
</defs>
|
|
23
|
+
</svg>
|
|
24
|
+
</template>
|
package/icons/loader-circle.vue
CHANGED
|
@@ -3,7 +3,7 @@ const id = useId()
|
|
|
3
3
|
</script>
|
|
4
4
|
|
|
5
5
|
<template>
|
|
6
|
-
<svg fill="none" height="16" viewBox="0 0 17 16" width="17" xmlns="
|
|
6
|
+
<svg fill="none" height="16" viewBox="0 0 17 16" width="17" xmlns="http://www.w3.org/2000/svg">
|
|
7
7
|
<path
|
|
8
8
|
d="M14.5 8C14.5 6.61187 14.0187 5.26668 13.1381 4.19365C12.2574 3.12061 11.032 2.38611 9.67054 2.1153C8.30908 1.84449 6.89584 2.05412 5.67162 2.70848C4.4474 3.36284 3.48794 4.42144 2.95672 5.7039C2.42551 6.98637 2.35541 8.41335 2.75836 9.7417C3.16131 11.0701 4.01239 12.2176 5.16658 12.9888C6.32077 13.76 7.70666 14.1072 9.0881 13.9711"
|
|
9
9
|
:stroke="`url(#${id})`"
|
package/icons/location.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="
|
|
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 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z" fill="currentColor"/>
|
|
4
4
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z" fill="currentColor"/>
|
|
5
5
|
</svg>
|
package/icons/lock.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="
|
|
2
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.25996 4.63496C9.98666 3.90826 10.9723 3.5 12 3.5C13.0277 3.5 14.0133 3.90826 14.74 4.63496C15.4667 5.36166 15.875 6.34729 15.875 7.375V10.325H8.125V7.375C8.125 6.34729 8.53326 5.36166 9.25996 4.63496ZM6.625 10.325V7.375C6.625 5.94946 7.19129 4.58231 8.1993 3.5743C9.20731 2.56629 10.5745 2 12 2C13.4255 2 14.7927 2.56629 15.8007 3.5743C16.8087 4.58231 17.375 5.94946 17.375 7.375V10.325H18.475C19.911 10.325 21.075 11.4891 21.075 12.925V19.4C21.075 20.836 19.911 22 18.475 22H5.52505C4.08911 22 2.92505 20.836 2.92505 19.4V12.925C2.92505 11.4891 4.08911 10.325 5.52505 10.325H6.625ZM4.42505 12.925C4.42505 12.3175 4.91754 11.825 5.52505 11.825H18.475C19.0826 11.825 19.575 12.3175 19.575 12.925V19.4C19.575 20.0075 19.0826 20.5 18.475 20.5H5.52505C4.91754 20.5 4.42505 20.0075 4.42505 19.4V12.925Z" fill="currentColor"/>
|
|
4
4
|
</svg>
|
|
5
5
|
</template>
|
package/icons/logo.vue
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
</script>
|
|
4
4
|
|
|
5
5
|
<template>
|
|
6
|
-
<svg class="text-deepblue-900 dark:text-gray-200" width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="
|
|
6
|
+
<svg class="text-deepblue-900 dark:text-gray-200" width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
7
7
|
<path d="M12.7943 8.26123H12.7098C12.6736 8.71061 12.5849 9.15419 12.4454 9.58289L10.7944 14.7331H14.6771L13.0478 9.63489C12.9159 9.18701 12.831 8.72666 12.7943 8.26123Z" fill="currentColor"/>
|
|
8
8
|
<path d="M23.4 0H2.6C1.91044 0 1.24912 0.273926 0.761524 0.761521C0.273929 1.24912 0 1.91044 0 2.6V23.4C0 24.0896 0.273929 24.7509 0.761524 25.2385C1.24912 25.7261 1.91044 26 2.6 26H23.4C24.0896 26 24.7509 25.7261 25.2385 25.2385C25.7261 24.7509 26 24.0896 26 23.4V2.6C26 1.91044 25.7261 1.24912 25.2385 0.761521C24.7509 0.273926 24.0896 0 23.4 0ZM16.5382 20.7242L15.4548 17.3485H10.0598L8.99167 20.7242H5.29317L10.816 5.55751H14.8677L20.2627 20.7242H16.5382Z" fill="currentColor"/>
|
|
9
9
|
</svg>
|
package/icons/logout.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="
|
|
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.05003 7.28054C2.05003 4.39179 4.39182 2.05 7.28057 2.05C10.1693 2.05 12.5111 4.39179 12.5111 7.28054C12.5111 10.1693 10.1693 12.5111 7.28057 12.5111C4.39182 12.5111 2.05003 10.1693 2.05003 7.28054ZM7.28057 1C3.81192 1 1.00003 3.81189 1.00003 7.28054C1.00003 10.7492 3.81192 13.5611 7.28057 13.5611C8.82589 13.5611 10.2409 13.003 11.3349 12.0773L14.1038 14.8462C14.3088 15.0512 14.6412 15.0512 14.8462 14.8462C15.0513 14.6412 15.0513 14.3088 14.8462 14.1037L12.0774 11.3349C13.003 10.2408 13.5611 8.82585 13.5611 7.28054C13.5611 3.81189 10.7492 1 7.28057 1Z" fill="currentColor"/>
|
|
4
4
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 7.29999C4.5 7.01004 4.71129 6.77499 4.97192 6.77499H9.62811C9.88874 6.77499 10.1 7.01004 10.1 7.29999C10.1 7.58994 9.88874 7.82499 9.62811 7.82499H4.97192C4.71129 7.82499 4.5 7.58994 4.5 7.29999Z" fill="currentColor"/>
|
|
5
5
|
</svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="
|
|
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.05003 7.28054C2.05003 4.39179 4.39182 2.05 7.28057 2.05C10.1693 2.05 12.5111 4.39179 12.5111 7.28054C12.5111 10.1693 10.1693 12.5111 7.28057 12.5111C4.39182 12.5111 2.05003 10.1693 2.05003 7.28054ZM7.28057 1C3.81192 1 1.00003 3.81189 1.00003 7.28054C1.00003 10.7492 3.81192 13.5611 7.28057 13.5611C8.82589 13.5611 10.2409 13.003 11.3349 12.0773L14.1038 14.8462C14.3088 15.0512 14.6412 15.0512 14.8462 14.8462C15.0513 14.6412 15.0513 14.3088 14.8462 14.1037L12.0774 11.3349C13.003 10.2408 13.5611 8.82585 13.5611 7.28054C13.5611 3.81189 10.7492 1 7.28057 1Z" fill="currentColor"/>
|
|
4
4
|
<path d="M7.30001 4.18503C7.58996 4.18503 7.82501 4.42008 7.82501 4.71003V6.77499H9.89001C10.18 6.77499 10.415 7.01004 10.415 7.29999C10.415 7.58994 10.18 7.82499 9.89001 7.82499H7.82501V9.89002C7.82501 10.18 7.58996 10.415 7.30001 10.415C7.01006 10.415 6.77501 10.18 6.77501 9.89002V7.82499H4.71002C4.42007 7.82499 4.18502 7.58994 4.18502 7.29999C4.18502 7.01004 4.42007 6.77499 4.71002 6.77499H6.77501V4.71003C6.77501 4.42008 7.01006 4.18503 7.30001 4.18503Z" fill="currentColor"/>
|
|
5
5
|
</svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="
|
|
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="M2.05012 7.28051C2.05012 4.39178 4.3919 2.04999 7.28063 2.04999C10.1694 2.04999 12.5111 4.39178 12.5111 7.28051C12.5111 10.1692 10.1694 12.511 7.28063 12.511C4.3919 12.511 2.05012 10.1692 2.05012 7.28051ZM7.28063 1C3.812 1 1.00012 3.81188 1.00012 7.28051C1.00012 10.7491 3.812 13.561 7.28063 13.561C8.82595 13.561 10.2409 13.0029 11.335 12.0773L14.1038 14.8461C14.3088 15.0512 14.6412 15.0512 14.8463 14.8461C15.0513 14.6411 15.0513 14.3087 14.8463 14.1037L12.0774 11.3348C13.003 10.2408 13.5611 8.82582 13.5611 7.28051C13.5611 3.81188 10.7493 1 7.28063 1Z"
|
|
4
4
|
fill="currentColor"
|
|
5
5
|
fill-rule="evenodd"/>
|
package/icons/mail.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="
|
|
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="M13.9472 3.75645C13.9218 3.52873 13.7258 3.34491 13.4788 3.34491H2.52121C2.27415 3.34491 2.07818 3.52873 2.05284 3.75645L7.62834 8.07766C7.71751 8.12894 7.84903 8.16645 8 8.16645C8.15098 8.16645 8.2825 8.12894 8.37167 8.07764L13.9472 3.75645ZM14.9999 3.80657C15 3.81272 15 3.80043 14.9999 3.80657V12.1931C14.9999 13.0327 14.3141 13.7048 13.4788 13.7048H2.52121C1.68586 13.7048 1.00007 13.0327 1.00007 12.1931V3.80657C0.999964 3.80046 0.999964 3.8127 1.00007 3.80657C1.00007 2.96699 1.68586 2.29492 2.52121 2.29492H13.4788C14.3141 2.29492 14.9999 2.96699 14.9999 3.80657ZM2.05006 4.97695V12.1931C2.05006 12.4434 2.25625 12.6548 2.52121 12.6548H13.4788C13.7437 12.6548 13.9499 12.4434 13.9499 12.1931V4.97696L8.9062 8.9814L8.90143 8.9842C8.63265 9.1405 8.31382 9.21644 8 9.21644C7.68617 9.21644 7.36735 9.1405 7.09856 8.9842L7.09379 8.9814L2.05006 4.97695Z" fill="currentColor"/>
|
|
4
4
|
</svg>
|
|
5
5
|
</template>
|
package/icons/mailru.vue
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="32"
|
|
4
|
+
height="32"
|
|
5
|
+
viewBox="0 0 32 32"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
>
|
|
9
|
+
<rect
|
|
10
|
+
x="0.5"
|
|
11
|
+
y="0.5"
|
|
12
|
+
width="31"
|
|
13
|
+
height="31"
|
|
14
|
+
rx="5.5"
|
|
15
|
+
stroke="#9DA3AC"
|
|
16
|
+
/>
|
|
17
|
+
<g clip-path="url(#clip0_680_206687)">
|
|
18
|
+
<path
|
|
19
|
+
d="M19.1585 15.5C19.1585 17.2417 17.7417 18.6585 16 18.6585C14.2583 18.6585 12.8415 17.2417 12.8415 15.5C12.8415 13.7583 14.2583 12.3415 16 12.3415C17.7417 12.3415 19.1585 13.7583 19.1585 15.5ZM16 5C10.2106 5 5.5 9.71056 5.5 15.5C5.5 21.2894 10.2106 26 16 26C18.121 26 20.1665 25.3687 21.9148 24.1737L21.945 24.1527L20.5301 22.5081L20.5065 22.5238C19.1605 23.3894 17.6019 23.8475 16 23.8475C11.3971 23.8475 7.6525 20.1029 7.6525 15.5C7.6525 10.8971 11.3971 7.1525 16 7.1525C20.6029 7.1525 24.3475 10.8971 24.3475 15.5C24.3475 16.0965 24.2812 16.7003 24.1506 17.2942C23.8868 18.3777 23.1282 18.7097 22.5586 18.6657C21.9857 18.6192 21.3156 18.211 21.311 17.2122V16.4509V15.5C21.311 12.5712 18.9288 10.189 16 10.189C13.0712 10.189 10.689 12.5712 10.689 15.5C10.689 18.4288 13.0712 20.811 16 20.811C17.4227 20.811 18.7569 20.2545 19.7629 19.2432C20.3477 20.1535 21.3012 20.7244 22.386 20.811C22.4792 20.8189 22.5743 20.8228 22.6688 20.8228C23.432 20.8228 24.1893 20.5676 24.7997 20.1036C25.429 19.6258 25.8989 18.9348 26.1588 18.1047C26.2001 17.9708 26.2762 17.6637 26.2769 17.6617L26.2788 17.6505C26.4317 16.9844 26.5 16.3203 26.5 15.5C26.5 9.71056 21.7894 5 16 5Z"
|
|
20
|
+
fill="#FF9E00"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
23
|
+
<defs>
|
|
24
|
+
<clipPath id="clip0_680_206687">
|
|
25
|
+
<rect
|
|
26
|
+
width="21"
|
|
27
|
+
height="21"
|
|
28
|
+
fill="white"
|
|
29
|
+
transform="translate(5.5 5)"
|
|
30
|
+
/>
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
</svg>
|
|
34
|
+
</template>
|
package/icons/main-filter.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="
|
|
2
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path class="fill-deepblue-900 dark:fill-gray-200" fill-rule="evenodd" clip-rule="evenodd" d="M15.1487 5.43944C15.1487 4.71477 15.7361 4.1273 16.4608 4.1273C17.1855 4.1273 17.7729 4.71477 17.7729 5.43944C17.7729 6.16411 17.1855 6.75158 16.4608 6.75158C15.7361 6.75158 15.1487 6.16411 15.1487 5.43944ZM13.683 6.22775H2.29021C1.85541 6.22775 1.50293 5.87527 1.50293 5.44046C1.50293 5.00566 1.85541 4.65318 2.29021 4.65318H13.6825C14.0248 3.44103 15.1391 2.55273 16.4608 2.55273C17.7825 2.55273 18.8968 3.44103 19.2391 4.65318H21.7128C22.1476 4.65318 22.5 5.00566 22.5 5.44046C22.5 5.87527 22.1476 6.22775 21.7128 6.22775H19.2386C18.8955 7.43886 17.7818 8.32615 16.4608 8.32615C15.1398 8.32615 14.0261 7.43886 13.683 6.22775ZM8.59002 9.11292C9.91221 9.11292 11.0268 10.0018 11.3687 11.2146H21.7099C22.1447 11.2146 22.4972 11.5671 22.4972 12.0019C22.4972 12.4367 22.1447 12.7892 21.7099 12.7892H11.3674C11.024 13.9997 9.91053 14.8863 8.59002 14.8863C7.2695 14.8863 6.15608 13.9997 5.81263 12.7892H2.29021C1.85541 12.7892 1.50293 12.4367 1.50293 12.0019C1.50293 11.5671 1.85541 11.2146 2.29021 11.2146H5.81132C6.15325 10.0018 7.26783 9.11292 8.59002 9.11292ZM8.59002 10.6875C7.86534 10.6875 7.27788 11.2749 7.27788 11.9996C7.27788 12.7243 7.86534 13.3118 8.59002 13.3118C9.31469 13.3118 9.90216 12.7243 9.90216 11.9996C9.90216 11.2749 9.31469 10.6875 8.59002 10.6875ZM19.2386 19.349C18.8956 20.5602 17.7818 21.4475 16.4608 21.4475C15.1398 21.4475 14.026 20.5602 13.683 19.349H2.29021C1.85541 19.349 1.50293 18.9965 1.50293 18.5617C1.50293 18.1269 1.85541 17.7744 2.29021 17.7744H13.6825C14.0249 16.5624 15.1391 15.6741 16.4608 15.6741C17.7825 15.6741 18.8967 16.5624 19.2391 17.7744H21.7128C22.1476 17.7744 22.5 18.1269 22.5 18.5617C22.5 18.9965 22.1476 19.349 21.7128 19.349H19.2386ZM15.1487 18.5608C15.1487 17.8362 15.7361 17.2487 16.4608 17.2487C17.1855 17.2487 17.7729 17.8362 17.7729 18.5608C17.7729 19.2855 17.1855 19.873 16.4608 19.873C15.7361 19.873 15.1487 19.2855 15.1487 18.5608Z"/>
|
|
4
4
|
</svg>
|
|
5
5
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
<template>
|
|
3
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="
|
|
3
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
4
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z" fill="currentColor"/>
|
|
5
5
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z" fill="currentColor"/>
|
|
6
6
|
</svg>
|
|
@@ -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="
|
|
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="M8.00003 2.05C5.8484 2.05 4.04233 3.85607 4.04233 6.00769C4.04233 6.62916 4.27782 7.31609 4.67533 8.02278C5.07012 8.72463 5.60363 9.4088 6.14891 10.0147C6.69267 10.6188 7.23813 11.1342 7.6484 11.4988C7.78191 11.6175 7.90072 11.7199 8.00003 11.8038C8.09933 11.7199 8.21814 11.6175 8.35166 11.4988C8.76192 11.1342 9.30739 10.6188 9.85114 10.0147C10.3964 9.4088 10.9299 8.72463 11.3247 8.02278C11.7222 7.31609 11.9577 6.62916 11.9577 6.00769C11.9577 3.85607 10.1516 2.05 8.00003 2.05ZM8.00003 12.4827C7.67771 12.8971 7.67749 12.8969 7.67749 12.8969L7.67621 12.8959L7.6731 12.8935L7.66209 12.8849C7.65267 12.8774 7.63912 12.8667 7.62172 12.8528C7.58692 12.8249 7.53668 12.7843 7.47321 12.7319C7.34632 12.6272 7.1663 12.4752 6.95081 12.2836C6.52058 11.9012 5.94537 11.3581 5.36845 10.7171C4.79306 10.0778 4.20589 9.32994 3.76018 8.53756C3.31719 7.75002 2.99233 6.88046 2.99233 6.00769C2.99233 3.27617 5.2685 1 8.00003 1C10.7315 1 13.0077 3.27617 13.0077 6.00769C13.0077 6.88046 12.6829 7.75002 12.2399 8.53756C11.7942 9.32994 11.207 10.0778 10.6316 10.7171C10.0547 11.3581 9.47947 11.9012 9.04924 12.2836C8.83375 12.4752 8.65373 12.6272 8.52684 12.7319C8.46337 12.7843 8.41314 12.8249 8.37833 12.8528C8.36093 12.8667 8.34738 12.8774 8.33796 12.8849L8.32695 12.8935L8.32384 12.8959L8.32289 12.8967C8.32289 12.8967 8.32234 12.8971 8.00003 12.4827ZM8.00003 12.4827L8.32289 12.8967C8.1333 13.0441 7.86707 13.0444 7.67749 12.8969L8.00003 12.4827Z" fill="currentColor"/>
|
|
8
8
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.00004 5.03846C7.46475 5.03846 7.03081 5.4724 7.03081 6.00769C7.03081 6.54298 7.46475 6.97692 8.00004 6.97692C8.53533 6.97692 8.96927 6.54298 8.96927 6.00769C8.96927 5.4724 8.53533 5.03846 8.00004 5.03846ZM5.98081 6.00769C5.98081 4.8925 6.88485 3.98846 8.00004 3.98846C9.11523 3.98846 10.0193 4.8925 10.0193 6.00769C10.0193 7.12288 9.11523 8.02692 8.00004 8.02692C6.88485 8.02692 5.98081 7.12288 5.98081 6.00769Z" fill="currentColor"/>
|
|
9
9
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.53668 10.7817C2.61941 10.5886 2.80922 10.4635 3.01923 10.4635H3.93839C4.22834 10.4635 4.46339 10.6985 4.46339 10.9885C4.46339 11.2784 4.22834 11.5135 3.93839 11.5135H3.36541L2.32118 13.95H13.6788L12.6346 11.5135H12.0616C11.7717 11.5135 11.5366 11.2784 11.5366 10.9885C11.5366 10.6985 11.7717 10.4635 12.0616 10.4635H12.9808C13.1908 10.4635 13.3806 10.5886 13.4633 10.7817L14.9575 14.2682C15.0271 14.4304 15.0104 14.6167 14.9133 14.764C14.8161 14.9113 14.6515 15 14.475 15H1.525C1.34853 15 1.18386 14.9113 1.08671 14.764C0.989562 14.6167 0.972934 14.4304 1.04245 14.2682L2.53668 10.7817Z" fill="currentColor"/>
|
package/icons/map/map-pin.vue
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
<template>
|
|
3
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="
|
|
3
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
4
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z" fill="currentColor"/>
|
|
5
5
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z" fill="currentColor"/>
|
|
6
6
|
</svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg xmlns="
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="0.75em" height="1em" viewBox="0 0 384 512">
|
|
3
3
|
<path fill="currentColor" d="M172.268 501.67C26.97 291.031 0 269.413 0 192C0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67c-9.535 13.774-29.93 13.773-39.464 0M192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80s-80 35.817-80 80s35.817 80 80 80" />
|
|
4
4
|
</svg>
|
|
5
5
|
</template>
|
package/icons/medal.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="16" height="16" viewBox="0 0 22 21" fill="none" xmlns="
|
|
2
|
+
<svg width="16" height="16" viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
4
|
d="M21.4258 8.12075C21.335 7.8408 21.1638 7.59375 20.9336 7.41038C20.7034 7.22701 20.4243 7.11542 20.1311 7.0895L14.5633 6.6095L12.3808 1.4195C12.2672 1.14717 12.0755 0.914551 11.8299 0.750929C11.5844 0.587308 11.2959 0.5 11.0008 0.5C10.7057 0.5 10.4172 0.587308 10.1717 0.750929C9.9261 0.914551 9.73443 1.14717 9.6208 1.4195L7.44487 6.6095L1.87049 7.09231C1.57615 7.11705 1.29566 7.22813 1.0642 7.41164C0.832741 7.59515 0.660612 7.84291 0.569401 8.12385C0.478189 8.4048 0.471955 8.70642 0.55148 8.99089C0.631004 9.27536 0.792748 9.53002 1.01643 9.72294L5.24549 13.4186L3.97799 18.9067C3.91097 19.1939 3.93009 19.4945 4.03297 19.7709C4.13585 20.0472 4.31792 20.2872 4.55642 20.4606C4.79492 20.6341 5.07926 20.7334 5.3739 20.7462C5.66854 20.7589 5.9604 20.6845 6.21299 20.5323L10.9942 17.6261L15.7858 20.5323C16.0384 20.6845 16.3303 20.7589 16.6249 20.7462C16.9195 20.7334 17.2039 20.6341 17.4424 20.4606C17.6809 20.2872 17.8629 20.0472 17.9658 19.7709C18.0687 19.4945 18.0878 19.1939 18.0208 18.9067L16.7542 13.4129L20.9824 9.72294C21.206 9.52936 21.3674 9.27397 21.4463 8.98889C21.5252 8.70382 21.5181 8.40178 21.4258 8.12075ZM19.9989 8.5895L15.7708 12.2795C15.565 12.4585 15.4119 12.6902 15.328 12.9497C15.2441 13.2092 15.2325 13.4867 15.2946 13.7523L16.5649 19.2498L11.7771 16.3436C11.5435 16.2013 11.2752 16.1261 11.0017 16.1261C10.7282 16.1261 10.46 16.2013 10.2264 16.3436L5.44518 19.2498L6.70705 13.7561C6.76907 13.4905 6.7575 13.213 6.67358 12.9535C6.58967 12.694 6.43658 12.4623 6.2308 12.2833L2.0008 8.59513C2.00046 8.59232 2.00046 8.58949 2.0008 8.58669L7.5733 8.10481C7.84537 8.08083 8.10572 7.98303 8.32628 7.82194C8.54684 7.66086 8.71923 7.44262 8.82487 7.19075L11.0008 2.00731L13.1758 7.19075C13.2814 7.44262 13.4538 7.66086 13.6744 7.82194C13.8949 7.98303 14.1553 8.08083 14.4274 8.10481L20.0008 8.58669C20.0008 8.58669 20.0008 8.59231 20.0008 8.59325L19.9989 8.5895Z"
|
|
5
5
|
fill="currentColor"/>
|
package/icons/menu-filled.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="
|
|
2
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path d="M21.2513 14.25H14.2513V21.25H21.2513V14.25Z" fill="currentColor" fill-opacity="0.8"/>
|
|
4
4
|
<path
|
|
5
5
|
d="M21.7513 14.25C21.7513 13.9738 21.5275 13.75 21.2513 13.75H14.2513C13.9752 13.75 13.7513 13.9738 13.7513 14.25V21.25C13.7513 21.5261 13.9752 21.75 14.2513 21.75H21.2513C21.5275 21.75 21.7513 21.5261 21.7513 21.25V14.25Z"
|
package/icons/menu.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="
|
|
2
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 13.7502C13 13.336 13.3358 13.0002 13.75 13.0002H21.2513C21.6656 13.0002 22.0013 13.336 22.0013 13.7502V21.2502C22.0013 21.6644 21.6656 22.0002 21.2513 22.0002H13.75C13.3358 22.0002 13 21.6644 13 21.2502V13.7502ZM14.5 14.5002V20.5002H20.5013V14.5002H14.5Z" fill="currentColor" class="dark:fill-white"/>
|
|
4
4
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 13.7502C2 13.336 2.33579 13.0002 2.75 13.0002H10.25C10.6642 13.0002 11 13.336 11 13.7502V21.2502C11 21.6644 10.6642 22.0002 10.25 22.0002H2.75C2.33579 22.0002 2 21.6644 2 21.2502V13.7502ZM3.5 14.5002V20.5002H9.5V14.5002H3.5Z" fill="currentColor" class="dark:fill-white"/>
|
|
5
5
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 2.75C13 2.33579 13.3358 2 13.75 2H21.2513C21.6656 2 22.0013 2.33579 22.0013 2.75V10.2502C22.0013 10.6644 21.6656 11.0002 21.2513 11.0002H13.75C13.3358 11.0002 13 10.6644 13 10.2502V2.75ZM14.5 3.5V9.50018H20.5013V3.5H14.5Z" fill="currentColor" class="dark:fill-white"/>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
</script>
|
|
3
3
|
|
|
4
4
|
<template>
|
|
5
|
-
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="
|
|
5
|
+
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-deepblue-900 dark:fill-gray-200">
|
|
6
6
|
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M8.85849 2.05002C7.99161 2.04776 7.13645 2.2503 6.36267 2.64114L6.36068 2.64214C5.4322 3.10618 4.65126 3.81955 4.10531 4.70235C3.55937 5.58515 3.26999 6.60252 3.26959 7.6405V7.64166C3.26733 8.50855 3.46986 9.3637 3.8607 10.1375C3.92381 10.2624 3.93441 10.4074 3.89015 10.5402L2.85524 13.6449L5.95995 12.61C6.09275 12.5657 6.23773 12.5763 6.36267 12.6395C6.45939 12.6883 6.55739 12.7342 6.65652 12.7772C7.35043 13.0777 8.09997 13.2325 8.85849 13.2306L8.85986 13.7532L8.85966 13.2306C9.89763 13.2302 10.915 12.9408 11.7978 12.3948C12.6806 11.8489 13.394 11.068 13.858 10.1395L13.859 10.1375C14.2499 9.3637 14.4524 8.50854 14.4501 7.64166L14.4501 7.6403V7.29537C14.3713 5.93008 13.7935 4.64114 12.8263 3.6739C11.859 2.70665 10.5701 2.12881 9.20478 2.05002H8.85986L8.85849 2.05002ZM8.86123 14.2806C10.0938 14.2799 11.3018 13.9362 12.3501 13.2879C13.3984 12.6396 14.2455 11.7123 14.7967 10.6099C15.2617 9.68909 15.5027 8.67125 15.5001 7.63971V7.28057C15.5001 7.26936 15.4998 7.25823 15.4991 7.24719C15.4082 5.62023 14.721 4.08374 13.5687 2.93143C12.4154 1.77808 10.8771 1.09067 9.2485 1.00082C9.23887 1.00029 9.22923 1.00002 9.21958 1.00002H8.86053C7.82888 0.997441 6.81119 1.23844 5.89027 1.7034C4.78784 2.25461 3.86057 3.10178 3.21228 4.15008C2.56379 5.1987 2.22006 6.40716 2.21958 7.64009L2.21959 7.64094C2.21738 8.59827 2.42493 9.54355 2.82655 10.4106L1.52876 14.304C1.49322 14.4069 1.48928 14.5215 1.52446 14.633C1.52694 14.6408 1.52961 14.6486 1.53247 14.6564C1.62994 14.9216 1.92126 15.063 2.19116 14.9731L6.08955 13.6736C6.95722 14.0755 7.90321 14.2831 8.86123 14.2806Z"/>
|
|
7
7
|
</svg>
|
|
8
8
|
</template>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="
|
|
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="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.00004Z"
|
|
4
4
|
fill="currentColor"
|
|
5
5
|
fill-rule="evenodd"/>
|
package/icons/money.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="
|
|
2
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.5 17.6852C20.5 17.7097 20.4967 17.7295 20.4925 17.7448H3.50748C3.50328 17.7295 3.5 17.7097 3.5 17.6852V6.31477C3.5 6.29033 3.50328 6.2705 3.50748 6.25519H20.4925C20.4967 6.2705 20.5 6.29033 20.5 6.31477V17.6852ZM20.5893 19.25C21.5035 19.25 22 18.3995 22 17.6852V6.31477C22 5.60055 21.5035 4.75 20.5893 4.75H3.41072C2.49649 4.75 2 5.60055 2 6.31477V17.6852C2 18.3995 2.49649 19.25 3.41072 19.25H20.5893ZM10.15 11.2474C9.73578 11.2474 9.39999 11.5843 9.39999 12C9.39999 12.4156 9.73578 12.7526 10.15 12.7526H11.25V15.7128C11.25 16.1284 11.5858 16.4654 12 16.4654C12.4142 16.4654 12.75 16.1284 12.75 15.7128V12.7526H13.85C14.2642 12.7526 14.6 12.4156 14.6 12C14.6 11.5843 14.2642 11.2474 13.85 11.2474H12H10.15ZM9.39999 9.2154C9.39999 8.79975 9.73578 8.4628 10.15 8.4628H13.85C14.2642 8.4628 14.6 8.79975 14.6 9.2154C14.6 9.63105 14.2642 9.96799 13.85 9.96799H10.15C9.73578 9.96799 9.39999 9.63105 9.39999 9.2154Z" fill="currentColor"/>
|
|
4
4
|
</svg>
|
|
5
5
|
</template>
|
package/icons/monitoring.vue
CHANGED
package/icons/moon.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="
|
|
2
|
+
<svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<path
|
|
4
4
|
d="M5.99987 12.6668C5.99987 13.2268 6.08654 13.7735 6.24654 14.2802C3.6865 13.3935 1.75314 11.0401 1.55314 8.28677C1.35314 5.36006 3.03983 2.62668 5.76654 1.48C6.47321 1.18666 6.83322 1.4 6.98655 1.55333C7.13322 1.7 7.33989 2.05334 7.04656 2.72668C6.74655 3.42003 6.59988 4.15337 6.59988 4.91338C6.60655 6.2734 7.13989 7.53342 8.00657 8.5001C6.78655 9.47345 5.99987 10.9801 5.99987 12.6668Z"/>
|
|
5
5
|
<path d="M14.1402 11.8136C12.8202 13.607 10.7268 14.6603 8.49343 14.6603C8.38676 14.6603 8.2801 14.6537 8.17343 14.647C7.50675 14.6203 6.86007 14.4937 6.24673 14.2803C6.08673 13.7737 6.00006 13.227 6.00006 12.667C6.00006 10.9803 6.78674 9.47359 8.00676 8.50024C8.98677 9.60026 10.3935 10.3136 11.9468 10.3803C12.3668 10.4003 12.7868 10.3669 13.2002 10.2936C13.9468 10.1603 14.2469 10.4403 14.3535 10.6203C14.4669 10.8003 14.5869 11.1936 14.1402 11.8136Z"
|
package/icons/more.vue
CHANGED
package/icons/notification.vue
CHANGED
package/icons/paperclip.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="
|
|
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="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
4
|
fill="currentColor"
|
|
5
5
|
fill-rule="evenodd"/>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="44" height="34" viewBox="0 0 44 34" fill="none" xmlns="
|
|
2
|
+
<svg width="44" height="34" viewBox="0 0 44 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<rect width="44" height="34" rx="3" class="dark:text-[#E3E5E8] text-deepblue-900" fill="currentColor"/>
|
|
4
4
|
<path d="M0 10L44 10" class="text-white dark:text-[#26282B]" stroke="currentColor" stroke-width="3"/>
|
|
5
5
|
</svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="44" height="34" viewBox="0 0 44 34" fill="none" xmlns="
|
|
2
|
+
<svg width="44" height="34" viewBox="0 0 44 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
3
|
<rect width="44" height="34" rx="3" fill="#F14635"/>
|
|
4
4
|
<mask id="mask0_222_47797" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="12" y="7" width="21" height="21">
|
|
5
5
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 7.125H32.9847V27.9988H12" fill="white"/>
|
package/icons/person-vector.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="
|
|
2
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
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
4
|
</svg>
|
|
5
5
|
</template>
|
package/icons/phone-filled.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="
|
|
2
|
+
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
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
4
|
</svg>
|
|
5
5
|
</template>
|
package/icons/phone.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="
|
|
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="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
4
|
</svg>
|
|
5
5
|
</template>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="
|
|
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"
|
|
4
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
5
|
fill="currentColor"
|
package/icons/plus/plus.vue
CHANGED
|
@@ -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="
|
|
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="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
8
|
</svg>
|
|
9
9
|
</template>
|
package/icons/profile.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="
|
|
2
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
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
4
|
</svg>
|
|
5
5
|
</template>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="1.25em" height="1.25em" viewBox="0 0 24 24" fill="none" xmlns="
|
|
2
|
+
<svg width="1.25em" height="1.25em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
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
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
5
|
</svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="1.25em" height="1.25em" viewBox="0 0 24 24" fill="none" xmlns="
|
|
2
|
+
<svg width="1.25em" height="1.25em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
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
4
|
</svg>
|
|
5
5
|
|
package/icons/receipt.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="
|
|
2
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
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
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
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"/>
|
|
@@ -0,0 +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>
|
package/icons/scales/scale.vue
CHANGED
package/icons/scales/scales.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="
|
|
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="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
4
|
</svg>
|
|
5
5
|
</template>
|