forked from vergnet/application-amicale
14 lines
266 B
JavaScript
14 lines
266 B
JavaScript
|
// @flow
|
||
|
|
||
|
import variable from "./../variables/platform";
|
||
|
|
||
|
export default (variables /*: * */ = variable) => {
|
||
|
const h1Theme = {
|
||
|
color: variables.textColor,
|
||
|
fontSize: variables.fontSizeH1,
|
||
|
lineHeight: variables.lineHeightH1,
|
||
|
};
|
||
|
|
||
|
return h1Theme;
|
||
|
};
|