There are lot of solutions out there to hide the input spinner using css. One of them being:
input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
-webkit-appearance: none !important;
margin: 0 !important;
-moz-appearance:textfield !important;
}
I want to know how I can implement it in styled-component? Thanks