import React from 'react'; import { Card, CardHeader, CardContent } from "@/components/ui/card"; import { TrendingUp } from "lucide-react"; export default function StatsCard({ title, value, icon: Icon, gradient, change, textColor = "text-white" }) { return (

{title}

{value}
{change && (
{change}
)}
); }