Subtitle.js 286 B

123456789101112
  1. import variable from './../variables/platform';
  2. export default (variables = variable) => {
  3. const subtitleTheme = {
  4. fontSize: variables.subTitleFontSize,
  5. fontFamily: variables.titleFontfamily,
  6. color: variables.subtitleColor,
  7. textAlign: 'center',
  8. };
  9. return subtitleTheme;
  10. };