Function
Tabs
({
className,
...props
}: React.ComponentProps<typeof TabsPrimitive.Root>)
Source from the content-addressed store, hash-verified
| 6 | import { cn } from "@/lib/utils"; |
| 7 | |
| 8 | function Tabs({ |
| 9 | className, |
| 10 | ...props |
| 11 | }: React.ComponentProps<typeof TabsPrimitive.Root>) { |
| 12 | return ( |
| 13 | <TabsPrimitive.Root |
| 14 | data-slot="tabs" |
| 15 | className={cn("flex flex-col gap-2", className)} |
| 16 | {...props} |
| 17 | /> |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | function TabsList({ |
| 22 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected