You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
916 B
JavaScript
33 lines
916 B
JavaScript
import React, { forwardRef, useEffect, useRef } from 'react';
|
|
|
|
export default forwardRef(function TextInput(
|
|
{ type = 'text', name, value, className, autoComplete, required, isFocused, handleChange },
|
|
ref
|
|
) {
|
|
const input = ref ? ref : useRef();
|
|
|
|
useEffect(() => {
|
|
if (isFocused) {
|
|
input.current.focus();
|
|
}
|
|
}, []);
|
|
|
|
return (
|
|
<div className="flex flex-col items-start">
|
|
<input
|
|
type={type}
|
|
name={name}
|
|
value={value}
|
|
className={
|
|
`border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm ` +
|
|
className
|
|
}
|
|
ref={input}
|
|
autoComplete={autoComplete}
|
|
required={required}
|
|
onChange={(e) => handleChange(e)}
|
|
/>
|
|
</div>
|
|
);
|
|
});
|