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

This commit is contained in:
2026-05-15 19:30:42 +02:00
parent ed7bc3ab6b
commit 68641ef5fe
6 changed files with 44 additions and 2 deletions
+6 -1
View File
@@ -1,6 +1,6 @@
---
import Layout from '../layouts/Layout.astro';
import { Arrow2Icon, ProfileIcon, ShareIcon, SearchIcon, CloseIcon } from '../components/Icons/index.ts';
import { Arrow2Icon, ProfileIcon, ShareIcon, SearchIcon, CloseIcon, UploadIcon } from '../components/Icons/index.ts';
---
<Layout>
@@ -47,6 +47,11 @@ import { Arrow2Icon, ProfileIcon, ShareIcon, SearchIcon, CloseIcon } from '../co
<CloseIcon size={24} />
<CloseIcon size={32} />
</div>
<div class="icon-row">
<UploadIcon size={16} />
<UploadIcon size={24} />
<UploadIcon size={32} />
</div>
</div>
</section>
</main>