18 lines
305 B
TypeScript
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 };
|