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