ProfileImage.svelte 263 Bytes
Newer Older
1
<script lang="ts">
2
3
	import { settings } from '$lib/stores';

4
5
6
	export let src = '/user.png';
</script>

7
<div class={$settings?.chatDirection === 'LTR' ? "mr-3" : "ml-3"}>
Timothy J. Baek's avatar
Timothy J. Baek committed
8
	<img {src} class=" w-8 object-cover rounded-full" alt="profile" draggable="false" />
9
</div>