new border pattern for each condition on modal, added icon display for 1st edition on both card/card modal

This commit is contained in:
zach
2026-03-09 12:00:29 -04:00
parent f5fcd7b3e7
commit 68bed6ff8e
5 changed files with 60 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
---
import first from "/src/svg/edition/firstEdition.svg?raw";
const { edition } = Astro.props;
const editionMap = {
"1st Edition Holofoil": first,
};
const svg = editionMap[edition as keyof typeof editionMap] ?? "";
---
<div class="edition-icon shadow-filter" set:html={svg}></div>