UNPKG

react-chrono

Version:
16 lines (15 loc) 465 B
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;