diff --git a/assets/icons/logo_96.svg b/assets/icons/logo_96.svg
new file mode 100644
index 0000000000..dc98bb8bc2
--- /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 a258151bb8..6a001cd422 100644
--- a/crates/collab_ui/src/collab_panel.rs
+++ b/crates/collab_ui/src/collab_panel.rs
@@ -1127,7 +1127,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 9f96aa4b60..d0c12a7f90 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 9fcd15aa18..6a6acb4b70 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 7b97174dfe..b99c5f3ab9 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 8ff15d5d26..284a262a23 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
),