import React from 'react'; import { ArrowDown } from 'lucide-react'; export default function StatCard({ title, subtitle, value, color, icon: Icon }) { const colorClasses = { green: 'from-emerald-400 to-emerald-500', red: 'from-rose-400 to-rose-500', blue: 'from-blue-400 to-blue-500', }; return (

{value}

{title}

{subtitle}

{/* Icon Overlay Design */}
); }