UNPKG

@dapplets/dapplet-extension

Version:
12 lines (11 loc) 236 B
import { FC } from 'react'; interface Props { wallets: { id: string; label: string; icon: string; }[]; onWalletClick: (id: string) => void; } export declare const ConnectWallet: FC<Props>; export {};