feat: add parts of validator request

This commit is contained in:
RadoslavDimchev 2023-09-22 15:34:13 +03:00
parent 1f719efb10
commit b4f57332fb
1 changed files with 12 additions and 5 deletions

View File

@ -1,12 +1,19 @@
import { DividerLine } from '@status-im/components'
import { XStack } from 'tamagui'
import { DividerLine, Text } from '@status-im/components'
import { XStack, YStack } from 'tamagui'
const ValidatorRequest = () => {
return (
<>
<XStack space={'$2'}></XStack>
<YStack space={'$3'} style={{ width: '100%' }}>
<XStack style={{ justifyContent: 'space-between' }}>
<Text size={13} color="#647084" weight={'semibold'}>
Keys Generated
</Text>
<Text size={13} color="#2F80ED" weight={'semibold'}>
Requires Deposit
</Text>
</XStack>
<DividerLine />
</>
</YStack>
)
}