We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent effcb7c commit 6693382Copy full SHA for 6693382
src/routes/og/Thumbnail.svelte
@@ -2,10 +2,9 @@
2
type Props = {
3
title: string;
4
description?: string;
5
- secondaryIconUrl?: string;
6
};
7
8
- let { title, description, secondaryIconUrl }: Props = $props();
+ let { title, description }: Props = $props();
9
</script>
10
11
<div class="flex h-full w-full border-b border-orange-600" style:border-bottom-width="32px">
@@ -27,10 +26,6 @@
27
26
<span class="text-orange-600" style:font-family="SansFontSemibold">Changelog</span>
28
</span>
29
</div>
30
- {#if secondaryIconUrl}
31
- {@const src = secondaryIconUrl}
32
- <img {src} alt="Secondary icon" class="ml-auto w-16" />
33
- {/if}
34
<div class="my-auto flex flex-col justify-center">
35
<p class="text-7xl" style:font-family="DisplayFont">{title}</p>
36
{#if description}
0 commit comments