@uiw/react-heat-map
Version:
React component create calendar heatmap to visualize time series data, a la github contribution graph.
12 lines (11 loc) • 490 B
TypeScript
import type { CSSProperties } from 'react';
import React from 'react';
import { SVGProps } from './SVG';
export declare const textStyle: CSSProperties;
export interface LablesWeekProps extends React.SVGProps<SVGTextElement> {
weekLabels: SVGProps['weekLabels'];
rectSize: SVGProps['rectSize'];
space: SVGProps['space'];
topPad: number;
}
export declare const LabelsWeek: ({ weekLabels, rectSize, topPad, space }: LablesWeekProps) => import("react/jsx-runtime").JSX.Element;