You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
582 B
20 lines
582 B
import React, {useState} from 'react'; |
|
import {View, Text, Dimensions} from 'react-native'; |
|
import tw from 'tailwind-rn'; |
|
|
|
const width = Dimensions.get('window').width; |
|
|
|
function Or(props) { |
|
return ( |
|
<View |
|
style={[tw('w-full flex flex-row justify-between items-center my-3')]}> |
|
<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;
|
|
|