24 lines
512 B
Vue
24 lines
512 B
Vue
<script setup lang="ts">
|
|
import type { PrimitiveProps } from "reka-ui"
|
|
import type { HTMLAttributes } from "vue"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
interface Props extends PrimitiveProps {
|
|
class?: HTMLAttributes["class"]
|
|
}
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
as: "button",
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive
|
|
data-slot="attachment-trigger"
|
|
:as="as"
|
|
:as-child="asChild"
|
|
:class="cn('absolute inset-0 z-10 outline-none', props.class)"
|
|
>
|
|
<slot />
|
|
</Primitive>
|
|
</template>
|