@uiw/react-heat-map
Version:
React component create calendar heatmap to visualize time series data, a la github contribution graph.
10 lines (9 loc) • 371 B
TypeScript
import React from 'react';
import { SVGProps } from './SVG';
export interface LablesWeekProps extends React.SVGProps<SVGTextElement> {
weekLables: SVGProps['weekLables'];
rectSize: SVGProps['rectSize'];
space: SVGProps['space'];
topPad: number;
}
export declare const LablesWeek: ({ weekLables, rectSize, topPad, space }: LablesWeekProps) => JSX.Element;