UNPKG

@sendbird/uikit-react

Version:

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

18 lines (17 loc) 541 B
/// <reference types="react" /> /** * @deprecated This component is deprecated and will be removed in the next major version. * Use TextFragment instead. */ import './index.scss'; import type { UserMessage } from '@sendbird/chat/message'; import { StringObj } from '../../utils'; interface WordProps { word: string; message: UserMessage; isByMe?: boolean; mentionTemplate?: string; renderString?: (stringObj: StringObj) => JSX.Element; } export default function Word(props: WordProps): JSX.Element | null; export {};