UNPKG

react-modern-gantt

Version:

A modern, customizable Gantt chart component for React applications with export functionality

11 lines (10 loc) 321 B
import React from "react"; import { TooltipRenderProps } from "@/types"; import { TooltipProps } from "@/types"; /** * Tooltip Component - Shows task information on hover */ declare const Tooltip: React.FC<TooltipProps & { renderTooltip?: (props: TooltipRenderProps) => React.ReactNode; }>; export default Tooltip;