Icon.js 231 B

123456789101112
  1. // @flow
  2. import variable from './../variables/platform';
  3. export default (variables /* : * */ = variable) => {
  4. const iconTheme = {
  5. fontSize: variables.iconFontSize,
  6. color: variable.textColor
  7. };
  8. return iconTheme;
  9. };