@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
13 lines (12 loc) • 500 B
TypeScript
import { KendoComponent } from '../_types/component';
export declare const WINDOW_CLASSNAME = "k-window";
export type KendoWindowOptions = {};
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;