TextInput.tsx 290 B

1234567891011121314
  1. import { InputProps } from './forms'
  2. interface TextInputProps extends InputProps {
  3. label: string
  4. }
  5. const TextInput = ({ label, ...inputProps }: TextInputProps) => (
  6. <>
  7. <label htmlFor={inputProps.name}>{label}</label>
  8. <input {...inputProps} />
  9. </>
  10. )
  11. export default TextInput