import { forwardRef } from 'react'; import * as TabsPrimitive from '@radix-ui/react-tabs'; import { cn } from '#utils'; export const TabsList = forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function TabsList({ className, ...props }, ref) { return ( ); });