@mysten/dapp-kit
Version:
A collection of React hooks and components for interacting with the Sui blockchain and wallets.
10 lines (9 loc) • 312 B
TypeScript
import type { ReactNode } from 'react';
type WalletListItemProps = {
name: string;
icon: ReactNode;
isSelected?: boolean;
onClick: () => void;
};
export declare function WalletListItem({ name, icon, onClick, isSelected }: WalletListItemProps): import("react/jsx-runtime").JSX.Element;
export {};