UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

13 lines (12 loc) 433 B
import React from 'react'; import { Member } from '@sendbird/chat/groupChannel'; export interface TypingIndicatorBubbleProps { typingMembers: Member[]; handleScroll?: (isBottomMessageAffected?: boolean) => void; } export interface AvatarStackProps { sources: string[]; max: number; } declare const TypingIndicatorBubble: (props: TypingIndicatorBubbleProps) => React.JSX.Element; export default TypingIndicatorBubble;