Many an update!
This commit is contained in:
parent
85195d6c7a
commit
d588c49946
35 changed files with 3528 additions and 1142 deletions
13
app/components/MemberStatusIndicator.vue
Normal file
13
app/components/MemberStatusIndicator.vue
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<template>
|
||||
<div v-if="!isActive" class="inline-flex items-center gap-1">
|
||||
<Icon
|
||||
:name="statusConfig.icon"
|
||||
:class="['w-4 h-4', statusConfig.textColor]"
|
||||
:title="`Status: ${statusConfig.label}`"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const { isActive, statusConfig } = useMemberStatus()
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue