Added the type field to the InputGroup.jsx

This commit is contained in:
2023-01-08 03:13:03 +01:00
parent eb63979322
commit f87f28b35e

View File

@ -8,7 +8,7 @@ export const InputGroup = (props) => {
<h4>{props.title}</h4>
<p>{props.description}</p>
</div>
<TextBox placeholder={props.title} autoComplete={props.autoComplete} value={props.value} default={props.default}/>
<TextBox placeholder={props.title} autoComplete={props.autoComplete} value={props.value} default={props.default} type={props.type}/>
</div>
);
}
}