summaryrefslogtreecommitdiff
path: root/src/components/Input/Input.jsx
blob: ee79f3b9ed1ad80addcf849ef7fbf52b559ae59c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import React from 'react'
import styles from './Input.module.css'

const Input = ({ label, id, value, type, name }) => {
  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}
          required
        />
      </div>
    </div>
  )
}

export default Input