@leancodepl/kratos
Version:
Headless React components library for building Ory Kratos authentication flows
10 lines (9 loc) • 336 B
TypeScript
import { ReactNode } from "react";
import { OnLoginFlowError } from "../../types";
type PasskeyProps = {
children: ReactNode;
onError?: OnLoginFlowError;
onLoginSuccess?: () => void;
};
export declare function Passkey({ children, onError, onLoginSuccess }: PasskeyProps): import("react/jsx-runtime").JSX.Element;
export {};