({
className,
...props
})
| 12 | />; |
| 13 | } |
| 14 | function TabsList({ |
| 15 | className, |
| 16 | ...props |
| 17 | }) { |
| 18 | return <TabsPrimitive.List |
| 19 | data-slot="tabs-list" |
| 20 | className={cn( |
| 21 | "bg-muted text-muted-foreground inline-flex h-9 w-fit items-center justify-center rounded-lg p-[3px]", |
| 22 | className |
| 23 | )} |
| 24 | {...props} |
| 25 | />; |
| 26 | } |
| 27 | function TabsTrigger({ |
| 28 | className, |
| 29 | ...props |