fix: add valid info badge icon to key gen sync card

This commit is contained in:
RadoslavDimchev 2023-10-15 22:40:48 +03:00
parent 6f61d151f8
commit a59b34e019
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import { Stack, XStack, YStack } from 'tamagui'
import { ClearIcon } from '@status-im/icons'
import { InfoBadgeIcon } from '@status-im/icons'
import { Text } from '@status-im/components'
import StandardGauge from '../../../../components/Charts/StandardGauge'
@ -48,7 +48,7 @@ const KeyGenerationSyncCard = ({ synced, total, title, color }: KeyGenerationSyn
{formatNumbersWithComa(synced)} / {formatNumbersWithComa(total)}
</Text>
</YStack>
<ClearIcon size={20} color="#A1ABBD" style={{ cursor: 'pointer' }} />
<InfoBadgeIcon size={20} color="#A1ABBD" style={{ cursor: 'pointer' }} />
</XStack>
</BorderBox>
)