mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
16 lines
570 B
Vue
16 lines
570 B
Vue
<template>
|
|
<a :href="`/@${account.acct}`"
|
|
class="shrink break-all rounded bg-pink-700/80 text-pink-200 px-2 py-1 not-prose font-semibold cursor-pointer [&:not(:last-child)]:mr-1 duration-200 hover:bg-pink-600/30">
|
|
<img class="h-[1em] w-[1em] rounded ring-1 ring-white/5 inline align-middle mb-1 mr-1" :src="account.avatar"
|
|
alt="" />
|
|
{{ account.display_name }}
|
|
</a>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import type { Account } from "~/types/mastodon/account";
|
|
|
|
const props = defineProps<{
|
|
account: Account;
|
|
}>();
|
|
</script> |