tsimport {NumberInput} from '@astryxdesign/core/NumberInput'
| Guidance | Practices |
|---|---|
| Do | Set min, max, and step to guide users toward valid values. |
| Do | Show units (e.g. "%" or "GB") so users know what the number represents. |
| Don't | Use NumberInput for free-form text that happens to contain numbers; use TextInput instead. |
| Don't | Set both isOptional and isRequired on the same field. |