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 <ListItemText
primary={ primary={
<Link <Link
target="_blank" target="_blank"
rel="noopener" rel="noopener"
href={ href={
`https://explorer.solana.com/account/${mintAddress}` + `https://explorer.solana.com/account/${mintAddress}` +
urlSuffix urlSuffix
} }
> >
{tokenName ?? abbreviateAddress(mintAddress)} {tokenName ?? abbreviateAddress(mintAddress)}
{tokenSymbol ? ` (${tokenSymbol})` : null} {tokenSymbol ? ` (${tokenSymbol})` : null}
</Link> </Link>
} }
/> />
{open ? <ExpandLess /> : <ExpandMore />} {open ? <ExpandLess /> : <ExpandMore />}