Fix icon path for `Icon::AudioOn` (#3869)

Marshall Bowers created

This PR fixes the icon path for `Icon::AudioOn` so that it points to a
file that exists.

Release Notes:

- Fixed the loading of the deafen icon in the call controls.

Change summary

crates/ui/src/components/icon.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/ui/src/components/icon.rs 🔗

@@ -121,7 +121,7 @@ impl Icon {
             Icon::ArrowUpRight => "icons/arrow_up_right.svg",
             Icon::AtSign => "icons/at_sign.svg",
             Icon::AudioOff => "icons/speaker_off.svg",
-            Icon::AudioOn => "icons/speaker-loud.svg",
+            Icon::AudioOn => "icons/speaker_loud.svg",
             Icon::Backspace => "icons/backspace.svg",
             Icon::Bell => "icons/bell.svg",
             Icon::BellOff => "icons/bell_off.svg",