-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathmappers.js
50 lines (50 loc) · 1.7 KB
/
mappers.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
export const KnownMappingFileTypes = [
".codepoints", ".css"
];
export const KnownMappers = [
{
name: "Material Icons",
mappingUrl: "https://raw.githubusercontent.com/google/material-design-icons/master/font/MaterialIcons-Regular.codepoints"
},
{
name: "fontcustom",
fileName: "foundation-icons.ttf",
uniqueIDPattern: "FontForge",
mappingUrl: "https://raw.githubusercontent.com/zurb/foundation-icon-fonts/master/foundation-icons.css",
prefix: "Fi"
},
{
name: "Ionicons",
mappingUrl: "https://raw.githubusercontent.com/ionic-team/ionicons/master/docs/css/ionicons.min.css",
prefix: "Ion,Ios"
},
{
name: "themify",
mappingUrl: "https://raw.githubusercontent.com/lykmapipo/themify-icons/master/css/themify-icons.css",
prefix: "Ti"
},
{
name: "Linearicons-Free",
mappingUrl: "https://raw.githubusercontent.com/cjpatoilo/linearicons/master/dist/web-font/style.css",
prefix: "Lnr"
},
{
name: "Typicons",
mappingUrl: "https://raw.githubusercontent.com/stephenhutchings/typicons.font/master/src/font/typicons.min.css",
prefix: "Typcn"
},
{
name: "Jam-icons",
mappingUrl: "https://raw.githubusercontent.com/michaelampr/jam/master/css/jam.min.css",
prefix: "Jam"
},
{
name: "Weather Icons Regular",
mappingUrl: "https://raw.githubusercontent.com/erikflowers/weather-icons/master/css/weather-icons.min.css",
prefix: "Wi"
}, {
name: "Entypo",
mappingUrl: "https://raw.githubusercontent.com/danielbruce/entypo/master/font/entypo.css",
prefix: "Icon"
}
];