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 | "flex items-center gap-8", |
| 30 | "border border-[var(--color-border-weak)] border-b-0", |
| 31 | "rounded-t-md bg-[var(--color-bg-weak)] px-5", |
| 32 | className |
| 33 | )} |
| 34 | {...props} |
| 35 | /> |
| 36 | ) |
| 37 | } |
| 38 | |
| 39 | function TabsTrigger({ |
| 40 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected