UNPKG

timeline-calendar-react

Version:

A timeline calendar component for React, built with TypeScript and Vite.

11 lines (10 loc) 296 B
import { IRange } from '../../../../utils'; type ItemDataProps = { dataId: string; index: number; range: IRange; eventLabel?: string; eventColor?: string; }; declare const RangeItem: (props: ItemDataProps) => import("react/jsx-runtime").JSX.Element; export default RangeItem;