Skip to content

Commit

Permalink
fix icon size
Browse files Browse the repository at this point in the history
  • Loading branch information
Szegoo committed Oct 4, 2024
1 parent ce70352 commit 7830a2f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/Transfer/transferActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,12 @@ const TransferActions = () => {
{
value: symbol,
label: symbol,
icon: <img src={getIcon(network)?.src} style={{ width: '28px' }} />,
icon: (
<img
src={getIcon(network)?.src}
style={{ width: '28px', height: '28px', padding: '4px' }}
/>
),
},
]}
label=''
Expand Down

0 comments on commit 7830a2f

Please sign in to comment.