Viktoriia 8 месяцев назад
Родитель
Сommit
1808067dc3
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      src/screens/InAppScreens/MessagesScreen/index.tsx

+ 3 - 0
src/screens/InAppScreens/MessagesScreen/index.tsx

@@ -25,6 +25,7 @@ import { formatDate } from './utils';
 import { routes } from './constants';
 import { styles } from './styles';
 import { useChatStore } from 'src/stores/chatStore';
+import BellSlashIcon from 'assets/icons/messages/bell-slash.svg';
 
 const MessagesScreen = () => {
   const navigation = useNavigation();
@@ -159,6 +160,8 @@ const MessagesScreen = () => {
 
                 <View style={{ flexDirection: 'row', alignItems: 'center', gap: 6 }}>
                   {item.pin === 1 ? <PinIcon height={12} fill={Colors.DARK_BLUE} /> : null}
+                  {item.muted === 1 ? <BellSlashIcon height={12} fill={Colors.DARK_BLUE} /> : null}
+
                   {item.sent_by !== item.uid && item.status === 3 ? (
                     <ReadIcon fill={Colors.DARK_BLUE} />
                   ) : item.sent_by !== item.uid && (item.status === 2 || item.status === 1) ? (