diff --git a/assets/icons/logo_96.svg b/assets/icons/logo_96.svg
new file mode 100644
index 0000000000000000000000000000000000000000..dc98bb8bc249bfb1decb1771b33470b324dde96f
--- /dev/null
+++ b/assets/icons/logo_96.svg
@@ -0,0 +1,3 @@
+
diff --git a/crates/collab_ui/src/collab_panel.rs b/crates/collab_ui/src/collab_panel.rs
index c2a2b351348b03455264d0bf4b61a88d698e8e74..764fb67752c6a892f20305a504afcc6d16a7b76e 100644
--- a/crates/collab_ui/src/collab_panel.rs
+++ b/crates/collab_ui/src/collab_panel.rs
@@ -1132,7 +1132,7 @@ impl CollabPanel {
cx.font_cache(),
))
.with_child(
- Svg::new("icons/disable_screen_sharing_12.svg")
+ Svg::new("icons/desktop.svg")
.with_color(theme.channel_hash.color)
.constrained()
.with_width(theme.channel_hash.width)
diff --git a/crates/collab_ui/src/collab_panel/contact_finder.rs b/crates/collab_ui/src/collab_panel/contact_finder.rs
index 9f96aa4b60e0942f057bb1ab5daf104200e3818e..d0c12a7f90a430a70615f6c4b91ca555619081fe 100644
--- a/crates/collab_ui/src/collab_panel/contact_finder.rs
+++ b/crates/collab_ui/src/collab_panel/contact_finder.rs
@@ -209,7 +209,7 @@ impl PickerDelegate for ContactFinderDelegate {
let icon_path = match request_status {
ContactRequestStatus::None | ContactRequestStatus::RequestReceived => {
- Some("icons/check_8.svg")
+ Some("icons/check.svg")
}
ContactRequestStatus::RequestSent => Some("icons/x.svg"),
ContactRequestStatus::RequestAccepted => None,
diff --git a/crates/collab_ui/src/sharing_status_indicator.rs b/crates/collab_ui/src/sharing_status_indicator.rs
index 9fcd15aa18006f63193b9acbd2e087c33fc65a93..6a6acb4b707b5acfb93c1be889523982be4c9c10 100644
--- a/crates/collab_ui/src/sharing_status_indicator.rs
+++ b/crates/collab_ui/src/sharing_status_indicator.rs
@@ -48,7 +48,7 @@ impl View for SharingStatusIndicator {
};
MouseEventHandler::new::(0, cx, |_, _| {
- Svg::new("icons/disable_screen_sharing_12.svg")
+ Svg::new("icons/desktop.svg")
.with_color(color)
.constrained()
.with_width(18.)
diff --git a/crates/workspace/src/shared_screen.rs b/crates/workspace/src/shared_screen.rs
index 7b97174dfee71eb2ea43514f2fea4b26e7a308f0..b99c5f3ab99477ff651a1d28186901ed12b99de3 100644
--- a/crates/workspace/src/shared_screen.rs
+++ b/crates/workspace/src/shared_screen.rs
@@ -112,7 +112,7 @@ impl Item for SharedScreen {
) -> gpui::AnyElement {
Flex::row()
.with_child(
- Svg::new("icons/disable_screen_sharing_12.svg")
+ Svg::new("icons/desktop.svg")
.with_color(style.label.text.color)
.constrained()
.with_width(style.type_icon_width)
diff --git a/styles/src/style_tree/welcome.ts b/styles/src/style_tree/welcome.ts
index 8ff15d5d26fd05856747eaa898df9cc052b6f2b7..284a262a230896650f729422c9a184de86352559 100644
--- a/styles/src/style_tree/welcome.ts
+++ b/styles/src/style_tree/welcome.ts
@@ -128,7 +128,7 @@ export default function welcome(): any {
},
icon: svg(
foreground(theme.highest, "on"),
- "icons/check_12.svg",
+ "icons/check.svg",
12,
12
),