application-amicale/native-base-theme/components/Icon.js
2019-06-25 22:20:24 +02:00

12 lines
218 B
JavaScript

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