16 lines
314 B
Vue
16 lines
314 B
Vue
|
|
<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>
|