Reputation: 774
i use Native-Base in my react project. and i want to customize width of border Icon TextBox form in Native-Base. this my code
<Item>
<Icon active name='lock' />
<Input placeholder='password'/>
</Item>
this is the show
so, how to customize the margin right in the border?. thanks
Upvotes: 2
Views: 667
Reputation: 121
Try this:
<Item>
<Icon active name='lock' style={{borderWidth: 10}}/>
<Input placeholder='password'/>
</Item>
Upvotes: 1