hermes-agent/apps/dashboard/src/components/ui/label.tsx
2026-05-02 13:38:49 -05:00

13 lines
362 B
TypeScript

import { cn } from "@/lib/utils";
export function Label({ className, ...props }: React.LabelHTMLAttributes<HTMLLabelElement>) {
return (
<label
className={cn(
"font-mondwest text-xs tracking-[0.1em] uppercase leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
className,
)}
{...props}
/>
);
}