Function
SidebarGroupContent
({
className,
...props
}: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 438 | } |
| 439 | |
| 440 | function SidebarGroupContent({ |
| 441 | className, |
| 442 | ...props |
| 443 | }: React.ComponentProps<"div">) { |
| 444 | return ( |
| 445 | <div |
| 446 | data-slot="sidebar-group-content" |
| 447 | data-sidebar="group-content" |
| 448 | className={cn("w-full text-sm", className)} |
| 449 | {...props} |
| 450 | /> |
| 451 | ) |
| 452 | } |
| 453 | |
| 454 | function SidebarMenu({ className, ...props }: React.ComponentProps<"ul">) { |
| 455 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected