7 lines
207 B
Svelte
7 lines
207 B
Svelte
<script lang="ts">
|
|
export let description: string | null | undefined = undefined;
|
|
</script>
|
|
|
|
{#if description}
|
|
<p class="text-text-primary break-words whitespace-pre-wrap">{description.trim()}</p>
|
|
{/if}
|