2025-10-20 08:57:51 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import type { TabsContentProps } from "reka-ui"
|
|
|
|
|
import type { HTMLAttributes } from "vue"
|
|
|
|
|
import { reactiveOmit } from "@vueuse/core"
|
|
|
|
|
import { TabsContent } from "reka-ui"
|
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
|
|
|
|
|
|
const props = defineProps<TabsContentProps & { class?: HTMLAttributes["class"] }>()
|
|
|
|
|
|
|
|
|
|
const delegatedProps = reactiveOmit(props, "class")
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<TabsContent
|
2025-12-08 13:23:33 +01:00
|
|
|
:class="cn('mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2', props.class)"
|
2025-10-20 08:57:51 +02:00
|
|
|
v-bind="delegatedProps"
|
|
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</TabsContent>
|
|
|
|
|
</template>
|