Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2.  * OurIcons icon set component.
  3.  * Usage: <OurIcons name="icon-name" size={20} color="#4F8EF7" />
  4.  *
  5.  * @providesModule OurIcons
  6.  */
  7. 'use strict';
  8.  
  9. var createIconSet = require('./lib/create-icon-set');
  10. var glyphMap = {};
  11.  
  12. var OurIcons = createIconSet(glyphMap, 'our-icons', 'OurIcons.ttf');
  13.  
  14. module.exports = OurIcons;
  15. module.exports.glyphMap = glyphMap;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement