UNPKG

@matthewgapp/solidjs-flow

Version:

React Flow - A highly customizable React library for building node-based editors and interactive flow charts.

10 lines 460 B
import type { PanelPosition } from '@xyflow/system'; import { ParentProps, JSX } from 'solid-js'; export interface PanelProps extends JSX.HTMLAttributes<HTMLDivElement> { /** Set position of the panel * @example 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right' */ position?: PanelPosition; } export declare function Panel(_p: ParentProps<PanelProps>): JSX.Element; //# sourceMappingURL=index.d.ts.map