Skip to content

Commit

Permalink
Fix avatar size
Browse files Browse the repository at this point in the history
  • Loading branch information
darkwing committed Oct 31, 2024
1 parent eaef0c5 commit 6ceeca1
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
AvatarNetwork,
AvatarNetworkSize,
AvatarToken,
AvatarTokenSize,
BadgeWrapper,
Box,
} from '../../../component-library';
Expand Down Expand Up @@ -43,10 +44,14 @@ const DetectedTokenDetails = ({
backgroundColor={testNetworkBackgroundColor}
/>
}
marginRight={4}
marginRight={2}
className="detected-token-details__identicon"
>
<AvatarToken name={token.symbol} src={token.image} />
<AvatarToken
name={token.symbol}
src={token.image}
size={AvatarTokenSize.Md}
/>
</BadgeWrapper>

<Box
Expand Down

0 comments on commit 6ceeca1

Please sign in to comment.