ProfileImage.svelte 298 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
9
10
11
12
13
14
	<img
		crossorigin="anonymous"
		{src}
		class=" w-8 object-cover rounded-full"
		alt="profile"
		draggable="false"
	/>
15
</div>