UNPKG

react-grid-heatmap

Version:

A react component for heatmap visualisation in grid layout

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