import { Box } from '@/ui/Box'; import { Icon } from '@/ui/Icon'; import { Text } from '@/ui/Text'; import { LucideIcon } from 'lucide-react'; interface SponsorMetricCardProps { label: string; value: string; icon: LucideIcon; color?: string; trend?: { value: string; isPositive: boolean; }; } export function SponsorMetricCard({ label, value, icon, color = 'text-primary-blue', trend, }: SponsorMetricCardProps) { return ( {label} {value} {trend && ( {trend.value} )} ); }