Files
2026-03-07 14:10:30 +01:00

18 lines
305 B
TypeScript

import * as React from "react";
import { cn } from "@/lib/utils";
function Label({
className,
...props
}: React.LabelHTMLAttributes<HTMLLabelElement>) {
return (
<label
className={cn("text-sm font-medium text-foreground/90", className)}
{...props}
/>
);
}
export { Label };