application-amicale/native-base-theme/components/Fab.js

26 lines
463 B
JavaScript
Raw Normal View History

2019-06-25 22:20:24 +02:00
// @flow
2020-01-28 20:07:21 +01:00
export default () => {
2019-06-25 22:20:24 +02:00
const fabTheme = {
2020-01-28 20:07:21 +01:00
'NativeBase.Button': {
alignItems: 'center',
2019-06-25 22:20:24 +02:00
padding: null,
2020-01-28 20:07:21 +01:00
justifyContent: 'center',
'NativeBase.Icon': {
alignSelf: 'center',
2019-06-25 22:20:24 +02:00
fontSize: 20,
marginLeft: 0,
2020-01-28 20:07:21 +01:00
marginRight: 0
2019-06-25 22:20:24 +02:00
},
2020-01-28 20:07:21 +01:00
'NativeBase.IconNB': {
alignSelf: 'center',
2019-06-25 22:20:24 +02:00
fontSize: 20,
marginLeft: 0,
2020-01-28 20:07:21 +01:00
marginRight: 0
}
}
2019-06-25 22:20:24 +02:00
};
return fabTheme;
};