@stokr/components-library 3.0.16 → 3.0.18
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 +199 -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/InfoBox/InfoBox.js +93 -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 +134 -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 +359 -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/hooks/useTransactionPolling.js +100 -0
- package/dist/index.js +632 -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/external-link-icon.svg +3 -0
- package/dist/static/images/external-link-icon.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 +57 -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 +11 -11
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import styled, { css } from "styled-components";
|
|
3
|
+
const iconDirection = ({ direction }) => {
|
|
4
|
+
switch (direction) {
|
|
5
|
+
case "right":
|
|
6
|
+
return css`
|
|
7
|
+
transform: rotate(90deg) scale(-1, 1);
|
|
8
|
+
`;
|
|
9
|
+
case "left":
|
|
10
|
+
return css`
|
|
11
|
+
transform: rotate(-90deg);
|
|
12
|
+
`;
|
|
13
|
+
case "bottom":
|
|
14
|
+
return css`
|
|
15
|
+
transform: rotate(180deg);
|
|
16
|
+
`;
|
|
17
|
+
case "top":
|
|
18
|
+
default:
|
|
19
|
+
return css``;
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
const Icon = styled.svg`
|
|
23
|
+
${iconDirection};
|
|
24
|
+
`;
|
|
25
|
+
const Arrow = (props) => /* @__PURE__ */ jsx(Icon, { width: "18", height: "10", viewBox: "0 0 18 10", xmlns: "http://www.w3.org/2000/svg", ...props, children: /* @__PURE__ */ jsx("g", { id: "STO-Pages", fill: "none", fillRule: "evenodd", strokeLinecap: "round", strokeLinejoin: "round", children: /* @__PURE__ */ jsx("g", { id: "2.-Tablet-Pitch-Tab", transform: "translate(-120 -5387)", stroke: "#FFF", strokeWidth: "1.5", children: /* @__PURE__ */ jsx("g", { id: "Wrap-Up", transform: "translate(0 5299)", children: /* @__PURE__ */ jsx("g", { id: "Top", transform: "translate(64 84)", children: /* @__PURE__ */ jsxs("g", { id: "Top-Icon", transform: "translate(50 5)", children: [
|
|
26
|
+
/* @__PURE__ */ jsx("path", { d: "M9.917,5.583 L7.25,8.25", id: "Stroke-1", transform: "matrix(0 -1 -1 0 15.5 15.5)" }),
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
"polyline",
|
|
29
|
+
{
|
|
30
|
+
id: "Stroke-3",
|
|
31
|
+
transform: "scale(1 -1) rotate(90 21.834 0)",
|
|
32
|
+
points: "13.5835 -1.4165 21.5835 6.5835 18.2505 9.9165"
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
] }) }) }) }) }) });
|
|
36
|
+
export {
|
|
37
|
+
Arrow
|
|
38
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled, { css } from "styled-components";
|
|
3
|
+
const iconDirection = ({ direction }) => {
|
|
4
|
+
switch (direction) {
|
|
5
|
+
case "right":
|
|
6
|
+
return css`
|
|
7
|
+
transform: rotate(-90deg);
|
|
8
|
+
`;
|
|
9
|
+
case "left":
|
|
10
|
+
return css`
|
|
11
|
+
transform: rotate(90deg);
|
|
12
|
+
`;
|
|
13
|
+
case "top":
|
|
14
|
+
return css`
|
|
15
|
+
transform: rotate(180deg);
|
|
16
|
+
`;
|
|
17
|
+
case "bottom":
|
|
18
|
+
default:
|
|
19
|
+
return css``;
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
const Icon = styled.svg`
|
|
23
|
+
${iconDirection};
|
|
24
|
+
`;
|
|
25
|
+
const ArrowSimple = (props) => /* @__PURE__ */ jsx(Icon, { width: "13", height: "8", viewBox: "0 0 13 8", xmlns: "http://www.w3.org/2000/svg", ...props, children: /* @__PURE__ */ jsx("g", { id: "STO-Pages", fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsx("g", { id: "1.-Desktop-Overview-Tab", transform: "translate(-948 -1613)", fill: "currentColor", children: /* @__PURE__ */ jsx("g", { id: "Risk-Considerations", transform: "translate(512 1146)", children: /* @__PURE__ */ jsx("g", { id: "Debt", transform: "translate(1 450)", children: /* @__PURE__ */ jsx(
|
|
26
|
+
"polygon",
|
|
27
|
+
{
|
|
28
|
+
id: "Shape-Copy-5",
|
|
29
|
+
points: "441.5 25 435 18.3043478 436.181818 17 441.5 22.4782609 446.818182 17 448 18.3043478"
|
|
30
|
+
}
|
|
31
|
+
) }) }) }) }) });
|
|
32
|
+
export {
|
|
33
|
+
ArrowSimple
|
|
34
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg``;
|
|
4
|
+
const Check = (props) => /* @__PURE__ */ jsxs(Icon, { xmlns: "http://www.w3.org/2000/svg", width: "16", height: "14", viewBox: "0 0 16 14", ...props, children: [
|
|
5
|
+
/* @__PURE__ */ jsxs("defs", { children: [
|
|
6
|
+
/* @__PURE__ */ jsx("path", { id: "5fdua", d: "M1081.11 3455.04v-2.75h7.9v2.75z" }),
|
|
7
|
+
/* @__PURE__ */ jsx("path", { id: "5fdub", d: "M1083.56 3452.57v-3.61h15.06v3.61z" })
|
|
8
|
+
] }),
|
|
9
|
+
/* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsxs("g", { transform: "translate(-1081 -3444)", children: [
|
|
10
|
+
/* @__PURE__ */ jsx("g", { transform: "rotate(-315 1084.5 3454)", children: /* @__PURE__ */ jsx("use", { fill: "#fff", xlinkHref: "#5fdua" }) }),
|
|
11
|
+
/* @__PURE__ */ jsx("g", { transform: "rotate(-225 1091 3451)", children: /* @__PURE__ */ jsx("use", { fill: "#fff", xlinkHref: "#5fdub" }) })
|
|
12
|
+
] }) })
|
|
13
|
+
] });
|
|
14
|
+
export {
|
|
15
|
+
Check
|
|
16
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg`
|
|
4
|
+
fill: #fff;
|
|
5
|
+
width: 12px;
|
|
6
|
+
`;
|
|
7
|
+
const Facebook = (props) => /* @__PURE__ */ jsx(Icon, { width: "24", height: "24", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx("path", { d: "M22.675 0h-21.35c-.732 0-1.325.593-1.325 1.325v21.351c0 .731.593 1.324 1.325 1.324h11.495v-9.294h-3.128v-3.622h3.128v-2.671c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.795.143v3.24l-1.918.001c-1.504 0-1.795.715-1.795 1.763v2.313h3.587l-.467 3.622h-3.12v9.293h6.116c.73 0 1.323-.593 1.323-1.325v-21.35c0-.732-.593-1.325-1.325-1.325z" }) });
|
|
8
|
+
export {
|
|
9
|
+
Facebook
|
|
10
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg``;
|
|
4
|
+
const Info = (props) => /* @__PURE__ */ jsx(Icon, { width: "16", height: "16", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", ...props, children: /* @__PURE__ */ jsx("g", { id: "STO-Pages", fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsx("g", { id: "2.-Desktop-Pitch-Tab", transform: "translate(-957 -180)", children: /* @__PURE__ */ jsx("g", { id: "Hero", transform: "translate(0 94)", children: /* @__PURE__ */ jsxs("g", { id: "Tooltip", transform: "translate(957 86)", children: [
|
|
5
|
+
/* @__PURE__ */ jsx(
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
d: "M7.70634725,7.11558038e-07 C4.59053555,-0.00134762449 1.78079233,1.91363693 0.587507493,4.85185624 C-0.605777342,7.79007555 0.0524401862,11.172782 2.25518484,13.4223708 C4.45792949,15.6719596 7.77132172,16.3453242 10.6500831,15.1284251 C13.5288444,13.9115261 15.4059388,11.0440588 15.4059391,7.86333404 C15.4023412,3.52335835 11.9577501,0.00551374093 7.70634725,7.11558038e-07 Z",
|
|
9
|
+
id: "Shape",
|
|
10
|
+
fill: "#202020",
|
|
11
|
+
fillRule: "nonzero",
|
|
12
|
+
opacity: "0.2"
|
|
13
|
+
}
|
|
14
|
+
),
|
|
15
|
+
/* @__PURE__ */ jsx("ellipse", { id: "Oval", fill: "#FFF", cx: "7.757", cy: "5.117", rx: "1", ry: "1" }),
|
|
16
|
+
/* @__PURE__ */ jsx(
|
|
17
|
+
"polygon",
|
|
18
|
+
{
|
|
19
|
+
id: "Rectangle",
|
|
20
|
+
fill: "#FFF",
|
|
21
|
+
points: "7.10639456 7.16 8.40206803 7.16 8.40206803 9.31911253 8.40206803 11.5146667 7.10639456 11.5146667 7.10639456 9.8880281"
|
|
22
|
+
}
|
|
23
|
+
)
|
|
24
|
+
] }) }) }) }) });
|
|
25
|
+
export {
|
|
26
|
+
Info
|
|
27
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg`
|
|
4
|
+
fill: #fff;
|
|
5
|
+
width: 12px;
|
|
6
|
+
`;
|
|
7
|
+
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" }) });
|
|
8
|
+
export {
|
|
9
|
+
Instagram
|
|
10
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg`
|
|
4
|
+
fill: #fff;
|
|
5
|
+
width: 12px;
|
|
6
|
+
`;
|
|
7
|
+
const LinkIcon = () => /* @__PURE__ */ jsxs(
|
|
8
|
+
Icon,
|
|
9
|
+
{
|
|
10
|
+
version: "1.1",
|
|
11
|
+
id: "Layer_1",
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
x: "0px",
|
|
14
|
+
y: "0px",
|
|
15
|
+
viewBox: "0 0 512.092 512.092",
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsx(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
d: "M312.453,199.601c-6.066-6.102-12.792-11.511-20.053-16.128c-19.232-12.315-41.59-18.859-64.427-18.859\n c-31.697-0.059-62.106,12.535-84.48,34.987L34.949,308.23c-22.336,22.379-34.89,52.7-34.91,84.318\n c-0.042,65.98,53.41,119.501,119.39,119.543c31.648,0.11,62.029-12.424,84.395-34.816l89.6-89.6\n c1.628-1.614,2.537-3.816,2.524-6.108c-0.027-4.713-3.87-8.511-8.583-8.484h-3.413c-18.72,0.066-37.273-3.529-54.613-10.581\n c-3.195-1.315-6.867-0.573-9.301,1.877l-64.427,64.512c-20.006,20.006-52.442,20.006-72.448,0\n c-20.006-20.006-20.006-52.442,0-72.448l108.971-108.885c19.99-19.965,52.373-19.965,72.363,0\n c13.472,12.679,34.486,12.679,47.957,0c5.796-5.801,9.31-13.495,9.899-21.675C322.976,216.108,319.371,206.535,312.453,199.601z"
|
|
21
|
+
}
|
|
22
|
+
) }) }),
|
|
23
|
+
/* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsx(
|
|
24
|
+
"path",
|
|
25
|
+
{
|
|
26
|
+
d: "M477.061,34.993c-46.657-46.657-122.303-46.657-168.96,0l-89.515,89.429c-2.458,2.47-3.167,6.185-1.792,9.387\n c1.359,3.211,4.535,5.272,8.021,5.205h3.157c18.698-0.034,37.221,3.589,54.528,10.667c3.195,1.315,6.867,0.573,9.301-1.877\n l64.256-64.171c20.006-20.006,52.442-20.006,72.448,0c20.006,20.006,20.006,52.442,0,72.448l-80.043,79.957l-0.683,0.768\n l-27.989,27.819c-19.99,19.965-52.373,19.965-72.363,0c-13.472-12.679-34.486-12.679-47.957,0\n c-5.833,5.845-9.35,13.606-9.899,21.845c-0.624,9.775,2.981,19.348,9.899,26.283c9.877,9.919,21.433,18.008,34.133,23.893\n c1.792,0.853,3.584,1.536,5.376,2.304c1.792,0.768,3.669,1.365,5.461,2.048c1.792,0.683,3.669,1.28,5.461,1.792l5.035,1.365\n c3.413,0.853,6.827,1.536,10.325,2.133c4.214,0.626,8.458,1.025,12.715,1.195h5.973h0.512l5.12-0.597\n c1.877-0.085,3.84-0.512,6.059-0.512h2.901l5.888-0.853l2.731-0.512l4.949-1.024h0.939c20.961-5.265,40.101-16.118,55.381-31.403\n l108.629-108.629C523.718,157.296,523.718,81.65,477.061,34.993z"
|
|
27
|
+
}
|
|
28
|
+
) }) }),
|
|
29
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
30
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
31
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
32
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
33
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
34
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
35
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
36
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
37
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
38
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
39
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
40
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
41
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
42
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
43
|
+
/* @__PURE__ */ jsx("g", {})
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
);
|
|
47
|
+
export {
|
|
48
|
+
LinkIcon
|
|
49
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg``;
|
|
4
|
+
const LinkedIn = (props) => /* @__PURE__ */ jsx(Icon, { width: "12", height: "11", viewBox: "0 0 12 11", xmlns: "http://www.w3.org/2000/svg", ...props, children: /* @__PURE__ */ jsx("g", { id: "Symbols", fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsx("g", { id: "Footer", transform: "translate(-714 -286)", fill: "currentColor", fillRule: "nonzero", children: /* @__PURE__ */ jsx("g", { id: "Group", transform: "translate(704 275)", children: /* @__PURE__ */ jsx("g", { id: "Group-5", transform: "translate(10 11)", children: /* @__PURE__ */ jsx(
|
|
5
|
+
"path",
|
|
6
|
+
{
|
|
7
|
+
d: "M11.2179487,6.40893037 L11.2179487,10.4533333 L8.81357908,10.4533333 L8.81357908,6.6798001 C8.81357908,5.73185778 8.46581294,5.08492423 7.59551083,5.08492423 C6.93114554,5.08492423 6.53578129,5.52091004 6.36184606,5.94265293 C6.29841669,6.09342436 6.28208988,6.30327846 6.28208988,6.51432794 L6.28208988,10.4533333 L3.87691173,10.4533333 C3.87691173,10.4533333 3.90930452,4.06220661 3.87691173,3.40003822 L6.28185515,3.40003822 L6.28185515,4.39981457 C6.27697798,4.4072921 6.27064025,4.4153546 6.26604997,4.42260323 L6.28185515,4.42260323 L6.28185515,4.39981457 C6.6013754,3.91990462 7.17200502,3.23433716 8.44925141,3.23433716 C10.0316734,3.23431172 11.2179487,4.24243035 11.2179487,6.40893037 Z M1.36099298,0 C0.538184661,0 0,0.526301153 0,1.2184051 C0,1.89542682 0.522614211,2.43770038 1.32906965,2.43770038 L1.34513564,2.43770038 C2.18387954,2.43770038 2.70550267,1.89552855 2.70550267,1.2184051 C2.68969749,0.526301153 2.18387954,0 1.36099298,0 Z M0.142846493,10.4533333 L2.54711181,10.4533333 L2.54711181,3.40003822 L0.142846493,3.40003822 L0.142846493,10.4533333 Z",
|
|
8
|
+
id: "LinkedIn"
|
|
9
|
+
}
|
|
10
|
+
) }) }) }) }) });
|
|
11
|
+
export {
|
|
12
|
+
LinkedIn
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg``;
|
|
4
|
+
const Medium = (props) => /* @__PURE__ */ jsx(Icon, { width: "12", height: "9", viewBox: "0 0 12 9", xmlns: "http://www.w3.org/2000/svg", ...props, children: /* @__PURE__ */ jsx("g", { id: "Symbols", fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsx("g", { id: "Footer", transform: "translate(-834 -287)", fill: "currentColor", children: /* @__PURE__ */ jsx("g", { id: "Group", transform: "translate(704 275)", children: /* @__PURE__ */ jsx("g", { id: "Group-2", transform: "translate(130 12)", children: /* @__PURE__ */ jsx(
|
|
5
|
+
"path",
|
|
6
|
+
{
|
|
7
|
+
d: "M1.33026175,1.71792233 C1.34428419,1.58754232 1.29146635,1.45893018 1.18863515,1.37142089 L0.141626603,0.178112348 L0.141626603,0 L3.3938969,0 L5.90765224,5.21299044 L8.11758814,1.96272387e-16 L11.2179487,0 L11.2179487,0.178112348 L10.3223825,0.99000412 C10.2452591,1.04569185 10.2069311,1.13717884 10.2228232,1.2277819 L10.2228232,7.19344065 C10.2069311,7.28360174 10.2452591,7.37508873 10.3223825,7.43077646 L11.1969151,8.24266823 L11.1969151,8.42078058 L6.79760951,8.42078058 L6.79760951,8.24266823 L7.70392628,7.41088798 C7.79273504,7.32691442 7.79273504,7.30216432 7.79273504,7.17355217 L7.79273504,2.35170175 L5.27383814,8.40133407 L4.93356036,8.40133407 L2.00053419,2.35170175 L2.00053419,6.40629898 C1.97622863,6.57645594 2.03605769,6.74838076 2.16272703,6.87124735 L3.34107906,8.22277976 L3.34107906,8.40133407 L0,8.40133407 L0,8.22277976 L1.17835203,6.87124735 C1.30455395,6.7479388 1.3606437,6.57513004 1.33026175,6.40629898 L1.33026175,1.71792233 Z",
|
|
8
|
+
id: "Shape"
|
|
9
|
+
}
|
|
10
|
+
) }) }) }) }) });
|
|
11
|
+
export {
|
|
12
|
+
Medium
|
|
13
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg``;
|
|
4
|
+
const Reddit = (props) => /* @__PURE__ */ jsxs(Icon, { width: "15", height: "13", viewBox: "0 0 15 13", ...props, children: [
|
|
5
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx(
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
id: "zg3oa",
|
|
9
|
+
d: "M1076.597 4482.766l-.726 3.33c1.574.076 3.015.464 4.311 1.323.471-.335.977-.521 1.569-.363.666.179 1.079.605 1.21 1.247.134.644-.081 1.205-.635 1.597-.207.146-.267.282-.262.528.023 1.304-.622 2.293-1.647 3.059-1.65 1.23-3.557 1.62-5.59 1.489-1.5-.098-2.91-.505-4.13-1.398-1.134-.83-1.845-1.883-1.772-3.33.005-.09-.086-.213-.17-.276-.795-.596-.987-1.521-.458-2.268.532-.752 1.473-.91 2.342-.407.088.051.262.052.349 0a8.025 8.025 0 0 1 3.907-1.169c.24-.008.335-.098.383-.337.23-1.124.489-2.242.732-3.364.065-.299.226-.39.538-.32.762.169 1.532.309 2.295.474.176.038.28.018.404-.126.405-.473.94-.576 1.467-.314.493.245.738.77.615 1.317-.101.45-.575.837-1.073.877-.547.044-1.04-.302-1.246-.853-.04-.108-.133-.253-.228-.274-.711-.16-1.43-.293-2.185-.442m-2.597 7.23c-.005-.54-.472-1.003-1.006-.996-.539.007-1 .477-.994 1.013.006.545.462.991 1.01.987.548-.004.994-.457.99-1.003m3.994 1.003a1.005 1.005 0 0 0 1.006-.99 1.025 1.025 0 0 0-.997-1.01c-.536-.004-1 .46-1.003 1-.002.546.446.997.994 1m-2.502 1.995c.145 0 .293.012.436-.002.695-.064 1.381-.164 1.935-.569.091-.066.17-.256.124-.33-.102-.162-.264-.082-.425-.001-.267.134-.543.278-.838.343-1.176.257-2.32.25-3.37-.382-.074-.044-.234.016-.354.028.014.095-.012.224.05.278.14.12.312.22.49.297.613.263 1.273.348 1.952.338"
|
|
10
|
+
}
|
|
11
|
+
) }),
|
|
12
|
+
/* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsx("g", { transform: "translate(-1068 -4482)", children: /* @__PURE__ */ jsx("use", { fill: "#fff", xlinkHref: "#zg3oa" }) }) })
|
|
13
|
+
] });
|
|
14
|
+
export {
|
|
15
|
+
Reddit
|
|
16
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg``;
|
|
4
|
+
const Share = (props) => /* @__PURE__ */ jsx(Icon, { width: "18", height: "18", viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", ...props, children: /* @__PURE__ */ jsx("g", { id: "STO-Pages", fill: "none", fillRule: "evenodd", strokeLinecap: "round", children: /* @__PURE__ */ jsx("g", { id: "2.-Desktop-Pitch-Tab", transform: "translate(-271 -5126)", strokeWidth: "1.5", stroke: "currentColor", children: /* @__PURE__ */ jsx("g", { id: "Wrap-Up", transform: "translate(0 5040)", children: /* @__PURE__ */ jsx("g", { id: "Share", transform: "translate(183 75)", children: /* @__PURE__ */ jsx("g", { id: "Share-Icon", transform: "translate(75)", children: /* @__PURE__ */ jsxs("g", { id: "Group-11", transform: "translate(13 11)", children: [
|
|
5
|
+
/* @__PURE__ */ jsx(
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
d: "M14.083,11.5833 C12.61,11.5833 11.417,10.3893 11.417,8.9163 C11.417,7.4433 12.61,6.2503 14.083,6.2503 C15.556,6.2503 16.75,7.4433 16.75,8.9163 C16.75,10.3893 15.556,11.5833 14.083,11.5833 Z",
|
|
9
|
+
id: "Stroke-1"
|
|
10
|
+
}
|
|
11
|
+
),
|
|
12
|
+
/* @__PURE__ */ jsx(
|
|
13
|
+
"path",
|
|
14
|
+
{
|
|
15
|
+
d: "M3.417,6.0833 C1.944,6.0833 0.75,4.8893 0.75,3.4163 C0.75,1.9433 1.944,0.7503 3.417,0.7503 C4.89,0.7503 6.083,1.9433 6.083,3.4163 C6.083,4.8893 4.89,6.0833 3.417,6.0833 Z",
|
|
16
|
+
id: "Stroke-3"
|
|
17
|
+
}
|
|
18
|
+
),
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M3.417,17.0833 C1.944,17.0833 0.75,15.8893 0.75,14.4163 C0.75,12.9433 1.944,11.7503 3.417,11.7503 C4.89,11.7503 6.083,12.9433 6.083,14.4163 C6.083,15.8893 4.89,17.0833 3.417,17.0833 Z",
|
|
23
|
+
id: "Stroke-5"
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ jsx("path", { d: "M5.8545,4.636 L11.7685,7.593", id: "Stroke-7" }),
|
|
27
|
+
/* @__PURE__ */ jsx("path", { d: "M8.917,11.9163 L11.737,10.5743", id: "Stroke-9" })
|
|
28
|
+
] }) }) }) }) }) }) });
|
|
29
|
+
export {
|
|
30
|
+
Share
|
|
31
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg``;
|
|
4
|
+
const Telegram = (props) => /* @__PURE__ */ jsx(Icon, { width: "12", height: "9", viewBox: "0 0 12 9", xmlns: "http://www.w3.org/2000/svg", ...props, children: /* @__PURE__ */ jsx("g", { id: "Symbols", fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsx("g", { id: "Footer", transform: "translate(-794 -286)", fill: "currentColor", children: /* @__PURE__ */ jsx("g", { id: "Group", transform: "translate(704 275)", children: /* @__PURE__ */ jsx("g", { id: "Group-3", transform: "translate(90 11)", children: /* @__PURE__ */ jsx(
|
|
5
|
+
"path",
|
|
6
|
+
{
|
|
7
|
+
d: "M8.5929391,9.49400205 C8.74344315,9.60344218 8.93741577,9.63080221 9.11035521,9.56360213 C9.28329465,9.49592205 9.41042851,9.34424188 9.44875563,9.16040167 C9.85492961,7.20007941 10.840217,2.23831371 11.2099335,0.455111664 C11.2379777,0.32071151 11.1912373,0.181031349 11.0884085,0.0912712461 C10.9855796,0.00151114295 10.8430214,-0.0244088868 10.7158876,0.0240711689 C8.75606306,0.769032025 2.72047661,3.0946347 0.253518868,4.03207577 C0.0969385639,4.09159584 -0.00495548443,4.24615602 0.000185958374,4.41559621 C0.00579480507,4.58551641 0.117036931,4.73287658 0.277356466,4.78231664 C1.38370148,5.12215703 2.83592537,5.59495757 2.83592537,5.59495757 C2.83592537,5.59495757 3.51459582,7.69975999 3.86842056,8.77016122 C3.91282393,8.90456137 4.01518539,9.01016149 4.15026511,9.04664154 C4.28487743,9.08264158 4.42883783,9.04472153 4.52932967,8.94728142 C5.0976928,8.39624079 5.97641212,7.54423981 5.97641212,7.54423981 C5.97641212,7.54423981 7.64597882,8.80136125 8.5929391,9.49400205 Z M3.44682225,5.32903726 L4.23159339,7.98728032 L4.40593504,6.30391838 C4.40593504,6.30391838 7.43798408,3.49543516 9.16644367,1.89463332 C9.2169233,1.84759326 9.22393435,1.76887317 9.181868,1.71367311 C9.14026906,1.65847305 9.06361482,1.64551303 9.00612414,1.68295307 C7.00283106,2.99671458 3.44682225,5.32903726 3.44682225,5.32903726 Z",
|
|
8
|
+
id: "telegram-1"
|
|
9
|
+
}
|
|
10
|
+
) }) }) }) }) });
|
|
11
|
+
export {
|
|
12
|
+
Telegram
|
|
13
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg`
|
|
4
|
+
fill: #fff;
|
|
5
|
+
width: 12px;
|
|
6
|
+
`;
|
|
7
|
+
const Twitter = (props) => /* @__PURE__ */ jsx(Icon, { width: "24", height: "24", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx("path", { d: "M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z" }) });
|
|
8
|
+
export {
|
|
9
|
+
Twitter
|
|
10
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg`
|
|
4
|
+
fill: #000;
|
|
5
|
+
width: 12px;
|
|
6
|
+
`;
|
|
7
|
+
const X = (props) => /* @__PURE__ */ jsx(Icon, { width: "24", height: "24", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx("path", { d: "M24 20.188l-8.315-8.209 8.2-8.282-3.697-3.697-8.212 8.318-8.31-8.203-3.666 3.666 8.321 8.24-8.206 8.313 3.666 3.666 8.237-8.318 8.285 8.203z" }) });
|
|
8
|
+
export {
|
|
9
|
+
X
|
|
10
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
const Icon = styled.svg`
|
|
4
|
+
fill: #fff;
|
|
5
|
+
width: 12px;
|
|
6
|
+
`;
|
|
7
|
+
const Youtube = (props) => /* @__PURE__ */ jsx(Icon, { width: "24", height: "24", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx("path", { d: "M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z" }) });
|
|
8
|
+
export {
|
|
9
|
+
Youtube
|
|
10
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Arrow } from "./Arrow.js";
|
|
2
|
+
import { ArrowSimple } from "./ArrowSimple.js";
|
|
3
|
+
import { Check } from "./Check.js";
|
|
4
|
+
import { Facebook } from "./Facebook.js";
|
|
5
|
+
import { Info } from "./Info.js";
|
|
6
|
+
import { Instagram } from "./Instagram.js";
|
|
7
|
+
import { LinkIcon } from "./LinkIcon.js";
|
|
8
|
+
import { LinkedIn } from "./LinkedIn.js";
|
|
9
|
+
import { Medium } from "./Medium.js";
|
|
10
|
+
import { Reddit } from "./Reddit.js";
|
|
11
|
+
import { Share } from "./Share.js";
|
|
12
|
+
import { Telegram } from "./Telegram.js";
|
|
13
|
+
import { Twitter } from "./Twitter.js";
|
|
14
|
+
import { Youtube } from "./Youtube.js";
|
|
15
|
+
import { X } from "./X.js";
|
|
16
|
+
export {
|
|
17
|
+
Arrow,
|
|
18
|
+
ArrowSimple,
|
|
19
|
+
Check,
|
|
20
|
+
Facebook,
|
|
21
|
+
Info,
|
|
22
|
+
Instagram,
|
|
23
|
+
LinkIcon,
|
|
24
|
+
LinkedIn,
|
|
25
|
+
Medium,
|
|
26
|
+
Reddit,
|
|
27
|
+
Share,
|
|
28
|
+
Telegram,
|
|
29
|
+
Twitter,
|
|
30
|
+
X,
|
|
31
|
+
Youtube
|
|
32
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
import theme from "../../styles/theme.js";
|
|
3
|
+
const List = styled.ul`
|
|
4
|
+
list-style-type: disclosure-closed;
|
|
5
|
+
list-style: none;
|
|
6
|
+
margin: 0;
|
|
7
|
+
padding: 0;
|
|
8
|
+
`;
|
|
9
|
+
const ListItem = styled.li`
|
|
10
|
+
padding: 0 0 0 2rem;
|
|
11
|
+
color: ${theme.cBlack};
|
|
12
|
+
font-size: 0.75rem;
|
|
13
|
+
letter-spacing: normal;
|
|
14
|
+
line-height: 1.31rem;
|
|
15
|
+
font-weight: 200;
|
|
16
|
+
margin-bottom: 1rem;
|
|
17
|
+
position: relative;
|
|
18
|
+
/* top: 1px; */
|
|
19
|
+
|
|
20
|
+
font-size: 16px !important;
|
|
21
|
+
font-weight: 300;
|
|
22
|
+
font-style: normal;
|
|
23
|
+
font-stretch: normal;
|
|
24
|
+
line-height: 1.5 !important;
|
|
25
|
+
letter-spacing: 0.6px;
|
|
26
|
+
|
|
27
|
+
a {
|
|
28
|
+
word-break: break-all !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&:before {
|
|
32
|
+
content: '';
|
|
33
|
+
position: absolute;
|
|
34
|
+
width: 10px;
|
|
35
|
+
height: 10px;
|
|
36
|
+
background: #0050ca;
|
|
37
|
+
border-radius: 100px;
|
|
38
|
+
left: 0;
|
|
39
|
+
top: 0px;
|
|
40
|
+
margin-top: 0.35rem;
|
|
41
|
+
|
|
42
|
+
@media screen and (min-width: 1440px) {
|
|
43
|
+
top: -1px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
`;
|
|
47
|
+
List.Item = ListItem;
|
|
48
|
+
export {
|
|
49
|
+
List,
|
|
50
|
+
ListItem
|
|
51
|
+
};
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
import media from "../StokrLoader/media.js";
|
|
3
|
+
const ContentInnerFull = styled.div`
|
|
4
|
+
display: flex;
|
|
5
|
+
align-items: flex-start;
|
|
6
|
+
justify-content: center;
|
|
7
|
+
margin: auto;
|
|
8
|
+
padding: 0.55rem 2rem;
|
|
9
|
+
font-size: 1rem;
|
|
10
|
+
width: 100%;
|
|
11
|
+
z-index: 1;
|
|
12
|
+
|
|
13
|
+
${media.tablet`
|
|
14
|
+
padding: 0.55rem 3rem;
|
|
15
|
+
`};
|
|
16
|
+
|
|
17
|
+
${media.desktop`
|
|
18
|
+
padding: 0.75rem 25% 2.5rem 0;
|
|
19
|
+
max-width: 85%;
|
|
20
|
+
height: 100%;
|
|
21
|
+
`};
|
|
22
|
+
|
|
23
|
+
${media.default`
|
|
24
|
+
padding: 0.75rem 25% 3.5rem 0;
|
|
25
|
+
`};
|
|
26
|
+
`;
|
|
27
|
+
const ContentInnerText = styled.div`
|
|
28
|
+
width: 100%;
|
|
29
|
+
|
|
30
|
+
h4 {
|
|
31
|
+
font-size: 1.07143rem;
|
|
32
|
+
font-size: 17.14px;
|
|
33
|
+
font-weight: 700;
|
|
34
|
+
line-height: 1.28571em;
|
|
35
|
+
letter-spacing: normal;
|
|
36
|
+
position: relative;
|
|
37
|
+
margin-top: 29px;
|
|
38
|
+
margin-bottom: 16px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
h4:not(:first-of-type) {
|
|
42
|
+
top: 1px;
|
|
43
|
+
|
|
44
|
+
${media.desktop`
|
|
45
|
+
top: 0px;
|
|
46
|
+
`};
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
p:not(:first-of-type) {
|
|
50
|
+
position: relative;
|
|
51
|
+
top: 0px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
p:last-of-type {
|
|
55
|
+
margin-bottom: 65px;
|
|
56
|
+
|
|
57
|
+
${media.desktop`
|
|
58
|
+
margin-bottom: 0;
|
|
59
|
+
`};
|
|
60
|
+
}
|
|
61
|
+
`;
|
|
62
|
+
export {
|
|
63
|
+
ContentInnerFull,
|
|
64
|
+
ContentInnerText
|
|
65
|
+
};
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
import { Link } from "react-router-dom";
|
|
3
|
+
import media from "../StokrLoader/media.js";
|
|
4
|
+
import theme from "../../styles/theme.js";
|
|
5
|
+
const ContentText = styled.p.withConfig({
|
|
6
|
+
shouldForwardProp: (props) => !["dark", "bold", "light", "regular"].includes(props)
|
|
7
|
+
})`
|
|
8
|
+
font-size: 0.81rem;
|
|
9
|
+
letter-spacing: normal;
|
|
10
|
+
line-height: 1.6rem;
|
|
11
|
+
position: relative;
|
|
12
|
+
padding-bottom: 10px;
|
|
13
|
+
|
|
14
|
+
/* color: ${(props) => props.dark ? theme.cBlack : theme.cWhite}; */
|
|
15
|
+
|
|
16
|
+
color: #202020;
|
|
17
|
+
font-weight: ${(props) => {
|
|
18
|
+
if (props.bold) {
|
|
19
|
+
return "800";
|
|
20
|
+
}
|
|
21
|
+
if (props.light) {
|
|
22
|
+
return "200";
|
|
23
|
+
}
|
|
24
|
+
if (props.regular) {
|
|
25
|
+
return "400";
|
|
26
|
+
}
|
|
27
|
+
return "200";
|
|
28
|
+
}};
|
|
29
|
+
${media.tablet`
|
|
30
|
+
font-size: 0.75rem;
|
|
31
|
+
line-height: 1.5rem;
|
|
32
|
+
`};
|
|
33
|
+
|
|
34
|
+
${media.desktop`
|
|
35
|
+
font-size: 0.75rem;
|
|
36
|
+
line-height: 1.5rem;
|
|
37
|
+
`};
|
|
38
|
+
|
|
39
|
+
${media.large`
|
|
40
|
+
font-size: 0.75rem;
|
|
41
|
+
line-height: 1.5rem;
|
|
42
|
+
`};
|
|
43
|
+
|
|
44
|
+
${media.default`
|
|
45
|
+
font-size: 0.75rem;
|
|
46
|
+
line-height: 1.5rem;
|
|
47
|
+
`};
|
|
48
|
+
|
|
49
|
+
font-size: 16px !important;
|
|
50
|
+
font-weight: 300;
|
|
51
|
+
font-style: normal;
|
|
52
|
+
font-stretch: normal;
|
|
53
|
+
line-height: 1.5 !important;
|
|
54
|
+
letter-spacing: 0.6px;
|
|
55
|
+
|
|
56
|
+
a {
|
|
57
|
+
word-break: break-all !important;
|
|
58
|
+
}
|
|
59
|
+
`;
|
|
60
|
+
const ContentSection = styled.div`
|
|
61
|
+
// margin-bottom: 3rem;
|
|
62
|
+
margin-bottom: 1rem;
|
|
63
|
+
`;
|
|
64
|
+
const UppercaseText = styled.p.withConfig({
|
|
65
|
+
shouldForwardProp: (props) => !["hideDesktop", "nomargin", "bold", "light", "regular", "demi"].includes(props)
|
|
66
|
+
})`
|
|
67
|
+
position: relative;
|
|
68
|
+
margin: 0;
|
|
69
|
+
font-size: ${(props) => {
|
|
70
|
+
if (props.hideDesktop) {
|
|
71
|
+
return "0.62rem;";
|
|
72
|
+
}
|
|
73
|
+
return "0.75rem;";
|
|
74
|
+
}};
|
|
75
|
+
width: 100%;
|
|
76
|
+
line-height: 1.31rem;
|
|
77
|
+
letter-spacing: 0.11rem;
|
|
78
|
+
text-transform: uppercase;
|
|
79
|
+
display: inline-block;
|
|
80
|
+
margin-bottom: ${(props) => {
|
|
81
|
+
if (props.nomargin) {
|
|
82
|
+
return "0";
|
|
83
|
+
}
|
|
84
|
+
return "1rem";
|
|
85
|
+
}};
|
|
86
|
+
|
|
87
|
+
font-weight: ${(props) => {
|
|
88
|
+
if (props.bold) {
|
|
89
|
+
return "800";
|
|
90
|
+
}
|
|
91
|
+
if (props.light) {
|
|
92
|
+
return "200";
|
|
93
|
+
}
|
|
94
|
+
if (props.regular) {
|
|
95
|
+
return "400";
|
|
96
|
+
}
|
|
97
|
+
if (props.demi) {
|
|
98
|
+
return "600";
|
|
99
|
+
}
|
|
100
|
+
return "600";
|
|
101
|
+
}};
|
|
102
|
+
|
|
103
|
+
order: 2;
|
|
104
|
+
|
|
105
|
+
${media.tablet`
|
|
106
|
+
font-size: .8rem;
|
|
107
|
+
`};
|
|
108
|
+
|
|
109
|
+
${media.desktop`
|
|
110
|
+
order: 1 !important;
|
|
111
|
+
display: ${(props) => {
|
|
112
|
+
if (props.hideDesktop) {
|
|
113
|
+
return "none";
|
|
114
|
+
}
|
|
115
|
+
return "inline-block";
|
|
116
|
+
}}; /* -line */
|
|
117
|
+
`};
|
|
118
|
+
|
|
119
|
+
&:first-of-type {
|
|
120
|
+
top: -2px;
|
|
121
|
+
|
|
122
|
+
${media.desktop`
|
|
123
|
+
top: -3px;
|
|
124
|
+
`};
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
&:nth-of-type(2) {
|
|
128
|
+
top: -5px;
|
|
129
|
+
|
|
130
|
+
${media.tablet`
|
|
131
|
+
top: -6px;
|
|
132
|
+
`};
|
|
133
|
+
|
|
134
|
+
${media.desktop`
|
|
135
|
+
top: -7px;
|
|
136
|
+
`};
|
|
137
|
+
}
|
|
138
|
+
`;
|
|
139
|
+
const ContentInnerLink = styled(Link)`
|
|
140
|
+
&&& {
|
|
141
|
+
color: #000;
|
|
142
|
+
padding: 0;
|
|
143
|
+
margin: 0 3rem 0 0;
|
|
144
|
+
display: flex;
|
|
145
|
+
align-items: center;
|
|
146
|
+
text-transform: uppercase;
|
|
147
|
+
|
|
148
|
+
span {
|
|
149
|
+
white-space: nowrap;
|
|
150
|
+
font-weight: 700;
|
|
151
|
+
font-size: 0.75rem;
|
|
152
|
+
letter-spacing: 1px;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
&::after {
|
|
156
|
+
display: none;
|
|
157
|
+
}
|
|
158
|
+
& i {
|
|
159
|
+
margin-left: 0.5rem;
|
|
160
|
+
}
|
|
161
|
+
& img {
|
|
162
|
+
max-width: 1rem;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
`;
|
|
166
|
+
export {
|
|
167
|
+
ContentInnerLink,
|
|
168
|
+
ContentSection,
|
|
169
|
+
ContentText,
|
|
170
|
+
UppercaseText
|
|
171
|
+
};
|