elk/components/account/AccountAvatar.vue
2022-11-23 12:20:59 +08:00

12 lines
213 B
Vue

<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
</script>
<template>
<img :src="account.avatar" :alt="account.username" rounded-full bg-gray:10>
</template>