Skip to content

sospartan/iconfont-map-builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iconfont-map-builder

Simple command tool to transform iconfont's css/codepoint file to a js mapping moudle .

I'm using the module in react-native-iconic-font to generate the iconic map file

Usage

install this tool via npm
npm install iconfont-map-builder -g

now use 'iconmap' command to transform css file iconmap -f test/font-awesome-v4.4.0.css -p '^\.fa-([a-z0-9-]+?):before$'

this command will generate a js file (...-iconmap.js) in the same folder with css file. You can use it in your project in any way you like.

Example:

var getIconChar = require('your-iconmap-file.js');

//react native render  
return (
<Text style={{fontFamily: 'fontawesome',fontSize:30}}>
map icon:{getIconChar('map')}
</Text>
);

About

Transform iconfont's css file to js 'name-character' map

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published