import * as TabsPrimitive from "@radix-ui/react-tabs"; import type { ComponentPropsWithoutRef } from "react"; import { cn } from "./utils"; export const Tabs = TabsPrimitive.Root; export function TabsList({ className, ...props }: ComponentPropsWithoutRef) { return ; } export function TabsTrigger({ className, ...props }: ComponentPropsWithoutRef) { return ; } export function TabsContent({ className, ...props }: ComponentPropsWithoutRef) { return ; }