From 90a26a2d8537be4829f06d8f5d788741aa61013c Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Wed, 30 Aug 2023 11:40:10 +0300 Subject: [PATCH] Rows for client setup --- .../ClientSetup/SetupRow.tsx | 41 +++++++++++++++++++ .../ClientSetup/WithdrawalAddress.tsx | 33 +++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 src/pages/ValidatorOnboarding/ClientSetup/SetupRow.tsx create mode 100644 src/pages/ValidatorOnboarding/ClientSetup/WithdrawalAddress.tsx diff --git a/src/pages/ValidatorOnboarding/ClientSetup/SetupRow.tsx b/src/pages/ValidatorOnboarding/ClientSetup/SetupRow.tsx new file mode 100644 index 00000000..f2f89663 --- /dev/null +++ b/src/pages/ValidatorOnboarding/ClientSetup/SetupRow.tsx @@ -0,0 +1,41 @@ +import { Stack, XStack, YStack } from 'tamagui' +import { Input as StatusInput, Text } from '@status-im/components' +import { AddIcon } from '@status-im/icons' + +type SetupRowProps = { + title: string +} +const SetupRow = ({ title }: SetupRowProps) => { + return ( + + + {title} + + + + + How many Validators would you like to run? + + } /> + + + + ETH + + + 64 + + + + + USD + + + $4,273 USD + + + + + ) +} +export default SetupRow diff --git a/src/pages/ValidatorOnboarding/ClientSetup/WithdrawalAddress.tsx b/src/pages/ValidatorOnboarding/ClientSetup/WithdrawalAddress.tsx new file mode 100644 index 00000000..ca1e7430 --- /dev/null +++ b/src/pages/ValidatorOnboarding/ClientSetup/WithdrawalAddress.tsx @@ -0,0 +1,33 @@ +import { Stack, YStack } from 'tamagui' +import { InformationBox, Input as StatusInput, Text } from '@status-im/components' +import { ClearIcon, CloseCircleIcon } from '@status-im/icons' +type WithdrawalAddressProps = { + title: string +} +const WithdrawalAddress = ({ title }: WithdrawalAddressProps) => { + return ( + + + {title} + + + + Ethereum Address + + + } + /> + + } + /> + + + ) +} +export default WithdrawalAddress