Application Android et IOS pour l'amicale des élèves
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

H1.js 266B

12345678910111213
  1. // @flow
  2. import variable from "./../variables/platform";
  3. export default (variables /*: * */ = variable) => {
  4. const h1Theme = {
  5. color: variables.textColor,
  6. fontSize: variables.fontSizeH1,
  7. lineHeight: variables.lineHeightH1,
  8. };
  9. return h1Theme;
  10. };