import { cn } from "@/lib/cn"; interface LabelProps extends React.HTMLAttributes { prefix?: string; } /** * Mini-label éditorial : mono, uppercase, 11px, tracking-label, muted. * Ex: */ export function Label({ prefix, className, children, ...props }: LabelProps) { return ( {prefix ? {prefix} : null} {children} ); }