import { ArrowDownRight, ArrowUpRight, LucideIcon, Minus } from "lucide-react"; import React from "react"; interface StatCardProps { label: string; value: string; icon: LucideIcon; trend?: "up" | "down" | "neutral"; change?: string; } const StatCard: React.FC = ({ label, value, icon: Icon, trend, change }) => { return (
{label}

{value}

{change && ( {trend === "up" && } {trend === "down" && } {trend === "neutral" && } {change} )}
); }; export default StatCard;