You are setting the TextField type to number and you are trying to set the value as a string:
type="number" value={"+" + foo}
if you want to show the plus before the actual number you need to set type to text:
type="text"