"use client"; import * as React from "react"; import * as TabsPrimitive from "@radix-ui/react-tabs"; import { cn } from "@/src/utils/tailwind"; const TabsBar = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); TabsBar.displayName = TabsPrimitive.Root.displayName; const TabsBarList = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); TabsBarList.displayName = TabsPrimitive.List.displayName; const TabsBarTrigger = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); TabsBarTrigger.displayName = TabsPrimitive.Trigger.displayName; const TabsBarContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); TabsBarContent.displayName = TabsPrimitive.Content.displayName; export { TabsBar, TabsBarList, TabsBarTrigger, TabsBarContent };