Spaces:
Runtime error
Runtime error
File size: 366 Bytes
9e93b10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <script lang="ts">
import { REXPRO_BASE_URL } from "$lib/constants";
import { safeImageUrl } from "$lib/utils/safeImageUrl";
export let className = "size-8";
export let src = `${REXPRO_BASE_URL}/static/favicon.png`;
</script>
<img
aria-hidden="true"
src={safeImageUrl(src)}
class=" {className} object-cover rounded-lg"
alt="profile"
draggable="false"
/>
|