16 lines
248 B
TypeScript
16 lines
248 B
TypeScript
|
import { StyleSheet } from 'react-native';
|
||
|
|
||
|
export default StyleSheet.create({
|
||
|
disabled: {
|
||
|
opacity: 0.3
|
||
|
},
|
||
|
avatarContainer: {
|
||
|
alignItems: 'center',
|
||
|
justifyContent: 'center',
|
||
|
marginBottom: 32
|
||
|
},
|
||
|
separator: {
|
||
|
marginVertical: 16
|
||
|
}
|
||
|
});
|