timeline-calendar-react
Version:
A timeline calendar component for React, built with TypeScript and Vite.
21 lines (20 loc) • 709 B
TypeScript
import { default as React } from 'react';
import { EventType, Locale, StatusType, Theme, UserWithRangeType } from '../types';
type TableProps = {
isLoading: boolean;
currentDate: string;
thRef: React.RefObject<HTMLDivElement | null>;
theme?: Theme;
cellSize?: string;
userWithRange: UserWithRangeType[];
tdWidth: number | null;
events?: EventType[];
statuses?: StatusType[];
onToggleSidebar: () => void;
openSidebar: boolean;
accentColor: string;
sidebarWidth: number;
lang: Locale;
};
declare const _default: React.MemoExoticComponent<React.MemoExoticComponent<(props: TableProps) => import("react/jsx-runtime").JSX.Element>>;
export default _default;