2024-07-08 23:55:12 +00:00
|
|
|
<script>
|
|
|
|
|
import { createEventDispatcher } from 'svelte';
|
|
|
|
|
|
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
|
import XMark from '$lib/components/icons/XMark.svelte';
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<div class=" dark:text-white">
|
|
|
|
|
<div class="mb-2 flex justify-between items-center">
|
2024-07-09 01:31:58 +00:00
|
|
|
<div class=" text-lg font-medium font-primary">Chat Controls</div>
|
2024-07-08 23:55:12 +00:00
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<button
|
|
|
|
|
on:click={() => {
|
|
|
|
|
dispatch('close');
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<XMark className="size-4" />
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>coming soon</div>
|
|
|
|
|
</div>
|