import React from 'react'; import { TrendingUp, TrendingDown } from 'lucide-react'; export default function StatCard({ title, value, change, positive, icon }) { return (

{title}

{value}

{positive ? ( {change} ) : ( {change} )} vs last month
{icon}
); }