timeline-calendar-react
Version:
A timeline calendar component for React, built with TypeScript and Vite.
11 lines (10 loc) • 337 B
TypeScript
import { Locale, Theme } from '../../../types';
type HeadContentProps = {
currentDate: string;
thRef: React.RefObject<HTMLDivElement | null>;
theme?: Theme;
cellSize?: string;
lang: Locale;
};
declare function HeadContent(props: HeadContentProps): import("react/jsx-runtime").JSX.Element;
export default HeadContent;