assets/icons/microphone_active_12.svg 🔗
@@ -1,4 +0,0 @@
-<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
Piotr Osiewicz created
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(-)
@@ -1,4 +0,0 @@
-<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
@@ -1,5 +0,0 @@
-<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
@@ -1 +0,0 @@
@@ -1 +0,0 @@
@@ -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";
}