UNPKG

@uiw/react-heat-map

Version:

React component create calendar heatmap to visualize time series data, a la github contribution graph.

9 lines (8 loc) 260 B
/// <reference types="react" /> import { SVGProps } from './SVG'; import './style/index.less'; export * from './SVG'; export interface HeatMapProps extends SVGProps { prefixCls?: string; } export default function HeatMap(props: HeatMapProps): JSX.Element;