Function
SidebarSeparator
({
className,
...props
}: React.ComponentProps<typeof Separator>)
Source from the content-addressed store, hash-verified
| 355 | } |
| 356 | |
| 357 | function SidebarSeparator({ |
| 358 | className, |
| 359 | ...props |
| 360 | }: React.ComponentProps<typeof Separator>) { |
| 361 | return ( |
| 362 | <Separator |
| 363 | data-slot="sidebar-separator" |
| 364 | data-sidebar="separator" |
| 365 | className={cn("bg-sidebar-border mx-2 w-auto", className)} |
| 366 | {...props} |
| 367 | /> |
| 368 | ) |
| 369 | } |
| 370 | |
| 371 | function SidebarContent({ className, ...props }: React.ComponentProps<"div">) { |
| 372 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected