/** * Trouve-KA — tuile de statistique (étiquette klabel + valeur display) * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai */ import { cn } from "@/lib/utils"; interface StatProps { label: string; value: string; hint?: string; className?: string; } /** * Tuile de statistique éditoriale : étiquette mono uppercase, valeur en * Space Grotesk bold, carte à bordure encre et ombre décalée. */ export function Stat({ label, value, hint, className }: StatProps) { return (

{label}

{value}

{hint ?

{hint}

: null}
); }