feat: chat controls ui

This commit is contained in:
Timothy J. Baek
2024-07-08 16:55:12 -07:00
parent 781ad70598
commit b8d153ebb2
8 changed files with 158 additions and 66 deletions

View File

@@ -0,0 +1,24 @@
<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">
<div class=" text-xl font-medium font-primary">Chat Controls</div>
<div>
<button
on:click={() => {
dispatch('close');
}}
>
<XMark className="size-4" />
</button>
</div>
</div>
<div>coming soon</div>
</div>