flubber icon indicating copy to clipboard operation
flubber copied to clipboard

Error: 'svgPathProperties' is not exported

Open prieston opened this issue 4 years ago • 1 comments

In your code

node_modules/flubber/src/svg.js (2:9)
1: import Path from "svgpath";
2: import { svgPathProperties } from "svg-path-properties";
            ^
3: import normalizeRing from "./normalize.js";
4: import { isFiniteNumber } from "./math.js";

svPathProperties is not an exported name , the correct import is

2: import svgPathProperties from "svg-path-properties";
            ^
3: import normalizeRing from "./normalize.js";
4: import { isFiniteNumber } from "./math.js";```


prieston avatar May 19 '20 11:05 prieston

Any update on this one?

andreas-trad avatar Nov 11 '20 20:11 andreas-trad