react-chrono
Version:
A Modern Timeline component for React
14 lines • 519 B
TypeScript
import { default as React } from 'react';
interface NestedTimelineRendererProps {
items: any[];
nestedCardHeight?: number;
mode?: string;
isChild?: boolean;
}
/**
* Renders nested timeline items using a card-based layout with center connecting line
* instead of full timeline rendering to avoid complex nested timeline layouts
*/
declare const NestedTimelineRenderer: React.FC<NestedTimelineRendererProps>;
export default NestedTimelineRenderer;
//# sourceMappingURL=nested-timeline-renderer.d.ts.map