-
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 setup vault graphics, add active not progressing indicator
- Loading branch information
1 parent
831f1bb
commit 98396fb
Showing
10 changed files
with
99 additions
and
32 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions
43
...int-unmint/components/setup-vault-screen/components/setup-vault-screen.vault-graphics.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,43 @@ | ||
import { Box, Image, Text, VStack } from '@chakra-ui/react'; | ||
|
||
export function SetupVaultScreenVaultGraphics(): React.JSX.Element { | ||
return ( | ||
<VStack | ||
p={'1px'} | ||
w={'100%'} | ||
bgGradient={`linear(orange.01, purple.01)`} | ||
borderRadius={'md'} | ||
alignItems={'center'} | ||
> | ||
<VStack | ||
p={'35px'} | ||
w={'100%'} | ||
bg={'background.content.01'} | ||
borderRadius={'md'} | ||
spacing={'15px'} | ||
justifyContent={'center'} | ||
alignItems={'center'} | ||
> | ||
<Box position="relative" boxSize="75px"> | ||
<Image | ||
src={'./images/logos/bitcoin-logo.svg'} | ||
alt={'Bitcoin Logo'} | ||
boxSize={'75px'} | ||
position="absolute" | ||
right="37.5%" | ||
/> | ||
<Image | ||
src={'./images/logos/dlc-btc-logo.svg'} | ||
alt={'DLC BTC Logo'} | ||
boxSize={'75px'} | ||
position="absolute" | ||
left="37.5%" | ||
/> | ||
</Box> | ||
<Text fontSize={'lg'} fontWeight={'bold'} color={'white.01'}> | ||
BTC/dlcBTC Vault | ||
</Text> | ||
</VStack> | ||
</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
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
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