UNPKG

biuauthui

Version:
13 lines (12 loc) 378 B
import { ModalStatusType } from "../interfaces"; interface DetailedLoaderProps { message?: string; appLogo?: string; adapterLogo?: string; adapter: string; adapterName: string; modalStatus: ModalStatusType; onClose: () => void; } export default function DetailedLoader(props: DetailedLoaderProps): import("react/jsx-runtime").JSX.Element; export {};