@vnaidin/react-native-cryptocurrency-icons
Version:
React Native cryptocurrency icons as PNG components
8 lines (7 loc) • 457 B
TypeScript
import React, { JSX } from "react";
import { ImageSourcePropType } from "react-native";
import { CryptoIconProps } from "./types";
export declare const getCryptoIconSource: (symbol: string) => ImageSourcePropType;
export declare const getSupportedSymbols: () => string[];
declare const CryptoIcon: React.MemoExoticComponent<({ symbol, size, style, resizeMode, accessibilityLabel, }: CryptoIconProps) => JSX.Element>;
export { CryptoIcon, CryptoIconProps };