21 lines
483 B
Vue
21 lines
483 B
Vue
<script lang="ts" setup>
|
|
import type { PrimitiveProps } from "reka-ui"
|
|
import type { HTMLAttributes } from "vue"
|
|
import { Primitive } from "reka-ui"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const props = withDefaults(defineProps<PrimitiveProps & { class?: HTMLAttributes["class"] }>(), {
|
|
as: "a",
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive
|
|
:as="as"
|
|
:as-child="asChild"
|
|
:class="cn('transition-colors hover:text-foreground', props.class)"
|
|
>
|
|
<slot />
|
|
</Primitive>
|
|
</template>
|