| 2 | import { cn } from "@/lib/utils"; |
| 3 | |
| 4 | export interface LabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> {} |
| 5 | |
| 6 | const Label = React.forwardRef<HTMLLabelElement, LabelProps>( |
| 7 | ({ className, ...props }, ref) => ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…