UNPKG

@sofaws/dapp-core

Version:

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

11 lines 479 B
import { ReactNode } from 'react'; import { OnProviderLoginType } from '../../../types'; import { WithClassnameType } from '../../types'; export interface ExtensionLoginButtonPropsType extends WithClassnameType, OnProviderLoginType { children?: ReactNode; buttonClassName?: string; loginButtonText?: string; disabled?: boolean; } export declare const ExtensionLoginButton: (props: ExtensionLoginButtonPropsType) => JSX.Element; //# sourceMappingURL=index.d.ts.map