feat: add icons to popular tokens

This commit is contained in:
bartosz-lipinski 2020-10-01 16:07:12 -05:00
parent 4b8cb5602c
commit 7aa44b3363
1 changed files with 10 additions and 10 deletions

View File

@ -259,16 +259,16 @@ function TokenListItem({
<ListItemText
primary={
<Link
target="_blank"
rel="noopener"
href={
`https://explorer.solana.com/account/${mintAddress}` +
urlSuffix
}
>
{tokenName ?? abbreviateAddress(mintAddress)}
{tokenSymbol ? ` (${tokenSymbol})` : null}
</Link>
target="_blank"
rel="noopener"
href={
`https://explorer.solana.com/account/${mintAddress}` +
urlSuffix
}
>
{tokenName ?? abbreviateAddress(mintAddress)}
{tokenSymbol ? ` (${tokenSymbol})` : null}
</Link>
}
/>
{open ? <ExpandLess /> : <ExpandMore />}