UNPKG

react-beautiful-heatmap

Version:

A calendar heatmap component built on SVG

12 lines (10 loc) 428 B
import { LayoutType } from '../types'; export interface MonthLabelProps { startDateWithEmptyDays: Date; weekCount: number; monthLabels: string[]; layout: LayoutType; monthLabelCoordinates: number[]; } declare const MonthLabel: ({ startDateWithEmptyDays, weekCount, monthLabels, monthLabelCoordinates, layout, }: MonthLabelProps) => (import("react/jsx-runtime").JSX.Element | null)[]; export { MonthLabel };