plazbot
Version:
Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.
12 lines (11 loc) • 502 B
TypeScript
import type { CSSProperties } from 'react';
export interface PoweredByProps {
/** Texto antes del nombre (default: "Powered by") */
label?: string;
/** Nombre que se muestra (default: "Plazbot") */
brandName?: string;
/** URL del link (default: "https://plazbot.com"). Pasar null para quitar link */
href?: string | null;
style?: CSSProperties;
}
export declare function PoweredBy({ label, brandName, href, style }: PoweredByProps): import("react/jsx-runtime").JSX.Element;