Use small icons in channel list (#3832)

Marshall Bowers created

This PR adjusts the size of the chat and channel note icons in the
channel list to be smaller.

Release Notes:

- N/A

Change summary

crates/collab_ui2/src/collab_panel.rs | 2 ++
1 file changed, 2 insertions(+)

Detailed changes

crates/collab_ui2/src/collab_panel.rs 🔗

@@ -2170,6 +2170,7 @@ impl CollabPanel {
                         h_stack()
                             .child(
                                 IconButton::new("channel_chat", Icon::MessageBubbles)
+                                    .icon_size(IconSize::Small)
                                     .icon_color(if has_messages_notification {
                                         Color::Default
                                     } else {
@@ -2185,6 +2186,7 @@ impl CollabPanel {
                             )
                             .child(
                                 IconButton::new("channel_notes", Icon::File)
+                                    .icon_size(IconSize::Small)
                                     .icon_color(if has_notes_notification {
                                         Color::Default
                                     } else {