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