shillerben-nuxt/components/LinkIconText.vue
2023-08-27 09:48:58 -05:00

24 lines
386 B
Vue

<script setup lang="ts">
defineProps({
imgSrc: {
type: String,
required: true
},
link: {
type: String,
required: true
}
})
</script>
<template>
<div>
<a :href="link">
<img :src="imgSrc" class="h-14 mx-auto"/>
<div class="text-lg text-white text-center">
<slot></slot>
</div>
</a>
</div>
</template>