Вы можете обновить значения в зависимости от ваших требований.
<View>
<View style={{
width: 120,
padding: 10,
paddingLeft: 20,
justifyContent:'center',
alignItems:'center',
backgroundColor:'red',
height: 40,
borderTopRightRadius: 3,
borderBottomRightRadius: 3}}>
<Text style={{ color:'#FFF', fontWeight:'bold'}}>Overview</Text>
</View>
<View style={{width: 0,
height: 0,
backgroundColor: 'transparent',
borderStyle: 'solid',
borderRightWidth: 20,
borderTopWidth: 20,
borderRightColor: 'transparent',
borderTopColor: 'red',
transform: [
{rotate: '90deg'}
]}}
/>