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