UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

11 lines (10 loc) 451 B
import { KendoComponent } from '../_types/component'; 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: KendoComponent<KendoTimelineProps & React.HTMLAttributes<HTMLDivElement>>; export default Timeline;