blob: 298d14c90f4916ef68be11fbe3494b950357b258 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import React from 'react';
import { Field } from 'formik';
export interface Props extends React.InputHTMLAttributes<HTMLInputElement> {
label?: string;
ref?: React.Ref<HTMLInputElement>
}
const focusStyles = 'focus:outline-none focus:shadow focus:border-gray-400';
const baseStyles = 'p-2 border bg-white border-gray-300 rounded-sm';
const InputBase: React.FC<Props> = ({ label, ref, ...props }) => {
return (
<div className="m-2 mb-4 flex flex-col">
<label htmlFor={props?.name} className="mb-1 text-sm text-gray-600">{label}</label>
<input
id={props?.name}
ref={ref}
placeholder={label}
className={`${baseStyles} ${focusStyles}`}
{...props}
/>
</div>
);
};
const Input: React.FC<Props> = props => <Field {...props} as={InputBase} />;
export default Input;
|