@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
11 lines • 421 B
TypeScript
/// <reference types="react" />
import { WithClassnameType } from '../types';
export interface UsdValueType extends WithClassnameType {
amount: string;
usd: number;
decimals?: number;
addEqualSign?: boolean;
'data-testid'?: string;
}
export declare const UsdValue: ({ amount, usd, decimals, addEqualSign, className, ...dataTestId }: UsdValueType) => JSX.Element;
//# sourceMappingURL=UsdValue.d.ts.map