import React, { Component } from 'react-native'; import Svg, { Ellipse } from 'react-native-svg'; class EllipseExample extends Component{ static title = 'Ellipse'; render() { return ; } } class PileEllipses extends Component{ static title = 'The following example creates three ellipses on top of each other'; render() { return ; } } class CombinedEllipses extends Component{ static title = 'The following example combines two ellipses (one yellow and one white)'; render() { return ; } } const icon = ; const samples = [EllipseExample, PileEllipses, CombinedEllipses]; export { icon, samples }