interface MetricCardProps { label: string value: string | number sublabel?: string icon?: string accent?: string trend?: number } export function MetricCard({ label, value, sublabel, icon, accent = '#7c3aed', trend }: MetricCardProps) { return (