// assets/js/components/StatCard.js const StatCard = ({ title, value, icon, colorClass = "text-blue-400" }) => (

{title}

{value}
{icon}
);