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

11 lines
335 B
TypeScript

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