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

Function ResizablePanelGroup

src/components/ui/resizable.tsx:9–23  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>)

Source from the content-addressed store, hash-verified

7import { cn } from "@/lib/utils"
8
9function ResizablePanelGroup({
10 className,
11 ...props
12}: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) {
13 return (
14 <ResizablePrimitive.PanelGroup
15 data-slot="resizable-panel-group"
16 className={cn(
17 "flex h-full w-full data-[panel-group-direction=vertical]:flex-col",
18 className
19 )}
20 {...props}
21 />
22 )
23}
24
25function ResizablePanel({
26 ...props

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected