UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

13 lines (12 loc) 427 B
import { KendoComponent } from '../_types/component'; export declare const POPUP_CLASSNAME = "k-popup"; export type KendoPopupProps = { positionMode?: "absolute" | "fixed"; offset?: { top: number | string; left: number | string; }; animationStyle?: React.CSSProperties; }; export declare const Popup: KendoComponent<KendoPopupProps & React.HTMLAttributes<HTMLDivElement>>; export default Popup;