UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

23 lines (22 loc) 1.25 kB
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: ("active" | "focus" | "disabled" | "selected" | "hover")[]; options: { size: ("small" | "medium" | "large")[]; rounded: ("small" | "medium" | "full" | "large")[]; fillMode: ("link" | "flat" | "clear" | "outline" | "solid")[]; themeColor: ("base" | "error" | "inverse" | "success" | "dark" | "light" | "primary" | "secondary" | "tertiary" | "info" | "warning")[]; }; className: string; defaultOptions: { generating: boolean; }; }; export default PromptStopFloatingActionButton;