Function
TabsContent
({
className,
...props
}: React.ComponentProps<typeof TabsPrimitive.Content>)
Source from the content-addressed store, hash-verified
| 60 | } |
| 61 | |
| 62 | function TabsContent({ |
| 63 | className, |
| 64 | ...props |
| 65 | }: React.ComponentProps<typeof TabsPrimitive.Content>) { |
| 66 | return ( |
| 67 | <TabsPrimitive.Content |
| 68 | data-slot="tabs-content" |
| 69 | className={cn( |
| 70 | "border border-[var(--color-border-weak)] rounded-b-md bg-[var(--color-bg-weak)] p-4", |
| 71 | "outline-none", |
| 72 | className |
| 73 | )} |
| 74 | {...props} |
| 75 | /> |
| 76 | ) |
| 77 | } |
| 78 | |
| 79 | export { Tabs, TabsList, TabsTrigger, TabsContent } |
Callers
nothing calls this directly
Tested by
no test coverage detected