Files
housesof/src/components/molecules/PhotoCard.svelte

19 lines
376 B
Svelte

<script lang="ts">
import Image from '$components/atoms/Image.svelte'
export let id: string
export let alt: string
</script>
<div class="photo-card">
<Image
id={id}
sizes={{
small: { width: 224 },
medium: { width: 464 },
large: { width: 864 },
}}
ratio={1.5}
alt={alt}
/>
</div>