Files
oki-podcast-reader/src/content/components/content-title.svelte
T

12 lines
340 B
Svelte
Raw Normal View History

2023-07-09 22:18:06 +01:00
<script lang="ts">
import Anchor from './anchor.svelte';
export let title: string;
export let subtitle: string | undefined = undefined;
</script>
<h3 class="text-xl font-medium leading-relaxed text-mono-900"><Anchor value={title} /></h3>
{#if subtitle}
<p class="text-xl font-normal leading-normal text-mono-500">{subtitle}</p>
{/if}