UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

18 lines (17 loc) 723 B
import { KendoButtonOptions, KendoButtonProps, KendoButtonState } from '../button'; export declare const CHAT_SEND_BUTTON_CLASSNAME = "k-chat-send"; export type KendoChatSendButtonOptions = KendoButtonOptions; export type KendoChatSendButtonState = KendoButtonState; export type KendoChatSendButtonProps = KendoButtonProps & KendoChatSendButtonOptions & { generating?: boolean; }; export declare const ChatSendButton: { (props: KendoChatSendButtonProps & KendoChatSendButtonState & React.HTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element; states: any; options: any; className: string; defaultOptions: { generating: boolean; }; }; export default ChatSendButton;