mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
27 lines
645 B
Vue
27 lines
645 B
Vue
<script setup lang="ts">
|
|
import type { Account } from 'masto'
|
|
|
|
const { link = true } = defineProps<{
|
|
account: Account
|
|
link?: boolean
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div flex gap-2>
|
|
<div p1>
|
|
<NuxtLink :to="link ? `/@${account.acct}` : null">
|
|
<AccountAvatar :account="account" w-10 h-10 />
|
|
</NuxtLink>
|
|
</div>
|
|
<NuxtLink flex flex-col :to="link ? `/@${account.acct}` : null">
|
|
<CommonRichContent font-bold :content="getDisplayName(account)" :emojis="account.emojis" />
|
|
<p op35 text-sm>
|
|
@{{ account.acct }}
|
|
</p>
|
|
<slot name="bottom" />
|
|
</NuxtLink>
|
|
<slot />
|
|
</div>
|
|
</template>
|