UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

18 lines (17 loc) 636 B
import { KendoComponent } from '../_types/component'; export declare const DIALOG_CLASSNAME = "k-dialog"; declare const options: { themeColor: ("dark" | "light" | "primary")[]; }; export type KendoDialogOptions = { themeColor?: (typeof options.themeColor)[number] | null; }; 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;