mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-03-01 10:48:57 +00:00
18 lines
430 B
Vue
18 lines
430 B
Vue
<script lang="ts" setup>
|
|
import { cn } from '@/lib/utils';
|
|
import { ChevronRight } from 'lucide-vue-next';
|
|
import type { HTMLAttributes } from 'vue';
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class'];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<li role="presentation" aria-hidden="true" :class="cn('[&>svg]:h-3.5 [&>svg]:w-3.5', props.class)">
|
|
<slot>
|
|
<ChevronRight />
|
|
</slot>
|
|
</li>
|
|
</template>
|