'use client'; import * as TabsPrimitive from '@radix-ui/react-tabs'; import { type ComponentPropsWithoutRef, type ComponentRef, forwardRef, } from 'react'; import { cn } from '@/utils/tw-merge'; const Tabs = TabsPrimitive.Root; const TabsList = forwardRef< ComponentRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); TabsList.displayName = TabsPrimitive.List.displayName; const TabsTrigger = forwardRef< ComponentRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); TabsTrigger.displayName = TabsPrimitive.Trigger.displayName; const TabsContent = forwardRef< ComponentRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); TabsContent.displayName = TabsPrimitive.Content.displayName; export { Tabs, TabsContent, TabsList, TabsTrigger, };