18 lines
647 B
Svelte
18 lines
647 B
Svelte
<div class="flex w-full justify-center mt-4 max-w-100vw">
|
|
<div class="w-5/6 max-w-80vw bg-darkbg rounded-md p-3 text-textcolor text-sm">
|
|
<h1 class="font-bold mb-2">{language.creatorNotes}
|
|
<button class="float-right" on:click={onRemove}>
|
|
<XIcon />
|
|
</button>
|
|
</h1>
|
|
<MultiLangDisplay value={quote} markdown={true} />
|
|
</div>
|
|
</div>
|
|
<script lang="ts">
|
|
import { XIcon } from "lucide-svelte";
|
|
import { language } from "src/lang";
|
|
import MultiLangDisplay from "../UI/GUI/MultiLangDisplay.svelte";
|
|
|
|
export let onRemove: () => void
|
|
export let quote:string
|
|
</script> |