@slashid/react
Version:
React SDK for the /id platform
13 lines • 445 B
TypeScript
import { ReactNode } from "react";
interface Props {
fallback?: ReactNode;
children: ReactNode;
}
/**
* Conditional rendering helper
*
* Acts as a guard for SlashID core SDK dependent operations. Can optionally render a fallback component while the SDK is loading.
*/
export declare const SlashIDLoaded: ({ fallback, children }: Props) => import("react/jsx-runtime").JSX.Element | null;
export {};
//# sourceMappingURL=index.d.ts.map