'use client'; interface Props { label: string; value: string | number; border?: string; icon?: string; onClick?: () => void; } export default function StatCard({ label, value, border = 'border-l-primary-500', icon, onClick }: Props) { return (