From 299906346e0268deca783b415ea5d35c7bc0b0a0 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 7 Aug 2023 18:04:41 -0700 Subject: [PATCH] Change collab panel icon --- crates/collab_ui/src/collab_panel.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/collab_ui/src/collab_panel.rs b/crates/collab_ui/src/collab_panel.rs index e457f8c750..f745420eeb 100644 --- a/crates/collab_ui/src/collab_panel.rs +++ b/crates/collab_ui/src/collab_panel.rs @@ -1088,7 +1088,7 @@ impl CollabPanel { MouseEventHandler::::new(0, cx, |_, _| { render_icon_button( theme.collab_panel.add_contact_button.in_state(is_selected), - "icons/user_plus_16.svg", + "icons/plus_16.svg", ) }) .with_cursor_style(CursorStyle::PointingHand) @@ -1993,7 +1993,7 @@ impl Panel for CollabPanel { fn icon_path(&self, cx: &gpui::WindowContext) -> Option<&'static str> { settings::get::(cx) .button - .then(|| "icons/radix/person.svg") + .then(|| "icons/speech_bubble_12.svg") } fn icon_tooltip(&self) -> (String, Option>) {