mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
20 lines
335 B
Vue
20 lines
335 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from "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>
|