import type { LucideIcon } from "lucide-react"; import clsx from "clsx"; interface StatCardProps { title: string; value: string | number; subtitle?: string; icon: LucideIcon; trend?: { value: number; isPositive: boolean; }; className?: string; } export default function StatCard({ title, value, subtitle, icon: Icon, trend, className, }: StatCardProps) { return (