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 (