UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

19 lines (18 loc) 658 B
export declare const DOCKINDICATOR_CLASSNAME = "k-dock-indicator"; declare const states: ("disabled" | "hover")[]; export type KendoDockIndicatorProps = { position?: "top" | "bottom" | "right" | "left" | "middle"; }; export type KendoDockIndicatorState = { [K in (typeof states)[number]]?: boolean; }; export declare const DockIndicator: { (props: KendoDockIndicatorProps & KendoDockIndicatorState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: ("disabled" | "hover")[]; options: {}; className: string; defaultOptions: { position: string; }; }; export default DockIndicator;