UNPKG

bknd

Version:

Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.

10 lines (9 loc) 353 B
import { type ReactNode } from "react"; export type AuthScreenProps = { method?: "POST" | "GET"; action?: "login" | "register"; logo?: ReactNode; intro?: ReactNode; formOnly?: boolean; }; export declare function AuthScreen({ method, action, logo, intro, formOnly, }: AuthScreenProps): import("react/jsx-runtime").JSX.Element | null;