UNPKG

@uiw/react-heat-map

Version:

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

8 lines (7 loc) 228 B
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;