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