@reactflow/background
Version:
Background component with different variants for React Flow
14 lines • 441 B
TypeScript
/// <reference types="react" />
type LinePatternProps = {
dimensions: [number, number];
lineWidth?: number;
color: string;
};
export declare function LinePattern({ color, dimensions, lineWidth }: LinePatternProps): JSX.Element;
type DotPatternProps = {
radius: number;
color: string;
};
export declare function DotPattern({ color, radius }: DotPatternProps): JSX.Element;
export {};
//# sourceMappingURL=Patterns.d.ts.map