@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
15 lines (14 loc) • 437 B
TypeScript
export declare const GANTTLINE_CLASSNAME = "k-gantt-line";
export type KendoGanttLineProps = {
orientation?: "horizontal" | "vertical";
};
export declare const GanttLine: {
(props: KendoGanttLineProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {};
className: string;
defaultOptions: {
orientation: string;
};
};
export default GanttLine;