mirror of
https://github.com/Xevion/the-office.git
synced 2026-01-31 06:26:18 -06:00
15 lines
323 B
Vue
15 lines
323 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from 'vue';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class'];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<li data-slot="breadcrumb-item" :class="cn('inline-flex items-center gap-1.5', props.class)">
|
|
<slot />
|
|
</li>
|
|
</template>
|