import React from 'react'; import { Box } from './primitives/Box'; import { Text } from './Text'; import { Grid } from './primitives/Grid'; interface Stat { label: string; value: string | number; color?: string; } interface ProfileStatGridProps { stats: Stat[]; } export function ProfileStatGrid({ stats }: ProfileStatGridProps) { return ( {stats.map((stat, idx) => ( {stat.value} {stat.label} ))} ); }