Initial commit
[boords-signature-composer.git] / src / components / Forms / Input / Input.js
blobd217d6ea071413996d208e5cb2e92c4b7bd3082a
1 import React from 'react';
2 import './Input.css';
4 const Input = function({ label, type, name, autoFocus, onChange }) {
5   let parsedName = name || label.toLowerCase();
7   return (
8     <div className='Input-wrapper'>
9       <label className='Input-label'>{label}</label>
10       <input type={type} name={parsedName} onChange={onChange} autoFocus={autoFocus} className='Input-input' />
11     </div>
12   );
15 export default Input;