UNPKG

@chatscope/chat-ui-kit-react

Version:

React component library for creating chat interfaces

11 lines (6 loc) 484 B
export type Size = "xs" | "sm" | "md" | "lg" | "fluid"; export type MessageType = "html" | "text" | "image" |"custom"; export type UserStatus = "available" | "unavailable" | "away" | "dnd" | "invisible" | "eager"; export type LoaderVariant = "default"; export type MessageDirection = "incoming" | "outgoing" | 0 | 1; export type AvatarPosition = "tl" | "tr" | "cl" | "cr" | "bl" | "br" | "top-left" | "top-right" | "center-left" | "center-right" | "bottom-left" | "bottom-right";