2024-04-22 09:38:51 +02:00
|
|
|
<template>
|
2024-07-21 22:55:08 +02:00
|
|
|
<a :href="`/@${account.acct}`" target="_blank"
|
2024-07-22 01:05:51 +02:00
|
|
|
class="shrink break-all rounded bg-background-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">
|
2024-05-12 10:37:57 +02:00
|
|
|
<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'`" />
|
2024-07-21 15:33:32 +02:00
|
|
|
{{ account.display_name || account.acct }}
|
2024-04-25 08:56:01 +02:00
|
|
|
</a>
|
2024-04-22 09:38:51 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2024-06-20 01:57:38 +02:00
|
|
|
import type { Account } from "@lysand-org/client/types";
|
2024-04-22 09:38:51 +02:00
|
|
|
|
2024-06-21 04:09:09 +02:00
|
|
|
defineProps<{
|
2024-04-22 09:38:51 +02:00
|
|
|
account: Account;
|
|
|
|
|
}>();
|
|
|
|
|
</script>
|