Files
ruff/playground/shared/src/ResizeHandle.tsx
Micha Reiser ded9c69888 [playground] Extract shared components (#16819)
## Summary
Extract components that can be shared with the Red Knot playground.

## Test Plan

`npm start`
2025-03-18 08:43:47 +01:00

14 lines
400 B
TypeScript

import { PanelResizeHandle } from "react-resizable-panels";
export function HorizontalResizeHandle() {
return (
<PanelResizeHandle className="cursor-ew-resize w-0.5 bg-gray-200 hover:bg-gray-300"></PanelResizeHandle>
);
}
export function VerticalResizeHandle() {
return (
<PanelResizeHandle className="cursor-eh-resize h-0.5 bg-gray-200 hover:bg-gray-300"></PanelResizeHandle>
);
}