Added tag search for events and characters

This commit is contained in:
Alexis
2024-04-18 23:02:05 +02:00
parent 4626467c3d
commit 5b6fa82d1b
24 changed files with 649 additions and 56 deletions

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
import type { HTMLAttributes } from 'vue'
import { cn } from '@/lib/utils'
const props = defineProps<{
class?: HTMLAttributes['class']
}>()
</script>
<template>
<span :class="cn('ml-auto text-xs tracking-widest text-muted-foreground', props.class)">
<slot />
</span>
</template>