2025-04-19 15:38:48 +08:00

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