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
While this works:
const svg = `<svg> <rect fill="red" width="100" height="100"/> </svg>` project.importSVG(svg)
This doesn't:
const svg = ` <svg> <rect fill="red" width="100" height="100"/> </svg> ` project.importSVG(svg)
The text was updated successfully, but these errors were encountered:
Sketch
Sorry, something went wrong.
5631279
This doesn't always work, for example the following string still fails:
` <?xml version="1.0" encoding="utf-8"?> <!-- Some Comment --> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <rect fill="red" width="100" height="100"/> </svg> `
65cc12e
lehni
No branches or pull requests
While this works:
This doesn't:
The text was updated successfully, but these errors were encountered: