@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
9 lines (8 loc) • 333 B
TypeScript
import { KendoComponent } from '../_types/component';
export type KendoSplitterProps = {
orientation?: "vertical" | "horizontal";
children?: React.ReactNode;
panes?: React.JSX.Element[];
};
export declare const Splitter: KendoComponent<KendoSplitterProps & React.HTMLAttributes<HTMLDivElement>>;
export default Splitter;