import * as React from "react"; import * as ResizablePrimitive from "react-resizable-panels"; import { cn } from "@sparkle/lib/utils"; type ResizablePanelGroupProps = React.ComponentProps< typeof ResizablePrimitive.PanelGroup >; const ResizablePanelGroup: React.FC = ({ className, ...props }) => ( ); const ResizablePanel = ResizablePrimitive.Panel; const ResizableHandle = ({ withHandle, className, ...props }: React.ComponentProps & { withHandle?: boolean; }) => ( div]:s-rotate-90", "s-bg-gray-100 dark:s-bg-border-night", className )} {...props} > {withHandle && (
)} ); export { ResizableHandle, ResizablePanel, ResizablePanelGroup };