feat: add Close icon with multiple sizes (16, 24, 32) and update index export

This commit is contained in:
2026-05-15 19:07:08 +02:00
parent 18702da0b6
commit ed7bc3ab6b
6 changed files with 45 additions and 3 deletions
+7 -2
View File
@@ -1,6 +1,6 @@
---
import Layout from '../layouts/Layout.astro';
import { Arrow2Icon, ProfileIcon, ShareIcon, SearchIcon } from '../components/Icons/index.ts';
import { Arrow2Icon, ProfileIcon, ShareIcon, SearchIcon, CloseIcon } from '../components/Icons/index.ts';
---
<Layout>
@@ -41,7 +41,12 @@ import { Arrow2Icon, ProfileIcon, ShareIcon, SearchIcon } from '../components/Ic
<SearchIcon size={16} />
<SearchIcon size={24} />
<SearchIcon size={32} />
</div>
</div>
<div class="icon-row">
<CloseIcon size={16} />
<CloseIcon size={24} />
<CloseIcon size={32} />
</div>
</div>
</section>
</main>