34 lines
1.3 KiB
Vue
34 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
import { Primitive, type PrimitiveProps } from 'reka-ui'
|
|
|
|
const props = withDefaults(defineProps<PrimitiveProps & {
|
|
showOnHover?: boolean
|
|
class?: HTMLAttributes['class']
|
|
}>(), {
|
|
as: 'button',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive
|
|
data-sidebar="menu-action"
|
|
:class="cn(
|
|
'absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 peer-hover/menu-button:text-sidebar-accent-foreground [&>svg]:size-4 [&>svg]:shrink-0',
|
|
'after:absolute after:-inset-2 after:md:hidden',
|
|
'peer-data-[size=sm]/menu-button:top-1',
|
|
'peer-data-[size=default]/menu-button:top-1.5',
|
|
'peer-data-[size=lg]/menu-button:top-2.5',
|
|
'group-data-[collapsible=icon]:hidden',
|
|
showOnHover
|
|
&& 'group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 peer-data-[active=true]/menu-button:text-sidebar-accent-foreground md:opacity-0',
|
|
props.class,
|
|
)"
|
|
:as="as"
|
|
:as-child="asChild"
|
|
>
|
|
<slot />
|
|
</Primitive>
|
|
</template>
|