You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SVGs which use translate(x) (but no y): the SVG spec is translate(x, [y = 0]). You get a warning on build, but it appears to display correctly.
SVGs that have a viewBox property on the svg tag, but no width and height properties, are rendered with the default size of 400x400 instead of the viewBox size.
This sun SVG icon has a myriad of issues. Specifically, the path with id="path9599" (orange circle background) appears correctly in many SVG viewers (Windows, Linux) but appears mis-translated to the right and down when the icon is rendered. (You can repro this by deleting everything from the icon except the root g tag and this path tag.)
Here's a list of things that should, but don't, render correctly (or aren't supported).
translate(x)
(but noy
): the SVG spec istranslate(x, [y = 0])
. You get a warning on build, but it appears to display correctly.viewBox
property on thesvg
tag, but nowidth
andheight
properties, are rendered with the default size of400x400
instead of theviewBox
size.id="path9599"
(orange circle background) appears correctly in many SVG viewers (Windows, Linux) but appears mis-translated to the right and down when the icon is rendered. (You can repro this by deleting everything from the icon except the rootg
tag and thispath
tag.)The text was updated successfully, but these errors were encountered: