Function
TabsList
({
className,
...props
}: React.ComponentProps<typeof TabsPrimitive.List>)
Source from the content-addressed store, hash-verified
| 19 | } |
| 20 | |
| 21 | function TabsList({ |
| 22 | className, |
| 23 | ...props |
| 24 | }: React.ComponentProps<typeof TabsPrimitive.List>) { |
| 25 | return ( |
| 26 | <TabsPrimitive.List |
| 27 | data-slot="tabs-list" |
| 28 | className={cn( |
| 29 | "bg-muted text-muted-foreground inline-flex h-9 w-fit items-center justify-center rounded-lg p-[3px]", |
| 30 | className |
| 31 | )} |
| 32 | {...props} |
| 33 | /> |
| 34 | ); |
| 35 | } |
| 36 | |
| 37 | function TabsTrigger({ |
| 38 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected