stream-chat-react
Version:
React components to create chat conversations or livestream style chat
8 lines (7 loc) • 395 B
TypeScript
import React from 'react';
import type { DefaultStreamChatGenerics } from '../../types/types';
export type TypingIndicatorProps = {
/** Whether the typing indicator is in a thread */
threadList?: boolean;
};
export declare const TypingIndicator: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(props: TypingIndicatorProps) => React.JSX.Element | null;