import { Row, Col } from "./layout";
import { TYPOGRAPHY } from "./constants";
import {
Star,
GitPullRequest,
CircleDot,
type LucideIcon,
} from "../../icons/lucide";
interface MetricsProps {
stars: number;
pulls: number;
issues: number;
}
const pluralize = (label: string, n: number) => (`${label}${n === 1 ? "" : "s"}`);
// Display stars, pulls, issues with Lucide icons
export function Metrics({ stars, pulls, issues }: MetricsProps) {
return (