UNPKG

analytica-frontend-lib

Version:

Repositório público dos componentes utilizados nas plataformas da Analytica Ensino

13 lines 492 B
/** * Props for the typing indicator shown while the assistant is generating * a reply. */ export interface ChatbotTypingIndicatorProps { className?: string; } /** * Three animated dots signalling "assistant is typing". * Implemented in pure Tailwind — no additional dependencies. */ export default function ChatbotTypingIndicator({ className, }: Readonly<ChatbotTypingIndicatorProps>): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ChatbotTypingIndicator.d.ts.map