From a60760bc72f4a79b4d4b451858fec88cbc229c5b Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Fri, 25 Aug 2023 15:38:26 +0300 Subject: [PATCH] Add tag for coming soon --- .../ValidatorSetup/ExecClientCard.tsx | 27 ++++++++++++++++--- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/src/pages/ValidatorOnboarding/ValidatorSetup/ExecClientCard.tsx b/src/pages/ValidatorOnboarding/ValidatorSetup/ExecClientCard.tsx index ce72f566..da87859b 100644 --- a/src/pages/ValidatorOnboarding/ValidatorSetup/ExecClientCard.tsx +++ b/src/pages/ValidatorOnboarding/ValidatorSetup/ExecClientCard.tsx @@ -1,4 +1,4 @@ -import { YStack } from 'tamagui' +import { Stack, XStack, YStack } from 'tamagui' import Icon from '../../../components/General/Icon' import { Text } from '@status-im/components' @@ -26,9 +26,28 @@ const ExecClientCard = ({ name, icon, isSelected, isComingSoon }: ExecClientCard }} space={'$12'} > - - {name} - + + + {name} + + {isComingSoon && ( + + + COMING SOON + + + )} + )