@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
25 lines (24 loc) • 771 B
TypeScript
export declare const WINDOW_CLASSNAME = "k-window";
declare const options: {
themeColor: ("dark" | "light" | "primary")[];
};
export type KendoWindowOptions = {
themeColor?: (typeof options.themeColor)[number] | null;
};
export type KendoWindowProps = KendoWindowOptions & {
title?: string;
actions?: string[];
minimized?: boolean;
actionButtons?: React.JSX.Element;
actionButtonsAlign?: "start" | "end" | "center" | "stretched";
};
export declare const Window: {
(props: KendoWindowProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {
themeColor: ("dark" | "light" | "primary")[];
};
className: string;
defaultOptions: {};
};
export default Window;