9 lines
275 B
TypeScript
9 lines
275 B
TypeScript
import * as React from "react";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export const Label = ({ className, ...props }: React.LabelHTMLAttributes<HTMLLabelElement>) => (
|
|
<label className={cn("text-sm font-medium leading-none", className)} {...props} />
|
|
);
|
|
|
|
export default Label;
|