mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-23 20:39:26 +01:00
21 lines
298 B
Svelte
21 lines
298 B
Svelte
|
|
<script>
|
||
|
|
import { Mail } from "@lucide/svelte";
|
||
|
|
|
||
|
|
const hasUnreadMessages = true;
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div class="app">
|
||
|
|
<Mail size="48">
|
||
|
|
{#if hasUnreadMessages}
|
||
|
|
<circle
|
||
|
|
r="3"
|
||
|
|
cx="21"
|
||
|
|
cy="5"
|
||
|
|
stroke="none"
|
||
|
|
fill="#F56565"
|
||
|
|
/>
|
||
|
|
{/if}
|
||
|
|
</Mail>
|
||
|
|
</div>
|
||
|
|
|