UNPKG

activity-grid

Version:

A customizable activity grid component similar to GitHub's contribution graph

5 lines (4 loc) 236 B
export type ColorTheme = 'red' | 'green' | 'blue' | 'yellow' | 'purple'; export declare const themes: Record<ColorTheme | 'default', string[]>; /** @internal */ export declare const isValidTheme: (theme: string) => theme is ColorTheme;