18 lines
352 B
Svelte
18 lines
352 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.ContentProps = $props();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<TabsPrimitive.Content
|
||
|
|
bind:ref
|
||
|
|
data-slot="tabs-content"
|
||
|
|
class={cn("flex-1 outline-none", className)}
|
||
|
|
{...restProps}
|
||
|
|
/>
|