application-amicale/native-base-theme/components/Fab.js
2019-06-25 22:20:24 +02:00

29 lines
585 B
JavaScript

// @flow
import variable from "./../variables/platform";
export default (variables /*: * */ = variable) => {
const platform = variables.platform;
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;
};