UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

23 lines (22 loc) 651 B
export declare const CHATMESSAGE_CLASSNAME = "k-message"; declare const states: "selected"[]; export type KendoChatMessageProps = { time?: string; text?: string; status?: string; }; export type KendoChatMessageState = { [K in (typeof states)[number]]?: boolean; }; export declare const ChatMessage: { (props: KendoChatMessageProps & KendoChatMessageState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: "selected"[]; options: {}; className: string; defaultOptions: { time: string; text: string; status: string; }; }; export default ChatMessage;