diff --git a/components/molecule/autosuggest/README.md b/components/molecule/autosuggest/README.md
index 1b2d7b1c88..5f64485a0d 100644
--- a/components/molecule/autosuggest/README.md
+++ b/components/molecule/autosuggest/README.md
@@ -81,6 +81,47 @@ const suggestions = ['John','Johnny']
```
+#### With Right Icon
+You can add a right icon to the multiselection input:
+```js
+}
+ iconClear={}
+ rightIcon={}
+ multiselection
+>
+ {suggestions.map((suggestion, i) => (
+
+ {option}
+
+ ))}
+
+```
+
+#### With Right Icon and Click Handler
+The right icon can be interactive with an `onClickRightIcon` callback:
+```js
+}
+ iconClear={}
+ rightIcon={}
+ onClickRightIcon={(ev, {value}) => {
+ console.log('Right icon clicked with value:', value)
+ }}
+ multiselection
+>
+ {suggestions.map((suggestion, i) => (
+
+ {option}
+
+ ))}
+
+```
+
### Managing State
#### Custom component from `MoleculeAutosuggest` that handle State
@@ -208,4 +249,4 @@ so then, the `MoleculeAutosuggestWithState` can used in this way...
-> **Find full description and more examples in the [demo page](https://sui-components.now.sh/workbench/molecule/autosuggest/demo).**
\ No newline at end of file
+> **Find full description and more examples in the [demo page](https://sui-components.now.sh/workbench/molecule/autosuggest/demo).**
diff --git a/components/molecule/autosuggest/demo/ArticleMultipleSelection/index.js b/components/molecule/autosuggest/demo/ArticleMultipleSelection/index.js
index 7365587fdb..c3d66c54d3 100644
--- a/components/molecule/autosuggest/demo/ArticleMultipleSelection/index.js
+++ b/components/molecule/autosuggest/demo/ArticleMultipleSelection/index.js
@@ -2,7 +2,7 @@
import {Article, Code, H2, H3, Paragraph} from '@s-ui/documentation-library'
import {MoleculeAutosuggestWithStateTags} from '../config.js'
-import {iconClose} from '../Icons/index.js'
+import {iconClose, iconSearch} from '../Icons/index.js'
const ArticleMultipleSelection = () => {
return (
@@ -40,6 +40,17 @@ const ArticleMultipleSelection = () => {
multiselection
disabled
/>
+