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

This commit is contained in:
2026-05-15 18:44:25 +02:00
parent a67d5eae12
commit 678ce7f36f
6 changed files with 43 additions and 2 deletions
+5 -1
View File
@@ -1,6 +1,6 @@
---
import Layout from '../layouts/Layout.astro';
import { Arrow2, Profile } from '../components/Icons/index.ts';
import { Arrow2, Profile, Share } from '../components/Icons/index.ts';
---
<Layout>
@@ -32,6 +32,10 @@ import { Arrow2, Profile } from '../components/Icons/index.ts';
<Profile size={24} />
<Profile size={32} />
</div>
<div class="icon-row">
<Share size={16} />
<Share size={24} />
<Share size={32} />
</div>
</section>
</main>