shadcn-vue/apps/www/registry/new-york/ui/breadcrumb/BreadcrumbSeparator.vue
2024-11-21 11:52:31 +08:00

22 lines
418 B
Vue

<script lang="ts" setup>
import type { HTMLAttributes } from 'vue'
import { cn } from '@/lib/utils'
import { ChevronRightIcon } from '@radix-icons/vue'
const props = defineProps<{
class?: HTMLAttributes['class']
}>()
</script>
<template>
<li
role="presentation"
aria-hidden="true"
:class="cn('[&>svg]:size-3.5', props.class)"
>
<slot>
<ChevronRightIcon />
</slot>
</li>
</template>