UNPKG

@sofaws/dapp-core

Version:

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

11 lines 448 B
import { ReactNode } from 'react'; import { WithClassnameType } from '../types'; export interface LoginButtonPropsType extends WithClassnameType { onLogin: () => void; text?: string; btnClassName?: string; children?: ReactNode; disabled?: boolean; } export declare const LoginButton: ({ onLogin, text, className, btnClassName, disabled, children }: LoginButtonPropsType) => JSX.Element; //# sourceMappingURL=LoginButton.d.ts.map