@rainbow-me/rainbowkit
Version:
The best way to connect a wallet
11 lines (10 loc) • 378 B
TypeScript
import React from 'react';
import { type WalletConnector } from '../../wallets/useWalletConnectors';
export declare function WalletButton({ onClose, wallet, connecting, }: {
wallet: WalletConnector;
onClose: () => void;
connecting?: boolean;
}): React.JSX.Element;
export declare function MobileOptions({ onClose }: {
onClose: () => void;
}): React.JSX.Element;