@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
18 lines (17 loc) • 765 B
TypeScript
import { KendoButtonOptions, KendoButtonProps, KendoButtonState } from '../button';
export declare const SMART_BOX_SEND_BUTTON_CLASSNAME = "k-smart-box-send";
export type KendoSmartBoxSendButtonOptions = KendoButtonOptions;
export type KendoSmartBoxSendButtonState = KendoButtonState;
export type KendoSmartBoxSendButtonProps = KendoButtonProps & KendoSmartBoxSendButtonOptions & {
processing?: boolean;
};
export declare const SmartBoxSendButton: {
(props: KendoSmartBoxSendButtonProps & KendoSmartBoxSendButtonState & React.HTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element;
states: any;
options: any;
className: string;
defaultOptions: {
processing: boolean;
};
};
export default SmartBoxSendButton;