mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 20:37:44 +00:00
22 lines
418 B
Vue
22 lines
418 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>
|