-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
90 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { Button, ButtonProps } from '../Button/Button' | ||
import styled from '@emotion/styled' | ||
|
||
const SButton = styled(Button)` | ||
font-size: 12px; | ||
line-height: 12px; | ||
padding: 11px 15px 11px 15px; | ||
` | ||
|
||
type Props = Pick<ButtonProps, 'onClick'> | ||
|
||
export const FundWalletButton = (props: Props) => <SButton {...props} variant="primary">Fund wallet</SButton> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Button, ButtonProps } from '../Button/Button' | ||
import styled from '@emotion/styled' | ||
|
||
type Props = Pick<ButtonProps, 'onClick'> | ||
|
||
export const FundWalletMobileButton = (props: Props) => <Button {...props} variant="primary" fullWidth={true}>Fund wallet</Button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { Modal } from '../Modal/Modal' | ||
import { ComponentProps } from 'react' | ||
import { GradientText } from 'components/Typography/GradientText/GradientText' | ||
|
||
type Props = Pick<ComponentProps<typeof Modal>, 'open' | 'onClose'> | ||
|
||
export const FundWalletModal = ({ open, onClose }: Props) => { | ||
return <> | ||
<Modal | ||
width={460} | ||
open={open} | ||
onClose={onClose} | ||
withoutCloseOutside={true} | ||
> | ||
<GradientText fs={20} fw={600} lh={20}> | ||
Fund your wallet | ||
</GradientText> | ||
<p> | ||
Purchase BSX through very convenient solutions allowing to buy it through FIAT or from your exchange account, Find currently available solutions below. | ||
</p> | ||
<div> | ||
<div> | ||
|
||
<div>Banxa is the leading global Web3 on-and-off ramp solution.</div> | ||
</div> | ||
</div> | ||
</Modal> | ||
</> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
src/components/Layout/Header/MobileNavBar/MobileNavBar.styled.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters