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
Hi, I saw that there is a translate prop that is behaving rather strangely (Snack):
translate
<Svg height="100" width="100"> {/* Translated */} <Circle r="50" fill="green" translate={[50, 50]} /> {/* Not translated */} <Circle x="0" y="0" r="50" fill="red" translate={[50, 50]} /> <Circle r="40" fill="yellow" /> </Svg> <Svg height="100" width="100"> {/* Not translated */} <Rect width={50} height={50} fill="red" /> {/* Not translated */} <Rect width={40} height={40} fill="yellow" translate={[50, 50]} /> </Svg>
Circle
x
y
Should this be fixed/removed/mentioned in docs?
The text was updated successfully, but these errors were encountered:
Hey! 👋
It looks like you've omitted a few important sections from the issue template.
Please complete Description, Steps to reproduce, Snack or a link to a repository, SVG version, React Native version and Platforms sections.
Sorry, something went wrong.
Hello @MichalGniadek, here is a snack example of how it should work. If you have any other questions, please don't hesitate to ask.
No branches or pull requests
Question
Hi, I saw that there is a
translate
prop that is behaving rather strangely (Snack):Circle
when there aren'tx
andy
specifiedShould this be fixed/removed/mentioned in docs?
The text was updated successfully, but these errors were encountered: