@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
18 lines (17 loc) • 557 B
TypeScript
export declare const TIMELINE_CLASSNAME = "k-timeline";
export type KendoTimelineProps = {
children?: React.JSX.Element | React.JSX.Element[];
orientation?: null | 'vertical' | 'horizontal';
collapsibleEvents?: boolean;
alternatingMode?: boolean;
};
export declare const Timeline: {
(props: KendoTimelineProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {};
className: string;
defaultOptions: {
orientation: string;
};
};
export default Timeline;