feat(footer): more footer content
This commit is contained in:
15
app/components/footer/SocialAccount.vue
Normal file
15
app/components/footer/SocialAccount.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user