copper-ui
Version:
Modern React UI components library with TypeScript support, built on top of Ant Design
12 lines • 584 B
TypeScript
import { TimelineProps } from 'antd';
import { TimelineHistoryItem } from './model/types';
declare const TimelineHistory: ({ historyItems, showEmptyItem, timelineLayout, titleSpan: titleSpanProp, mode, className, }: {
historyItems: TimelineHistoryItem[];
showEmptyItem?: boolean;
timelineLayout?: "default" | "narrow-label";
titleSpan?: TimelineProps["titleSpan"];
mode?: TimelineProps["mode"];
className?: TimelineProps["className"];
}) => import("react/jsx-runtime").JSX.Element;
export default TimelineHistory;
//# sourceMappingURL=timeline-history.d.ts.map