diff --git a/assets/images/chatbubble-add.svg b/assets/images/chatbubble-add.svg
index 48eebf863cc3..3e2c270d681c 100644
--- a/assets/images/chatbubble-add.svg
+++ b/assets/images/chatbubble-add.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
diff --git a/assets/images/chatbubble-reply.svg b/assets/images/chatbubble-reply.svg
new file mode 100644
index 000000000000..f8d53ebff807
--- /dev/null
+++ b/assets/images/chatbubble-reply.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/assets/images/chatbubble-unread.svg b/assets/images/chatbubble-unread.svg
index 492616cf2ab5..f5a27a74f5fe 100644
--- a/assets/images/chatbubble-unread.svg
+++ b/assets/images/chatbubble-unread.svg
@@ -1 +1,9 @@
-
\ No newline at end of file
+
+
+
diff --git a/src/components/Icon/Expensicons.ts b/src/components/Icon/Expensicons.ts
index 2a7ed30abf1a..4db22dee8256 100644
--- a/src/components/Icon/Expensicons.ts
+++ b/src/components/Icon/Expensicons.ts
@@ -30,6 +30,7 @@ import CardsAndDomains from '@assets/images/cards-and-domains.svg';
import Cash from '@assets/images/cash.svg';
import Chair from '@assets/images/chair.svg';
import ChatBubbleAdd from '@assets/images/chatbubble-add.svg';
+import ChatBubbleReply from '@assets/images/chatbubble-reply.svg';
import ChatBubbleUnread from '@assets/images/chatbubble-unread.svg';
import ChatBubble from '@assets/images/chatbubble.svg';
import ChatBubbles from '@assets/images/chatbubbles.svg';
@@ -301,5 +302,6 @@ export {
Instagram,
ChatBubbleAdd,
ChatBubbleUnread,
+ ChatBubbleReply,
Lightbulb,
};
diff --git a/src/pages/home/report/ContextMenu/ContextMenuActions.tsx b/src/pages/home/report/ContextMenu/ContextMenuActions.tsx
index af60e6dcbaaa..2fd0d0a964a8 100644
--- a/src/pages/home/report/ContextMenu/ContextMenuActions.tsx
+++ b/src/pages/home/report/ContextMenu/ContextMenuActions.tsx
@@ -180,7 +180,7 @@ const ContextMenuActions: ContextMenuAction[] = [
{
isAnonymousAction: false,
textTranslateKey: 'reportActionContextMenu.replyInThread',
- icon: Expensicons.ChatBubbleAdd,
+ icon: Expensicons.ChatBubbleReply,
shouldShow: (type, reportAction, isArchivedRoom, betas, menuTarget, isChronosReport, reportID) => {
if (type !== CONST.CONTEXT_MENU_TYPES.REPORT_ACTION) {
return false;