import { ComponentPropsWithoutRef, ElementRef, forwardRef } from 'react' import * as TabsPrimitive from '@radix-ui/react-tabs' import { clsx } from 'clsx' import s from './tabs.module.scss' const Tabs = TabsPrimitive.Root const TabsList = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) TabsList.displayName = TabsPrimitive.List.displayName const TabsTrigger = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) TabsTrigger.displayName = TabsPrimitive.Trigger.displayName const TabsContent = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) TabsContent.displayName = TabsPrimitive.Content.displayName export { Tabs, TabsList, TabsTrigger, TabsContent }