This commit is contained in:
Hristo Nedelkov 2023-08-29 14:00:12 +03:00
parent a1340d4265
commit 0f0dd918b6
1 changed files with 12 additions and 0 deletions

View File

@ -3,6 +3,8 @@ import { XStack, Stack, YStack } from 'tamagui'
import { Text } from '@status-im/components'
import Confetti from 'react-confetti'
import ActivationCard from './ActivationCard'
import { Link } from 'react-router-dom'
import { ArrowLeftIcon } from '@status-im/icons'
const Activation = () => {
const [showConfetti, setShowConfetti] = useState(true)
@ -55,6 +57,16 @@ const Activation = () => {
</XStack>
</YStack>
</YStack>
<Stack style={{ maxWidth: 'fit-content', marginTop: '50px' }}>
<Text size={15}>
<XStack space={'$1'} style={{ alignItems: 'center' }}>
<ArrowLeftIcon size={16} color="#2A4CF4" />
<Link style={{ color: '#2A4CF4' }} to={'/'}>
Edit Validators
</Link>
</XStack>
</Text>
</Stack>
</YStack>
</Stack>
)