@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
18 lines (17 loc) • 863 B
TypeScript
import { KendoButtonOptions, KendoButtonState } from '../button';
import { KendoFloatingActionButtonOptions, KendoFloatingActionButtonProps } from '../fab';
export type KendoPromptStopFloatingActionButtonOptions = KendoButtonOptions;
export type KendoPromptStopFloatingActionButtonState = KendoButtonState;
export type KendoPromptStopFloatingActionButtonProps = KendoFloatingActionButtonOptions & KendoFloatingActionButtonProps & KendoPromptStopFloatingActionButtonState & {
generating?: boolean;
};
export declare const PromptStopFloatingActionButton: {
(props: KendoPromptStopFloatingActionButtonProps & React.HTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element;
states: any;
options: any;
className: string;
defaultOptions: {
generating: boolean;
};
};
export default PromptStopFloatingActionButton;