37 lines
617 B
TypeScript
37 lines
617 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
import sharedStyles from '../Styles';
|
|
|
|
export default StyleSheet.create({
|
|
disabled: {
|
|
opacity: 0.3
|
|
},
|
|
avatarContainer: {
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
marginBottom: 32
|
|
},
|
|
separator: {
|
|
marginVertical: 16
|
|
},
|
|
itemLabel: {
|
|
marginBottom: 12,
|
|
fontSize: 14,
|
|
...sharedStyles.textSemibold
|
|
},
|
|
avatarButton: {
|
|
width: 64,
|
|
height: 64,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
marginRight: 20,
|
|
marginBottom: 12,
|
|
borderRadius: 4
|
|
},
|
|
containerAvatarSuggestion: {
|
|
flex: 1,
|
|
flexWrap: 'wrap',
|
|
flexDirection: 'row'
|
|
}
|
|
});
|