ProfileImage.svelte 209 Bytes
Newer Older
1
2
3
4
<script lang="ts">
	export let src = '/user.png';
</script>

Timothy J. Baek's avatar
Timothy J. Baek committed
5
<div class=" mr-3">
Timothy J. Baek's avatar
Timothy J. Baek committed
6
7
8
9
10
11
12
	<img
		crossorigin="anonymous"
		{src}
		class=" w-8 object-cover rounded-full"
		alt="profile"
		draggable="false"
	/>
13
</div>