export default function KPICard({ label, value, color, unit, variation, }) { const formattedValue = typeof value === 'number' ? value.toLocaleString('es-AR') : value return (
{formattedValue} {unit ? ( {unit} ) : null}

{label}

{variation ? (
{variation}
) : null}
) }