Skip to content

StreamText

StreamText(__namedParameters): Element

Defined in: stream-text.tsx:51

StreamText - Display streaming text with optional cursor.

StreamTextProps

Element

import { StreamText } from 'ai.matey.react.stream';
function ChatMessage({ text, isStreaming }) {
return (
<StreamText
text={text}
isStreaming={isStreaming}
showCursor={true}
/>
);
}