react-chrono
Version:
A Modern Timeline component for React
16 lines (15 loc) • 465 B
TypeScript
import React from 'react';
interface TimelinePointProps {
circleClass: string;
handleClick: () => void;
circleRef: React.RefObject<HTMLButtonElement>;
title?: string;
theme?: any;
timelinePointDimension?: number;
timelinePointShape?: 'circle' | 'square' | 'diamond';
iconChild?: React.ReactNode;
active?: boolean;
disabled?: boolean;
}
declare const TimelinePoint: React.FC<TimelinePointProps>;
export default TimelinePoint;