label.tsx
1 import { cn } from "@/lib/utils"; 2 3 export function Label({ className, ...props }: React.LabelHTMLAttributes<HTMLLabelElement>) { 4 return ( 5 <label 6 className={cn( 7 "font-mondwest text-xs tracking-[0.1em] uppercase leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70", 8 className, 9 )} 10 {...props} 11 /> 12 ); 13 }