feat: update validator request structure

This commit is contained in:
RadoslavDimchev 2023-09-27 21:27:20 +03:00
parent da61af6016
commit f1d3cf4793

View File

@ -10,7 +10,8 @@ type ValidatorRequestProps = {
const ValidatorRequest = ({ number }: ValidatorRequestProps) => {
return (
<YStack space={'$3'} style={{ width: '100%' }}>
<XStack style={{ justifyContent: 'space-between', alignItems: 'center' }}>
<XStack style={{ justifyContent: 'space-between', width: '100%' }}>
<XStack style={{ justifyContent: 'space-between', width: '40%' }}>
<XStack space={'$2'}>
<Avatar
type="user"
@ -31,10 +32,13 @@ const ValidatorRequest = ({ number }: ValidatorRequestProps) => {
<Text size={13} color="#647084" weight={'semibold'}>
Keys Generated
</Text>
</XStack>
<XStack style={{ justifyContent: true ? 'end' : 'space-between', width: '60%' }}>
<Text size={13} color="#2F80ED" weight={'semibold'}>
Requires Deposit
</Text>
</XStack>
</XStack>
<DividerLine />
</YStack>
)