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'>{label
}</label
>
10 <input type
={type
} name
={parsedName
} onChange
={onChange
} autoFocus
={autoFocus
} className
='Input-input' />