mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-06-03 15:14:18 +00:00
fix missed props.x and props.y
This commit is contained in:
+3
-1
@@ -25,7 +25,9 @@ class G extends Component{
|
||||
|
||||
return <RNSVGGroup
|
||||
{...extractedProps}
|
||||
ref={ele => this.root = ele}
|
||||
ref={ele => {
|
||||
this.root = ele;
|
||||
}}
|
||||
>
|
||||
{this.props.children}
|
||||
</RNSVGGroup>;
|
||||
|
||||
Reference in New Issue
Block a user