UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

12 lines (11 loc) 453 B
import * as React from "react"; import { KendoComponent } from "../_types/component"; declare const states: never[]; export type KendoWindowContentProps = { children?: React.ReactNode; }; export type KendoWindowContentState = { [K in (typeof states)[number]]?: boolean; }; export declare const WindowContent: KendoComponent<KendoWindowContentProps & KendoWindowContentState & React.HTMLAttributes<HTMLDivElement>>; export default WindowContent;