Files
notxia.github.io/src/views/contacts/ContactLink.vue
2023-01-17 15:48:54 +01:00

19 lines
489 B
Vue

<template>
<p class="my-4 text-center">
<a :href="props.url">
<div class="inline-flex items-center">
<img :src="props.icon" alt="Github" class="h-7 mr-2 dark:invert" />
<span class="text-xl truncate">{{ props.label }}</span>
</div>
</a>
</p>
</template>
<script setup lang="ts">
const props = defineProps({
url: String,
label: String,
icon: String, alt: String
});
</script>