({ size = 'medium', className, htmlFor, ...rest }: LabelProps)
| 26 | LabelVariants {} |
| 27 | |
| 28 | export function Label({ size = 'medium', className, htmlFor, ...rest }: LabelProps) { |
| 29 | return <label className={clsxMerge(labelVariants({ size }), className)} htmlFor={htmlFor} {...rest} />; |
| 30 | } |
| 31 | |
| 32 | Label.displayName = 'Label'; |
nothing calls this directly
no test coverage detected