From ca34ead6d9d31db254dd7251ca38dae935173896 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Tue, 29 Jul 2025 00:02:12 +0200 Subject: [PATCH] onboarding: Add proper icon for action (#35241) This change updates one icon within the onboarding flow to the indended icon for that entry. Release Notes: - N/A --- assets/icons/cloud_download.svg | 1 + crates/icons/src/icons.rs | 1 + crates/onboarding/src/welcome.rs | 3 +-- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 assets/icons/cloud_download.svg diff --git a/assets/icons/cloud_download.svg b/assets/icons/cloud_download.svg new file mode 100644 index 0000000000..bc7a8376d1 --- /dev/null +++ b/assets/icons/cloud_download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/crates/icons/src/icons.rs b/crates/icons/src/icons.rs index e7066ae151..7552060be4 100644 --- a/crates/icons/src/icons.rs +++ b/crates/icons/src/icons.rs @@ -71,6 +71,7 @@ pub enum IconName { CircleHelp, Close, Cloud, + CloudDownload, Code, Cog, Command, diff --git a/crates/onboarding/src/welcome.rs b/crates/onboarding/src/welcome.rs index 2ed44cf2ce..2ea120e021 100644 --- a/crates/onboarding/src/welcome.rs +++ b/crates/onboarding/src/welcome.rs @@ -32,8 +32,7 @@ const CONTENT: (Section<4>, Section<3>) = ( action: &Open, }, SectionEntry { - // TODO: use proper icon - icon: IconName::Download, + icon: IconName::CloudDownload, title: "Clone a Repo", // TODO: use proper action action: &NoAction,