MCPcopy
hub / github.com/chartdb/chartdb / ResizableHandle

Function ResizableHandle

src/components/resizable/resizable.tsx:22–42  ·  view source on GitHub ↗
({
    withHandle,
    className,
    ...props
}: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
    withHandle?: boolean;
})

Source from the content-addressed store, hash-verified

20const ResizablePanel = ResizablePrimitive.Panel;
21
22const ResizableHandle = ({
23 withHandle,
24 className,
25 ...props
26}: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
27 withHandle?: boolean;
28}) => (
29 <ResizablePrimitive.PanelResizeHandle
30 className={cn(
31 'relative flex w-px items-center justify-center bg-border after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1 data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:-translate-y-1/2 data-[panel-group-direction=vertical]:after:translate-x-0 [&[data-panel-group-direction=vertical]>div]:rotate-90',
32 className
33 )}
34 {...props}
35 >
36 {withHandle && (
37 <div className="z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border">
38 <DragHandleDots2Icon className="size-2.5" />
39 </div>
40 )}
41 </ResizablePrimitive.PanelResizeHandle>
42);
43
44export { ResizablePanelGroup, ResizablePanel, ResizableHandle };

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected