Revert "change circle radius percentage calculation"

This reverts commit 99ab08db25.
This commit is contained in:
Horcrux
2016-04-27 16:49:10 +08:00
parent bf5239b796
commit f717d8bd93
8 changed files with 21 additions and 49 deletions

View File

@@ -11,12 +11,12 @@ class CircleExample extends Component{
render() {
return <Svg
height="100"
width="140"
width="100"
>
<Circle
cx="50%"
cy="50%"
r="40%"
cx="50"
cy="50"
r="50"
fill="pink"
/>
</Svg>;