UNPKG

@sandro-salzmann/vertical-timeline-component-react

Version:
10 lines (9 loc) 338 B
import { PropsWithChildren } from 'react'; interface YearContentProps { startDate: string; endDate?: string; currentYear?: boolean; fromLabel?: boolean; } declare const YearContent: ({ startDate, endDate, currentYear, fromLabel, }: PropsWithChildren<YearContentProps>) => JSX.Element; export default YearContent;