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.

H3.js 265B

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