@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
15 lines • 645 B
JavaScript
import * as icons from "@ledgerhq/crypto-icons-ui/native";
import { inferCryptoCurrencyIcon } from "./currencies/cryptoIcons";
/**
* @deprecated prefer using @ledgerhq/crypto-icons-ui directly + mapping provided by @ledgerhq/live-common/currencies/cryptoIcons
*/
export function getCryptoCurrencyIcon(currency) {
return inferCryptoCurrencyIcon(icons, currency);
}
/**
* @deprecated prefer using @ledgerhq/crypto-icons-ui directly + mapping provided by @ledgerhq/live-common/currencies/cryptoIcons
*/
export function getTokenCurrencyIcon(token) {
return inferCryptoCurrencyIcon(icons, token);
}
//# sourceMappingURL=reactNative.js.map