diff --git a/ts/components/conversation/message/message-item/DataExtractionNotification.tsx b/ts/components/conversation/message/message-item/DataExtractionNotification.tsx
index 18a09b5e2..2d62932c6 100644
--- a/ts/components/conversation/message/message-item/DataExtractionNotification.tsx
+++ b/ts/components/conversation/message/message-item/DataExtractionNotification.tsx
@@ -35,7 +35,7 @@ export const DataExtractionNotification = (props: PropsForDataExtractionNotifica
id={`msg-${messageId}`}
style={{ textAlign: 'center' }}
>
-
+
diff --git a/ts/components/icon/Icons.tsx b/ts/components/icon/Icons.tsx
index 284cccbc9..7965c6bd7 100644
--- a/ts/components/icon/Icons.tsx
+++ b/ts/components/icon/Icons.tsx
@@ -52,6 +52,7 @@ export type SessionIconType =
| 'plusThin'
| 'plusFat'
| 'reply'
+ | 'save'
| 'send'
| 'search'
| 'shield'
@@ -60,7 +61,6 @@ export type SessionIconType =
| 'stopwatch'
| 'qr'
| 'users'
- | 'upload'
| 'warning'
| 'sending'
| 'doubleCheckCircle'
@@ -392,6 +392,12 @@ export const icons: Record {
};
let iconRotation = 0;
let iconType: SessionIconType = 'chevron';
+ let iconSize: SessionIconSize = 'huge';
switch (type) {
case 'next':
iconRotation = 270;
@@ -158,9 +159,8 @@ const IconButton = ({ onClick, type }: IconButtonProps) => {
iconType = 'exit';
break;
case 'save':
- iconType = 'upload';
- iconRotation = 180;
-
+ iconType = 'save';
+ iconSize = 'huge2';
break;
default:
assertUnreachable(type, `Invalid button type: ${type}`);
@@ -170,7 +170,7 @@ const IconButton = ({ onClick, type }: IconButtonProps) => {