H1.js 266 B

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. };