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