1 import React
from 'react';
4 const Input = function({ label
, type
, name
, autoFocus
, onChange
}) {
5 let parsedName
= name
|| label
.toLowerCase();
8 <div className
="Input-wrapper">
9 <label className
="Input-label">
17 className
="Input-input"