import * as TabsPrimitive from "@radix-ui/react-tabs"; import { forwardRef, type ComponentPropsWithoutRef, type ElementRef } from "react"; import { tabsContentVariants, tabsListVariants, tabsTriggerVariants } from "./tabs.variants"; import { cn } from "../lib/cn"; import { createDataAttributes, createSlot } from "../lib/contracts"; export function Tabs({ className, orientation = "horizontal", ...props }: ComponentPropsWithoutRef) { return ( ); } export const TabsList = forwardRef< ElementRef, ComponentPropsWithoutRef >(function TabsList({ className, ...props }, ref) { return ( ); }); export const TabsTrigger = forwardRef< ElementRef, ComponentPropsWithoutRef >(function TabsTrigger({ className, disabled, ...props }, ref) { return ( ); }); export const TabsContent = forwardRef< ElementRef, ComponentPropsWithoutRef >(function TabsContent({ className, ...props }, ref) { return ( ); });