mirror of
https://github.com/ThisIsBenny/wishlist-app.git
synced 2025-06-07 05:57:41 +00:00
21 lines
447 B
Vue
21 lines
447 B
Vue
<script setup lang="ts">
|
|
import IconImagePlaceholder from './icons/IconImagePlaceholder.vue'
|
|
|
|
defineProps({
|
|
src: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
alt: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<img v-if="src" :src="src" :alt="alt" class="object-cover" />
|
|
<div v-else class="flex items-center justify-center bg-stone-100">
|
|
<IconImagePlaceholder class="h-36 w-36 fill-stone-300" />
|
|
</div>
|
|
</template>
|