import * as React from "react"; import * as TabsPrimitive from "@radix-ui/react-tabs"; import { cn } from "~/lib/utils"; function Tabs({ className, ...props }: React.ComponentProps) { return ( ); } function TabsList({ className, ...props }: React.ComponentProps) { return ( ); } function TabsTrigger({ className, ...props }: React.ComponentProps) { return ( ); } function TabsContent({ className, ...props }: React.ComponentProps) { return ( ); } export { Tabs, TabsList, TabsTrigger, TabsContent }; export const tabsStyle = "rounded-none bg-background data-[state=active]:bg-background! h-full data-[state=active]:shadow-none border-b-2 border-transparent border-t-0 border-r-0 border-l-0 data-[state=active]:border-primary!";