@ant-design/pro-flow
Version:
A React based Flow components
17 lines (16 loc) • 486 B
TypeScript
import { CSSProperties } from 'react';
import { BackgroundVariant } from 'reactflow';
interface BackgroundProps {
variant?: BackgroundVariant;
gap?: number | [number, number];
size?: number;
lineWidth?: number;
offset?: number;
color?: string;
style?: CSSProperties;
className?: string;
id?: string;
}
declare const _default: (props: BackgroundProps) => import("react/jsx-runtime").JSX.Element;
export default _default;
export { BackgroundVariant };