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,