@jordiamez/ui
Version:
Ui modal for web3Auth
16 lines (15 loc) • 611 B
TypeScript
import { BaseAdapterConfig, IWalletConnectExtensionAdapter } from "@web3auth/base";
import { ModalStatusType } from "../interfaces";
interface ExternalWalletsProps {
hideExternalWallets: () => void;
handleExternalWalletClick: (params: {
adapter: string;
}) => void;
config: Record<string, BaseAdapterConfig>;
walletConnectUri: string | undefined;
showBackButton: boolean;
modalStatus: ModalStatusType;
wcAdapters: IWalletConnectExtensionAdapter[];
}
export default function ExternalWallet(props: ExternalWalletsProps): import("react/jsx-runtime").JSX.Element;
export {};