parent
1742d6abda
commit
76584c35eb
11 changed files with 174 additions and 8 deletions
@ -0,0 +1,20 @@ |
||||
import React, {useState} from 'react'; |
||||
import {View, Text, Dimensions} from 'react-native'; |
||||
import tw from 'tailwind-react-native-classnames'; |
||||
|
||||
const width = Dimensions.get('window').width; |
||||
|
||||
function Or(props) { |
||||
return ( |
||||
<View |
||||
style={[tw.style('w-full flex flex-row justify-between items-center mt-3 mb-5')]}> |
||||
<View |
||||
style={{width: '43%', height: 1, backgroundColor: '#EFEFEF'}}></View> |
||||
<Text style={{fontSize: width / 27, color: '#C2C2C2'}}>یا</Text> |
||||
<View |
||||
style={{width: '43%', height: 1, backgroundColor: '#EFEFEF'}}></View> |
||||
</View> |
||||
); |
||||
} |
||||
|
||||
export default Or; |
After Width: | Height: | Size: 262 B |
After Width: | Height: | Size: 161 B |
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
Loading…
Reference in new issue