2025-10-20 08:57:51 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import type { TabsListProps } from "reka-ui"
|
|
|
|
|
import type { HTMLAttributes } from "vue"
|
|
|
|
|
import { reactiveOmit } from "@vueuse/core"
|
|
|
|
|
import { TabsList } from "reka-ui"
|
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
|
|
|
|
|
|
const props = defineProps<TabsListProps & { class?: HTMLAttributes["class"] }>()
|
|
|
|
|
|
|
|
|
|
const delegatedProps = reactiveOmit(props, "class")
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<TabsList
|
|
|
|
|
v-bind="delegatedProps"
|
|
|
|
|
:class="cn(
|
2025-12-08 13:23:33 +01:00
|
|
|
'inline-flex items-center justify-center rounded-md bg-muted p-1 text-muted-foreground',
|
2025-10-20 08:57:51 +02:00
|
|
|
props.class,
|
|
|
|
|
)"
|
|
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</TabsList>
|
|
|
|
|
</template>
|