mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
29 lines
653 B
Vue
29 lines
653 B
Vue
<script setup lang="ts">
|
|
import { cn } from "@/lib/utils";
|
|
import { TabsList, type TabsListProps } from "reka-ui";
|
|
import { type HTMLAttributes, computed } from "vue";
|
|
|
|
const props = defineProps<
|
|
TabsListProps & { class?: HTMLAttributes["class"] }
|
|
>();
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props;
|
|
|
|
return delegated;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<TabsList
|
|
data-slot="tabs-list"
|
|
v-bind="delegatedProps"
|
|
:class="cn(
|
|
'bg-muted text-muted-foreground inline-flex h-9 w-fit items-center justify-center rounded-lg p-[3px]',
|
|
props.class,
|
|
)"
|
|
>
|
|
<slot />
|
|
</TabsList>
|
|
</template>
|