Controls.svelte 497 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
5
6
7
8
9
<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">
Timothy J. Baek's avatar
Timothy J. Baek committed
10
		<div class=" text-lg font-medium font-primary">Chat Controls</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
11
12
13
14
15
16
17
18
19
20
21
22
23
24

		<div>
			<button
				on:click={() => {
					dispatch('close');
				}}
			>
				<XMark className="size-4" />
			</button>
		</div>
	</div>

	<div>coming soon</div>
</div>