mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 12:27:44 +00:00
35 lines
927 B
Vue
35 lines
927 B
Vue
<script setup lang="ts">
|
|
import { type HTMLAttributes, computed } from 'vue'
|
|
import {
|
|
NavigationMenuTrigger,
|
|
type NavigationMenuTriggerProps,
|
|
useForwardProps,
|
|
} from 'radix-vue'
|
|
import { ChevronDownIcon } from '@radix-icons/vue'
|
|
import { navigationMenuTriggerStyle } from '.'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<NavigationMenuTriggerProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<NavigationMenuTrigger
|
|
v-bind="forwardedProps"
|
|
:class="cn(navigationMenuTriggerStyle(), 'group', props.class)"
|
|
>
|
|
<slot />
|
|
<ChevronDownIcon
|
|
class="relative top-px ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180"
|
|
aria-hidden="true"
|
|
/>
|
|
</NavigationMenuTrigger>
|
|
</template>
|