Fab.js 503 B

1234567891011121314151617181920212223
  1. import variable from "./../variables/platform";
  2. export default (variables = variable) => {
  3. const platform = variables.platform;
  4. const fabTheme = {
  5. "NativeBase.Button": {
  6. alignItems: "center",
  7. padding: null,
  8. justifyContent: "center",
  9. "NativeBase.Icon": {
  10. alignSelf: "center"
  11. },
  12. "NativeBase.IconNB": {
  13. alignSelf: "center",
  14. fontSize: 20,
  15. lineHeight: platform === "ios" ? 24 : undefined
  16. }
  17. }
  18. };
  19. return fabTheme;
  20. };