import clsx from 'clsx'; import { forwardRef, InputHTMLAttributes, Ref } from 'react'; import { AutomationTestingProps } from '@/types'; export const InputWithRef = forwardRef< HTMLInputElement, InputHTMLAttributes & AutomationTestingProps >( // eslint-disable-next-line react/jsx-props-no-spreading (props, ref) => ); export function Input({ className, mRef: ref, value, type, 'data-cy': dataCy, ...props }: InputHTMLAttributes & { mRef?: Ref; } & AutomationTestingProps) { return ( ); }