-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Warning Text for Bitcoin Wallet Connection Modal (#198)
- Loading branch information
Showing
3 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
...omponents/modals/select-bitcoin-wallet-modal/components/update-bitcoin-wallet-message.tsx
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,33 @@ | ||
import { Link, Text, VStack } from '@chakra-ui/react'; | ||
|
||
export function UpdateBitcoinWalletMessage(): React.JSX.Element { | ||
return ( | ||
<VStack | ||
alignItems={'end'} | ||
p={'15px'} | ||
w={'100%'} | ||
border={'1px dashed'} | ||
borderRadius={'md'} | ||
borderColor={'orange.01'} | ||
> | ||
<Text color={'white'} fontSize={'12px'}> | ||
Before proceeding, please make sure your Bitcoin Wallet is up to date. | ||
</Text> | ||
<Text color={'white'} fontSize={'12px'}> | ||
If you are using Ledger, ensure both the device firmware and Bitcoin App are updated to | ||
avoid errors. | ||
</Text> | ||
<Text color={'white'} fontSize={'12px'}> | ||
Use{' '} | ||
<Link | ||
color={'orange.01'} | ||
href="https://support.ledger.com/article/8458939792669-zd" | ||
isExternal | ||
> | ||
Ledger Live | ||
</Link>{' '} | ||
to update both firmware and the app easily. | ||
</Text> | ||
</VStack> | ||
); | ||
} |
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