blob: 896a97438ed4f352495e9da7043a4851e3f9e05f (
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
|
import React from 'react';
import { Field } from 'formik';
export interface Props extends React.InputHTMLAttributes<HTMLInputElement> {
label?: string;
}
const InputBase: React.FC<Props> = ({ label, ...props }) => {
return (
<div className="m-2 mb-4 flex flex-col">
<label htmlFor={props?.name} className="mb-1 text-gray-700">{label}</label>
<input
id={props?.name}
placeholder={label}
className="p-2 border-2 border-black focus:outline-none"
{...props}
/>
</div>
);
};
const Input: React.FC<Props> = props => <Field {...props} as={InputBase} />;
export default Input;
|