feat: create header for key generation

This commit is contained in:
RadoslavDimchev 2023-08-25 11:27:05 +03:00
parent 9340515504
commit d25d133604
2 changed files with 25 additions and 1 deletions

View File

@ -1,7 +1,12 @@
import { YStack } from 'tamagui'
import KeyGenerationHeader from './KeyGenerationHeader'
const KeyGeneration = () => {
return <YStack space={'$2'}></YStack>
return (
<YStack space={'$2'}>
<KeyGenerationHeader />
</YStack>
)
}
export default KeyGeneration

View File

@ -0,0 +1,19 @@
import { Text } from '@status-im/components'
import { XStack } from 'tamagui'
import SyncCard from './SyncCard'
const KeyGenerationHeader = () => {
return (
<XStack justifyContent="space-between">
<Text size={27} weight={'semibold'}>
Key Generation
</Text>
<XStack space={'$2'}>
<SyncCard synced={123.524} total={172.503} />
<SyncCard synced={123.524} total={172.503} />
</XStack>
</XStack>
)
}
export default KeyGenerationHeader