// Input.tsx import React from 'react'; interface InputProps extends React.InputHTMLAttributes { error?: string; } export const Input = React.forwardRef( ({ className = '', error, ...props }, ref) => { return (
{error &&

{error}

}
); } ); Input.displayName = 'Input';