({
className,
...props
}: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>)
| 6 | import { cn } from "@/lib/utils" |
| 7 | |
| 8 | const ResizablePanelGroup = ({ |
| 9 | className, |
| 10 | ...props |
| 11 | }: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => ( |
| 12 | <ResizablePrimitive.PanelGroup |
| 13 | className={cn( |
| 14 | "flex h-full w-full data-[panel-group-direction=vertical]:flex-col", |
| 15 | className |
| 16 | )} |
| 17 | {...props} |
| 18 | /> |
| 19 | ) |
| 20 | |
| 21 | const ResizablePanel = ResizablePrimitive.Panel |
| 22 |
nothing calls this directly
no test coverage detected
searching dependent graphs…