import * as React from 'react' import * as TabsPrimitive from '@radix-ui/react-tabs' import { cn } from '@/lib/utils' /** * Radix Tabs — handoff style: bottom-border accent на active tab, weight 600. * Use {@code }. */ export const Tabs = TabsPrimitive.Root export const TabsList = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function TabsList({ className, ...props }, ref) { return ( ) }) export const TabsTrigger = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function TabsTrigger({ className, ...props }, ref) { return ( ) }) export const TabsContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function TabsContent({ className, ...props }, ref) { return ( ) })