UNPKG

animated-charts

Version:

Animated chart web components for all frameworks (React, Angular, Vue, HTML)

11 lines (10 loc) 257 B
import React from "react"; import "./heatmap.css"; export interface HeatmapProps { data: number[][]; width?: number; height?: number; colors?: string[]; animationDuration?: number; } export declare const Heatmap: React.FC<HeatmapProps>;