Files
framit/app/components/footer/SocialAccount.vue

16 lines
314 B
Vue
Raw Normal View History

2026-02-05 12:24:04 +01:00
<template>
<UButton
:icon="props.icon"
color="neutral"
variant="ghost"
:to="props.link"
target="_blank"
:aria-label="props.label"
/>
</template>
<script setup lang="ts">
import type { SocialAccount } from '~/types/social-account';
const props = defineProps<SocialAccount>();
</script>