Function
ResizablePanelGroup
({ className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>)
Source from the content-addressed store, hash-verified
| 4 | import { cn } from "@/lib/utils"; |
| 5 | |
| 6 | const ResizablePanelGroup = ({ className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => ( |
| 7 | <ResizablePrimitive.PanelGroup |
| 8 | className={cn("flex h-full w-full data-[panel-group-direction=vertical]:flex-col", className)} |
| 9 | {...props} |
| 10 | /> |
| 11 | ); |
| 12 | |
| 13 | const ResizablePanel = ResizablePrimitive.Panel; |
| 14 | |
Callers
nothing calls this directly
Tested by
no test coverage detected