We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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";```
The text was updated successfully, but these errors were encountered:
Any update on this one?
Sorry, something went wrong.
Fixed: Error: 'svgPathProperties' is not exported
0eddd09
veltman#108
Successfully merging a pull request may close this issue.
In your code
svPathProperties is not an exported name , the correct import is
The text was updated successfully, but these errors were encountered: