I'm struggling with adding a border on the bottom and left sides. Even though I've specified the properties, the border is covering the circle instead of surrounding it.
<View style={{
borderBottomColor:'red',
borderBottomWidth:20,
borderRadius:500,
position: 'absolute',
left: 0,
top: 0,
transform:[{rotate:('180deg')}],
height: 150,
width: 150,
backgroundColor: 'orange',
boxSizing: 'border-box',
zIndex: 2000,
overflow: 'hidden'
}}></View>
https://i.sstatic.net/lyLu9.png
The original intention was to achieve this visual result as shown in the Codepen (https://codepen.io/anon/pen/bmdmWq)