UNPKG

timeline-calendar-react

Version:

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

14 lines (13 loc) 442 B
import { EventType, Locale, StatusType, Theme, UserWithRangeType } from '../../../types'; type BodyContentProps = { userWithRange: UserWithRangeType[]; currentDate: string; tdWidth: number | null; events?: EventType[]; statuses?: StatusType[]; theme?: Theme; cellSize?: string; lang: Locale; }; export declare const BodyContent: (props: BodyContentProps) => import("react/jsx-runtime").JSX.Element; export {};