var HalfCircle = React.createClass({
render: function() {
return (
<View style={[styles.halfCircle, this.props.style]} />
)
}
})
halfCircle: {
width: 50,
height: 100,
borderTopLeftRadius: 27.5,
borderTopRightRadius:27.5,
backgroundColor: 'red'
}