import { Card, CardContent } from "@/components/ui/card" import { cn } from "@/lib/utils" import { OriginIcon } from "./origin-badge" import { getOriginAccentClasses } from "./origin-utils" import type { SkillStatItem } from "./types" export function Stats({ stats }: { stats: SkillStatItem[] }) { return (
{stats.map((stat) => (
{stat.label}
{stat.count}
))}
) }