fix: icon from paired device card

This commit is contained in:
RadoslavDimchev 2023-10-15 23:04:50 +03:00
parent a59b34e019
commit d8934a8ceb
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import { XStack, YStack } from 'tamagui'
import { InfoIcon } from '@status-im/icons'
import { InfoBadgeIcon } from '@status-im/icons';
import { Avatar, Text } from '@status-im/components'
const PairedDeviceCard = () => {
@ -24,7 +24,7 @@ const PairedDeviceCard = () => {
</Text>
</YStack>
</XStack>
<InfoIcon size={20} color="#A1ABBD" cursor={'pointer'} />
<InfoBadgeIcon size={20} color="#A1ABBD" cursor={'pointer'} />
</XStack>
)
}