@web3auth/ui
Version:
Ui modal for web3Auth
10 lines (9 loc) • 340 B
TypeScript
import { ExternalButton } from "../../interfaces";
interface ExternalWalletDetailProps {
connectButton: ExternalButton;
walletConnectUri: string;
goBack: () => void;
closeModal: () => void;
}
export default function ExternalWalletDetail(props: ExternalWalletDetailProps): import("react/jsx-runtime").JSX.Element;
export {};