15 lines
338 B
Svelte
15 lines
338 B
Svelte
<script lang="ts">
|
|
interface Props {
|
|
title: string;
|
|
description?: string;
|
|
}
|
|
|
|
let { title, description }: Props = $props();
|
|
</script>
|
|
|
|
<header>
|
|
<h3 class="mb-0.5 text-base font-medium">{title}</h3>
|
|
{#if description}
|
|
<p class="text-sm text-muted-foreground">{description}</p>
|
|
{/if}
|
|
</header>
|