2022-11-18 10:37:22 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
account: Account
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<a :href="`/@${account.acct}`" flex gap-2 font-bold items-center>
|
|
|
|
<img :src="account.avatar" class="w-5 h-5 rounded">
|
2022-11-21 08:14:07 +01:00
|
|
|
<CommonRichContent :content="account.displayName" />
|
2022-11-18 10:37:22 +01:00
|
|
|
</a>
|
|
|
|
</template>
|