WebIndex/components/widget/SocialMediaWidget.vue

25 lines
392 B
Vue
Raw Normal View History

2024-11-17 11:45:08 +08:00
<script lang="ts" setup>
defineProps<{
icon: string[]
url: string
title: string
}>()
</script>
<template>
<div class="flex gap-4 text-xl">
2025-01-13 21:51:37 +08:00
<a
:key="url"
:href="url"
:title="title"
class="flex items-center justify-center transition-all hover:scale-125"
>
<font-awesome-icon :icon="icon" />
2024-11-17 11:45:08 +08:00
</a>
</div>
</template>
<style scoped>
2025-01-13 21:51:37 +08:00
</style>