react-beautiful-heatmap
Version:
A calendar heatmap component built on SVG
10 lines (8 loc) • 311 B
TypeScript
import { LayoutType } from '../types';
interface WeekdayLabelsProps {
weekdayLabels: string[];
layout: LayoutType;
gutterSize: number;
}
declare const WeekdayLabels: ({ weekdayLabels, layout, gutterSize }: WeekdayLabelsProps) => import("react/jsx-runtime").JSX.Element[];
export { WeekdayLabels };