11 lines
345 B
TypeScript
11 lines
345 B
TypeScript
import * as React from "react";
|
|
interface WalletButtonProps {
|
|
color: string;
|
|
name: string;
|
|
logo: string;
|
|
href: string;
|
|
onClick: (event: React.MouseEvent<HTMLAnchorElement>) => void;
|
|
}
|
|
declare function WalletButton(props: WalletButtonProps): JSX.Element;
|
|
export default WalletButton;
|
|
//# sourceMappingURL=WalletButton.d.ts.map
|