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