blob: 08e8fab130f6f49fbd3d7fb07681eb3ebfe1429d (
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
25
26
27
28
29
|
import React from 'react'
import styles from './Input.module.css'
const Input = ({ label, id, value, type, name, onChange, placeholder, maxLength, pattern, minLength, onInvalid, onValid }) => {
return (
<div className={styles.input}>
<div className={styles.input__container}>
<label htmlFor={id}>{label}</label>
<input
className={styles.input__field}
type={type}
id={id}
name={name}
value={value}
onChange={onChange}
required
placeholder={placeholder}
pattern={pattern}
maxLength={maxLength}
minLength={minLength}
onInvalid={onInvalid}
onValid={onValid}
/>
</div>
</div>
)
}
export default Input
|