elk/components/search/SearchAccountInfo.vue

21 lines
597 B
Vue
Raw Normal View History

2023-01-05 22:50:14 +00:00
<script setup lang="ts">
2023-01-08 06:21:09 +00:00
import type { mastodon } from 'masto'
2023-01-05 22:50:14 +00:00
defineProps<{
2023-01-08 06:21:09 +00:00
account: mastodon.v1.Account
2023-01-05 22:50:14 +00:00
}>()
</script>
<template>
2023-01-07 14:55:10 +00:00
<div flex gap-2 items-center>
2023-01-05 22:50:14 +00:00
<AccountAvatar w-10 h-10 :account="account" shrink-0 />
<div flex="~ col gap1" shrink h-full overflow-hidden leading-none>
<div flex="~" gap-2>
<AccountDisplayName :account="account" line-clamp-1 ws-pre-wrap break-all text-base />
<AccountBotIndicator v-if="account.bot" text-xs />
2023-01-05 22:50:14 +00:00
</div>
<AccountHandle text-sm :account="account" text-secondary-light />
</div>
2023-01-07 14:55:10 +00:00
</div>
2023-01-05 22:50:14 +00:00
</template>