@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
12 lines (11 loc) • 345 B
TypeScript
/// <reference types="react" />
import './index.scss';
interface MentionUserLabelProps {
className?: string;
children?: string;
isReverse?: boolean;
color?: string;
userId?: string;
}
export default function MentionUserLabel({ className, children, isReverse, color, userId, }: MentionUserLabelProps): JSX.Element;
export {};