UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

39 lines (38 loc) 1.15 kB
export declare const MAP_CLASSNAME = "k-map"; declare const states: never[]; export type KendoMapProps = { attribution?: React.JSX.Element; markerStyle?: React.CSSProperties; scrollContainerStyle?: React.CSSProperties; horizontalScrollbarStyle?: React.CSSProperties; verticalScrollbarStyle?: React.CSSProperties; }; export type KendoMapState = { [K in (typeof states)[number]]?: boolean; }; export declare const Map: { (props: KendoMapProps & KendoMapState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: any[]; options: {}; className: string; defaultOptions: { attribution: import("react/jsx-runtime").JSX.Element; markerStyle: { zIndex: string; left: string; top: string; }; scrollContainerStyle: { transformOrigin: string; }; horizontalScrollbarStyle: { transformOrigin: string; width: string; }; verticalScrollbarStyle: { transformOrigin: string; height: string; }; }; }; export default Map;