Function
TabsContent
({
className,
...props
}: React.ComponentProps<typeof TabsPrimitive.Content>)
Source from the content-addressed store, hash-verified
| 51 | } |
| 52 | |
| 53 | function TabsContent({ |
| 54 | className, |
| 55 | ...props |
| 56 | }: React.ComponentProps<typeof TabsPrimitive.Content>) { |
| 57 | return ( |
| 58 | <TabsPrimitive.Content |
| 59 | data-slot="tabs-content" |
| 60 | className={cn("flex-1 outline-none", className)} |
| 61 | {...props} |
| 62 | /> |
| 63 | ) |
| 64 | } |
| 65 | |
| 66 | export { Tabs, TabsList, TabsTrigger, TabsContent } |
Callers
nothing calls this directly
Tested by
no test coverage detected