UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

22 lines (21 loc) 697 B
declare const states: ("focus" | "hover")[]; export type KendoSplitterSplitbarProps = { orientation?: "horizontal" | "vertical"; draggable?: boolean; collapsePrev?: boolean; collapseNext?: boolean; }; export type KendoSplitterSplitbarState = { [K in (typeof states)[number]]?: boolean; }; export declare const SplitterSplitbar: { (props: KendoSplitterSplitbarProps & KendoSplitterSplitbarState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: ("focus" | "hover")[]; options: {}; className: string; defaultOptions: { orientation: string; draggable: boolean; }; }; export default SplitterSplitbar;