| import * as React from "react" | |
| import * as TabsPrimitive from "@radix-ui/react-tabs" | |
| import { cn } from "@/lib/utils" | |
| const Tabs = TabsPrimitive.Root | |
| function TabsList({ | |
| className, | |
| ...props | |
| }: React.ComponentProps<typeof TabsPrimitive.List>) { | |
| return ( | |
| <TabsPrimitive.List | |
| className={cn( | |
| "inline-flex h-9 items-center gap-1 rounded-lg border border-border bg-black/20 p-1", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| ) | |
| } | |
| function TabsTrigger({ | |
| className, | |
| ...props | |
| }: React.ComponentProps<typeof TabsPrimitive.Trigger>) { | |
| return ( | |
| <TabsPrimitive.Trigger | |
| className={cn( | |
| "inline-flex items-center justify-center gap-1.5 whitespace-nowrap rounded-md px-3 py-1 text-xs font-medium transition-all", | |
| "text-muted-foreground hover:text-foreground", | |
| "focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring", | |
| "data-[state=active]:bg-secondary data-[state=active]:text-foreground data-[state=active]:shadow-sm", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| ) | |
| } | |
| function TabsContent({ | |
| className, | |
| ...props | |
| }: React.ComponentProps<typeof TabsPrimitive.Content>) { | |
| return ( | |
| <TabsPrimitive.Content | |
| className={cn("mt-4 focus-visible:outline-none", className)} | |
| {...props} | |
| /> | |
| ) | |
| } | |
| export { Tabs, TabsList, TabsTrigger, TabsContent } | |