"use client" import { SvgUse } from "@ivtui/base" import clsx from "clsx" import type * as React from "react" import * as ResizablePrimitive from "react-resizable-panels" 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 }