UNPKG

@sofaws/dapp-core

Version:

A library to hold the main logic for a dapp on the Elrond Network

11 lines 518 B
/// <reference types="react" /> import { WithClassnameType } from '../../UI/types'; import { StatusIconType } from './transactionStatusToast.types'; export interface ErrorToastPropsType extends WithClassnameType { type?: StatusIconType; message: string; duration?: number; onDelete?: () => void; } export declare const FailedTransactionStatusToast: ({ message, duration, onDelete, type, className }: ErrorToastPropsType) => JSX.Element | null; //# sourceMappingURL=FailedTransactionStatusToast.d.ts.map