learndb/src/ItemCard.svelte

10 wiersze
276 B
Svelte

<script>
export let item;
</script>
<a href="#/item/{item.rowid}">
<img class="h-64 w-44 mr-6 mb-6 float-left border border-purple-200 rounded-md shadow-md md:shadow-xl transform transition ease-out duration-300 hover:scale-105"
src={item.image} alt="">
</a>