"use client"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { TrendingUp, TrendingDown, ArrowRight } from "lucide-react"; import { cn } from "@/lib/utils"; interface StatsSummaryCardsProps { totalIncome: number; totalExpenses: number; avgMonthlyExpenses: number; formatCurrency: (amount: number) => string; } export function StatsSummaryCards({ totalIncome, totalExpenses, avgMonthlyExpenses, formatCurrency, }: StatsSummaryCardsProps) { const savings = totalIncome - totalExpenses; return (