application-amicale/native-base-theme/components/Icon.js
2020-01-28 20:07:21 +01:00

12 lines
231 B
JavaScript

// @flow
import variable from './../variables/platform';
export default (variables /* : * */ = variable) => {
const iconTheme = {
fontSize: variables.iconFontSize,
color: variable.textColor
};
return iconTheme;
};