Files
dockhand/lib/components/ui/tabs/tabs-list.svelte
Jarek Krochmalski 62e3c6439e Initial commit
2025-12-28 21:16:03 +01:00

21 lines
438 B
Svelte

<script lang="ts">
import { Tabs as TabsPrimitive } from "bits-ui";
import { cn } from "$lib/utils.js";
let {
ref = $bindable(null),
class: className,
...restProps
}: TabsPrimitive.ListProps = $props();
</script>
<TabsPrimitive.List
bind:ref
data-slot="tabs-list"
class={cn(
"bg-muted/50 text-muted-foreground inline-flex h-10 w-fit items-center justify-center rounded-t-lg p-1 gap-1",
className
)}
{...restProps}
/>