UNPKG

moppium-react-flow-renderer

Version:

[![react-flow](https://user-images.githubusercontent.com/2857535/95224198-b2540000-07fa-11eb-832d-361d72d60345.jpg)](https://reactflow.dev)

15 lines (14 loc) 486 B
import React, { HTMLAttributes } from 'react'; import { BackgroundVariant } from '../../types'; import './style.css'; export interface BackgroundProps extends HTMLAttributes<SVGElement> { variant?: BackgroundVariant; gap?: number; color?: string; size?: number; } declare const _default: React.MemoExoticComponent<{ ({ variant, gap, size, color, style, className, }: BackgroundProps): JSX.Element; displayName: string; }>; export default _default;