mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
19 lines
493 B
Vue
19 lines
493 B
Vue
<script setup lang="ts">
|
|
import type { Account } from 'masto'
|
|
|
|
defineProps<{
|
|
account: Account
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div flex justify-between>
|
|
<AccountInfo :account="account" p3 />
|
|
<div h-full p5>
|
|
<!-- TODO is following logic and actions -->
|
|
<div v-if="false" color-purple hover:color-gray hover:cursor-pointer i-ri:user-unfollow-fill />
|
|
<div v-else color-gray hover:color-purple hover:cursor-pointer i-ri:user-follow-fill />
|
|
</div>
|
|
</div>
|
|
</template>
|