Teren-app/resources/js/Components/ui/breadcrumb/BreadcrumbPage.vue
2025-12-01 19:30:53 +01:00

20 lines
362 B
Vue

<script lang="ts" setup>
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<span
role="link"
aria-disabled="true"
aria-current="page"
:class="cn('font-normal text-foreground', props.class)"
>
<slot />
</span>
</template>