UNPKG

timeline-calendar-react

Version:

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

16 lines (15 loc) 545 B
import { EventType, Locale, StatusType, Theme, UserWithRangeType } from '../../types'; type ContentProps = { currentDate: string; thRef: React.RefObject<HTMLDivElement | null>; theme?: Theme; cellSize?: string; userWithRange: UserWithRangeType[]; tdWidth: number | null; events?: EventType[]; statuses?: StatusType[]; isLoading: boolean; lang: Locale; }; declare const Content: import('react').MemoExoticComponent<(props: ContentProps) => import("react/jsx-runtime").JSX.Element>; export default Content;