mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
16 lines
630 B
Vue
16 lines
630 B
Vue
<template>
|
|
<a :href="`/@${account.acct}`"
|
|
class="shrink break-all rounded bg-dark-200 ring-1 ring-white/5 ring-inset text-primary-200 px-2 py-1 not-prose font-semibold cursor-pointer [&:not(:last-child)]:mr-1 duration-200 hover:bg-primary-600/30">
|
|
<img class="size-[1em] rounded ring-1 ring-white/5 !inline align-middle mb-1 mr-1" :src="account.avatar"
|
|
:alt="`${account.acct}'s avatar'`" />
|
|
{{ account.display_name || account.acct }}
|
|
</a>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import type { Account } from "@lysand-org/client/types";
|
|
|
|
defineProps<{
|
|
account: Account;
|
|
}>();
|
|
</script> |