plazbot
Version:
Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.
11 lines (10 loc) • 389 B
TypeScript
import type { CSSProperties } from 'react';
import type { AgentColor, WidgetIcon } from '../../sdk-types';
export interface AgentAvatarProps {
name?: string;
color?: AgentColor;
icon?: WidgetIcon;
size?: number;
style?: CSSProperties;
}
export declare function AgentAvatar({ name, color, icon, size, style }: AgentAvatarProps): import("react/jsx-runtime").JSX.Element;