timeline-calendar-react
Version:
A timeline calendar component for React, built with TypeScript and Vite.
18 lines (17 loc) • 499 B
TypeScript
import { UserWithRangeType, Theme, Locale } from '../../../../types';
import { IRange } from '../../../../utils';
type DayOfMonthProps = {
index: number;
user: UserWithRangeType;
range: IRange;
eventLabel?: string;
eventColor?: string;
statusColor?: string;
statusLabel?: string;
xsSize: number;
theme?: Theme;
cellSize?: string;
lang: Locale;
};
declare const Day: (props: DayOfMonthProps) => import("react/jsx-runtime").JSX.Element;
export default Day;