1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-28 23:08:13 +09:00
elk/components/account/AccountAvatar.vue

12 lines
213 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
</script>
<template>
2022-11-23 13:20:59 +09:00
<img :src="account.avatar" :alt="account.username" rounded-full bg-gray:10>
</template>