prateekbh / preact-material-components

preact wrapper for "Material Components for the web"
https://material.preactjs.com
MIT License
552 stars 81 forks source link

Bug: Outlined Text-Box having issue with Label #1341

Open ajay28kumar opened 4 years ago

ajay28kumar commented 4 years ago

I'm using preact-material-component textBox field for my project and textBox is rendering as below image

Screenshot 2019-11-19 at 10 51 37 AM

PS: If I refresh the page then I get correct UI

TextBox code is here:

            <TextField
                    label='Enter OTP'
                    id='otp'
                    type='tel'
                    outlined
                    onKeyUp={this.updateInput}
                    value={this.state.inputValue}
                  />