mirror of
https://github.com/zhigang1992/react-native-vector-icons.git
synced 2026-04-28 20:25:45 +08:00
86 lines
1.9 KiB
JavaScript
86 lines
1.9 KiB
JavaScript
/**
|
|
* EvilIcons icon set component.
|
|
* Usage: <EvilIcons name="icon-name" size={20} color="#4F8EF7" />
|
|
*
|
|
* @providesModule EvilIcons
|
|
*/
|
|
'use strict';
|
|
|
|
var createIconSet = require('createIconSet');
|
|
var glyphMap = {
|
|
"ei-archive": 61696,
|
|
"ei-arrow-down": 61697,
|
|
"ei-arrow-left": 61698,
|
|
"ei-arrow-right": 61699,
|
|
"ei-arrow-up": 61700,
|
|
"ei-bell": 61701,
|
|
"ei-calendar": 61702,
|
|
"ei-camera": 61703,
|
|
"ei-cart": 61704,
|
|
"ei-chart": 61705,
|
|
"ei-check": 61706,
|
|
"ei-chevron-down": 61707,
|
|
"ei-chevron-left": 61708,
|
|
"ei-chevron-right": 61709,
|
|
"ei-chevron-up": 61710,
|
|
"ei-clock": 61711,
|
|
"ei-close": 61712,
|
|
"ei-close-o": 61713,
|
|
"ei-comment": 61714,
|
|
"ei-credit-card": 61715,
|
|
"ei-envelope": 61716,
|
|
"ei-exclamation": 61717,
|
|
"ei-external-link": 61718,
|
|
"ei-eye": 61719,
|
|
"ei-gear": 61720,
|
|
"ei-heart": 61721,
|
|
"ei-image": 61722,
|
|
"ei-like": 61723,
|
|
"ei-link": 61724,
|
|
"ei-location": 61725,
|
|
"ei-lock": 61726,
|
|
"ei-minus": 61727,
|
|
"ei-navicon": 61728,
|
|
"ei-paperclip": 61729,
|
|
"ei-pencil": 61730,
|
|
"ei-play": 61731,
|
|
"ei-plus": 61732,
|
|
"ei-pointer": 61733,
|
|
"ei-question": 61734,
|
|
"ei-redo": 61735,
|
|
"ei-refresh": 61736,
|
|
"ei-retweet": 61737,
|
|
"ei-sc-facebook": 61738,
|
|
"ei-sc-github": 61739,
|
|
"ei-sc-google-plus": 61740,
|
|
"ei-sc-instagram": 61741,
|
|
"ei-sc-linkedin": 61742,
|
|
"ei-sc-odnoklassniki": 61743,
|
|
"ei-sc-skype": 61744,
|
|
"ei-sc-soundcloud": 61745,
|
|
"ei-sc-tumblr": 61746,
|
|
"ei-sc-twitter": 61747,
|
|
"ei-sc-vimeo": 61748,
|
|
"ei-sc-vk": 61749,
|
|
"ei-sc-youtube": 61750,
|
|
"ei-search": 61751,
|
|
"ei-share-apple": 61752,
|
|
"ei-share-google": 61753,
|
|
"ei-spinner": 61754,
|
|
"ei-spinner-2": 61755,
|
|
"ei-spinner-3": 61756,
|
|
"ei-star": 61757,
|
|
"ei-tag": 61758,
|
|
"ei-trash": 61759,
|
|
"ei-trophy": 61760,
|
|
"ei-undo": 61761,
|
|
"ei-unlock": 61762,
|
|
"ei-user": 61763
|
|
};
|
|
|
|
var EvilIcons = createIconSet(glyphMap, 'EvilIcons');
|
|
|
|
module.exports = EvilIcons;
|
|
module.exports.glyphMap = glyphMap;
|
|
|