Icon.js 199 B

12345678910
  1. import variable from "./../variables/platform";
  2. export default (variables = variable) => {
  3. const iconTheme = {
  4. fontSize: variables.iconFontSize,
  5. color: "#000"
  6. };
  7. return iconTheme;
  8. };