@stokr/components-library 3.0.16 → 3.0.17
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/README.md +261 -262
- package/dist/analytics/index.js +180 -0
- package/dist/api/auth.js +15 -0
- package/dist/api/fetchData.js +27 -0
- package/dist/api/fetchDataPublic.js +19 -0
- package/dist/auth/index.js +32 -0
- package/dist/components/2FA/Connect2FA.js +55 -0
- package/dist/components/2FA/EnterCode.js +63 -0
- package/dist/components/2FA/InstallAuthApp.js +64 -0
- package/dist/components/2FA/ResetCode.js +33 -0
- package/dist/components/2FA/Sucess2FA.js +51 -0
- package/dist/components/2FA/disable-2fa-flow.js +91 -0
- package/dist/components/2FA/enable-2fa-flow.js +137 -0
- package/dist/components/2FA/login-with-otp-flow.js +206 -0
- package/dist/components/2FA/main-flow.js +217 -0
- package/dist/components/AccountBalance/AccountBalance.js +35 -0
- package/dist/components/AccountBalance/AccountBalance.styles.js +48 -0
- package/dist/components/AdminDashboard/Table/ReactTable.js +266 -0
- package/dist/components/AdminDashboard/Table/ReactTableWrapper.js +65 -0
- package/dist/components/AdminDashboard/Table/Table.js +123 -0
- package/dist/components/AdminDashboard/Table/Table.styles.js +263 -0
- package/dist/components/AgreementItem/AgreementItem.js +39 -0
- package/dist/components/AgreementItem/AgreementItem.styles.js +32 -0
- package/dist/components/BackButton/BackButton.js +34 -0
- package/dist/components/BackButton/BackButton.styles.js +123 -0
- package/dist/components/Background/Background.js +45 -0
- package/dist/components/Background/Background.styles.js +119 -0
- package/dist/components/BasicTable/BasicTable.js +25 -0
- package/dist/components/BasicTable/BasicTable.styles.js +76 -0
- package/dist/components/BlogPost/BlogPost.js +98 -0
- package/dist/components/BlogPost/BlogPost.styles.js +230 -0
- package/dist/components/Button/Button.styles.js +207 -0
- package/dist/components/ButtonContainer/ButtonContainer.styles.js +51 -0
- package/dist/components/CapitalRaisedSummary/CaptialRaisedSummary.js +18 -0
- package/dist/components/CapitalRaisedSummary/CaptialRaisedSummary.styles.js +41 -0
- package/dist/components/Card/Card.styles.js +97 -0
- package/dist/components/ChartLegend/ChartLegend.js +62 -0
- package/dist/components/ChartLegend/ChartLegend.styles.js +133 -0
- package/dist/components/Checkbox/Checkbox.js +80 -0
- package/dist/components/Checkbox/Checkbox.styles.js +133 -0
- package/dist/components/Checklist/ChecklistCard.js +71 -0
- package/dist/components/Checklist/ChecklistCard.styles.js +82 -0
- package/dist/components/Chips/Chip.js +23 -0
- package/dist/components/Chips/Chip.styles.js +72 -0
- package/dist/components/Chips/ChipWrapper.js +50 -0
- package/dist/components/ComponentScroll/ComponentScroll.js +70 -0
- package/dist/components/ComponentScroll/ComponentScroll.styles.js +127 -0
- package/dist/components/ComponentWrapper/ComponentWrapper.styles.js +165 -0
- package/dist/components/ConfirmModal/ConfirmModal.js +187 -0
- package/dist/components/ConfirmModal/ConfirmModal.styles.js +44 -0
- package/dist/components/CryptoAddress/ComponentWrap.js +16 -0
- package/dist/components/CryptoAddress/CryptoAddress.js +151 -0
- package/dist/components/CryptoAddress/CryptoAddress.styles.js +443 -0
- package/dist/components/CryptoAddress/RadioWrap.js +47 -0
- package/dist/components/CryptoAddressDetails/CryptoAddressDetails.js +34 -0
- package/dist/components/CryptoAddressDetails/CryptoAddressDetails.styles.js +125 -0
- package/dist/components/CryptoAddressWrapper/CryptoAddressWrapper.js +25 -0
- package/dist/components/CryptoAddressWrapper/CryptoAddressWrapper.styles.js +111 -0
- package/dist/components/DoubleButton/DoubleButton.styles.js +27 -0
- package/dist/components/ErrorMessage/ErrorMessage.styles.js +9 -0
- package/dist/components/FAQ/FAQ.js +73 -0
- package/dist/components/FAQ/FAQ.styles.js +128 -0
- package/dist/components/Footer/Footer.js +55 -0
- package/dist/components/Footer/Footer.styles.js +256 -0
- package/dist/components/Footer/FooterLayout.js +145 -0
- package/dist/components/Footer/FooterMenu.js +100 -0
- package/dist/components/Footer/FooterMenu.styles.js +321 -0
- package/dist/components/ForgotPasswordModal/ForgotPasswordModal.js +100 -0
- package/dist/components/Form/Form.js +21 -0
- package/dist/components/Form/Form.styles.js +72 -0
- package/dist/components/Grid/Grid.styles.js +212 -0
- package/dist/components/Header/Header.js +425 -0
- package/dist/components/Header/Header.styles.js +567 -0
- package/dist/components/HeroBlock/HeroVideoBlock.js +105 -0
- package/dist/components/Icon/Icon.style.js +92 -0
- package/dist/components/Icon/Icon2.js +12 -0
- package/dist/components/InfoIcon/InfoIcon.js +62 -0
- package/dist/components/InfoIcon/InfoIcon.styles.js +64 -0
- package/dist/components/Input/DatePickerInput.js +139 -0
- package/dist/components/Input/DatePickerInput.styles.js +165 -0
- package/dist/components/Input/Input.js +108 -0
- package/dist/components/Input/Input.styles.js +154 -0
- package/dist/components/Input/InputPassword.js +122 -0
- package/dist/components/Input/InputPassword.styles.js +166 -0
- package/dist/components/Input/InputUsername.js +92 -0
- package/dist/components/Input/InputWithButton.js +53 -0
- package/dist/components/Input/InputWithButton.styles.js +57 -0
- package/dist/components/Input/MultiSelect.js +306 -0
- package/dist/components/Input/OtpInput.js +70 -0
- package/dist/components/Input/RangeInput.js +80 -0
- package/dist/components/Input/RangeInput.styles.js +129 -0
- package/dist/components/Input/SearchInput.js +68 -0
- package/dist/components/Input/SearchInput.styles.js +92 -0
- package/dist/components/Input/Select.js +151 -0
- package/dist/components/Input/Select.styles.js +148 -0
- package/dist/components/Input/TableFilterDropdown.js +247 -0
- package/dist/components/Input/Textarea.js +51 -0
- package/dist/components/Input/Textarea.styles.js +62 -0
- package/dist/components/InvestCalculator/InvestCalculator.js +283 -0
- package/dist/components/InvestCalculator/InvestCalculator.styles.js +94 -0
- package/dist/components/InvestmentStat/InvestmentStat.js +24 -0
- package/dist/components/InvestmentStat/InvestmentStat.styles.js +62 -0
- package/dist/components/LatestUpdate/LatestUpdate.js +24 -0
- package/dist/components/LatestUpdate/LatestUpdate.styles.js +90 -0
- package/dist/components/Layout/Layout.js +69 -0
- package/dist/components/LearnMoreCarousel/LearnMoreCarousel.js +32 -0
- package/dist/components/LearnMoreCarousel/LearnMoreCarousel.styles.js +208 -0
- package/dist/components/LearnMorePage/LearnMore.js +190 -0
- package/dist/components/LearnMorePage/LearnMore.propTypes.js +20 -0
- package/dist/components/LearnMorePage/LearnMore.shared.styles.js +56 -0
- package/dist/components/LearnMorePage/LearnMore.styles.js +276 -0
- package/dist/components/LearnMorePage/LearnMoreExampleObject.js +120 -0
- package/dist/components/LearnMorePage/LearnMoreItem.js +57 -0
- package/dist/components/LearnMorePage/LearnMoreItem.styles.js +234 -0
- package/dist/components/LearnMoreSection/LearnMore.js +138 -0
- package/dist/components/LearnMoreSection/LearnMore.styles.js +147 -0
- package/dist/components/LearnMoreSection/LearnMoreItem.js +33 -0
- package/dist/components/LearnMoreSection/LearnMoreItem.styles.js +60 -0
- package/dist/components/LoginModal/LoginModal.js +142 -0
- package/dist/components/MainMenu/DynamicMainMenu.js +38 -0
- package/dist/components/MainMenu/MainMenu.js +210 -0
- package/dist/components/MainMenu/MainMenu.styles.js +362 -0
- package/dist/components/MenuNav/MenuNav.styles.js +66 -0
- package/dist/components/Modal/Modal.js +119 -0
- package/dist/components/Modal/Modal.styles.js +450 -0
- package/dist/components/Modal/NewVentureModal/NewVentureModal.js +262 -0
- package/dist/components/Modal/PaymentModal.js +149 -0
- package/dist/components/Modal/SideModal.js +89 -0
- package/dist/components/Modal/SideModal.styles.js +55 -0
- package/dist/components/Modal/SuccessModal/SuccessModal.js +170 -0
- package/dist/components/Modal/SuccessModal/SuccessModal.styles.js +53 -0
- package/dist/components/MultiProgressBar/MultiProgressBar.js +30 -0
- package/dist/components/MultiProgressBar/MultiProgressBar.styles.js +105 -0
- package/dist/components/Newsletter/Newsletter.js +122 -0
- package/dist/components/Newsletter/Newsletter.styles.js +186 -0
- package/dist/components/NotificationCounter/NotificationCounter.styles.js +38 -0
- package/dist/components/Number/Number.js +50 -0
- package/dist/components/Number/Number.styles.js +23 -0
- package/dist/components/PageTransition/PageTransition.js +51 -0
- package/dist/components/Pagination/Pagination.js +58 -0
- package/dist/components/Pagination/Pagination.styles.js +59 -0
- package/dist/components/Pagination/PaginationControls.js +113 -0
- package/dist/components/Pagination/usePagination.js +40 -0
- package/dist/components/Payment/PaymentDetailsCard.js +224 -0
- package/dist/components/Payment/PaymentDisplay.js +199 -0
- package/dist/components/Payment/TimerComponent.js +92 -0
- package/dist/components/Process/Process.styles.js +84 -0
- package/dist/components/ProfileBadge/ProfileBadge.js +35 -0
- package/dist/components/ProfileBadge/ProfileBadge.styles.js +53 -0
- package/dist/components/ProfileBox/ProfileBox.js +27 -0
- package/dist/components/ProfileBox/ProfileBox.styles.js +67 -0
- package/dist/components/ProfileStat/ProfileStat.js +29 -0
- package/dist/components/ProfileStat/ProfileStat.styles.js +90 -0
- package/dist/components/QRCode/QRCode.js +51 -0
- package/dist/components/Radio/Radio.js +51 -0
- package/dist/components/Radio/Radio.styles.js +100 -0
- package/dist/components/RefreshButton/RefreshButton.js +21 -0
- package/dist/components/RefreshButton/RefreshButton.styles.js +64 -0
- package/dist/components/RegisterConfirmModal/RegisterConfirmModal.js +65 -0
- package/dist/components/RegisterConfirmModal/RegisterConfirmModal.styles.js +20 -0
- package/dist/components/RegisterModal/RegisterModal.js +248 -0
- package/dist/components/RequestDataBox/RequestDataBox.js +21 -0
- package/dist/components/RequestDataBox/RequestDataBox.styles.js +43 -0
- package/dist/components/ResetConfirmModal/ResetConfirmModal.js +44 -0
- package/dist/components/ResetConfirmModal/ResetConfirmModal.styles.js +41 -0
- package/dist/components/ResetPasswordModal/ResetPasswordModal.js +134 -0
- package/dist/components/SEO/SEO.js +66 -0
- package/dist/components/SectionTitle/SectionTitle.styles.js +26 -0
- package/dist/components/SideLine/SideLine.js +7 -0
- package/dist/components/SideLine/SideLine.styles.js +33 -0
- package/dist/components/Slider/Slider.js +31 -0
- package/dist/components/Slider/Slider.styles.js +120 -0
- package/dist/components/Snackbar/Snackbar.js +111 -0
- package/dist/components/Snackbar/Snackbar.styles.js +230 -0
- package/dist/components/Snackbar/SnackbarProvider.js +66 -0
- package/dist/components/Snackbar/useSnackbar.js +12 -0
- package/dist/components/SpanButton/SpanButton.styles.js +19 -0
- package/dist/components/StatusBadge/StatusBadge.styles.js +18 -0
- package/dist/components/StatusTag/StatusTag.js +105 -0
- package/dist/components/StatusTag/StatusTag.styles.js +88 -0
- package/dist/components/StepController/StepController.js +86 -0
- package/dist/components/StepController/StepController.styles.js +33 -0
- package/dist/components/StepController/StepControllerContext.js +65 -0
- package/dist/components/StepController/StepControllerProgress.js +37 -0
- package/dist/components/StepsProgress/StepIndicator.js +40 -0
- package/dist/components/StepsProgress/StepIndicator.styles.js +69 -0
- package/dist/components/StepsProgress/StepsProgress.js +67 -0
- package/dist/components/StepsProgress/StepsProgress.styles.js +105 -0
- package/dist/components/StokrLoader/StokrLoader.js +111 -0
- package/dist/components/StokrLoader/media.js +23 -0
- package/dist/components/SvgIcons/AdminBadgeSvg.js +27 -0
- package/dist/components/SvgIcons/CameraSvg.js +31 -0
- package/dist/components/SvgIcons/CapsLockSvg.js +36 -0
- package/dist/components/SvgIcons/DocumentBackSvg.js +20 -0
- package/dist/components/SvgIcons/DocumentSmallSvg.js +41 -0
- package/dist/components/SvgIcons/DocumentSvg.js +39 -0
- package/dist/components/SvgIcons/EthSvg.js +28 -0
- package/dist/components/SvgIcons/EurSvg.js +27 -0
- package/dist/components/SvgIcons/FaceScanIconSvg.js +17 -0
- package/dist/components/SvgIcons/FourSvg.js +7 -0
- package/dist/components/SvgIcons/Glassess.js +26 -0
- package/dist/components/SvgIcons/LogoSvg.js +17 -0
- package/dist/components/SvgIcons/OneSvg.js +10 -0
- package/dist/components/SvgIcons/PassportSvg.js +37 -0
- package/dist/components/SvgIcons/RefreshSvg.js +28 -0
- package/dist/components/SvgIcons/SocialFacebook.js +22 -0
- package/dist/components/SvgIcons/SocialInstagram.js +13 -0
- package/dist/components/SvgIcons/SocialLinkedIn.js +31 -0
- package/dist/components/SvgIcons/SocialMedium.js +21 -0
- package/dist/components/SvgIcons/SocialReddit.js +21 -0
- package/dist/components/SvgIcons/SocialTelegram.js +60 -0
- package/dist/components/SvgIcons/SocialTwitter.js +62 -0
- package/dist/components/SvgIcons/SocialYoutube.js +22 -0
- package/dist/components/SvgIcons/ThreeSvg.js +7 -0
- package/dist/components/SvgIcons/TwoSidedDocumentSvg.js +48 -0
- package/dist/components/SvgIcons/TwoSvg.js +10 -0
- package/dist/components/SvgIcons/UpdateDefaultSvg.js +12 -0
- package/dist/components/SvgIcons/UpdateHardSvg.js +10 -0
- package/dist/components/SvgIcons/UpdateSoftSvg.js +11 -0
- package/dist/components/SvgIcons/UploadSvg.js +12 -0
- package/dist/components/SvgIcons/VerifiedBadge.js +16 -0
- package/dist/components/Switch/Switch.js +63 -0
- package/dist/components/Switch/Switch.styles.js +126 -0
- package/dist/components/Tabs/Tabs.js +54 -0
- package/dist/components/Tabs/Tabs.styles.js +15 -0
- package/dist/components/TabsNav/TabNav.js +16 -0
- package/dist/components/TabsNav/TabsNav.js +30 -0
- package/dist/components/TabsNav/TabsNav.styles.js +103 -0
- package/dist/components/TeamOverview/TeamOverview.js +80 -0
- package/dist/components/TeamOverview/TeamOverview.styles.js +167 -0
- package/dist/components/TermsModal/TermsModal.js +145 -0
- package/dist/components/TermsModal/_styles.js +313 -0
- package/dist/components/Text/Text.styles.js +220 -0
- package/dist/components/TextLink/TextLink.styles.js +67 -0
- package/dist/components/Timeline/Timeline.js +44 -0
- package/dist/components/Timeline/Timeline.styles.js +147 -0
- package/dist/components/Timeline/TimelineStep.js +58 -0
- package/dist/components/ToDoList/ToDoList.js +172 -0
- package/dist/components/ToDoList/ToDoList.styles.js +122 -0
- package/dist/components/ToDoList/ToDoListTask.js +95 -0
- package/dist/components/ToDoList/ToDoListTask.styles.js +119 -0
- package/dist/components/TransactionDetails/TransactionDetails.js +27 -0
- package/dist/components/TransactionDetails/TransactionDetails.styles.js +38 -0
- package/dist/components/TransactionInfo/TransactionInfo.js +41 -0
- package/dist/components/TransactionInfo/TransactionInfo.styles.js +75 -0
- package/dist/components/VerifyEmailModal/VerifyEmailModal.js +122 -0
- package/dist/components/breakdown/Breakdown.js +126 -0
- package/dist/components/headerHo/HeaderHo.js +709 -0
- package/dist/components/icons/Arrow.js +38 -0
- package/dist/components/icons/ArrowSimple.js +34 -0
- package/dist/components/icons/Check.js +16 -0
- package/dist/components/icons/Facebook.js +10 -0
- package/dist/components/icons/Info.js +27 -0
- package/dist/components/icons/Instagram.js +10 -0
- package/dist/components/icons/LinkIcon.js +49 -0
- package/dist/components/icons/LinkedIn.js +13 -0
- package/dist/components/icons/Medium.js +13 -0
- package/dist/components/icons/Reddit.js +16 -0
- package/dist/components/icons/Share.js +31 -0
- package/dist/components/icons/Telegram.js +13 -0
- package/dist/components/icons/Twitter.js +10 -0
- package/dist/components/icons/X.js +10 -0
- package/dist/components/icons/Youtube.js +10 -0
- package/dist/components/icons/index.js +32 -0
- package/dist/components/landing-page/List.js +51 -0
- package/dist/components/landing-page/PageContent.js +65 -0
- package/dist/components/landing-page/PageText.js +171 -0
- package/dist/components/landing-page/PageTitle.js +259 -0
- package/dist/components/logo/Logo.js +57 -0
- package/dist/components/taxId/complete.js +24 -0
- package/dist/components/taxId/flow.js +53 -0
- package/dist/components/taxId/register-taxid.js +166 -0
- package/dist/config.js +44 -0
- package/dist/constants/globalVariables.js +87 -0
- package/dist/constants/style.js +48 -0
- package/dist/context/Auth.js +396 -0
- package/dist/context/AuthContext.js +781 -0
- package/dist/context/Checkbox/CheckboxContext.js +151 -0
- package/dist/firebase-config.js +73 -0
- package/dist/hooks/useNewVentureForm.js +262 -0
- package/dist/hooks/useTimer.js +89 -0
- package/dist/index.js +628 -25463
- package/dist/model/axios.js +10 -0
- package/dist/model/axiosPublic.js +9 -0
- package/dist/services/TimerService.js +80 -0
- package/dist/static/animations/checked.lottie.js +4 -0
- package/dist/static/animations/progress.lottie.js +4 -0
- package/dist/static/fonts/Ionicons/Ionicons.ttf.js +4 -0
- package/dist/static/fonts/Ionicons/Ionicons.woff.js +4 -0
- package/dist/static/fonts/Ionicons/Ionicons.woff2.js +4 -0
- package/dist/static/fonts/Ionicons/ionicons.min.css.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Bold.ttf.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Bold.woff.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Bold.woff2.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.ttf.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.woff.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.woff2.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Light.ttf.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Light.woff.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Light.woff2.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Regular.ttf.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Regular.woff.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Regular.woff2.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-SemiBold.ttf.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-SemiBold.woff.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-SemiBold.woff2.js +4 -0
- package/dist/static/fonts/icomoon/icomoon.eot.js +4 -0
- package/dist/static/fonts/icomoon/icomoon.svg.js +4 -0
- package/dist/static/fonts/icomoon/icomoon.ttf.js +4 -0
- package/dist/static/fonts/icomoon/icomoon.woff.js +4 -0
- package/dist/static/images/add-folder-icon.svg.js +5 -0
- package/dist/static/images/address-refreshing.gif.js +4 -0
- package/dist/static/images/arrow-down-black.svg.js +4 -0
- package/dist/static/images/avatar-placeholder.png.js +4 -0
- package/dist/static/images/background3.png.js +4 -0
- package/dist/static/images/bitcoin-logo.svg.js +4 -0
- package/dist/static/images/bmn2-logo.svg.js +4 -0
- package/dist/static/images/check-icon.svg.js +5 -0
- package/dist/static/images/checkmark-circle-icon.svg.js +5 -0
- package/dist/static/images/close-circle-icon.svg.js +5 -0
- package/dist/static/images/copy_icon.svg.js +5 -0
- package/dist/static/images/cross-icon.svg.js +5 -0
- package/dist/static/images/early-adopter.png.js +4 -0
- package/dist/static/images/eth_logo.svg.js +4 -0
- package/dist/static/images/filter-icon.svg.js +5 -0
- package/dist/static/images/google_auth.png.js +4 -0
- package/dist/static/images/graduation.png.js +4 -0
- package/dist/static/images/mangopay.svg.js +4 -0
- package/dist/static/images/numbers/number_eight.svg.js +5 -0
- package/dist/static/images/numbers/number_five.svg.js +5 -0
- package/dist/static/images/numbers/number_four.svg.js +5 -0
- package/dist/static/images/numbers/number_nine.svg.js +5 -0
- package/dist/static/images/numbers/number_one.svg.js +5 -0
- package/dist/static/images/numbers/number_seven.svg.js +5 -0
- package/dist/static/images/numbers/number_six.svg.js +5 -0
- package/dist/static/images/numbers/number_three.svg.js +5 -0
- package/dist/static/images/numbers/number_two.svg.js +5 -0
- package/dist/static/images/numbers/number_zero.svg.js +5 -0
- package/dist/static/images/process-waiting.gif.js +4 -0
- package/dist/static/images/search-icon.svg.js +5 -0
- package/dist/static/images/social/Facebook_Logo.png.js +4 -0
- package/dist/static/images/social/LI-In-Bug.png.js +4 -0
- package/dist/static/images/social/Telegram-Logo.png.js +4 -0
- package/dist/static/images/social/X-logo-black.png.js +4 -0
- package/dist/static/images/social/youtube_social_circle_red.png.js +4 -0
- package/dist/static/images/transfer-icon.svg.js +5 -0
- package/dist/static/images/usdc-logo.svg.js +4 -0
- package/dist/static/images/usdq-logo.png.js +4 -0
- package/dist/static/images/warning-filled.svg.js +5 -0
- package/dist/styles/colors.js +56 -0
- package/dist/styles/fonts.js +100 -0
- package/dist/styles/global.js +74 -0
- package/dist/styles/grid.js +11 -0
- package/dist/styles/ioniconsStyles.js +31 -0
- package/dist/styles/reactTippy.js +40 -0
- package/dist/styles/rwd.js +56 -0
- package/dist/styles/semanticUi.js +84 -0
- package/dist/styles/spacing.js +8 -0
- package/dist/styles/theme.js +34 -0
- package/dist/utils/check-sale-time-left.js +85 -0
- package/dist/utils/check-todo-status.js +11 -0
- package/dist/utils/checklistGenerator.js +195 -0
- package/dist/utils/copyToClipboard.js +92 -0
- package/dist/utils/customHooks.js +126 -0
- package/dist/utils/delete-redirect-cookie-and-navigate.js +12 -0
- package/dist/utils/fix-decimals.js +5 -0
- package/dist/utils/formatCurrencyValue.js +95 -0
- package/dist/utils/get-cookie-domain.js +10 -0
- package/dist/utils/get-short-address.js +4 -0
- package/dist/utils/isUSInvestor.js +6 -0
- package/dist/utils/km_ify.js +33 -0
- package/dist/utils/moment.js +26 -0
- package/dist/utils/redirect-url.js +5 -0
- package/dist/utils/saveAs.js +17 -0
- package/dist/utils/scrollUtils.js +63 -0
- package/dist/utils/set-redirect-cookie.js +16 -0
- package/dist/utils/transition.js +101 -0
- package/dist/utils/withRouter.js +24 -0
- package/package.json +146 -146
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const DocumentSvg = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "145.5", height: "89", children: [
|
|
4
|
+
/* @__PURE__ */ jsx(
|
|
5
|
+
"path",
|
|
6
|
+
{
|
|
7
|
+
d: "M20.5 45.5a12.727 12.727 0 0 1 11.5-7 12.729 12.729 0 0 1 11.5 7",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "#9b9b9b",
|
|
10
|
+
strokeMiterlimit: "10",
|
|
11
|
+
strokeWidth: "3"
|
|
12
|
+
}
|
|
13
|
+
),
|
|
14
|
+
/* @__PURE__ */ jsx(
|
|
15
|
+
"path",
|
|
16
|
+
{
|
|
17
|
+
d: "M48.5 33a16.755 16.755 0 0 1-17 16.5 16.755 16.755 0 0 1-17-16.5 16.755 16.755 0 0 1 17-16.5 16.755 16.755 0 0 1 17 16.5zM36.5 28.5a5 5 0 1 1-5-5",
|
|
18
|
+
fill: "none",
|
|
19
|
+
stroke: "#9b9b9b",
|
|
20
|
+
strokeMiterlimit: "10",
|
|
21
|
+
strokeWidth: "3"
|
|
22
|
+
}
|
|
23
|
+
),
|
|
24
|
+
/* @__PURE__ */ jsx(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
d: "M128.242 87.5H16.757A15.216 15.216 0 0 1 1.5 72.324V16.676A15.216 15.216 0 0 1 16.757 1.5h111.485A15.217 15.217 0 0 1 143.5 16.676v55.648A15.217 15.217 0 0 1 128.242 87.5zM67.5 17h59M67.5 40h59M14.5 61h112M14.5 71h112M67.5 50h59",
|
|
28
|
+
fill: "none",
|
|
29
|
+
stroke: "#9b9b9b",
|
|
30
|
+
strokeMiterlimit: "10",
|
|
31
|
+
strokeWidth: "3"
|
|
32
|
+
}
|
|
33
|
+
),
|
|
34
|
+
/* @__PURE__ */ jsx("path", { fill: "#fff", d: "M137.5 19.5h8v19h-8z" })
|
|
35
|
+
] });
|
|
36
|
+
var stdin_default = DocumentSvg;
|
|
37
|
+
export {
|
|
38
|
+
stdin_default as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const EthSvg = () => /* @__PURE__ */ jsx(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
version: "1.1",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 12 13.997",
|
|
9
|
+
width: "12",
|
|
10
|
+
height: "13.997",
|
|
11
|
+
style: {
|
|
12
|
+
width: "12px",
|
|
13
|
+
height: "14px"
|
|
14
|
+
},
|
|
15
|
+
children: /* @__PURE__ */ jsxs("g", { children: [
|
|
16
|
+
/* @__PURE__ */ jsx("path", { transform: "translate(5.867)", d: "M.131,0,0,.319V9.574l.131.094,6-2.539Z" }),
|
|
17
|
+
/* @__PURE__ */ jsx("path", { d: "M6,0,0,7.128,6,9.668V0Z" }),
|
|
18
|
+
/* @__PURE__ */ jsx("path", { transform: "translate(5.924 7.943)", d: "M.074,2.538,0,2.6V5.9l.074.154L6.076,0Z" }),
|
|
19
|
+
/* @__PURE__ */ jsx("path", { transform: "translate(0 7.943)", d: "M6,6.054V2.538L0,0Z" }),
|
|
20
|
+
/* @__PURE__ */ jsx("path", { transform: "translate(5.998 5.176)", d: "M0,4.492,6,1.953,0,0Z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { transform: "translate(0 5.176)", d: "M0,1.953,6,4.492V0Z" })
|
|
22
|
+
] })
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
var stdin_default = EthSvg;
|
|
26
|
+
export {
|
|
27
|
+
stdin_default as default
|
|
28
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const EurSvg = () => /* @__PURE__ */ jsx(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
version: "1.1",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 8 10",
|
|
9
|
+
width: "8",
|
|
10
|
+
height: "10",
|
|
11
|
+
style: {
|
|
12
|
+
width: "8px",
|
|
13
|
+
height: "10px"
|
|
14
|
+
},
|
|
15
|
+
children: /* @__PURE__ */ jsx(
|
|
16
|
+
"path",
|
|
17
|
+
{
|
|
18
|
+
transform: "translate(0)",
|
|
19
|
+
d: "M3.45,5.385h3.1L6.375,6.538H3.45v.313a1.451,1.451,0,0,0,.412,1.166,2.523,2.523,0,0,0,1.563.349A15.75,15.75,0,0,0,7.75,8.149L8,9.712A11.974,11.974,0,0,1,5.35,10q-4.1,0-4.1-2.812V6.538H0V5.385H1.25V4.231H0V3.077H1.25V2.813Q1.25,0,5.35,0A11.974,11.974,0,0,1,8,.288L7.75,1.851a15.75,15.75,0,0,0-2.325-.216,2.53,2.53,0,0,0-1.55.349A1.273,1.273,0,0,0,3.45,3.029v.048H6.9L6.725,4.231H3.45Z"
|
|
20
|
+
}
|
|
21
|
+
)
|
|
22
|
+
}
|
|
23
|
+
);
|
|
24
|
+
var stdin_default = EurSvg;
|
|
25
|
+
export {
|
|
26
|
+
stdin_default as default
|
|
27
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const FaceScanIconSvg = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "90", height: "87", children: /* @__PURE__ */ jsxs("g", { fill: "none", stroke: "#9b9b9b", strokeMiterlimit: "10", strokeWidth: "4", children: [
|
|
4
|
+
/* @__PURE__ */ jsx(
|
|
5
|
+
"path",
|
|
6
|
+
{
|
|
7
|
+
"data-name": "Stroke 1",
|
|
8
|
+
d: "M17.176 74.939a32.212 32.212 0 0 1 29.087-17.606 32.217 32.217 0 0 1 29.09 17.606"
|
|
9
|
+
}
|
|
10
|
+
),
|
|
11
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 3", d: "M88 43.5C88 66.42 68.751 85 45 85S2 66.42 2 43.5 21.249 2 45 2s43 18.58 43 41.5z" }),
|
|
12
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 5", d: "M57.647 32.182a12.647 12.647 0 1 1-12.645-12.576" })
|
|
13
|
+
] }) });
|
|
14
|
+
var stdin_default = FaceScanIconSvg;
|
|
15
|
+
export {
|
|
16
|
+
stdin_default as default
|
|
17
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const FourSvg = () => /* @__PURE__ */ jsx("svg", { version: "1.1", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 281 371", width: "281px", height: "371px", children: /* @__PURE__ */ jsx("path", { d: "m267.68 233-0.014 0.0975h-131.54v-0.0975h-66.33l67.889-102.41c8.7763-13.148 16.294-26.633 22.546-40.461h2.0242c-0.5082 3.203-1.1804 14.758-2.0242 34.648-0.6232 14.682-1.0148 26.784-1.1779 36.324h76.39v-160.6h-72.172l-162.36 238.85v54.648h158.06v76.5h76.478v-76.5h44.592v-61z" }) });
|
|
4
|
+
var stdin_default = FourSvg;
|
|
5
|
+
export {
|
|
6
|
+
stdin_default as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const Glassess = () => /* @__PURE__ */ jsx(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
width: "90px",
|
|
7
|
+
height: "36px",
|
|
8
|
+
viewBox: "0 0 90 36",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
11
|
+
children: /* @__PURE__ */ jsx(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
d: "M87.982,13.909 L85.416,13.909 C83.567,6.096 76.564,0.273 68.182,0.273 C59.299,0.273 51.962,6.816 50.676,15.341 C49.21,13.701 47.221,13.227 45,13.227 C42.779,13.227 40.791,13.701 39.324,15.341 C38.038,6.817 30.702,0.273 21.818,0.273 C13.437,0.273 6.433,6.096 4.585,13.909 L2.019,13.909 C0.904,13.909 0,14.812 0,15.927 L0,15.983 C0,17.097 0.904,18 2.019,18 L4.091,18 C4.091,27.792 12.028,35.727 21.819,35.727 C31.61,35.727 39.546,27.792 39.546,18 C39.546,17.996 39.546,17.992 39.546,17.988 C40.554,15.984 42.606,14.591 45.001,14.591 C47.396,14.591 49.448,15.984 50.456,17.988 C50.456,17.992 50.456,17.996 50.456,18 C50.456,27.792 58.393,35.727 68.183,35.727 C77.975,35.727 85.911,27.792 85.911,18 L87.984,18 C89.096,18 90,17.097 90,15.982 L90,15.926 C90,14.812 89.096,13.909 87.982,13.909 M21.818,33.682 C13.171,33.682 6.136,26.648 6.136,18 C6.136,9.354 13.171,2.318 21.818,2.318 C30.465,2.318 37.5,9.354 37.5,18 C37.5,26.648 30.465,33.682 21.818,33.682 M68.182,33.682 C59.535,33.682 52.5,26.648 52.5,18 C52.5,9.354 59.535,2.318 68.182,2.318 C76.829,2.318 83.864,9.353 83.864,18 C83.864,26.648 76.829,33.682 68.182,33.682",
|
|
15
|
+
stroke: "none",
|
|
16
|
+
strokeWidth: "1",
|
|
17
|
+
fill: "#202020",
|
|
18
|
+
fillRule: "nonzero"
|
|
19
|
+
}
|
|
20
|
+
)
|
|
21
|
+
}
|
|
22
|
+
);
|
|
23
|
+
var stdin_default = Glassess;
|
|
24
|
+
export {
|
|
25
|
+
stdin_default as default
|
|
26
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const LogoSvg = () => /* @__PURE__ */ jsx(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
style: {
|
|
8
|
+
width: "66px",
|
|
9
|
+
height: "16px"
|
|
10
|
+
},
|
|
11
|
+
children: /* @__PURE__ */ jsx("g", { fill: "#202020", fillRule: "evenodd", children: /* @__PURE__ */ jsx("path", { d: "M62.529 5.872c-.004 2.43-3.438 2.185-4.193 2.186V3.682c.755 0 4.189-.244 4.193 2.186v.004zm.27 4.212c1.427-.65 2.524-1.88 2.524-4.214 0-4.501-4.076-4.904-6.744-4.927a10.373 10.373 0 0 0-.303-.002h-.244l-.064.001h-.508l-.352.002H55.53v9.853L55.529 16h2.807v-5.2c.131 0 .266-.002.404-.004h.011a22.261 22.261 0 0 0 .461-.012c.265-.01.538-.026.815-.05l.063-.005L62.827 16h3.055L62.8 10.084zM30.56.042v3.057c2.691 0 4.88 2.208 4.88 4.922 0 2.713-2.189 4.921-4.88 4.921s-4.88-2.208-4.88-4.921v-.002h-3.032v.002c0 4.407 3.542 7.979 7.912 7.979s7.912-3.572 7.912-7.98c0-4.406-3.542-7.978-7.912-7.978M6.967 4.38c-.734-1.047-1.48-1.57-2.24-1.57-.37 0-.673.101-.909.304-.235.203-.353.433-.353.687 0 .255.084.496.252.723.229.303.919.954 2.069 1.952 1.076.923 1.728 1.505 1.957 1.746.572.592.977 1.158 1.216 1.699.239.54.358 1.13.358 1.771 0 1.247-.42 2.276-1.26 3.089-.84.812-1.936 1.218-3.287 1.218-1.056 0-1.975-.265-2.758-.795-.783-.53-1.454-1.363-2.012-2.5l2.37-1.466c.714 1.343 1.534 2.014 2.462 2.014.484 0 .891-.145 1.22-.434.33-.289.495-.623.495-1.002 0-.344-.124-.688-.373-1.033-.249-.344-.797-.87-1.645-1.58-1.614-1.35-2.657-2.391-3.128-3.124-.47-.734-.706-1.465-.706-2.195 0-1.054.392-1.958 1.175-2.711C2.653.419 3.62.042 4.77.042c.739 0 1.443.175 2.112.526.67.351 1.393.992 2.173 1.922l.264.29-2.124 1.923-.228-.323zM52.141.941h-3.39L44.884 5.99l-.649.834V.94h-2.823V16h2.823V8.48l.65.948L49.357 16h3.348l-5.647-8.214zM13.176 3.68h2.51V16h2.51V3.68h2.51V.94h-7.53z" }) })
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
var stdin_default = LogoSvg;
|
|
15
|
+
export {
|
|
16
|
+
stdin_default as default
|
|
17
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const OneSvg = () => /* @__PURE__ */ jsxs("svg", { version: "1.1", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 167 371", width: "167px", height: "371px", children: [
|
|
4
|
+
/* @__PURE__ */ jsx("polygon", { points: "101.7 0.50015 0.40149 81.098 166.03 81.098 166.03 0.50015" }),
|
|
5
|
+
/* @__PURE__ */ jsx("polygon", { points: "87.772 156.42 87.772 370.5 166.03 370.5 166.03 153.1 87.844 153.1" })
|
|
6
|
+
] });
|
|
7
|
+
var stdin_default = OneSvg;
|
|
8
|
+
export {
|
|
9
|
+
stdin_default as default
|
|
10
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const PassportSvg = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "71.926", height: "104.855", children: /* @__PURE__ */ jsxs("g", { "data-name": "Passport Icon", fill: "none", stroke: "#9b9b9b", strokeMiterlimit: "10", strokeWidth: "3", children: [
|
|
4
|
+
/* @__PURE__ */ jsx(
|
|
5
|
+
"path",
|
|
6
|
+
{
|
|
7
|
+
"data-name": "Stroke 1",
|
|
8
|
+
d: "M1.5 90.676v-76.5A12.68 12.68 0 0 1 14.179 1.5h36.663a12.68 12.68 0 0 1 12.679 12.679v76.5a12.68 12.68 0 0 1-12.679 12.679H14.179A12.68 12.68 0 0 1 1.5 90.676z"
|
|
9
|
+
}
|
|
10
|
+
),
|
|
11
|
+
/* @__PURE__ */ jsx(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
"data-name": "Stroke 3",
|
|
15
|
+
d: "M19.35 1.501h40.132a10.943 10.943 0 0 1 10.944 10.944v79.966a10.943 10.943 0 0 1-10.944 10.944H19.35"
|
|
16
|
+
}
|
|
17
|
+
),
|
|
18
|
+
/* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
"data-name": "Stroke 5",
|
|
22
|
+
d: "M51.363 38.066a19.11 19.11 0 1 1-19.109-19.109 19.109 19.109 0 0 1 19.109 19.109z"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 7", d: "M13.089 37.753h37.98" }),
|
|
26
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 9", d: "M32.079 18.764v37.979" }),
|
|
27
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 11", d: "M22.584 20.922v33.663" }),
|
|
28
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 13", d: "M41.573 20.922v33.663" }),
|
|
29
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 15", d: "M15.247 28.259h33.231" }),
|
|
30
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 17", d: "M15.247 47.249h34.526" }),
|
|
31
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 19", d: "M12.657 80.584H51.5" }),
|
|
32
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 21", d: "M12.657 88.147H51.5" })
|
|
33
|
+
] }) });
|
|
34
|
+
var stdin_default = PassportSvg;
|
|
35
|
+
export {
|
|
36
|
+
stdin_default as default
|
|
37
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const RefreshSvg = () => /* @__PURE__ */ jsx(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
version: "1.1",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 16 16",
|
|
9
|
+
width: "16",
|
|
10
|
+
height: "16",
|
|
11
|
+
style: {
|
|
12
|
+
width: "16px",
|
|
13
|
+
height: "16px"
|
|
14
|
+
},
|
|
15
|
+
children: /* @__PURE__ */ jsx(
|
|
16
|
+
"path",
|
|
17
|
+
{
|
|
18
|
+
d: "M1.735 7L1 6.786C1.67 4.1 3.63 1.983 6.117 1.263c2.987-.864 6.158.454 7.862 3.163l.262-3.242.759.071-.382 4.71-4.362-.412.066-.819 3.112.294C11.933 2.51 9.04 1.27 6.314 2.058 4.089 2.702 2.334 4.595 1.735 7zm7.951 7.942c-2.724.788-5.619-.452-7.12-2.97l3.112.294.066-.82-4.362-.411L1 15.745l.759.071.263-3.247C3.375 14.723 5.652 16 8.03 16a6.66 6.66 0 0 0 1.853-.263c2.487-.72 4.448-2.836 5.117-5.523L14.265 10c-.6 2.405-2.354 4.299-4.579 4.942z",
|
|
19
|
+
fillRule: "nonzero",
|
|
20
|
+
strokeWidth: ".5"
|
|
21
|
+
}
|
|
22
|
+
)
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
var stdin_default = RefreshSvg;
|
|
26
|
+
export {
|
|
27
|
+
stdin_default as default
|
|
28
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const SocialFacebook = (props) => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 933.33331 933.33331", ...props, children: /* @__PURE__ */ jsx("g", { transform: "matrix(1.3333333,0,0,-1.3333333,0,933.33333)", children: /* @__PURE__ */ jsxs("g", { clipPath: "url(#clipPath16)", children: [
|
|
4
|
+
/* @__PURE__ */ jsx("g", { transform: "translate(600,350)", children: /* @__PURE__ */ jsx(
|
|
5
|
+
"path",
|
|
6
|
+
{
|
|
7
|
+
d: "m 0,0 c 0,138.071 -111.929,250 -250,250 -138.071,0 -250,-111.929 -250,-250 0,-117.245 80.715,-215.622 189.606,-242.638 v 166.242 h -51.552 V 0 h 51.552 v 32.919 c 0,85.092 38.508,124.532 122.048,124.532 15.838,0 43.167,-3.105 54.347,-6.211 V 81.986 c -5.901,0.621 -16.149,0.932 -28.882,0.932 -40.993,0 -56.832,-15.528 -56.832,-55.9 V 0 h 81.659 l -14.028,-76.396 h -67.631 V -248.169 C -95.927,-233.218 0,-127.818 0,0",
|
|
8
|
+
fill: "#0866ff"
|
|
9
|
+
}
|
|
10
|
+
) }),
|
|
11
|
+
/* @__PURE__ */ jsx("g", { transform: "translate(447.9175,273.6036)", children: /* @__PURE__ */ jsx(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
d: "M 0,0 14.029,76.396 H -67.63 v 27.019 c 0,40.372 15.838,55.899 56.831,55.899 12.733,0 22.981,-0.31 28.882,-0.931 v 69.253 c -11.18,3.106 -38.509,6.212 -54.347,6.212 -83.539,0 -122.048,-39.441 -122.048,-124.533 V 76.396 h -51.552 V 0 h 51.552 v -166.242 c 19.343,-4.798 39.568,-7.362 60.394,-7.362 10.254,0 20.358,0.632 30.288,1.831 L -67.63,0 Z",
|
|
15
|
+
fill: "#ffffff"
|
|
16
|
+
}
|
|
17
|
+
) })
|
|
18
|
+
] }) }) });
|
|
19
|
+
var stdin_default = SocialFacebook;
|
|
20
|
+
export {
|
|
21
|
+
stdin_default as default
|
|
22
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import styled from "styled-components";
|
|
4
|
+
const Icon = styled.svg`
|
|
5
|
+
fill: #fff;
|
|
6
|
+
width: 12px;
|
|
7
|
+
`;
|
|
8
|
+
const Instagram = (props) => /* @__PURE__ */ jsx(Icon, { width: "24", height: "24", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx("path", { d: "M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z" }) });
|
|
9
|
+
var stdin_default = Instagram;
|
|
10
|
+
export {
|
|
11
|
+
Instagram,
|
|
12
|
+
stdin_default as default
|
|
13
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const SocialLinkedIn = (props) => /* @__PURE__ */ jsxs("svg", { viewBox: "7.025 7.025 497.951 497.951", width: 32, height: 32, ...props, children: [
|
|
4
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
|
|
5
|
+
"linearGradient",
|
|
6
|
+
{
|
|
7
|
+
id: "a",
|
|
8
|
+
gradientUnits: "userSpaceOnUse",
|
|
9
|
+
x1: "-974.482",
|
|
10
|
+
y1: "1306.773",
|
|
11
|
+
x2: "-622.378",
|
|
12
|
+
y2: "1658.877",
|
|
13
|
+
gradientTransform: "translate(1054.43 -1226.825)",
|
|
14
|
+
children: [
|
|
15
|
+
/* @__PURE__ */ jsx("stop", { offset: "0", stopColor: "#2489be" }),
|
|
16
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#0575b3" })
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
) }),
|
|
20
|
+
/* @__PURE__ */ jsx(
|
|
21
|
+
"path",
|
|
22
|
+
{
|
|
23
|
+
d: "M256 7.025C118.494 7.025 7.025 118.494 7.025 256S118.494 504.975 256 504.975 504.976 393.506 504.976 256C504.975 118.494 393.504 7.025 256 7.025zm-66.427 369.343h-54.665V199.761h54.665v176.607zM161.98 176.633c-17.853 0-32.326-14.591-32.326-32.587 0-17.998 14.475-32.588 32.326-32.588s32.324 14.59 32.324 32.588c.001 17.997-14.472 32.587-32.324 32.587zm232.45 199.735h-54.4v-92.704c0-25.426-9.658-39.619-29.763-39.619-21.881 0-33.312 14.782-33.312 39.619v92.704h-52.43V199.761h52.43v23.786s15.771-29.173 53.219-29.173c37.449 0 64.257 22.866 64.257 70.169l-.001 111.825z",
|
|
24
|
+
fill: "url(#a)"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
] });
|
|
28
|
+
var stdin_default = SocialLinkedIn;
|
|
29
|
+
export {
|
|
30
|
+
stdin_default as default
|
|
31
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const SocialMedium = () => /* @__PURE__ */ jsx(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
version: "1.1",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 12 12",
|
|
9
|
+
width: "12",
|
|
10
|
+
height: "12",
|
|
11
|
+
style: {
|
|
12
|
+
width: "12px",
|
|
13
|
+
height: "12px"
|
|
14
|
+
},
|
|
15
|
+
children: /* @__PURE__ */ jsx("path", { d: "m1.4227 3.3343a0.42788 0.42788 0 0 0-0.1519-0.37119l-1.1189-1.2762v-0.19041h3.4787l2.6892 5.5764 2.3641-5.5764h3.3161v0.19041l-0.96274 0.8686a0.25887 0.25887 0 0 0-0.10697 0.25459v6.3808a0.2578 0.2578 0 0 0 0.10697 0.25352l0.936 0.8686v0.19041h-4.6992v-0.18934l0.96274-0.89c0.095204-0.08986 0.095204-0.1166 0.095204-0.25352v-5.1581l-2.6903 6.4696h-0.3637l-3.1385-6.4696v4.3366a0.57871 0.57871 0 0 0 0.17329 0.49742l1.2612 1.4462v0.18934h-3.5739v-0.18934l1.2601-1.4462a0.55625 0.55625 0 0 0 0.1626-0.49742z" })
|
|
16
|
+
}
|
|
17
|
+
);
|
|
18
|
+
var stdin_default = SocialMedium;
|
|
19
|
+
export {
|
|
20
|
+
stdin_default as default
|
|
21
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const SocialReddit = () => /* @__PURE__ */ jsx(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
version: "1.1",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 12 12",
|
|
9
|
+
width: "12",
|
|
10
|
+
height: "12",
|
|
11
|
+
style: {
|
|
12
|
+
width: "12px",
|
|
13
|
+
height: "12px"
|
|
14
|
+
},
|
|
15
|
+
children: /* @__PURE__ */ jsx("path", { d: "m6.0451 11.201c-0.19209 0-0.39057-0.0064-0.59066-0.01921a6.0827 6.0827 0 0 1-3.3055-1.1205 2.9949 2.9949 0 0 1-1.419-2.6636 0.32414 0.32414 0 0 0-0.13606-0.2209 1.2886 1.2886 0 0 1 0.69391-2.3739 1.6399 1.6399 0 0 1 0.81396 0.2353 0.28893 0.28893 0 0 0 0.14006 0.030414 0.28573 0.28573 0 0 0 0.13926-0.030414 6.4437 6.4437 0 0 1 3.127-0.93802c0.18968-0.0064029 0.26732-0.074433 0.30654-0.27052 0.11845-0.58106 0.24971-1.1701 0.37617-1.74 0.071232-0.32014 0.14086-0.63548 0.20969-0.95242 0.041618-0.18968 0.13046-0.27452 0.28893-0.27452a0.65549 0.65549 0 0 1 0.14166 0.017608c0.32575 0.076034 0.65789 0.14006 0.97884 0.20409 0.28253 0.056825 0.57306 0.11525 0.85798 0.17688a0.50743 0.50743 0 0 0 0.10645 0.015207 0.26732 0.26732 0 0 0 0.2161-0.11445 0.94842 0.94842 0 0 1 0.72512-0.36576 1.0084 1.0084 0 0 1 0.4498 0.11285 0.93001 0.93001 0 0 1 0.49222 1.0549 0.98364 0.98364 0 0 1-0.85958 0.70271h-0.073633a1.002 1.002 0 0 1-0.92281-0.68671c-0.035216-0.093642-0.11205-0.20249-0.18328-0.2193-0.42979-0.094442-0.85798-0.17768-1.311-0.26572l-0.43459-0.085638c-0.19609 0.8972-0.38497 1.7608-0.58106 2.6652a6.659 6.659 0 0 1 3.4511 1.0589 1.5751 1.5751 0 0 1 0.91321-0.33535 1.3126 1.3126 0 0 1 0.33935 0.04562 1.2542 1.2542 0 0 1 0.96923 0.99484 1.1797 1.1797 0 0 1-0.50823 1.2806 0.43219 0.43219 0 0 0-0.21049 0.42259 2.9141 2.9141 0 0 1-1.3182 2.4483 6.2532 6.2532 0 0 1-3.8825 1.2109zm-0.059226-1.6007h0.2217a1.2726 1.2726 0 0 0 0.12726-0.0048 3.0253 3.0253 0 0 0 1.5487-0.4554c0.071232-0.05202 0.13606-0.20329 0.098444-0.26412a0.14166 0.14166 0 0 0-0.12566-0.07603 0.52824 0.52824 0 0 0-0.20969 0.07203h-4e-3l-0.041619 0.02081a2.7604 2.7604 0 0 1-0.62828 0.25371 5.0222 5.0222 0 0 1-1.0757 0.12726 3.0606 3.0606 0 0 1-1.6231-0.43299 0.11365 0.11365 0 0 0-0.058426-0.01281 0.61067 0.61067 0 0 0-0.11285 0.01601h-0.028006l-0.02161 4e-3a0.60907 0.60907 0 0 1-0.061627 0.01841 0.56025 0.56025 0 0 1 4e-3 0.06163v0.01361c0 0.05763 0 0.11685 0.036016 0.14727a1.5383 1.5383 0 0 0 0.39137 0.24011 3.6736 3.6736 0 0 0 1.4791 0.27132zm2.0009-3.2014a0.81156 0.81156 0 0 0-0.79395 0.80036 0.80036 0.80036 0 0 0 1.6007 0.0072 0.82517 0.82517 0 0 0-0.80036-0.80756zm-4.0018 0a0.82437 0.82437 0 0 0-0.79395 0.81076 0.80036 0.80036 0 0 0 0.80036 0.78995h0.0064a0.80036 0.80036 0 0 0 0.79396-0.80036 0.81236 0.81236 0 0 0-0.79635-0.80036z" })
|
|
16
|
+
}
|
|
17
|
+
);
|
|
18
|
+
var stdin_default = SocialReddit;
|
|
19
|
+
export {
|
|
20
|
+
stdin_default as default
|
|
21
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const SocialTelegram = (props) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 240 240", ...props, children: [
|
|
4
|
+
/* @__PURE__ */ jsxs("defs", { children: [
|
|
5
|
+
/* @__PURE__ */ jsxs(
|
|
6
|
+
"linearGradient",
|
|
7
|
+
{
|
|
8
|
+
id: "path2995-1-0_1_",
|
|
9
|
+
gradientUnits: "userSpaceOnUse",
|
|
10
|
+
x1: "-683.305",
|
|
11
|
+
y1: "534.845",
|
|
12
|
+
x2: "-693.305",
|
|
13
|
+
y2: "511.512",
|
|
14
|
+
gradientTransform: "matrix(6 0 0 -6 4255 3247)",
|
|
15
|
+
children: [
|
|
16
|
+
/* @__PURE__ */ jsx("stop", { offset: "0", stopColor: "#37aee2" }),
|
|
17
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#1e96c8" })
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
),
|
|
21
|
+
/* @__PURE__ */ jsxs(
|
|
22
|
+
"linearGradient",
|
|
23
|
+
{
|
|
24
|
+
id: "path2991_1_",
|
|
25
|
+
gradientUnits: "userSpaceOnUse",
|
|
26
|
+
x1: "128.991",
|
|
27
|
+
y1: "118.245",
|
|
28
|
+
x2: "153.991",
|
|
29
|
+
y2: "78.245",
|
|
30
|
+
gradientTransform: "matrix(1 0 0 -1 0 242)",
|
|
31
|
+
children: [
|
|
32
|
+
/* @__PURE__ */ jsx("stop", { offset: "0", stopColor: "#eff7fc" }),
|
|
33
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#ffffff" })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
] }),
|
|
38
|
+
/* @__PURE__ */ jsxs("g", { fill: "none", fillRule: "evenodd", children: [
|
|
39
|
+
/* @__PURE__ */ jsx(
|
|
40
|
+
"path",
|
|
41
|
+
{
|
|
42
|
+
d: "M240 120c0 66.3-53.7 120-120 120S0 186.3 0 120 53.7 0 120 0s120 53.7 120 120z",
|
|
43
|
+
fill: "url(#path2995-1-0_1_)"
|
|
44
|
+
}
|
|
45
|
+
),
|
|
46
|
+
/* @__PURE__ */ jsx("path", { d: "M98 175c-3.9 0-3.2-1.5-4.6-5.2L82 132.2 152.8 88l8.3 2.2-6.9 18.8L98 175z", fill: "#c8daea" }),
|
|
47
|
+
/* @__PURE__ */ jsx("path", { d: "M98 175c3 0 4.3-1.4 6-3 2.6-2.5 36-35 36-35l-20.5-5-19 12-2.5 30v1z", fill: "#a9c9dd" }),
|
|
48
|
+
/* @__PURE__ */ jsx(
|
|
49
|
+
"path",
|
|
50
|
+
{
|
|
51
|
+
d: "M100 144.4l48.4 35.7c5.5 3 9.5 1.5 10.9-5.1L179 82.2c2-8.1-3.1-11.7-8.4-9.3L55 117.5c-7.9 3.2-7.8 7.6-1.4 9.5l29.7 9.3L152 93c3.2-2 6.2-.9 3.8 1.3L100 144.4z",
|
|
52
|
+
fill: "url(#path2991_1_)"
|
|
53
|
+
}
|
|
54
|
+
)
|
|
55
|
+
] })
|
|
56
|
+
] });
|
|
57
|
+
var stdin_default = SocialTelegram;
|
|
58
|
+
export {
|
|
59
|
+
stdin_default as default
|
|
60
|
+
};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const SocialTwitter = (props) => /* @__PURE__ */ jsx(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
version: "1.1",
|
|
8
|
+
viewBox: "0 0 256 256",
|
|
9
|
+
...props,
|
|
10
|
+
children: /* @__PURE__ */ jsxs(
|
|
11
|
+
"g",
|
|
12
|
+
{
|
|
13
|
+
style: {
|
|
14
|
+
stroke: "none",
|
|
15
|
+
strokeWidth: 0,
|
|
16
|
+
strokeDasharray: "none",
|
|
17
|
+
strokeLinecap: "butt",
|
|
18
|
+
strokeLinejoin: "miter",
|
|
19
|
+
strokeMiterlimit: 10,
|
|
20
|
+
fill: "none",
|
|
21
|
+
fillRule: "nonzero",
|
|
22
|
+
opacity: 1
|
|
23
|
+
},
|
|
24
|
+
transform: "translate(1.4066 1.4066) scale(2.81 2.81)",
|
|
25
|
+
children: [
|
|
26
|
+
/* @__PURE__ */ jsx(
|
|
27
|
+
"polygon",
|
|
28
|
+
{
|
|
29
|
+
points: "24.89,23.01 57.79,66.99 65.24,66.99 32.34,23.01",
|
|
30
|
+
style: {
|
|
31
|
+
stroke: "none",
|
|
32
|
+
strokeWidth: 1,
|
|
33
|
+
fill: "rgb(0,0,0)",
|
|
34
|
+
fillRule: "nonzero",
|
|
35
|
+
opacity: 1
|
|
36
|
+
},
|
|
37
|
+
transform: "matrix(1 0 0 1 0 0)"
|
|
38
|
+
}
|
|
39
|
+
),
|
|
40
|
+
/* @__PURE__ */ jsx(
|
|
41
|
+
"path",
|
|
42
|
+
{
|
|
43
|
+
d: "M 45 0 L 45 0 C 20.147 0 0 20.147 0 45 v 0 c 0 24.853 20.147 45 45 45 h 0 c 24.853 0 45 -20.147 45 -45 v 0 C 90 20.147 69.853 0 45 0 z M 56.032 70.504 L 41.054 50.477 L 22.516 70.504 h -4.765 L 38.925 47.63 L 17.884 19.496 h 16.217 L 47.895 37.94 l 17.072 -18.444 h 4.765 L 50.024 40.788 l 22.225 29.716 H 56.032 z",
|
|
44
|
+
style: {
|
|
45
|
+
stroke: "none",
|
|
46
|
+
strokeWidth: 1,
|
|
47
|
+
fill: "rgb(0,0,0)",
|
|
48
|
+
fillRule: "nonzero",
|
|
49
|
+
opacity: 1
|
|
50
|
+
},
|
|
51
|
+
strokeLinecap: "round"
|
|
52
|
+
}
|
|
53
|
+
)
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
)
|
|
57
|
+
}
|
|
58
|
+
);
|
|
59
|
+
var stdin_default = SocialTwitter;
|
|
60
|
+
export {
|
|
61
|
+
stdin_default as default
|
|
62
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const SocialYoutube = (props) => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 72 72", ...props, children: /* @__PURE__ */ jsxs("g", { fill: "none", fillRule: "evenodd", children: [
|
|
4
|
+
/* @__PURE__ */ jsx(
|
|
5
|
+
"path",
|
|
6
|
+
{
|
|
7
|
+
d: "M36,72 L36,72 C55.882251,72 72,55.882251 72,36 L72,36 C72,16.117749 55.882251,-3.65231026e-15 36,0 L36,0 C16.117749,3.65231026e-15 -2.4348735e-15,16.117749 0,36 L0,36 C2.4348735e-15,55.882251 16.117749,72 36,72 Z",
|
|
8
|
+
fill: "#FF0002"
|
|
9
|
+
}
|
|
10
|
+
),
|
|
11
|
+
/* @__PURE__ */ jsx(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
d: "M31.044,42.269916 L31.0425,28.6877416 L44.0115,35.5022437 L31.044,42.269916 Z M59.52,26.3341627 C59.52,26.3341627 59.0505,23.003199 57.612,21.5363665 C55.7865,19.610299 53.7405,19.6012352 52.803,19.4894477 C46.086,19 36.0105,19 36.0105,19 L35.9895,19 C35.9895,19 25.914,19 19.197,19.4894477 C18.258,19.6012352 16.2135,19.610299 14.3865,21.5363665 C12.948,23.003199 12.48,26.3341627 12.48,26.3341627 C12.48,26.3341627 12,30.2467232 12,34.1577731 L12,37.8256098 C12,41.7381703 12.48,45.6492202 12.48,45.6492202 C12.48,45.6492202 12.948,48.9801839 14.3865,50.4470165 C16.2135,52.3730839 18.612,52.3126583 19.68,52.5135736 C23.52,52.8851913 36,53 36,53 C36,53 46.086,52.9848936 52.803,52.4954459 C53.7405,52.3821478 55.7865,52.3730839 57.612,50.4470165 C59.0505,48.9801839 59.52,45.6492202 59.52,45.6492202 C59.52,45.6492202 60,41.7381703 60,37.8256098 L60,34.1577731 C60,30.2467232 59.52,26.3341627 59.52,26.3341627 L59.52,26.3341627 Z",
|
|
15
|
+
fill: "#FFF"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
] }) });
|
|
19
|
+
var stdin_default = SocialYoutube;
|
|
20
|
+
export {
|
|
21
|
+
stdin_default as default
|
|
22
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const ThreeSvg = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 78 115", width: "78", height: "115", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx("path", { d: "M46 114.002V93.164c.5-.277.972-.573 1.416-.888 3.739-2.659 5.61-6.926 5.61-12.805 0-5.266-2.153-8.996-6.457-11.194-4.303-2.196-11.168-3.297-20.595-3.297h-8.532V46.846h8.686c8.709 0 15.075-1.128 19.097-3.39 4.021-2.26 6.034-6.132 6.034-11.618 0-8.429-5.33-12.646-15.986-12.646-3.69 0-7.443.614-11.26 1.837-3.818 1.225-8.057 3.343-12.719 6.352L.304 11.043C10.55 3.681 22.768 0 36.961 0c11.628 0 20.812 2.345 27.55 7.032 6.737 4.689 10.106 11.21 10.106 19.567 0 6.982-2.127 12.918-6.378 17.81-4.252 4.893-10.22 8.258-17.902 10.09v.46c9.067 1.124 15.931 3.868 20.593 8.232 4.662 4.365 6.992 10.25 6.992 17.652 0 10.774-3.92 19.161-11.758 25.158-5.228 4.002-11.95 6.669-20.164 8.001zm-22 .647c-8.746-.738-16.696-2.635-23.85-5.691v-20.12c4.353 2.196 9.145 3.98 14.371 5.357A62.589 62.589 0 0 0 24 95.945v18.704z" }) });
|
|
4
|
+
var stdin_default = ThreeSvg;
|
|
5
|
+
export {
|
|
6
|
+
stdin_default as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const TwoSidedDocumentSvg = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "231.5", height: "84.066", children: [
|
|
4
|
+
/* @__PURE__ */ jsxs("g", { "data-name": "Card Illustration", fill: "none", stroke: "#9b9b9b", strokeMiterlimit: "10", strokeWidth: "3", children: [
|
|
5
|
+
/* @__PURE__ */ jsx(
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
"data-name": "Stroke 7",
|
|
9
|
+
d: "M215.232 82.566H110.143a14.343 14.343 0 0 1-14.381-14.305V15.8a14.343 14.343 0 0 1 14.381-14.3h105.089a14.344 14.344 0 0 1 14.382 14.3v52.461a14.344 14.344 0 0 1-14.382 14.305z"
|
|
10
|
+
}
|
|
11
|
+
),
|
|
12
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 13", d: "M108.016 57.586H213.59" }),
|
|
13
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 15", d: "M108.016 67.012H213.59" })
|
|
14
|
+
] }),
|
|
15
|
+
/* @__PURE__ */ jsx("path", { fill: "#fff", d: "M223.959 18.467h7.541v17.91h-7.541z" }),
|
|
16
|
+
/* @__PURE__ */ jsxs("g", { "data-name": "Group", children: [
|
|
17
|
+
/* @__PURE__ */ jsxs("g", { "data-name": "Card Illustration", stroke: "#9b9b9b", strokeMiterlimit: "10", strokeWidth: "3", children: [
|
|
18
|
+
/* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
"data-name": "Stroke 7",
|
|
22
|
+
d: "M120.97 82.566H15.881A14.343 14.343 0 0 1 1.5 68.261V15.8A14.343 14.343 0 0 1 15.881 1.5H120.97a14.344 14.344 0 0 1 14.382 14.3v52.461a14.344 14.344 0 0 1-14.382 14.305z",
|
|
23
|
+
fill: "#fff"
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 1", d: "M19.41 42.977a12 12 0 0 1 10.84-6.6 12 12 0 0 1 10.84 6.6", fill: "none" }),
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
"data-name": "Stroke 3",
|
|
31
|
+
d: "M45.803 31.192a15.794 15.794 0 0 1-16.025 15.554 15.794 15.794 0 0 1-16.024-15.554 15.794 15.794 0 0 1 16.024-15.553 15.794 15.794 0 0 1 16.025 15.553z",
|
|
32
|
+
fill: "none"
|
|
33
|
+
}
|
|
34
|
+
),
|
|
35
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 5", d: "M34.492 26.951a4.713 4.713 0 1 1-4.712-4.713", fill: "none" }),
|
|
36
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 9", d: "M63.713 16.11h55.615", fill: "none" }),
|
|
37
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 11", d: "M63.713 37.791h55.615", fill: "none" }),
|
|
38
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 13", d: "M13.754 57.586h105.574", fill: "none" }),
|
|
39
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 15", d: "M13.754 67.012h105.574", fill: "none" }),
|
|
40
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Stroke 17", d: "M63.713 47.217h55.615", fill: "none" })
|
|
41
|
+
] }),
|
|
42
|
+
/* @__PURE__ */ jsx("path", { "data-name": "Rectangle", fill: "#fff", d: "M129.697 18.467h7.541v17.91h-7.541z" })
|
|
43
|
+
] })
|
|
44
|
+
] });
|
|
45
|
+
var stdin_default = TwoSidedDocumentSvg;
|
|
46
|
+
export {
|
|
47
|
+
stdin_default as default
|
|
48
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const TwoSvg = () => /* @__PURE__ */ jsxs("svg", { version: "1.1", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 261 376", width: "261px", height: "376px", children: [
|
|
4
|
+
/* @__PURE__ */ jsx("path", { d: "m85.465 75.375c13.504-6.578 27.438-9.875 41.795-9.875 13.676 0 24.609 3.625 32.8 10.875 8.1901 7.25 12.285 18.297 12.285 33.125 0 9.953-1.8601 19.562-5.5723 28.836-3.7197 9.2735-9.7996 19.344-18.24 30.218-8.4402 10.875-26.422 30.391-53.947 58.539l-9.9112 10.004h87.86c18.295-17.584 31.868-31.888 40.707-42.902 12.582-15.672 21.866-30.969 27.86-45.891 5.9939-14.922 8.9949-30.89 8.9949-47.922 0-19.602-4.9001-37.008-14.692-52.219-9.7921-15.203-23.555-27.031-41.279-35.484-17.732-8.453-38.161-12.68-61.293-12.68-17.568 0-33.44 1.7345-47.625 5.203-14.184 3.469-27.266 8.422-39.255 14.852-11.988 6.4375-27.102 17.438-45.335 33.008l42.553 50.414c14.692-12.148 28.791-21.516 42.295-28.102" }),
|
|
5
|
+
/* @__PURE__ */ jsx("polygon", { points: "1.6255 320.92 1.6255 375.5 260.48 375.5 260.48 309.1 13.34 309.1" })
|
|
6
|
+
] });
|
|
7
|
+
var stdin_default = TwoSvg;
|
|
8
|
+
export {
|
|
9
|
+
stdin_default as default
|
|
10
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const UpdateDefaultSvg = () => /* @__PURE__ */ jsx("svg", { version: "1.1", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 76 76", width: "76", height: "76", children: /* @__PURE__ */ jsxs("g", { transform: "translate(-266 -956)", children: [
|
|
4
|
+
/* @__PURE__ */ jsx("path", { d: "m330.62 1020.5c-2.893 2.894-6.13 5.245-9.621 6.988a1.537 1.537 0 1 1-1.374-2.75c3.194-1.595 6.162-3.752 8.822-6.412 13.527-13.527 13.527-35.537 0-49.064-13.528-13.527-35.537-13.527-49.064 0-13.528 13.527-13.528 35.537 0 49.064 6.552 6.553 15.265 10.162 24.531 10.162a1.537 1.537 0 0 1 0 3.074c-10.088 0-19.572-3.928-26.706-11.062-14.725-14.726-14.725-38.686 0-53.412 7.363-7.363 17.035-11.044 26.706-11.044 9.672 0 19.343 3.681 26.706 11.044 14.726 14.726 14.726 38.686 0 53.412z" }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { d: "m303.92 1018.2a1.537 1.537 0 0 1-1.537-1.537v-45.821a1.537 1.537 0 0 1 3.075 0v45.822c0 0.85-0.689 1.537-1.538 1.537z" }),
|
|
6
|
+
/* @__PURE__ */ jsx("path", { d: "m310.07 992.21h16.762a1.537 1.537 0 0 1 0 3.074h-16.762a1.537 1.537 0 0 1 0-3.074z" }),
|
|
7
|
+
/* @__PURE__ */ jsx("path", { d: "m281.01 995.29a1.537 1.537 0 0 1 0-3.074h16.25a1.537 1.537 0 0 1 0 3.074z" })
|
|
8
|
+
] }) });
|
|
9
|
+
var stdin_default = UpdateDefaultSvg;
|
|
10
|
+
export {
|
|
11
|
+
stdin_default as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const UpdateSoftSvg = () => /* @__PURE__ */ jsx("svg", { version: "1.1", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 76 76", width: "76", height: "76", children: /* @__PURE__ */ jsxs("g", { transform: "translate(-266 -1398)", children: [
|
|
4
|
+
/* @__PURE__ */ jsx("path", { d: "M317.119 1442.937a1.234 1.234 0 0 1 .445-1.372l9.583-7.03c1.526-1.12 2.134-3.006 1.549-4.805-.585-1.8-2.185-2.968-4.077-2.977l-11.885-.055c-.532-.003-1-.343-1.167-.848l-3.725-11.286c-.593-1.797-2.199-2.958-4.091-2.958-1.892 0-3.498 1.16-4.09 2.957l-1.68 5.086a1.536 1.536 0 1 0 2.918.963l1.679-5.085c.26-.787.963-.848 1.173-.848.21 0 .913.06 1.173.848l3.725 11.286a4.304 4.304 0 0 0 4.07 2.958l11.886.055c.828.004 1.104.654 1.169.854.064.199.224.887-.445 1.377l-9.582 7.03a4.304 4.304 0 0 0-1.555 4.786l3.621 11.324c.253.79-.28 1.253-.45 1.376-.17.123-.775.487-1.447.003l-9.648-6.943a4.304 4.304 0 0 0-5.033 0l-9.65 6.944c-.673.484-1.278.12-1.447-.003-.17-.123-.703-.586-.45-1.375l3.62-11.326a4.304 4.304 0 0 0-1.555-4.785l-9.582-7.03c-.669-.49-.51-1.18-.444-1.378.064-.2.34-.85 1.168-.854l11.886-.055a1.537 1.537 0 0 0-.007-3.073h-.007l-11.886.056c-1.892.008-3.492 1.177-4.077 2.976-.585 1.8.023 3.686 1.549 4.805l9.582 7.03c.428.315.608.866.446 1.373l-3.62 11.325c-.577 1.803.04 3.686 1.571 4.798.768.557 1.65.837 2.532.837.875 0 1.751-.276 2.517-.826l9.649-6.945a1.234 1.234 0 0 1 1.443 0l9.648 6.943c1.536 1.106 3.517 1.102 5.048-.01 1.531-1.113 2.148-2.996 1.572-4.798z" }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { d: "m303.75 1398c-20.815 0-37.75 16.935-37.75 37.75s16.935 37.75 37.75 37.75a1.537 1.537 0 0 0 0-3.073c-19.121 0-34.677-15.556-34.677-34.677s15.556-34.677 34.677-34.677 34.677 15.556 34.677 34.677c0 11.902-5.997 22.837-16.043 29.25a1.537 1.537 0 0 0 1.654 2.59c10.934-6.98 17.462-18.883 17.462-31.84 0-20.815-16.934-37.75-37.75-37.75z" })
|
|
6
|
+
] }) });
|
|
7
|
+
var stdin_default = UpdateSoftSvg;
|
|
8
|
+
export {
|
|
9
|
+
stdin_default as default
|
|
10
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const UpdateSoftSvg = () => /* @__PURE__ */ jsx("svg", { version: "1.1", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 76 76", width: "76", height: "76", children: /* @__PURE__ */ jsxs("g", { transform: "translate(-266 -1840)", children: [
|
|
4
|
+
/* @__PURE__ */ jsx("path", { d: "m291.1 1842.2c-9.496 3.385-17.106 10.266-21.427 19.375-4.322 9.108-4.837 19.355-1.452 28.85 3.386 9.497 10.267 17.107 19.375 21.428 9.109 4.321 19.355 4.837 28.852 1.451a1.537 1.537 0 0 0-1.032-2.894c-8.723 3.11-18.136 2.637-26.503-1.333-8.367-3.969-14.688-10.96-17.798-19.683s-2.636-18.136 1.333-26.503c3.97-8.367 10.96-14.688 19.683-17.798 8.724-3.11 18.136-2.636 26.503 1.333 8.368 3.97 14.689 10.96 17.798 19.684 3.486 9.777 2.43 20.503-2.894 29.426a1.536 1.536 0 1 0 2.638 1.574 37.696 37.696 0 0 0 5.352-19.34c0-4.27-0.728-8.56-2.202-12.692-3.385-9.497-10.266-17.106-19.375-21.427-9.108-4.321-19.355-4.837-28.851-1.451z" }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { d: "M303.769 1860.861c-.848 0-1.536.688-1.536 1.536v38.259a1.536 1.536 0 0 0 3.072 0v-38.259c0-.848-.688-1.536-1.536-1.536z" }),
|
|
6
|
+
/* @__PURE__ */ jsx("path", { d: "m319.84 1873.1a1.536 1.536 0 1 0 2.173-2.173l-17.154-17.153c-0.6-0.6-1.573-0.6-2.172 0l-17.154 17.153a1.536 1.536 0 1 0 2.172 2.173l16.068-16.068z" })
|
|
7
|
+
] }) });
|
|
8
|
+
var stdin_default = UpdateSoftSvg;
|
|
9
|
+
export {
|
|
10
|
+
stdin_default as default
|
|
11
|
+
};
|