zahlzerlegung/src/lib/components/svg/Balloon.svelte
2026-04-28 01:54:27 +02:00

11 lines
509 B
Svelte

<script lang="ts">
let { size = 80 }: { size?: number } = $props();
</script>
<svg width={size} height={size} viewBox="0 0 80 110" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
<ellipse cx="40" cy="42" rx="30" ry="36" fill="#ff8aa8" stroke="#c25578" stroke-width="2" />
<ellipse cx="30" cy="32" rx="8" ry="14" fill="#ffd0db" opacity="0.7" />
<path d="M36 78 L44 78 L42 84 L38 84 Z" fill="#c25578" />
<path d="M40 84 Q38 95 42 105" stroke="#5c3344" stroke-width="1.5" fill="none" />
</svg>