This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use client" | |
| import * as React from "react" | |
| export function LineChart({ | |
| data, | |
| height = 200, | |
| stroke = "#22c55e", | |
| label = "Last 31 days", | |
| }: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use client" | |
| import * as React from "react" | |
| import { useTheme } from "next-themes" | |
| type Day = { date: string; contributionCount: number; color?: string } | |
| type Week = { firstDay?: string; contributionDays: Day[] } | |
| export function GitHubHeatmap({ | |
| weeks = [], |