How to change (internal?) border style on datetime input

I did a search and didn't see any topics about this.

How do I change the border of the datetime input component? Using the props.style seems to add a border around the component instead of actually changing the existing border.

No style:
image

With borderStyle: solid and borderWidth: 1:
image

With all 4 corners borderXxxRadius: 10:
image

Looks like you need to add your style changes to inputProps.style.

image
image

2 Likes

Try inputProps Style:

image

1 Like