@metadaoproject/wallet-adapter-react-ui
Version:
11 lines • 405 B
TypeScript
import type { Wallet } from '@solana/wallet-adapter-react';
import type { FC, MouseEventHandler } from 'react';
export interface WalletListItemProps {
handleClick: MouseEventHandler<HTMLButtonElement>;
tabIndex?: number;
wallet: Wallet;
className?: string;
disabled?: boolean;
}
export declare const WalletListItem: FC<WalletListItemProps>;
//# sourceMappingURL=WalletListItem.d.ts.map