UNPKG

@totle/web3connect

Version:

A single Web3 / Ethereum provider solution for all Wallets

18 lines 406 B
import * as React from "react"; interface IButtonStyleProps { disabled: boolean; icon?: any; } interface IButtonProps extends IButtonStyleProps { children: React.ReactNode; onClick?: any; } declare const Button: { (props: IButtonProps): JSX.Element; defaultProps: { disabled: boolean; icon: null; }; }; export default Button; //# sourceMappingURL=Button.d.ts.map