interface StatPillProps { label: string; value: number; } export function StatPill({ label, value }: StatPillProps) { return (
{label}
{value}
); }