feat: create component for successfully paired
This commit is contained in:
parent
539e7377d1
commit
ed44201bdb
|
@ -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
|
Loading…
Reference in New Issue