import type { InputHTMLAttributes } from 'react' import React, { forwardRef } from 'react' export interface InputProps extends InputHTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string } const Input = forwardRef(function Input( { testId = 'fs-input', ...otherProps }, ref ) { return }) export default Input