@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
11 lines (10 loc) • 395 B
TypeScript
declare const states: ("loading" | "disabled")[];
export type InputLoadingIconState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const InputLoadingIcon: {
(props: InputLoadingIconState & React.HTMLAttributes<HTMLInputElement>): import("react/jsx-runtime").JSX.Element;
states: ("loading" | "disabled")[];
className: string;
};
export default InputLoadingIcon;