mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
22 lines
427 B
Vue
22 lines
427 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]:w-3.5 [&>svg]:h-3.5', props.class)"
|
||
|
|
>
|
||
|
|
<slot>
|
||
|
|
<ChevronRight />
|
||
|
|
</slot>
|
||
|
|
</li>
|
||
|
|
</template>
|