@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
16 lines • 662 B
TypeScript
import { ReactNode } from 'react';
import { OnProviderLoginType } from '../../../types';
import { WithClassnameType } from '../../types';
export interface LedgerLoginButtonPropsType extends WithClassnameType, OnProviderLoginType {
onModalOpens?: (props?: any) => void;
onModalCloses?: (props?: any) => void;
children?: ReactNode;
modalClassName?: string;
buttonClassName?: string;
loginButtonText?: string;
wrapContentInsideModal?: boolean;
hideButtonWhenModalOpens?: boolean;
disabled?: boolean;
}
export declare const LedgerLoginButton: (props: LedgerLoginButtonPropsType) => JSX.Element;
//# sourceMappingURL=index.d.ts.map