coyotte508's picture
coyotte508 HF staff
✨ Add home + workshop pages
65b4f03
raw
history blame
374 Bytes
<script lang="ts">
import type { Picture } from '$lib/types/Picture';
export let picture: Picture | undefined;
export let minStorage = 0;
</script>
{#if picture}
<img
alt={picture.name}
srcset={picture.storage
.slice(minStorage)
.map((format) => `/photos/raw/${format._id} ${format.width}w`)
.join(', ')}
{...$$restProps}
on:click
on:load
/>
{/if}