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