import classNames from 'classnames' import { forwardRef, type PropsWithChildren } from 'react' interface InputLabelProps extends PropsWithChildren { className?: string onClick?: () => void } export const InputLabel = forwardRef( function InputLabel({ children, className, onClick }, ref) { return (
{children}
) } )