import React from 'react' export default function Input({ id = '', type = 'text', inputMode = 'text', name, onChange, value, error = '', autoComplete = false, autoFocus = false, placeholder, className, disabled, readOnly, onKeyDownCapture = null, textSize = 'text-sm', }) { return ( <> {error && (

{error}

)} ) }