UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

30 lines (29 loc) 931 B
export declare const PROGRESSBAR_CLASSNAME = "k-progressbar"; declare const states: ("disabled" | "indeterminate")[]; export type KendoProgressBarProps = { height?: string; label?: boolean; labelPosition?: 'start' | 'center' | 'end'; orientation?: 'horizontal' | 'vertical'; reverse?: boolean; value?: string; width?: string; }; export type KendoProgressBarState = { [K in (typeof states)[number]]?: boolean; }; export declare const ProgressBar: { (props: KendoProgressBarProps & KendoProgressBarState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: ("disabled" | "indeterminate")[]; options: {}; className: string; defaultOptions: { indeterminate: boolean; label: boolean; labelPosition: string; orientation: string; reverse: boolean; value: string; }; }; export default ProgressBar;