shillerben-nuxt/components/LinkIconText.vue

24 lines
404 B
Vue
Raw Normal View History

2023-08-27 14:48:58 +00:00
<script setup lang="ts">
defineProps({
imgSrc: {
type: String,
required: true
},
link: {
type: String,
required: true
}
})
</script>
<template>
<div>
<a :href="link">
2023-09-01 02:13:35 +00:00
<img :src="imgSrc" class="h-8 lg:h-14 mx-auto"/>
<div class="text-md lg:text-lg text-white text-center">
2023-08-27 14:48:58 +00:00
<slot></slot>
</div>
</a>
</div>
</template>