Function
SidebarHeader
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 333 | } |
| 334 | |
| 335 | function SidebarHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 336 | return ( |
| 337 | <div |
| 338 | data-slot="sidebar-header" |
| 339 | data-sidebar="header" |
| 340 | className={cn("flex flex-col gap-2 p-2", className)} |
| 341 | {...props} |
| 342 | /> |
| 343 | ) |
| 344 | } |
| 345 | |
| 346 | function SidebarFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 347 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected