UNPKG

livechat-widget

Version:

LiveChat Widget for Next.js applications

19 lines (18 loc) 517 B
import React from 'react'; import { ChatMessage } from '@/types/chat'; interface MessageItemProps { message: ChatMessage; isOwnMessage: boolean; theme?: 'light' | 'dark'; textColor?: string; textColorClass?: string; bgColor?: string; bgColorClass?: string; currentUserColor?: string; currentUserColorClass?: string; adminColor?: string; adminColorClass?: string; isWarning?: boolean; } declare const MessageItem: React.FC<MessageItemProps>; export default MessageItem;