diff --git a/native/chat/chat-thread-list-see-more-sidebars.react.js b/native/chat/chat-thread-list-see-more-sidebars.react.js
--- a/native/chat/chat-thread-list-see-more-sidebars.react.js
+++ b/native/chat/chat-thread-list-see-more-sidebars.react.js
@@ -33,7 +33,7 @@
       style={styles.button}
       onPress={onPressButton}
     >
-      <Icon name="ios-more" size={28} style={styles.icon} />
+      <Icon name="ellipsis-horizontal" size={24} style={styles.icon} />
       <Text style={[styles.text, unreadStyle]}>See more...</Text>
     </Button>
   );
diff --git a/native/chat/message-list-header-title.react.js b/native/chat/message-list-header-title.react.js
--- a/native/chat/message-list-header-title.react.js
+++ b/native/chat/message-list-header-title.react.js
@@ -41,10 +41,10 @@
     let icon, fakeIcon;
     if (Platform.OS === 'ios' && areSettingsEnabled) {
       icon = (
-        <Icon name="ios-arrow-forward" size={20} style={styles.forwardIcon} />
+        <Icon name="chevron-forward" size={20} style={styles.forwardIcon} />
       );
       fakeIcon = (
-        <Icon name="ios-arrow-forward" size={20} style={styles.fakeIcon} />
+        <Icon name="chevron-forward" size={20} style={styles.fakeIcon} />
       );
     }
 
@@ -87,14 +87,14 @@
     justifyContent: Platform.OS === 'android' ? 'flex-start' : 'center',
   },
   fakeIcon: {
-    paddingRight: 7,
+    paddingRight: 3,
     paddingTop: 3,
     flex: 1,
     minWidth: 25,
     opacity: 0,
   },
   forwardIcon: {
-    paddingLeft: 7,
+    paddingLeft: 3,
     paddingTop: 3,
     color: 'headerChevron',
     flex: 1,
diff --git a/native/chat/settings/thread-settings-list-action.react.js b/native/chat/settings/thread-settings-list-action.react.js
--- a/native/chat/settings/thread-settings-list-action.react.js
+++ b/native/chat/settings/thread-settings-list-action.react.js
@@ -44,8 +44,8 @@
         <ThreadSettingsListAction
           onPress={props.onPress}
           text="See more..."
-          iconName="ios-more"
-          iconSize={36}
+          iconName="ellipsis-horizontal"
+          iconSize={24}
           iconStyle={styles.seeMoreIcon}
           buttonStyle={styles.seeMoreButton}
           styles={styles}
@@ -131,7 +131,7 @@
     color: 'link',
     position: 'absolute',
     right: 10,
-    top: Platform.OS === 'android' ? 17 : 15,
+    top: Platform.OS === 'android' ? 12 : 10,
   },
   seeMoreRow: {
     backgroundColor: 'panelForeground',
diff --git a/native/media/camera-modal.react.js b/native/media/camera-modal.react.js
--- a/native/media/camera-modal.react.js
+++ b/native/media/camera-modal.react.js
@@ -690,7 +690,7 @@
           style={styles.switchCameraButton}
           ref={this.switchCameraButtonRef}
         >
-          <Icon name="ios-reverse-camera" style={styles.switchCameraIcon} />
+          <Icon name="ios-camera-reverse" style={styles.switchCameraIcon} />
         </TouchableOpacity>
       );
     }