elk/components/account/AccountAvatar.vue

19 lines
293 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
</script>
<template>
2022-11-27 02:35:26 +00:00
<img
2022-11-27 13:12:25 +00:00
:key="account.avatar"
2022-11-27 02:35:26 +00:00
:src="account.avatar"
:alt="account.username"
loading="lazy"
rounded-full bg-gray:10
v-bind="$attrs"
>
</template>