From 234d83915fef0ad591a98310565748134f9607a8 Mon Sep 17 00:00:00 2001 From: imnyang Date: Sun, 18 Jan 2026 18:11:13 +0900 Subject: [PATCH] feat: remove Resizable component and related functionality --- src/components/ui/resizable.tsx | 53 --------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 src/components/ui/resizable.tsx diff --git a/src/components/ui/resizable.tsx b/src/components/ui/resizable.tsx deleted file mode 100644 index 63b6d02..0000000 --- a/src/components/ui/resizable.tsx +++ /dev/null @@ -1,53 +0,0 @@ -"use client" - -import * as React from "react" -import * as ResizablePrimitive from "react-resizable-panels" - -import { cn } from "@/lib/utils" - -function ResizablePanelGroup({ - className, - ...props -}: React.ComponentProps) { - return ( - - ) -} - -function ResizablePanel({ - ...props -}: React.ComponentProps) { - return -} - -function ResizableHandle({ - withHandle, - className, - ...props -}: React.ComponentProps & { - withHandle?: boolean -}) { - return ( - div]:rotate-90", - className - )} - {...props} - > - {withHandle && ( -
- )} - - ) -} - -export { ResizablePanelGroup, ResizablePanel, ResizableHandle }