UNPKG

@xapp/chat-widget

Version:
13 lines (12 loc) 483 B
import 'rollup-plugin-inject-process-env'; import { FC, PropsWithChildren } from "react"; import { ChatUserInfo } from "@xapp/stentor-chat-widget"; import "./ChatMessagePart.scss"; export interface ChatMessagePartProps { readonly showAvatar: boolean; readonly user: ChatUserInfo; readonly avatarPosition?: string; readonly hideUserInfo?: boolean; readonly fullWidth?: boolean; } export declare const ChatMessagePart: FC<PropsWithChildren<ChatMessagePartProps>>;