From 7c4d094e5d3e380c06a6eb6ce2e1c5c176d06a60 Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Wed, 16 Aug 2023 11:29:21 +0300 Subject: [PATCH] Implement first state of sync status --- public/icons/refresh.svg | 5 +++++ src/pages/PairDevice/PairDevice.tsx | 5 ++++- src/pages/PairDevice/SyncStatus.tsx | 20 ++++++++++++++++++++ 3 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 public/icons/refresh.svg create mode 100644 src/pages/PairDevice/SyncStatus.tsx diff --git a/public/icons/refresh.svg b/public/icons/refresh.svg new file mode 100644 index 00000000..ead09ed3 --- /dev/null +++ b/public/icons/refresh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/pages/PairDevice/PairDevice.tsx b/src/pages/PairDevice/PairDevice.tsx index ec0080ab..1b3b06df 100644 --- a/src/pages/PairDevice/PairDevice.tsx +++ b/src/pages/PairDevice/PairDevice.tsx @@ -1,5 +1,6 @@ import { YStack } from 'tamagui' import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow' +import SyncStatus from './SyncStatus' const PairDevice = () => { return ( @@ -9,7 +10,9 @@ const PairDevice = () => { style={{ maxWidth: '100%', }} - > + > + + ) } diff --git a/src/pages/PairDevice/SyncStatus.tsx b/src/pages/PairDevice/SyncStatus.tsx new file mode 100644 index 00000000..f1de75dd --- /dev/null +++ b/src/pages/PairDevice/SyncStatus.tsx @@ -0,0 +1,20 @@ +import { XStack, YStack } from 'tamagui' +import { Text } from '@status-im/components' +import Icon from '../../components/General/Icon' +const SyncStatus = () => { + return ( + + + + Device Sync Status + + + + + No pairing input provided. + + + ) +} + +export default SyncStatus