@uiw/react-heat-map
Version:
React component create calendar heatmap to visualize time series data, a la github contribution graph.
14 lines (13 loc) • 556 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;
rectY?: number;
startDate: SVGProps['startDate'];
endDate?: SVGProps['endDate'];
}
export declare const LabelsMonth: ({ monthLabels, rectSize, space, leftPad, colNum, rectY, startDate, endDate, }: LablesMonthProps) => import("react/jsx-runtime").JSX.Element;