fix: add missing logo and batching function

This commit is contained in:
Sérgio Salgado 2022-01-21 18:10:56 +00:00
parent 201fec33e4
commit f45bb9de7a
4 changed files with 17 additions and 5 deletions

View file

@ -8,6 +8,7 @@ import { ReactComponent as BitcoinCashLogo } from 'src/styling/logos/icon-bitcoi
import { ReactComponent as DashLogo } from 'src/styling/logos/icon-dash-colour.svg'
import { ReactComponent as EthereumLogo } from 'src/styling/logos/icon-ethereum-colour.svg'
import { ReactComponent as LitecoinLogo } from 'src/styling/logos/icon-litecoin-colour.svg'
import { ReactComponent as MoneroLogo } from 'src/styling/logos/icon-monero-colour.svg'
import { ReactComponent as TetherLogo } from 'src/styling/logos/icon-tether-colour.svg'
import { ReactComponent as ZCashLogo } from 'src/styling/logos/icon-zcash-colour.svg'
@ -53,6 +54,8 @@ const getLogo = code => {
return ZCashLogo
case 'USDT':
return TetherLogo
case 'XMR':
return MoneroLogo
default:
return null
}