@web3auth-mpc/ui
Version:
Ui modal for web3Auth
12 lines (11 loc) • 352 B
TypeScript
import { ModalStatusType } from "../interfaces";
interface DetailedLoaderProps {
message?: string;
appLogo?: string;
adapter: string;
adapterName: string;
modalStatus: ModalStatusType;
onClose: () => void;
}
export default function DetailedLoader(props: DetailedLoaderProps): import("react/jsx-runtime").JSX.Element;
export {};