UNPKG

react-simple-arrows

Version:

react components which make it simple to draw svg arrows in a react app

8 lines (7 loc) 262 B
import { LineOrientation, Position } from '../constants'; export declare const calculateAestheticLinePath: ({ start, end, curviness, orientation, }: { start: Position; end: Position; curviness: number; orientation: LineOrientation; }) => string;