diff --git a/native/components/community-pill.react.js b/native/components/community-pill.react.js
--- a/native/components/community-pill.react.js
+++ b/native/components/community-pill.react.js
@@ -8,8 +8,8 @@
 
 import { useSelector } from '../redux/redux-utils';
 import { useColors } from '../themes/colors';
+import CommIcon from './comm-icon.react';
 import Pill from './pill.react';
-import SWMansionIcon from './swmansion-icon.react';
 import ThreadPill from './thread-pill.react';
 
 type Props = {
@@ -33,9 +33,9 @@
       return undefined;
     }
     const icon = (
-      <SWMansionIcon
+      <CommIcon
         name="cloud-filled"
-        size={20}
+        size={12}
         color={colors.panelForegroundLabel}
       />
     );