From 064401dc58e30758039df3e3b6de2f664a5fa6ed Mon Sep 17 00:00:00 2001 From: sHa Date: Mon, 11 Aug 2025 16:25:42 +0300 Subject: [PATCH] Update achievement icon: Replace 'crown-minimalistic.svg' with 'crown-star.svg' for improved design --- public/icons/crown-star.svg | 5 +++++ src/components/Achievements.svelte | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 public/icons/crown-star.svg diff --git a/public/icons/crown-star.svg b/public/icons/crown-star.svg new file mode 100644 index 0000000..3cf0a48 --- /dev/null +++ b/public/icons/crown-star.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Achievements.svelte b/src/components/Achievements.svelte index 113b479..daa372a 100644 --- a/src/components/Achievements.svelte +++ b/src/components/Achievements.svelte @@ -72,7 +72,7 @@ 'legend': { name: 'Geography Legend', description: 'Answer 200 questions correctly', - icon: 'crown-minimalistic.svg', + icon: 'crown-star.svg', requirement: () => gameStats.correct >= 200 } };