tsimport {InputGroup} from '@astryxdesign/core/InputGroup'
| Guidance | Practices |
|---|---|
| Do | Use text addons to show units, prefixes, or suffixes that clarify the input format (e.g., "$", "kg", "https://"). |
| Do | Use InputGroupText for static prefixes/suffixes like "$", "kg", or "https://". |
| Do | Set isLabelHidden on the inner input and let the group label be visible. |
| Don't | Don't put multiple text inputs in one group; use separate fields instead. |
| Don't | Don't use InputGroup for unrelated inputs; it's for a single input with decorations. |