git-contri-merged
Version:
A React component to display merged GitHub contribution graphs from multiple contributors
13 lines (12 loc) • 371 B
TypeScript
import React from 'react';
import { ContributionDay, CalendarTheme } from '../types';
interface CalendarGridProps {
contributions: ContributionDay[];
theme: CalendarTheme;
blockSize?: number;
blockMargin?: number;
showWeekdayLabels?: boolean;
showMonthLabels?: boolean;
}
export declare const CalendarGrid: React.FC<CalendarGridProps>;
export {};