import { cn } from '@/lib/utils'; import { Panel as PanelPrimitive } from '@xyflow/react'; import type { ComponentProps } from 'react'; type PanelProps = ComponentProps; export const Panel = ({ className, ...props }: PanelProps) => ( );