Remove underline from Input component Material UI (v1.0 Beta)
As per DOC.
disableUnderline prop =>
disableUnderline : boolean
Default Value: false
Details: If true, the input will not have an underline.
There is a property disableUnderline
provided by the DOC, we can directly use that to remove the underline from input element.
Try this:
<Input
disableUnderline={true} //here
classes={classes}
placeholder={placeholder}
value={value}
onChange={onChange} />