UNPKG

@sendbird/uikit-react

Version:

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

11 lines (10 loc) 289 B
/// <reference types="react" /> import './index.scss'; interface MentionLabelProps { mentionTemplate: string; mentionedUserId: string; mentionedUserNickname: string; isByMe: boolean; } export default function MentionLabel(props: MentionLabelProps): JSX.Element; export {};