MCPcopy Create free account
hub / github.com/Thanas-R/Virdis / ResizablePanelGroup

Function ResizablePanelGroup

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

Source from the content-addressed store, hash-verified

4import { cn } from "@/lib/utils";
5
6const 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
13const ResizablePanel = ResizablePrimitive.Panel;
14

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected