2021-06-21 03:51:15 +02:00
|
|
|
import React from "react";
|
2021-06-21 05:48:01 +02:00
|
|
|
import "./Input.css"
|
|
|
|
import "./Button.css"
|
2021-06-21 03:51:15 +02:00
|
|
|
|
|
|
|
function SubmitField(props) {
|
|
|
|
const InputValue = props.LabelName;
|
|
|
|
return (
|
2021-06-23 03:16:09 +02:00
|
|
|
<label className="input-field">
|
2021-06-22 03:41:14 +02:00
|
|
|
<input type="submit" onClick={props.onClick} value={InputValue} />
|
2021-06-21 03:51:15 +02:00
|
|
|
</label>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default SubmitField;
|