UNPKG

infocharts

Version:

<img src="https://raw.githubusercontent.com/garethslinn/public_infocharts/refs/heads/main/logo.svg" />

13 lines 338 B
import React from 'react'; import './styles/infocharts.scss'; interface HeatMapProps { data: number[][]; months: string[]; rowLabels: string[]; background: string; labelColor: string; valueColor: string; } declare const HeatMap: React.FC<HeatMapProps>; export default HeatMap; //# sourceMappingURL=HeatMap.d.ts.map