import { TrendingUp, TrendingDown } from 'lucide-react'; interface TrendBadgeProps { value: number; label?: string; suffix?: string; subtitle?: string; } export function TrendBadge({ value, label, suffix, subtitle }: TrendBadgeProps) { const isPositive = value >= 0; const Icon = isPositive ? TrendingUp : TrendingDown; const color = isPositive ? 'text-[#68f349]' : 'text-red-400'; return ( {isPositive ? '+' : ''} {value} {suffix} {label ? {label} : null} {subtitle ? {subtitle} : null} ); }