Utilizing the library https://mui.com/material-ui/, I am importing the TextField component.
My goal is to customize it to match this design:
enter image description here
The challenge I am facing includes:
Ensuring the up/down arrows are always visible (even without hovering)
Applying my own unique style to these arrows consistently across all browsers
Currently, I am crafting a custom component called CustomTextField
using the @mui/material styled function. However, I seem to be unable to modify anything even when trying to access:
"& .MuiInputBase-root"
I essentially aim to replicate the style seen here: https://mui.com/base-ui/react-number-input/
Thank you!