@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
17 lines (16 loc) • 549 B
TypeScript
export declare const PANESCROLLABLE_CLASSNAME = "k-pane-scrollable";
export type KendoPaneScrollableProps = {
actions?: React.JSX.Element | React.JSX.Element[];
title?: string;
};
export declare const PaneScrollable: {
(props: KendoPaneScrollableProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {};
className: string;
defaultOptions: {
actions: import("react/jsx-runtime").JSX.Element;
title: string;
};
};
export default PaneScrollable;