mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
19 lines
293 B
Vue
19 lines
293 B
Vue
<script setup lang="ts">
|
|
import type { Account } from 'masto'
|
|
|
|
defineProps<{
|
|
account: Account
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<img
|
|
:key="account.avatar"
|
|
:src="account.avatar"
|
|
:alt="account.username"
|
|
loading="lazy"
|
|
rounded-full bg-gray:10
|
|
v-bind="$attrs"
|
|
>
|
|
</template>
|