@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
18 lines (17 loc) • 640 B
TypeScript
import { KendoComponent } from '../_types/component';
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: KendoComponent<KendoWindowProps & React.HTMLAttributes<HTMLDivElement>>;
export default Window;