mirror of
https://github.com/versia-pub/frontend.git
synced 2026-06-14 15:39:15 +02:00
13 lines
324 B
Vue
13 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>
|