|
<script setup lang="ts">
|
|
import type { mastodon } from 'masto'
|
|
|
|
defineProps<{
|
|
account: mastodon.v1.Account
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<ContentRich
|
|
:content="getDisplayName(account, { rich: true })"
|
|
:emojis="account.emojis"
|
|
:markdown="false"
|
|
/>
|
|
</template>
|