UNPKG

react-19-kit

Version:

Ready-to-use Chat UI Components for React(Javascript/Web)

9 lines (8 loc) 367 B
import { CometChatTextFormatter } from "../../../formatters/CometChatFormatters/CometChatTextFormatter"; interface TextBubbleProps { text: string; textFormatters?: Array<CometChatTextFormatter>; isSentByMe?: boolean; } declare const CometChatTextBubble: (props: TextBubbleProps) => import("react/jsx-runtime").JSX.Element; export { CometChatTextBubble };