@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
17 lines (16 loc) • 645 B
TypeScript
import { KendoComponent } from '../_types/component';
export declare const SPINBUTTON_CLASSNAME = "k-spin-button";
declare const options: {
size: ("small" | "medium" | "large")[];
fillMode: ("link" | "flat" | "clear" | "outline" | "solid")[];
};
export type KendoSpinButtonOptions = {
size?: (typeof options.size)[number] | null;
fillMode?: (typeof options.fillMode)[number] | null;
};
export type KendoSpinButtonProps = KendoSpinButtonOptions & {
icon?: string;
text?: string;
};
export declare const SpinButton: KendoComponent<KendoSpinButtonProps & React.HTMLAttributes<HTMLButtonElement>>;
export default SpinButton;