UNPKG

@roochnetwork/rooch-sdk-kit

Version:
12 lines (11 loc) 396 B
import type { ReactNode } from 'react'; type WalletListItemProps = { name: string; icon: ReactNode; isSelected?: boolean; isInstalled?: boolean; isDetecting?: boolean; onClick: () => void; }; export declare function WalletListItem({ name, icon, onClick, isSelected, isInstalled, isDetecting, }: WalletListItemProps): import("react/jsx-runtime.js").JSX.Element; export {};