import React, {
Component
} from 'react-native';
import Svg, {
G,
Circle,
Line,
Rect,
Text
} from 'react-native-svg';
class GExample extends Component{
static title = 'G children props inherit';
render() {
return ;
}
}
class GTransform extends Component{
static title = 'G transform';
render() {
return ;
}
}
const icon = ;
const samples = [GExample, GTransform];
export {
icon,
samples
}