I have a fairly simple react component:
<Quantity type="number" value="1"></Quantity>
styled with StyledComponents like this:
const Quantity = styled.input`
border: 1px solid #000;
border-radius: 2px;
width: 48px;
height: 28px;
font-size: 18px;
text-align: center;
margin-right: 10px
`;
so it looks like this now:
and I would like to make it look like this:
Thanks!