@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
14 lines (13 loc) • 587 B
TypeScript
import { KendoComponent } from '../_types/component';
export declare const TIMELINEHORIZONTALEVENT_CLASSNAME = "k-timeline-event";
export type KendoHorizontalTimelineEventProps = {
content?: string | React.JSX.Element;
title?: string;
subtitle?: string;
/** @aria aria-label for the tabpanel */
ariaLabel?: string;
/** @aria tabIndex for active tabpanel */
panelTabIndex?: number;
};
export declare const HorizontalTimelineEvent: KendoComponent<KendoHorizontalTimelineEventProps & React.HTMLAttributes<HTMLLIElement>>;
export default HorizontalTimelineEvent;