mirror of
https://github.com/eitch/fontawesome-iconset.git
synced 2025-12-08 01:03:28 +01:00
Polymer/iron-icon compatible iconset based on Font Awesome SVG font
| .gitignore | ||
| bower.json | ||
| demo.html | ||
| fa-accessibility.html | ||
| fa-all.html | ||
| fa-brand.html | ||
| fa-chart.html | ||
| fa-currency.html | ||
| fa-directional.html | ||
| fa-file-type.html | ||
| fa-form-control.html | ||
| fa-gender.html | ||
| fa-hand.html | ||
| fa-medical.html | ||
| fa-payment.html | ||
| fa-spinner.html | ||
| fa-text-editor.html | ||
| fa-transportation.html | ||
| fa-video-player.html | ||
| fa-web-application.html | ||
| package.json | ||
| README.md | ||
| update.js | ||
Font Awesome as a PolymerElements/iron-iconset-svg component.
Set Up
bower install fontawesome-iconset
Use
Link your custom component alongside with other Polymer dependencies
<link rel="import" href="bower_components/fontawesome-iconset/fa-all.html">
Use the iconset
<iron-icon icon="fa:line-chart"></iron-icon>
You also can refer to an specific category of icons:
<link rel="import" href="bower_components/fontawesome-iconset/fa-gender.html">
And use it like this:
<iron-icon icon="fa-gender:venus"></iron-icon>
Update
To update to the latest version of FontAwesome, just install node modules and run "update"
npm install
node update
Soon there will be a production script to export only the icons to be used (like the original font-awesome-polymer-icons-generator but in node).