UNPKG

react-grid-heatmap

Version:

A react component for heatmap visualisation in grid layout

9 lines (8 loc) 250 B
/// <reference types="react" /> interface Props { xLabelHeight: number; isXLabelReverse: boolean; children: any; } export default function YLabelAligner({ xLabelHeight, isXLabelReverse, children }: Props): JSX.Element; export {};