18 lines
471 B
TypeScript
18 lines
471 B
TypeScript
import * as React from "react";
|
|
|
|
export interface LabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> {}
|
|
|
|
export const Label = React.forwardRef<HTMLLabelElement, LabelProps>(
|
|
({ className = "", ...props }, ref) => {
|
|
return (
|
|
<label
|
|
ref={ref}
|
|
className={`text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 ${className}`}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
);
|
|
|
|
Label.displayName = "Label";
|