timeline-calendar-react
Version:
A timeline calendar component for React, built with TypeScript and Vite.
15 lines (14 loc) • 432 B
TypeScript
import { Locale, Theme } from '../../../../types';
type TooltipContentProps = {
name: string;
eventLabel?: string;
eventColor?: string;
startDate: string | Date;
endDate: string | Date;
statusColor?: string;
statusLabel?: string;
theme?: Theme;
lang: Locale;
};
declare const TooltipContent: (props: TooltipContentProps) => import("react/jsx-runtime").JSX.Element;
export default TooltipContent;