diff --git a/CHANGELOG.md b/CHANGELOG.md
index 869a1a41..9561c228 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@
### Minor changes and fixes
* Moderation delay: fix accessibility on the timer shown to moderators.
+* Fix «create new poll» icon.
## 10.3.0
diff --git a/conversejs/custom/plugins/poll/utils.js b/conversejs/custom/plugins/poll/utils.js
index f10172b4..4dbe4e52 100644
--- a/conversejs/custom/plugins/poll/utils.js
+++ b/conversejs/custom/plugins/poll/utils.js
@@ -32,7 +32,7 @@ export function getHeadingButtons (view, buttons) {
api.modal.show('livechat-converse-poll-form-modal', { model: muc })
},
a_class: '',
- icon_class: 'fa-list-check', // FIXME
+ icon_class: 'fa-square-poll-horizontal',
name: 'muc-create-poll'
})
diff --git a/conversejs/custom/shared/components/font-awesome.js b/conversejs/custom/shared/components/font-awesome.js
index 33b8c1b0..2713ea23 100644
--- a/conversejs/custom/shared/components/font-awesome.js
+++ b/conversejs/custom/shared/components/font-awesome.js
@@ -23,6 +23,11 @@ export default () => {
+
+
+
+
+
`
}