@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
25 lines (24 loc) • 732 B
TypeScript
declare const states: ("focus" | "invalid" | "disabled" | "hover" | "valid")[];
export type KendoStepProps = {
style?: React.CSSProperties;
optional?: boolean;
first?: boolean;
done?: boolean;
current?: boolean;
last?: boolean;
label?: string;
text?: string;
icon?: string;
stepContent?: React.JSX.Element;
};
export type StepState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const Step: {
(props: KendoStepProps & StepState & React.HTMLAttributes<HTMLLIElement>): import("react/jsx-runtime").JSX.Element;
options: {};
states: ("focus" | "invalid" | "disabled" | "hover" | "valid")[];
className: string;
defaultOptions: {};
};
export default Step;