2019-06-25 22:20:24 +02:00
|
|
|
// @flow
|
|
|
|
|
2020-01-28 20:07:21 +01:00
|
|
|
import variable from './../variables/platform';
|
2019-06-25 22:20:24 +02:00
|
|
|
|
2020-01-28 20:07:21 +01:00
|
|
|
export default (variables /* : * */ = variable) => {
|
2019-06-25 22:20:24 +02:00
|
|
|
const iconTheme = {
|
|
|
|
fontSize: variables.iconFontSize,
|
2020-01-28 20:07:21 +01:00
|
|
|
color: variable.textColor
|
2019-06-25 22:20:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return iconTheme;
|
|
|
|
};
|