import clsx from "clsx"; import styles from "./StatusCard.module.css"; import { LucideIcon } from "lucide-react"; interface StatusCardProps { label: string; value: string | number; icon: LucideIcon; status?: "success" | "warning" | "error" | "neutral"; trend?: string; href?: string; } import Link from "next/link"; export function StatusCard({ label, value, icon: Icon, status = "neutral", trend, href }: StatusCardProps) { const content = (