Namespace: icons.js

icons.js

Copy this file and make sure it has the same members/methods.

Since:
  • v1.0.0
Author:
  • Matthew McFarland

Members

charMap :Array

Icon Character Map in an Array.

An array of 2 celled arrays that contain the icon name and its character value.

Type:
  • Array
Since:
  • v1.2.0
Default Value:
  • 'see icons.js'
Example
[
  ["fa-glass", 0xf000],
  ["fa-music", 61441],
...]

].forEach(function (e) {
	exports.charMap[e[0]] = String.fromCharCode(e[1]);
});

defaultSize :String

Type:
  • String
Since:
  • v1.2.0
Default Value:
  • '16dp'

fontFamily :String

Type:
  • String
Since:
  • v1.2.0
Default Value:
  • 'FontAwesome'

prefix :String

Type:
  • String
Since:
  • v1.2.0
Default Value:
  • '.fa'