import type { HTMLProps } from 'react'; import { twMerge } from 'tailwind-merge'; type InputErrorProps = HTMLProps; export function InputError({ className, children }: InputErrorProps) { return {children}; }