Function
SidebarGroup
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 383 | } |
| 384 | |
| 385 | function SidebarGroup({ className, ...props }: React.ComponentProps<"div">) { |
| 386 | return ( |
| 387 | <div |
| 388 | data-slot="sidebar-group" |
| 389 | data-sidebar="group" |
| 390 | className={cn("relative flex w-full min-w-0 flex-col p-2", className)} |
| 391 | {...props} |
| 392 | /> |
| 393 | ) |
| 394 | } |
| 395 | |
| 396 | function SidebarGroupLabel({ |
| 397 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected