Initial commit
[groove-signature-composer.git] / src / components / Forms / Input / Input.js
blob32efc91ebc999accfaf9a7e44a96a3987df7ac59
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">
10 {label}
11 </label>
12 <input
13 type={type}
14 name={parsedName}
15 onChange={onChange}
16 autoFocus={autoFocus}
17 className="Input-input"
19 </div>
23 export default Input;