Setting a width on a Input component doesn't seem to work:
<Input label="Something" width={1} />
Renders to:
The code in the DOM looks like:
All the other input components (like "NumericTextBox") have the width property applied on the containing <span>, but for an Input, the containing span has always a width of 200.
Any suggestions on how to set the width of an Input properly?