UNPKG

@web3mq/react-components

Version:
12 lines (11 loc) 367 B
import React from 'react'; import type { WalletType } from '@web3mq/client'; declare type IProps = { showCount?: number; styles: Record<string, any> | null; showLoading: boolean; handleWalletClick: (walletType: WalletType) => Promise<void>; handleViewAll: () => void; }; export declare const RenderWallets: React.FC<IProps>; export {};