timeline-calendar-react
Version:
A timeline calendar component for React, built with TypeScript and Vite.
15 lines (14 loc) • 461 B
TypeScript
import { default as React } from 'react';
import { EventType, Locale, StatusType, Theme, UserWithRangeType } from '../../../../types';
type ListRangesByUsersProps = {
userWithRange: UserWithRangeType[];
currentDate: string;
tdWidth: number | null;
events?: EventType[];
statuses?: StatusType[];
theme?: Theme;
cellSize?: string;
lang: Locale;
};
declare const ListDays: React.FC<ListRangesByUsersProps>;
export default ListDays;