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; } // Display stars, pulls, issues with Lucide icons export function Metrics({ stars, pulls, issues }: MetricsProps) { return ( ); } interface MetricItemProps { value: number; label: string; Icon: LucideIcon; } function MetricItem({ value, label, Icon }: MetricItemProps) { return ( {value} {label} ); }