"use client" import * as React from "react" import * as TabsPrimitive from "@radix-ui/react-tabs" import { cn } from "@eloquent/styles" const Root = TabsPrimitive.Root import { tabsVariants } from "./variants" const { list, content, trigger } = tabsVariants() const TabsList = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >( function TabList({ className, ...props }, ref) { return ( ) } ) const TabsTrigger = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >( function TabsTrigger({ className, ...props }, ref) { return ( ) } ) const TabsContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >( function TabsContent({ className, ...props }, ref) { return ( ) } ) export const Tabs = { Root, List: TabsList, Trigger: TabsTrigger, Content: TabsContent }