Title.js 389 B

123456789101112131415
  1. import { Platform } from "react-native";
  2. import variable from "./../variables/platform";
  3. export default (variables = variable) => {
  4. const titleTheme = {
  5. fontSize: variables.titleFontSize,
  6. fontFamily: variables.titleFontfamily,
  7. color: variables.titleFontColor,
  8. fontWeight: Platform.OS === "ios" ? "600" : undefined,
  9. textAlign: "center"
  10. };
  11. return titleTheme;
  12. };