import * as React from "react" import { Root as TabsRootPrimitive, List as TabsListPrimitive, Trigger as TabsTriggerPrimitive, Content as TabsContentPrimitive, type TabsProps as TabsPrimitiveProps, type TabsListProps as TabsPrimitiveListProps, type TabsTriggerProps as TabsPrimitiveTriggerProps, type TabsContentProps as TabsPrimitiveContentProps, } from "@radix-ui/react-tabs" import { cn } from "../../lib/utils" type TabsProps = TabsPrimitiveProps & { className?: string } type TabsListProps = TabsPrimitiveListProps & { className?: string } type TabsTriggerProps = TabsPrimitiveTriggerProps & { className?: string } type TabsContentProps = TabsPrimitiveContentProps & { className?: string } const TabsRoot = TabsRootPrimitive as unknown as React.ComponentType const TabsListBase = TabsListPrimitive as unknown as React.ComponentType const TabsTriggerBase = TabsTriggerPrimitive as unknown as React.ComponentType const TabsContentBase = TabsContentPrimitive as unknown as React.ComponentType export function Tabs({ className, ...props }: TabsProps) { return ( ) } export function TabsList({ className, ...props }: TabsListProps) { return ( ) } export function TabsTrigger({ className, value, ...props }: TabsTriggerProps) { return ( ) } export function TabsContent({ className, value, ...props }: TabsContentProps) { return ( ) }