MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / SidebarSeparator

Function SidebarSeparator

src/components/ui/sidebar.tsx:357–369  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof Separator>)

Source from the content-addressed store, hash-verified

355}
356
357function 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
371function SidebarContent({ className, ...props }: React.ComponentProps<"div">) {
372 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected