feat: create component for successfully paired

This commit is contained in:
RadoslavDimchev 2023-08-17 17:56:08 +03:00
parent 539e7377d1
commit ed44201bdb
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
import { Text } from '@status-im/components'
import { YStack } from 'tamagui'
const PairedSuccessfully = () => {
return (
<YStack space={'$2'}>
<Text size={19} weight={'semibold'}>
Pair with Command line
</Text>
<Text size={11} weight={'semibold'} color="#647084">
Device Sync Status
</Text>
<Text size={15} weight={'semibold'} color="#2A4AF5">
Paired Successfully! 🥳
</Text>
</YStack>
)
}
export default PairedSuccessfully