UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

13 lines (12 loc) 496 B
import { KendoComponent } from '../_types/component'; export declare const DIALOG_CLASSNAME = "k-dialog"; export type KendoDialogOptions = {}; export type KendoDialogProps = KendoDialogOptions & { title?: string; actions?: string[]; actionButtons?: React.JSX.Element; actionButtonsAlign?: "start" | "end" | "center" | "stretched"; modal?: boolean; }; export declare const Dialog: KendoComponent<KendoDialogProps & React.HTMLAttributes<HTMLDivElement>>; export default Dialog;