diff --git a/assets/icons/cursor_i_beam.svg b/assets/icons/cursor_i_beam.svg
index 255635de6a..2e7b95b203 100644
--- a/assets/icons/cursor_i_beam.svg
+++ b/assets/icons/cursor_i_beam.svg
@@ -1 +1 @@
-
+
diff --git a/assets/icons/cursor_text.svg b/assets/icons/cursor_text.svg
deleted file mode 100644
index 2e7b95b203..0000000000
--- a/assets/icons/cursor_text.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/assets/icons/text_snippet.svg b/assets/icons/text_snippet.svg
new file mode 100644
index 0000000000..255635de6a
--- /dev/null
+++ b/assets/icons/text_snippet.svg
@@ -0,0 +1 @@
+
diff --git a/crates/assistant/src/assistant_panel.rs b/crates/assistant/src/assistant_panel.rs
index af3abec67c..8d158193a6 100644
--- a/crates/assistant/src/assistant_panel.rs
+++ b/crates/assistant/src/assistant_panel.rs
@@ -5235,7 +5235,7 @@ fn quote_selection_fold_placeholder(title: String, editor: WeakView) ->
ButtonLike::new(fold_id)
.style(ButtonStyle::Filled)
.layer(ElevationIndex::ElevatedSurface)
- .child(Icon::new(IconName::CursorIBeam))
+ .child(Icon::new(IconName::TextSnippet))
.child(Label::new(title.clone()).single_line())
.on_click(move |_, cx| {
editor
diff --git a/crates/ui/src/components/icon.rs b/crates/ui/src/components/icon.rs
index c2743ecbd9..a2f70244db 100644
--- a/crates/ui/src/components/icon.rs
+++ b/crates/ui/src/components/icon.rs
@@ -165,7 +165,7 @@ pub enum IconName {
Copy,
CountdownTimer,
CursorIBeam,
- CursorText,
+ TextSnippet,
Dash,
DatabaseZap,
Delete,