UNPKG

react-grid-heatmap

Version:

A react component for heatmap visualisation in grid layout

10 lines (9 loc) 273 B
/// <reference types="react" /> interface Props { labels: string[]; xLabelsStyle?: (index: number) => {}; square?: boolean; height: string; } export default function XLabels({ labels, xLabelsStyle, height, square }: Props): JSX.Element; export {};