Function
SidebarContent
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 369 | } |
| 370 | |
| 371 | function SidebarContent({ className, ...props }: React.ComponentProps<"div">) { |
| 372 | return ( |
| 373 | <div |
| 374 | data-slot="sidebar-content" |
| 375 | data-sidebar="content" |
| 376 | className={cn( |
| 377 | "flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden", |
| 378 | className |
| 379 | )} |
| 380 | {...props} |
| 381 | /> |
| 382 | ) |
| 383 | } |
| 384 | |
| 385 | function SidebarGroup({ className, ...props }: React.ComponentProps<"div">) { |
| 386 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected