Hey, I am trying to use Floating Label, in that i need to change the input font. Please help.
I have tried using "inputFontSize" but its not working.
@akshaykumar0291
You can try changing the font size of form input using FloatingLabel
<Form>
<Item floatingLabel>
<Label>Username</Label>
<Input style={{ fontSize: 30 }} />
</Item>
</Form>
NOTE:(Always wrap floatingLabel component with <Form/>)
Thank you for the quick reply. It's working.
Most helpful comment
@akshaykumar0291
You can try changing the font size of form input using FloatingLabel
NOTE:(Always wrap floatingLabel component with
<Form/>)