An input component for typing a search query. ### Example ```jsx return ( <Widget src="near/widget/DIG.InputSearch" props={{ onQueryChange: (query) => console.log(query), }} /> ); ``` ### Props `assistiveText` - type: string - Adds assistive text to the bottom of the input. Useful for info, success, and error messages. `debounceDelay` - type: number - default: 300 - Determines debounce delay for `onQueryChange()` in milliseconds `disabled` - type: boolean - Disables the input `invalid` - type: boolean - Renders input with error variant `label` - type: string - Renders label above input `onInput` - type: function - Non-debounced handler that returns native input event `onQueryChange` - type: function - Debounced handler that returns search query whenever input changes ### HTML Attributes All other props will be forwarded through to the `<input>` element. EG: `placeholder`.