import React from 'react'; import { Box } from './Box'; import { Text } from './Text'; import { Icon } from './Icon'; interface SponsorMetricCardProps { label: string; value: string | number; icon: React.ComponentType<{ className?: string }>; color?: string; trend?: { value: number; isPositive: boolean; }; } export function SponsorMetricCard({ label, value, icon, color = 'text-primary-blue', trend, }: SponsorMetricCardProps) { return ( {label} {typeof value === 'number' ? value.toLocaleString() : value} {trend && ( {trend.isPositive ? '+' : ''}{trend.value}% )} ); }