2022-12-07 03:11:25 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
editAvatarButton: {
|
2023-01-06 21:52:48 +00:00
|
|
|
marginTop: 8,
|
2022-12-07 03:11:25 +00:00
|
|
|
paddingVertical: 8,
|
2022-12-15 13:37:30 +00:00
|
|
|
paddingHorizontal: 12,
|
2023-01-06 21:52:48 +00:00
|
|
|
marginBottom: 0,
|
|
|
|
height: undefined
|
|
|
|
},
|
|
|
|
textButton: {
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: '600'
|
2022-12-07 03:11:25 +00:00
|
|
|
}
|
|
|
|
});
|