@matthewgapp/solidjs-flow
Version:
React Flow - A highly customizable React library for building node-based editors and interactive flow charts.
15 lines • 487 B
TypeScript
import { BackgroundVariant } from './types';
type LinePatternProps = {
dimensions: [number, number];
variant: BackgroundVariant;
lineWidth?: number;
className?: string;
};
export declare function LinePattern(p: LinePatternProps): import("solid-js").JSX.Element;
type DotPatternProps = {
radius: number;
className?: string;
};
export declare function DotPattern(p: DotPatternProps): import("solid-js").JSX.Element;
export {};
//# sourceMappingURL=Patterns.d.ts.map