@uiw/react-heat-map
Version:
React component create calendar heatmap to visualize time series data, a la github contribution graph.
12 lines (11 loc) • 457 B
TypeScript
import React from 'react';
import { SVGProps } from './SVG';
export interface LablesMonthProps extends React.SVGProps<SVGTextElement> {
monthLabels: SVGProps['monthLabels'];
rectSize: SVGProps['rectSize'];
space: SVGProps['space'];
leftPad: number;
colNum: number;
startDate: SVGProps['startDate'];
}
export declare const LabelsMonth: ({ monthLabels, rectSize, space, leftPad, colNum, startDate, }: LablesMonthProps) => JSX.Element;