Update indexing icon

Nate Butler and Kyle Caverly created

Co-Authored-By: Kyle Caverly <22121886+KCaverly@users.noreply.github.com>

Change summary

assets/icons/update.svg                 | 4 ++++
crates/assistant/src/assistant_panel.rs | 6 +++---
2 files changed, 7 insertions(+), 3 deletions(-)

Detailed changes

assets/icons/update.svg 🔗

@@ -0,0 +1,8 @@
+<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
+  <path
+    fill-rule="evenodd"
+    clip-rule="evenodd"

crates/assistant/src/assistant_panel.rs 🔗

@@ -3223,7 +3223,7 @@ impl InlineAssistant {
                         }
                     }
                     Some(
-                        Svg::new("icons/bolt.svg")
+                        Svg::new("icons/update.svg")
                             .with_color(theme.assistant.inline.context_status.in_progress_icon.color)
                             .constrained()
                             .with_width(theme.assistant.inline.context_status.in_progress_icon.width)
@@ -3241,7 +3241,7 @@ impl InlineAssistant {
                     )
                 }
                 SemanticIndexStatus::Indexed {} => Some(
-                    Svg::new("icons/circle_check.svg")
+                    Svg::new("icons/check.svg")
                         .with_color(theme.assistant.inline.context_status.complete_icon.color)
                         .constrained()
                         .with_width(theme.assistant.inline.context_status.complete_icon.width)
@@ -3249,7 +3249,7 @@ impl InlineAssistant {
                         .with_style(theme.assistant.inline.context_status.complete_icon.container)
                         .with_tooltip::<ContextStatusIcon>(
                             self.id,
-                            "Indexing Complete",
+                            "Index up to date",
                             None,
                             theme.tooltip.clone(),
                             cx,