forked from vergnet/application-amicale
25 lines
463 B
JavaScript
25 lines
463 B
JavaScript
// @flow
|
|
|
|
export default () => {
|
|
const fabTheme = {
|
|
'NativeBase.Button': {
|
|
alignItems: 'center',
|
|
padding: null,
|
|
justifyContent: 'center',
|
|
'NativeBase.Icon': {
|
|
alignSelf: 'center',
|
|
fontSize: 20,
|
|
marginLeft: 0,
|
|
marginRight: 0
|
|
},
|
|
'NativeBase.IconNB': {
|
|
alignSelf: 'center',
|
|
fontSize: 20,
|
|
marginLeft: 0,
|
|
marginRight: 0
|
|
}
|
|
}
|
|
};
|
|
|
|
return fabTheme;
|
|
};
|