Function
ResizablePanelGroup
({
className,
...props
}: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>)
Source from the content-addressed store, hash-verified
| 7 | import { cn } from "@/lib/utils" |
| 8 | |
| 9 | function 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 | |
| 25 | function ResizablePanel({ |
| 26 | ...props |
Callers
nothing calls this directly
Tested by
no test coverage detected