Files
bullseye-app/src/lib/components/ui/tabs/tabs-content.svelte
T
hiperman 84077e0e37 add shadcn-svelte components
added
- button
- card
- field
- input
- label
- separator
- sonner
- tabs
2026-02-21 20:14:07 -05:00

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}
/>