13 lines
266 B
JavaScript
13 lines
266 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;
|
|
};
|