omnichat / src /lib /components /chat /Messages /ProfileImage.svelte
REXPro's picture
Upload 5247 files
c36067d verified
Raw
History Blame Contribute Delete
365 Bytes
<script lang="ts">
import { WEBUI_BASE_URL } from '$lib/constants';
import { safeImageUrl } from '$lib/utils/safeImageUrl';
export let className = 'size-8';
export let src = `${WEBUI_BASE_URL}/static/favicon.png`;
</script>
<img
aria-hidden="true"
src={safeImageUrl(src)}
class=" {className} object-cover rounded-full"
alt="profile"
draggable="false"
/>