@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
11 lines • 460 B
TypeScript
import { ReactNode } from 'react';
import { OnProviderLoginType } from '../../../types';
export interface WebWalletLoginButtonPropsType extends Omit<OnProviderLoginType, 'onLoginRedirect'> {
className?: string;
buttonClassName?: string;
children?: ReactNode;
loginButtonText?: string;
disabled?: boolean;
}
export declare const WebWalletLoginButton: (props: WebWalletLoginButtonPropsType) => JSX.Element;
//# sourceMappingURL=index.d.ts.map