frontend/app/components/notes/reactions/picker/category-header.vue
2025-12-09 22:32:22 +01:00

14 lines
324 B
Vue

<template>
<div class="sticky top-2 z-10 flex items-center justify-center p-2">
<Badge variant="secondary">{{ categoryName }}</Badge>
</div>
</template>
<script lang="ts" setup>
import { Badge } from "~/components/ui/badge";
const { categoryName } = defineProps<{
categoryName: string;
}>();
</script>