react-heatgrid
Version:
React HeatGrid: Easily integrate customizable, interactive heatmaps into your React applications for data visualization.
12 lines (11 loc) • 322 B
TypeScript
import { CSSProperties } from "react";
export type ToolTipType = {
children: React.ReactNode;
label: string;
DisabledToolTip?: boolean;
placement?: "top" | "bottom";
parentRef: React.RefObject<HTMLDivElement>;
tooltipBg?: string;
tooltipTextColor?: string;
tooltipStyle?: CSSProperties;
};