UNPKG

bknd

Version:

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

13 lines (12 loc) 483 B
import type { ReactNode } from "react"; import type { IconType } from "../../../ui/components/buttons/IconButton"; export type SocialLinkProps = { label?: string; provider: string; icon?: IconType; action: "login" | "register"; method?: "GET" | "POST"; basepath?: string; children?: ReactNode; }; export declare function SocialLink({ label, provider, icon, action, method, basepath, children, }: SocialLinkProps): import("react/jsx-runtime").JSX.Element;