mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 14:30:22 +00:00
14 lines
350 B
TypeScript
14 lines
350 B
TypeScript
import { Field } from 'formik'
|
|
|
|
const Input = ({ name, placeholder }:InputProps):JSX.Element => {
|
|
return <Field name={name} className='text-black w-full h-10 border border-grey-light rounded px-3 relative focus:shadow outline-none' placeholder={placeholder}/>
|
|
}
|
|
|
|
interface InputProps {
|
|
name: string
|
|
placeholder?: string
|
|
}
|
|
|
|
export default Input
|
|
|