Use new icons, delete old ones

Piotr Osiewicz created

Change summary

assets/icons/microphone_active_12.svg        | 1 -
assets/icons/microphone_inactive_12.svg      | 1 -
assets/icons/speakers_active_12.svg          | 0 
assets/icons/speakers_inactive_12.svg        | 0 
crates/collab_ui/src/collab_titlebar_item.rs | 4 ++--
5 files changed, 2 insertions(+), 4 deletions(-)

Detailed changes

crates/collab_ui/src/collab_titlebar_item.rs 🔗

@@ -500,10 +500,10 @@ impl CollabTitlebarItem {
         let icon;
         let tooltip;
         if room.read(cx).is_deafened().unwrap_or(false) {
-            icon = "icons/speakers_inactive_12.svg";
+            icon = "icons/radix/speaker-off.svg";
             tooltip = "Unmute speakers\nRight click for options";
         } else {
-            icon = "icons/speakers_active_12.svg";
+            icon = "icons/radix/speaker-loud.svg";
             tooltip = "Mute speakers\nRight click for options";
         }