mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-09 12:27:43 +00:00
22 lines
422 B
Vue
22 lines
422 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from "vue";
|
|
import { ChevronRightIcon } from "@radix-icons/vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
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>
|