@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
18 lines (17 loc) • 674 B
TypeScript
export declare const CHARTWIZARDICONTEXTWRAPPER_CLASSNAME = "k-icon-text-wrapper";
declare const states: ("focus" | "selected")[];
export type ChartWizardIconTextWrapperProps = {
icon: string;
text: string;
};
export type ChartWizardIconTextWrapperState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const ChartWizardIconTextWrapper: {
(props: ChartWizardIconTextWrapperProps & ChartWizardIconTextWrapperState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: ("focus" | "selected")[];
options: {};
className: string;
defaultOptions: {};
};
export default ChartWizardIconTextWrapper;