application-amicale/native-base-theme/components/Fab.js
2020-01-28 20:07:21 +01:00

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;
};