Change the context menu and Copilot settings icon (#14501)

Danilo Leal created

Felt the link we were using for menu items that open a browser page was
not the best. That one is most typically used for attachments within
scope, as opposed to opening external links. Noticed that via the
"Copilot Settings" menu, which also felt like it could have a bit more
descriptive label. Also reduced the size of the rendered icon in this
component.

---

Release Notes:

- N/A

Change summary

crates/inline_completion_button/src/inline_completion_button.rs | 2 
crates/ui/src/components/context_menu.rs                        | 4 +-
2 files changed, 3 insertions(+), 3 deletions(-)

Detailed changes

crates/ui/src/components/context_menu.rs 🔗

@@ -178,7 +178,7 @@ impl ContextMenu {
 
             action: Some(action.boxed_clone()),
             handler: Rc::new(move |_, cx| cx.dispatch_action(action.boxed_clone())),
-            icon: Some(IconName::Link),
+            icon: Some(IconName::ArrowUpRight),
         });
         self
     }
@@ -360,7 +360,7 @@ impl Render for ContextMenu {
                                         h_flex()
                                             .gap_1()
                                             .child(Label::new(label.clone()))
-                                            .child(Icon::new(*icon))
+                                            .child(Icon::new(*icon).size(IconSize::Small))
                                             .into_any_element()
                                     } else {
                                         Label::new(label.clone()).into_any_element()