Created
July 7, 2017 17:24
-
-
Save PedroHLC/3d889fa555a53fff428de68fb340a57c to your computer and use it in GitHub Desktop.
FontAwesome on Elm using unicode tags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module FontAwesome.Helper exposing (..) | |
import Css exposing (Style, Snippet, fontFamilies, before) | |
type alias UnicodeTag = | |
String | |
fontAwesome : Style | |
fontAwesome = | |
fontFamilies [ "FontAwesome" ] | |
faIcon : UnicodeTag -> Style | |
faIcon icon = | |
icon | |
|> (\tag -> "\"\\" ++ tag ++ "\"") | |
|> property "content" | |
fa : UnicodeTag -> Style | |
fa icon = | |
icon | |
|> faIcon | |
|> List.singleton | |
|> (::) fontAwesome | |
|> before |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module FontAwesome.Icons exposing (..) | |
import FontAwesome.Helper exposing (UnicodeTag) | |
-- Auto generated from https://github.com/FortAwesome/Font-Awesome/blob/master/src/icons.yml | |
-- used regex: / - name:\s*[\w|\-\s\(\)\.\'\/]*\n\s*id:\s*([\w|\-]*)\s*unicode:\s*([a-f|0-9]*)(?>\n[\r\t\f ]*(?>\w*:|-)\s*.*)*/g | |
-- followed by replacing /-(.)/ with /U$1 | |
glass : UnicodeTag | |
glass = | |
"f000" | |
music : UnicodeTag | |
music = | |
"f001" | |
search : UnicodeTag | |
search = | |
"f002" | |
envelopeO : UnicodeTag | |
envelopeO = | |
"f003" | |
heart : UnicodeTag | |
heart = | |
"f004" | |
star : UnicodeTag | |
star = | |
"f005" | |
starO : UnicodeTag | |
starO = | |
"f006" | |
user : UnicodeTag | |
user = | |
"f007" | |
film : UnicodeTag | |
film = | |
"f008" | |
thLarge : UnicodeTag | |
thLarge = | |
"f009" | |
th : UnicodeTag | |
th = | |
"f00a" | |
thList : UnicodeTag | |
thList = | |
"f00b" | |
check : UnicodeTag | |
check = | |
"f00c" | |
times : UnicodeTag | |
times = | |
"f00d" | |
searchPlus : UnicodeTag | |
searchPlus = | |
"f00e" | |
searchMinus : UnicodeTag | |
searchMinus = | |
"f010" | |
powerOff : UnicodeTag | |
powerOff = | |
"f011" | |
signal : UnicodeTag | |
signal = | |
"f012" | |
cog : UnicodeTag | |
cog = | |
"f013" | |
trashO : UnicodeTag | |
trashO = | |
"f014" | |
home : UnicodeTag | |
home = | |
"f015" | |
fileO : UnicodeTag | |
fileO = | |
"f016" | |
clockO : UnicodeTag | |
clockO = | |
"f017" | |
road : UnicodeTag | |
road = | |
"f018" | |
download : UnicodeTag | |
download = | |
"f019" | |
arrowCircleODown : UnicodeTag | |
arrowCircleODown = | |
"f01a" | |
arrowCircleOUp : UnicodeTag | |
arrowCircleOUp = | |
"f01b" | |
inbox : UnicodeTag | |
inbox = | |
"f01c" | |
playCircleO : UnicodeTag | |
playCircleO = | |
"f01d" | |
repeat : UnicodeTag | |
repeat = | |
"f01e" | |
refresh : UnicodeTag | |
refresh = | |
"f021" | |
listAlt : UnicodeTag | |
listAlt = | |
"f022" | |
lock : UnicodeTag | |
lock = | |
"f023" | |
flag : UnicodeTag | |
flag = | |
"f024" | |
headphones : UnicodeTag | |
headphones = | |
"f025" | |
volumeOff : UnicodeTag | |
volumeOff = | |
"f026" | |
volumeDown : UnicodeTag | |
volumeDown = | |
"f027" | |
volumeUp : UnicodeTag | |
volumeUp = | |
"f028" | |
qrcode : UnicodeTag | |
qrcode = | |
"f029" | |
barcode : UnicodeTag | |
barcode = | |
"f02a" | |
tag : UnicodeTag | |
tag = | |
"f02b" | |
tags : UnicodeTag | |
tags = | |
"f02c" | |
book : UnicodeTag | |
book = | |
"f02d" | |
bookmark : UnicodeTag | |
bookmark = | |
"f02e" | |
print : UnicodeTag | |
print = | |
"f02f" | |
camera : UnicodeTag | |
camera = | |
"f030" | |
font : UnicodeTag | |
font = | |
"f031" | |
bold : UnicodeTag | |
bold = | |
"f032" | |
italic : UnicodeTag | |
italic = | |
"f033" | |
textHeight : UnicodeTag | |
textHeight = | |
"f034" | |
textWidth : UnicodeTag | |
textWidth = | |
"f035" | |
alignLeft : UnicodeTag | |
alignLeft = | |
"f036" | |
alignCenter : UnicodeTag | |
alignCenter = | |
"f037" | |
alignRight : UnicodeTag | |
alignRight = | |
"f038" | |
alignJustify : UnicodeTag | |
alignJustify = | |
"f039" | |
list : UnicodeTag | |
list = | |
"f03a" | |
outdent : UnicodeTag | |
outdent = | |
"f03b" | |
indent : UnicodeTag | |
indent = | |
"f03c" | |
videoCamera : UnicodeTag | |
videoCamera = | |
"f03d" | |
pictureO : UnicodeTag | |
pictureO = | |
"f03e" | |
pencil : UnicodeTag | |
pencil = | |
"f040" | |
mapMarker : UnicodeTag | |
mapMarker = | |
"f041" | |
adjust : UnicodeTag | |
adjust = | |
"f042" | |
tint : UnicodeTag | |
tint = | |
"f043" | |
pencilSquareO : UnicodeTag | |
pencilSquareO = | |
"f044" | |
shareSquareO : UnicodeTag | |
shareSquareO = | |
"f045" | |
checkSquareO : UnicodeTag | |
checkSquareO = | |
"f046" | |
arrows : UnicodeTag | |
arrows = | |
"f047" | |
stepBackward : UnicodeTag | |
stepBackward = | |
"f048" | |
fastBackward : UnicodeTag | |
fastBackward = | |
"f049" | |
backward : UnicodeTag | |
backward = | |
"f04a" | |
play : UnicodeTag | |
play = | |
"f04b" | |
pause : UnicodeTag | |
pause = | |
"f04c" | |
stop : UnicodeTag | |
stop = | |
"f04d" | |
forward : UnicodeTag | |
forward = | |
"f04e" | |
fastForward : UnicodeTag | |
fastForward = | |
"f050" | |
stepForward : UnicodeTag | |
stepForward = | |
"f051" | |
eject : UnicodeTag | |
eject = | |
"f052" | |
chevronLeft : UnicodeTag | |
chevronLeft = | |
"f053" | |
chevronRight : UnicodeTag | |
chevronRight = | |
"f054" | |
plusCircle : UnicodeTag | |
plusCircle = | |
"f055" | |
minusCircle : UnicodeTag | |
minusCircle = | |
"f056" | |
timesCircle : UnicodeTag | |
timesCircle = | |
"f057" | |
checkCircle : UnicodeTag | |
checkCircle = | |
"f058" | |
questionCircle : UnicodeTag | |
questionCircle = | |
"f059" | |
infoCircle : UnicodeTag | |
infoCircle = | |
"f05a" | |
crosshairs : UnicodeTag | |
crosshairs = | |
"f05b" | |
timesCircleO : UnicodeTag | |
timesCircleO = | |
"f05c" | |
checkCircleO : UnicodeTag | |
checkCircleO = | |
"f05d" | |
ban : UnicodeTag | |
ban = | |
"f05e" | |
arrowLeft : UnicodeTag | |
arrowLeft = | |
"f060" | |
arrowRight : UnicodeTag | |
arrowRight = | |
"f061" | |
arrowUp : UnicodeTag | |
arrowUp = | |
"f062" | |
arrowDown : UnicodeTag | |
arrowDown = | |
"f063" | |
share : UnicodeTag | |
share = | |
"f064" | |
expand : UnicodeTag | |
expand = | |
"f065" | |
compress : UnicodeTag | |
compress = | |
"f066" | |
plus : UnicodeTag | |
plus = | |
"f067" | |
minus : UnicodeTag | |
minus = | |
"f068" | |
asterisk : UnicodeTag | |
asterisk = | |
"f069" | |
exclamationCircle : UnicodeTag | |
exclamationCircle = | |
"f06a" | |
gift : UnicodeTag | |
gift = | |
"f06b" | |
leaf : UnicodeTag | |
leaf = | |
"f06c" | |
fire : UnicodeTag | |
fire = | |
"f06d" | |
eye : UnicodeTag | |
eye = | |
"f06e" | |
eyeSlash : UnicodeTag | |
eyeSlash = | |
"f070" | |
exclamationTriangle : UnicodeTag | |
exclamationTriangle = | |
"f071" | |
plane : UnicodeTag | |
plane = | |
"f072" | |
calendar : UnicodeTag | |
calendar = | |
"f073" | |
random : UnicodeTag | |
random = | |
"f074" | |
comment : UnicodeTag | |
comment = | |
"f075" | |
magnet : UnicodeTag | |
magnet = | |
"f076" | |
chevronUp : UnicodeTag | |
chevronUp = | |
"f077" | |
chevronDown : UnicodeTag | |
chevronDown = | |
"f078" | |
retweet : UnicodeTag | |
retweet = | |
"f079" | |
shoppingCart : UnicodeTag | |
shoppingCart = | |
"f07a" | |
folder : UnicodeTag | |
folder = | |
"f07b" | |
folderOpen : UnicodeTag | |
folderOpen = | |
"f07c" | |
arrowsV : UnicodeTag | |
arrowsV = | |
"f07d" | |
arrowsH : UnicodeTag | |
arrowsH = | |
"f07e" | |
barChart : UnicodeTag | |
barChart = | |
"f080" | |
twitterSquare : UnicodeTag | |
twitterSquare = | |
"f081" | |
facebookSquare : UnicodeTag | |
facebookSquare = | |
"f082" | |
cameraRetro : UnicodeTag | |
cameraRetro = | |
"f083" | |
key : UnicodeTag | |
key = | |
"f084" | |
cogs : UnicodeTag | |
cogs = | |
"f085" | |
comments : UnicodeTag | |
comments = | |
"f086" | |
thumbsOUp : UnicodeTag | |
thumbsOUp = | |
"f087" | |
thumbsODown : UnicodeTag | |
thumbsODown = | |
"f088" | |
starHalf : UnicodeTag | |
starHalf = | |
"f089" | |
heartO : UnicodeTag | |
heartO = | |
"f08a" | |
signOut : UnicodeTag | |
signOut = | |
"f08b" | |
linkedinSquare : UnicodeTag | |
linkedinSquare = | |
"f08c" | |
thumbTack : UnicodeTag | |
thumbTack = | |
"f08d" | |
externalLink : UnicodeTag | |
externalLink = | |
"f08e" | |
signIn : UnicodeTag | |
signIn = | |
"f090" | |
trophy : UnicodeTag | |
trophy = | |
"f091" | |
githubSquare : UnicodeTag | |
githubSquare = | |
"f092" | |
upload : UnicodeTag | |
upload = | |
"f093" | |
lemonO : UnicodeTag | |
lemonO = | |
"f094" | |
phone : UnicodeTag | |
phone = | |
"f095" | |
squareO : UnicodeTag | |
squareO = | |
"f096" | |
bookmarkO : UnicodeTag | |
bookmarkO = | |
"f097" | |
phoneSquare : UnicodeTag | |
phoneSquare = | |
"f098" | |
twitter : UnicodeTag | |
twitter = | |
"f099" | |
facebook : UnicodeTag | |
facebook = | |
"f09a" | |
github : UnicodeTag | |
github = | |
"f09b" | |
unlock : UnicodeTag | |
unlock = | |
"f09c" | |
creditCard : UnicodeTag | |
creditCard = | |
"f09d" | |
rss : UnicodeTag | |
rss = | |
"f09e" | |
hddO : UnicodeTag | |
hddO = | |
"f0a0" | |
bullhorn : UnicodeTag | |
bullhorn = | |
"f0a1" | |
bell : UnicodeTag | |
bell = | |
"f0f3" | |
certificate : UnicodeTag | |
certificate = | |
"f0a3" | |
handORight : UnicodeTag | |
handORight = | |
"f0a4" | |
handOLeft : UnicodeTag | |
handOLeft = | |
"f0a5" | |
handOUp : UnicodeTag | |
handOUp = | |
"f0a6" | |
handODown : UnicodeTag | |
handODown = | |
"f0a7" | |
arrowCircleLeft : UnicodeTag | |
arrowCircleLeft = | |
"f0a8" | |
arrowCircleRight : UnicodeTag | |
arrowCircleRight = | |
"f0a9" | |
arrowCircleUp : UnicodeTag | |
arrowCircleUp = | |
"f0aa" | |
arrowCircleDown : UnicodeTag | |
arrowCircleDown = | |
"f0ab" | |
globe : UnicodeTag | |
globe = | |
"f0ac" | |
wrench : UnicodeTag | |
wrench = | |
"f0ad" | |
tasks : UnicodeTag | |
tasks = | |
"f0ae" | |
filter : UnicodeTag | |
filter = | |
"f0b0" | |
briefcase : UnicodeTag | |
briefcase = | |
"f0b1" | |
arrowsAlt : UnicodeTag | |
arrowsAlt = | |
"f0b2" | |
users : UnicodeTag | |
users = | |
"f0c0" | |
link : UnicodeTag | |
link = | |
"f0c1" | |
cloud : UnicodeTag | |
cloud = | |
"f0c2" | |
flask : UnicodeTag | |
flask = | |
"f0c3" | |
scissors : UnicodeTag | |
scissors = | |
"f0c4" | |
filesO : UnicodeTag | |
filesO = | |
"f0c5" | |
paperclip : UnicodeTag | |
paperclip = | |
"f0c6" | |
floppyO : UnicodeTag | |
floppyO = | |
"f0c7" | |
square : UnicodeTag | |
square = | |
"f0c8" | |
bars : UnicodeTag | |
bars = | |
"f0c9" | |
listUl : UnicodeTag | |
listUl = | |
"f0ca" | |
listOl : UnicodeTag | |
listOl = | |
"f0cb" | |
strikethrough : UnicodeTag | |
strikethrough = | |
"f0cc" | |
underline : UnicodeTag | |
underline = | |
"f0cd" | |
table : UnicodeTag | |
table = | |
"f0ce" | |
magic : UnicodeTag | |
magic = | |
"f0d0" | |
truck : UnicodeTag | |
truck = | |
"f0d1" | |
pinterest : UnicodeTag | |
pinterest = | |
"f0d2" | |
pinterestSquare : UnicodeTag | |
pinterestSquare = | |
"f0d3" | |
googlePlusSquare : UnicodeTag | |
googlePlusSquare = | |
"f0d4" | |
googlePlus : UnicodeTag | |
googlePlus = | |
"f0d5" | |
money : UnicodeTag | |
money = | |
"f0d6" | |
caretDown : UnicodeTag | |
caretDown = | |
"f0d7" | |
caretUp : UnicodeTag | |
caretUp = | |
"f0d8" | |
caretLeft : UnicodeTag | |
caretLeft = | |
"f0d9" | |
caretRight : UnicodeTag | |
caretRight = | |
"f0da" | |
columns : UnicodeTag | |
columns = | |
"f0db" | |
sort : UnicodeTag | |
sort = | |
"f0dc" | |
sortDesc : UnicodeTag | |
sortDesc = | |
"f0dd" | |
sortAsc : UnicodeTag | |
sortAsc = | |
"f0de" | |
envelope : UnicodeTag | |
envelope = | |
"f0e0" | |
linkedin : UnicodeTag | |
linkedin = | |
"f0e1" | |
undo : UnicodeTag | |
undo = | |
"f0e2" | |
gavel : UnicodeTag | |
gavel = | |
"f0e3" | |
tachometer : UnicodeTag | |
tachometer = | |
"f0e4" | |
commentO : UnicodeTag | |
commentO = | |
"f0e5" | |
commentsO : UnicodeTag | |
commentsO = | |
"f0e6" | |
bolt : UnicodeTag | |
bolt = | |
"f0e7" | |
sitemap : UnicodeTag | |
sitemap = | |
"f0e8" | |
umbrella : UnicodeTag | |
umbrella = | |
"f0e9" | |
clipboard : UnicodeTag | |
clipboard = | |
"f0ea" | |
lightbulbO : UnicodeTag | |
lightbulbO = | |
"f0eb" | |
exchange : UnicodeTag | |
exchange = | |
"f0ec" | |
cloudDownload : UnicodeTag | |
cloudDownload = | |
"f0ed" | |
cloudUpload : UnicodeTag | |
cloudUpload = | |
"f0ee" | |
userMd : UnicodeTag | |
userMd = | |
"f0f0" | |
stethoscope : UnicodeTag | |
stethoscope = | |
"f0f1" | |
suitcase : UnicodeTag | |
suitcase = | |
"f0f2" | |
bellO : UnicodeTag | |
bellO = | |
"f0a2" | |
coffee : UnicodeTag | |
coffee = | |
"f0f4" | |
cutlery : UnicodeTag | |
cutlery = | |
"f0f5" | |
fileTextO : UnicodeTag | |
fileTextO = | |
"f0f6" | |
buildingO : UnicodeTag | |
buildingO = | |
"f0f7" | |
hospitalO : UnicodeTag | |
hospitalO = | |
"f0f8" | |
ambulance : UnicodeTag | |
ambulance = | |
"f0f9" | |
medkit : UnicodeTag | |
medkit = | |
"f0fa" | |
fighterJet : UnicodeTag | |
fighterJet = | |
"f0fb" | |
beer : UnicodeTag | |
beer = | |
"f0fc" | |
hSquare : UnicodeTag | |
hSquare = | |
"f0fd" | |
plusSquare : UnicodeTag | |
plusSquare = | |
"f0fe" | |
angleDoubleLeft : UnicodeTag | |
angleDoubleLeft = | |
"f100" | |
angleDoubleRight : UnicodeTag | |
angleDoubleRight = | |
"f101" | |
angleDoubleUp : UnicodeTag | |
angleDoubleUp = | |
"f102" | |
angleDoubleDown : UnicodeTag | |
angleDoubleDown = | |
"f103" | |
angleLeft : UnicodeTag | |
angleLeft = | |
"f104" | |
angleRight : UnicodeTag | |
angleRight = | |
"f105" | |
angleUp : UnicodeTag | |
angleUp = | |
"f106" | |
angleDown : UnicodeTag | |
angleDown = | |
"f107" | |
desktop : UnicodeTag | |
desktop = | |
"f108" | |
laptop : UnicodeTag | |
laptop = | |
"f109" | |
tablet : UnicodeTag | |
tablet = | |
"f10a" | |
mobile : UnicodeTag | |
mobile = | |
"f10b" | |
circleO : UnicodeTag | |
circleO = | |
"f10c" | |
quoteLeft : UnicodeTag | |
quoteLeft = | |
"f10d" | |
quoteRight : UnicodeTag | |
quoteRight = | |
"f10e" | |
spinner : UnicodeTag | |
spinner = | |
"f110" | |
circle : UnicodeTag | |
circle = | |
"f111" | |
reply : UnicodeTag | |
reply = | |
"f112" | |
githubAlt : UnicodeTag | |
githubAlt = | |
"f113" | |
folderO : UnicodeTag | |
folderO = | |
"f114" | |
folderOpenO : UnicodeTag | |
folderOpenO = | |
"f115" | |
smileO : UnicodeTag | |
smileO = | |
"f118" | |
frownO : UnicodeTag | |
frownO = | |
"f119" | |
mehO : UnicodeTag | |
mehO = | |
"f11a" | |
gamepad : UnicodeTag | |
gamepad = | |
"f11b" | |
keyboardO : UnicodeTag | |
keyboardO = | |
"f11c" | |
flagO : UnicodeTag | |
flagO = | |
"f11d" | |
flagCheckered : UnicodeTag | |
flagCheckered = | |
"f11e" | |
terminal : UnicodeTag | |
terminal = | |
"f120" | |
code : UnicodeTag | |
code = | |
"f121" | |
replyAll : UnicodeTag | |
replyAll = | |
"f122" | |
starHalfO : UnicodeTag | |
starHalfO = | |
"f123" | |
locationArrow : UnicodeTag | |
locationArrow = | |
"f124" | |
crop : UnicodeTag | |
crop = | |
"f125" | |
codeFork : UnicodeTag | |
codeFork = | |
"f126" | |
chainBroken : UnicodeTag | |
chainBroken = | |
"f127" | |
question : UnicodeTag | |
question = | |
"f128" | |
info : UnicodeTag | |
info = | |
"f129" | |
exclamation : UnicodeTag | |
exclamation = | |
"f12a" | |
superscript : UnicodeTag | |
superscript = | |
"f12b" | |
subscript : UnicodeTag | |
subscript = | |
"f12c" | |
eraser : UnicodeTag | |
eraser = | |
"f12d" | |
puzzlePiece : UnicodeTag | |
puzzlePiece = | |
"f12e" | |
microphone : UnicodeTag | |
microphone = | |
"f130" | |
microphoneSlash : UnicodeTag | |
microphoneSlash = | |
"f131" | |
shield : UnicodeTag | |
shield = | |
"f132" | |
calendarO : UnicodeTag | |
calendarO = | |
"f133" | |
fireExtinguisher : UnicodeTag | |
fireExtinguisher = | |
"f134" | |
rocket : UnicodeTag | |
rocket = | |
"f135" | |
maxcdn : UnicodeTag | |
maxcdn = | |
"f136" | |
chevronCircleLeft : UnicodeTag | |
chevronCircleLeft = | |
"f137" | |
chevronCircleRight : UnicodeTag | |
chevronCircleRight = | |
"f138" | |
chevronCircleUp : UnicodeTag | |
chevronCircleUp = | |
"f139" | |
chevronCircleDown : UnicodeTag | |
chevronCircleDown = | |
"f13a" | |
html5 : UnicodeTag | |
html5 = | |
"f13b" | |
css3 : UnicodeTag | |
css3 = | |
"f13c" | |
anchor : UnicodeTag | |
anchor = | |
"f13d" | |
unlockAlt : UnicodeTag | |
unlockAlt = | |
"f13e" | |
bullseye : UnicodeTag | |
bullseye = | |
"f140" | |
ellipsisH : UnicodeTag | |
ellipsisH = | |
"f141" | |
ellipsisV : UnicodeTag | |
ellipsisV = | |
"f142" | |
rssSquare : UnicodeTag | |
rssSquare = | |
"f143" | |
playCircle : UnicodeTag | |
playCircle = | |
"f144" | |
ticket : UnicodeTag | |
ticket = | |
"f145" | |
minusSquare : UnicodeTag | |
minusSquare = | |
"f146" | |
minusSquareO : UnicodeTag | |
minusSquareO = | |
"f147" | |
levelUp : UnicodeTag | |
levelUp = | |
"f148" | |
levelDown : UnicodeTag | |
levelDown = | |
"f149" | |
checkSquare : UnicodeTag | |
checkSquare = | |
"f14a" | |
pencilSquare : UnicodeTag | |
pencilSquare = | |
"f14b" | |
externalLinkSquare : UnicodeTag | |
externalLinkSquare = | |
"f14c" | |
shareSquare : UnicodeTag | |
shareSquare = | |
"f14d" | |
compass : UnicodeTag | |
compass = | |
"f14e" | |
caretSquareODown : UnicodeTag | |
caretSquareODown = | |
"f150" | |
caretSquareOUp : UnicodeTag | |
caretSquareOUp = | |
"f151" | |
caretSquareORight : UnicodeTag | |
caretSquareORight = | |
"f152" | |
eur : UnicodeTag | |
eur = | |
"f153" | |
gbp : UnicodeTag | |
gbp = | |
"f154" | |
usd : UnicodeTag | |
usd = | |
"f155" | |
inr : UnicodeTag | |
inr = | |
"f156" | |
jpy : UnicodeTag | |
jpy = | |
"f157" | |
rub : UnicodeTag | |
rub = | |
"f158" | |
krw : UnicodeTag | |
krw = | |
"f159" | |
btc : UnicodeTag | |
btc = | |
"f15a" | |
file : UnicodeTag | |
file = | |
"f15b" | |
fileText : UnicodeTag | |
fileText = | |
"f15c" | |
sortAlphaAsc : UnicodeTag | |
sortAlphaAsc = | |
"f15d" | |
sortAlphaDesc : UnicodeTag | |
sortAlphaDesc = | |
"f15e" | |
sortAmountAsc : UnicodeTag | |
sortAmountAsc = | |
"f160" | |
sortAmountDesc : UnicodeTag | |
sortAmountDesc = | |
"f161" | |
sortNumericAsc : UnicodeTag | |
sortNumericAsc = | |
"f162" | |
sortNumericDesc : UnicodeTag | |
sortNumericDesc = | |
"f163" | |
thumbsUp : UnicodeTag | |
thumbsUp = | |
"f164" | |
thumbsDown : UnicodeTag | |
thumbsDown = | |
"f165" | |
youtubeSquare : UnicodeTag | |
youtubeSquare = | |
"f166" | |
youtube : UnicodeTag | |
youtube = | |
"f167" | |
xing : UnicodeTag | |
xing = | |
"f168" | |
xingSquare : UnicodeTag | |
xingSquare = | |
"f169" | |
youtubePlay : UnicodeTag | |
youtubePlay = | |
"f16a" | |
dropbox : UnicodeTag | |
dropbox = | |
"f16b" | |
stackOverflow : UnicodeTag | |
stackOverflow = | |
"f16c" | |
instagram : UnicodeTag | |
instagram = | |
"f16d" | |
flickr : UnicodeTag | |
flickr = | |
"f16e" | |
adn : UnicodeTag | |
adn = | |
"f170" | |
bitbucket : UnicodeTag | |
bitbucket = | |
"f171" | |
bitbucketSquare : UnicodeTag | |
bitbucketSquare = | |
"f172" | |
tumblr : UnicodeTag | |
tumblr = | |
"f173" | |
tumblrSquare : UnicodeTag | |
tumblrSquare = | |
"f174" | |
longArrowDown : UnicodeTag | |
longArrowDown = | |
"f175" | |
longArrowUp : UnicodeTag | |
longArrowUp = | |
"f176" | |
longArrowLeft : UnicodeTag | |
longArrowLeft = | |
"f177" | |
longArrowRight : UnicodeTag | |
longArrowRight = | |
"f178" | |
apple : UnicodeTag | |
apple = | |
"f179" | |
windows : UnicodeTag | |
windows = | |
"f17a" | |
android : UnicodeTag | |
android = | |
"f17b" | |
linux : UnicodeTag | |
linux = | |
"f17c" | |
dribbble : UnicodeTag | |
dribbble = | |
"f17d" | |
skype : UnicodeTag | |
skype = | |
"f17e" | |
foursquare : UnicodeTag | |
foursquare = | |
"f180" | |
trello : UnicodeTag | |
trello = | |
"f181" | |
female : UnicodeTag | |
female = | |
"f182" | |
male : UnicodeTag | |
male = | |
"f183" | |
gratipay : UnicodeTag | |
gratipay = | |
"f184" | |
sunO : UnicodeTag | |
sunO = | |
"f185" | |
moonO : UnicodeTag | |
moonO = | |
"f186" | |
archive : UnicodeTag | |
archive = | |
"f187" | |
bug : UnicodeTag | |
bug = | |
"f188" | |
vk : UnicodeTag | |
vk = | |
"f189" | |
weibo : UnicodeTag | |
weibo = | |
"f18a" | |
renren : UnicodeTag | |
renren = | |
"f18b" | |
pagelines : UnicodeTag | |
pagelines = | |
"f18c" | |
stackExchange : UnicodeTag | |
stackExchange = | |
"f18d" | |
arrowCircleORight : UnicodeTag | |
arrowCircleORight = | |
"f18e" | |
arrowCircleOLeft : UnicodeTag | |
arrowCircleOLeft = | |
"f190" | |
caretSquareOLeft : UnicodeTag | |
caretSquareOLeft = | |
"f191" | |
dotCircleO : UnicodeTag | |
dotCircleO = | |
"f192" | |
wheelchair : UnicodeTag | |
wheelchair = | |
"f193" | |
vimeoSquare : UnicodeTag | |
vimeoSquare = | |
"f194" | |
try : UnicodeTag | |
try = | |
"f195" | |
plusSquareO : UnicodeTag | |
plusSquareO = | |
"f196" | |
spaceShuttle : UnicodeTag | |
spaceShuttle = | |
"f197" | |
slack : UnicodeTag | |
slack = | |
"f198" | |
envelopeSquare : UnicodeTag | |
envelopeSquare = | |
"f199" | |
wordpress : UnicodeTag | |
wordpress = | |
"f19a" | |
openid : UnicodeTag | |
openid = | |
"f19b" | |
university : UnicodeTag | |
university = | |
"f19c" | |
graduationCap : UnicodeTag | |
graduationCap = | |
"f19d" | |
yahoo : UnicodeTag | |
yahoo = | |
"f19e" | |
google : UnicodeTag | |
google = | |
"f1a0" | |
reddit : UnicodeTag | |
reddit = | |
"f1a1" | |
redditSquare : UnicodeTag | |
redditSquare = | |
"f1a2" | |
stumbleuponCircle : UnicodeTag | |
stumbleuponCircle = | |
"f1a3" | |
stumbleupon : UnicodeTag | |
stumbleupon = | |
"f1a4" | |
delicious : UnicodeTag | |
delicious = | |
"f1a5" | |
digg : UnicodeTag | |
digg = | |
"f1a6" | |
piedPiperPp : UnicodeTag | |
piedPiperPp = | |
"f1a7" | |
piedPiperAlt : UnicodeTag | |
piedPiperAlt = | |
"f1a8" | |
drupal : UnicodeTag | |
drupal = | |
"f1a9" | |
joomla : UnicodeTag | |
joomla = | |
"f1aa" | |
language : UnicodeTag | |
language = | |
"f1ab" | |
fax : UnicodeTag | |
fax = | |
"f1ac" | |
building : UnicodeTag | |
building = | |
"f1ad" | |
child : UnicodeTag | |
child = | |
"f1ae" | |
paw : UnicodeTag | |
paw = | |
"f1b0" | |
spoon : UnicodeTag | |
spoon = | |
"f1b1" | |
cube : UnicodeTag | |
cube = | |
"f1b2" | |
cubes : UnicodeTag | |
cubes = | |
"f1b3" | |
behance : UnicodeTag | |
behance = | |
"f1b4" | |
behanceSquare : UnicodeTag | |
behanceSquare = | |
"f1b5" | |
steam : UnicodeTag | |
steam = | |
"f1b6" | |
steamSquare : UnicodeTag | |
steamSquare = | |
"f1b7" | |
recycle : UnicodeTag | |
recycle = | |
"f1b8" | |
car : UnicodeTag | |
car = | |
"f1b9" | |
taxi : UnicodeTag | |
taxi = | |
"f1ba" | |
tree : UnicodeTag | |
tree = | |
"f1bb" | |
spotify : UnicodeTag | |
spotify = | |
"f1bc" | |
deviantart : UnicodeTag | |
deviantart = | |
"f1bd" | |
soundcloud : UnicodeTag | |
soundcloud = | |
"f1be" | |
database : UnicodeTag | |
database = | |
"f1c0" | |
filePdfO : UnicodeTag | |
filePdfO = | |
"f1c1" | |
fileWordO : UnicodeTag | |
fileWordO = | |
"f1c2" | |
fileExcelO : UnicodeTag | |
fileExcelO = | |
"f1c3" | |
filePowerpointO : UnicodeTag | |
filePowerpointO = | |
"f1c4" | |
fileImageO : UnicodeTag | |
fileImageO = | |
"f1c5" | |
fileArchiveO : UnicodeTag | |
fileArchiveO = | |
"f1c6" | |
fileAudioO : UnicodeTag | |
fileAudioO = | |
"f1c7" | |
fileVideoO : UnicodeTag | |
fileVideoO = | |
"f1c8" | |
fileCodeO : UnicodeTag | |
fileCodeO = | |
"f1c9" | |
vine : UnicodeTag | |
vine = | |
"f1ca" | |
codepen : UnicodeTag | |
codepen = | |
"f1cb" | |
jsfiddle : UnicodeTag | |
jsfiddle = | |
"f1cc" | |
lifeRing : UnicodeTag | |
lifeRing = | |
"f1cd" | |
circleONotch : UnicodeTag | |
circleONotch = | |
"f1ce" | |
rebel : UnicodeTag | |
rebel = | |
"f1d0" | |
empire : UnicodeTag | |
empire = | |
"f1d1" | |
gitSquare : UnicodeTag | |
gitSquare = | |
"f1d2" | |
git : UnicodeTag | |
git = | |
"f1d3" | |
hackerNews : UnicodeTag | |
hackerNews = | |
"f1d4" | |
tencentWeibo : UnicodeTag | |
tencentWeibo = | |
"f1d5" | |
qq : UnicodeTag | |
qq = | |
"f1d6" | |
weixin : UnicodeTag | |
weixin = | |
"f1d7" | |
paperPlane : UnicodeTag | |
paperPlane = | |
"f1d8" | |
paperPlaneO : UnicodeTag | |
paperPlaneO = | |
"f1d9" | |
history : UnicodeTag | |
history = | |
"f1da" | |
circleThin : UnicodeTag | |
circleThin = | |
"f1db" | |
header : UnicodeTag | |
header = | |
"f1dc" | |
paragraph : UnicodeTag | |
paragraph = | |
"f1dd" | |
sliders : UnicodeTag | |
sliders = | |
"f1de" | |
shareAlt : UnicodeTag | |
shareAlt = | |
"f1e0" | |
shareAltSquare : UnicodeTag | |
shareAltSquare = | |
"f1e1" | |
bomb : UnicodeTag | |
bomb = | |
"f1e2" | |
futbolO : UnicodeTag | |
futbolO = | |
"f1e3" | |
tty : UnicodeTag | |
tty = | |
"f1e4" | |
binoculars : UnicodeTag | |
binoculars = | |
"f1e5" | |
plug : UnicodeTag | |
plug = | |
"f1e6" | |
slideshare : UnicodeTag | |
slideshare = | |
"f1e7" | |
twitch : UnicodeTag | |
twitch = | |
"f1e8" | |
yelp : UnicodeTag | |
yelp = | |
"f1e9" | |
newspaperO : UnicodeTag | |
newspaperO = | |
"f1ea" | |
wifi : UnicodeTag | |
wifi = | |
"f1eb" | |
calculator : UnicodeTag | |
calculator = | |
"f1ec" | |
paypal : UnicodeTag | |
paypal = | |
"f1ed" | |
googleWallet : UnicodeTag | |
googleWallet = | |
"f1ee" | |
ccVisa : UnicodeTag | |
ccVisa = | |
"f1f0" | |
ccMastercard : UnicodeTag | |
ccMastercard = | |
"f1f1" | |
ccDiscover : UnicodeTag | |
ccDiscover = | |
"f1f2" | |
ccAmex : UnicodeTag | |
ccAmex = | |
"f1f3" | |
ccPaypal : UnicodeTag | |
ccPaypal = | |
"f1f4" | |
ccStripe : UnicodeTag | |
ccStripe = | |
"f1f5" | |
bellSlash : UnicodeTag | |
bellSlash = | |
"f1f6" | |
bellSlashO : UnicodeTag | |
bellSlashO = | |
"f1f7" | |
trash : UnicodeTag | |
trash = | |
"f1f8" | |
copyright : UnicodeTag | |
copyright = | |
"f1f9" | |
at : UnicodeTag | |
at = | |
"f1fa" | |
eyedropper : UnicodeTag | |
eyedropper = | |
"f1fb" | |
paintBrush : UnicodeTag | |
paintBrush = | |
"f1fc" | |
birthdayCake : UnicodeTag | |
birthdayCake = | |
"f1fd" | |
areaChart : UnicodeTag | |
areaChart = | |
"f1fe" | |
pieChart : UnicodeTag | |
pieChart = | |
"f200" | |
lineChart : UnicodeTag | |
lineChart = | |
"f201" | |
lastfm : UnicodeTag | |
lastfm = | |
"f202" | |
lastfmSquare : UnicodeTag | |
lastfmSquare = | |
"f203" | |
toggleOff : UnicodeTag | |
toggleOff = | |
"f204" | |
toggleOn : UnicodeTag | |
toggleOn = | |
"f205" | |
bicycle : UnicodeTag | |
bicycle = | |
"f206" | |
bus : UnicodeTag | |
bus = | |
"f207" | |
ioxhost : UnicodeTag | |
ioxhost = | |
"f208" | |
angellist : UnicodeTag | |
angellist = | |
"f209" | |
cc : UnicodeTag | |
cc = | |
"f20a" | |
ils : UnicodeTag | |
ils = | |
"f20b" | |
meanpath : UnicodeTag | |
meanpath = | |
"f20c" | |
buysellads : UnicodeTag | |
buysellads = | |
"f20d" | |
connectdevelop : UnicodeTag | |
connectdevelop = | |
"f20e" | |
dashcube : UnicodeTag | |
dashcube = | |
"f210" | |
forumbee : UnicodeTag | |
forumbee = | |
"f211" | |
leanpub : UnicodeTag | |
leanpub = | |
"f212" | |
sellsy : UnicodeTag | |
sellsy = | |
"f213" | |
shirtsinbulk : UnicodeTag | |
shirtsinbulk = | |
"f214" | |
simplybuilt : UnicodeTag | |
simplybuilt = | |
"f215" | |
skyatlas : UnicodeTag | |
skyatlas = | |
"f216" | |
cartPlus : UnicodeTag | |
cartPlus = | |
"f217" | |
cartArrowDown : UnicodeTag | |
cartArrowDown = | |
"f218" | |
diamond : UnicodeTag | |
diamond = | |
"f219" | |
ship : UnicodeTag | |
ship = | |
"f21a" | |
userSecret : UnicodeTag | |
userSecret = | |
"f21b" | |
motorcycle : UnicodeTag | |
motorcycle = | |
"f21c" | |
streetView : UnicodeTag | |
streetView = | |
"f21d" | |
heartbeat : UnicodeTag | |
heartbeat = | |
"f21e" | |
venus : UnicodeTag | |
venus = | |
"f221" | |
mars : UnicodeTag | |
mars = | |
"f222" | |
mercury : UnicodeTag | |
mercury = | |
"f223" | |
transgender : UnicodeTag | |
transgender = | |
"f224" | |
transgenderAlt : UnicodeTag | |
transgenderAlt = | |
"f225" | |
venusDouble : UnicodeTag | |
venusDouble = | |
"f226" | |
marsDouble : UnicodeTag | |
marsDouble = | |
"f227" | |
venusMars : UnicodeTag | |
venusMars = | |
"f228" | |
marsStroke : UnicodeTag | |
marsStroke = | |
"f229" | |
marsStrokeV : UnicodeTag | |
marsStrokeV = | |
"f22a" | |
marsStrokeH : UnicodeTag | |
marsStrokeH = | |
"f22b" | |
neuter : UnicodeTag | |
neuter = | |
"f22c" | |
genderless : UnicodeTag | |
genderless = | |
"f22d" | |
facebookOfficial : UnicodeTag | |
facebookOfficial = | |
"f230" | |
pinterestP : UnicodeTag | |
pinterestP = | |
"f231" | |
whatsapp : UnicodeTag | |
whatsapp = | |
"f232" | |
server : UnicodeTag | |
server = | |
"f233" | |
userPlus : UnicodeTag | |
userPlus = | |
"f234" | |
userTimes : UnicodeTag | |
userTimes = | |
"f235" | |
bed : UnicodeTag | |
bed = | |
"f236" | |
viacoin : UnicodeTag | |
viacoin = | |
"f237" | |
train : UnicodeTag | |
train = | |
"f238" | |
subway : UnicodeTag | |
subway = | |
"f239" | |
medium : UnicodeTag | |
medium = | |
"f23a" | |
yCombinator : UnicodeTag | |
yCombinator = | |
"f23b" | |
optinMonster : UnicodeTag | |
optinMonster = | |
"f23c" | |
opencart : UnicodeTag | |
opencart = | |
"f23d" | |
expeditedssl : UnicodeTag | |
expeditedssl = | |
"f23e" | |
batteryFull : UnicodeTag | |
batteryFull = | |
"f240" | |
batteryThreeQuarters : UnicodeTag | |
batteryThreeQuarters = | |
"f241" | |
batteryHalf : UnicodeTag | |
batteryHalf = | |
"f242" | |
batteryQuarter : UnicodeTag | |
batteryQuarter = | |
"f243" | |
batteryEmpty : UnicodeTag | |
batteryEmpty = | |
"f244" | |
mousePointer : UnicodeTag | |
mousePointer = | |
"f245" | |
iCursor : UnicodeTag | |
iCursor = | |
"f246" | |
objectGroup : UnicodeTag | |
objectGroup = | |
"f247" | |
objectUngroup : UnicodeTag | |
objectUngroup = | |
"f248" | |
stickyNote : UnicodeTag | |
stickyNote = | |
"f249" | |
stickyNoteO : UnicodeTag | |
stickyNoteO = | |
"f24a" | |
ccJcb : UnicodeTag | |
ccJcb = | |
"f24b" | |
ccDinersClub : UnicodeTag | |
ccDinersClub = | |
"f24c" | |
clone : UnicodeTag | |
clone = | |
"f24d" | |
balanceScale : UnicodeTag | |
balanceScale = | |
"f24e" | |
hourglassO : UnicodeTag | |
hourglassO = | |
"f250" | |
hourglassStart : UnicodeTag | |
hourglassStart = | |
"f251" | |
hourglassHalf : UnicodeTag | |
hourglassHalf = | |
"f252" | |
hourglassEnd : UnicodeTag | |
hourglassEnd = | |
"f253" | |
hourglass : UnicodeTag | |
hourglass = | |
"f254" | |
handRockO : UnicodeTag | |
handRockO = | |
"f255" | |
handPaperO : UnicodeTag | |
handPaperO = | |
"f256" | |
handScissorsO : UnicodeTag | |
handScissorsO = | |
"f257" | |
handLizardO : UnicodeTag | |
handLizardO = | |
"f258" | |
handSpockO : UnicodeTag | |
handSpockO = | |
"f259" | |
handPointerO : UnicodeTag | |
handPointerO = | |
"f25a" | |
handPeaceO : UnicodeTag | |
handPeaceO = | |
"f25b" | |
trademark : UnicodeTag | |
trademark = | |
"f25c" | |
registered : UnicodeTag | |
registered = | |
"f25d" | |
creativeCommons : UnicodeTag | |
creativeCommons = | |
"f25e" | |
gg : UnicodeTag | |
gg = | |
"f260" | |
ggCircle : UnicodeTag | |
ggCircle = | |
"f261" | |
tripadvisor : UnicodeTag | |
tripadvisor = | |
"f262" | |
odnoklassniki : UnicodeTag | |
odnoklassniki = | |
"f263" | |
odnoklassnikiSquare : UnicodeTag | |
odnoklassnikiSquare = | |
"f264" | |
getPocket : UnicodeTag | |
getPocket = | |
"f265" | |
wikipediaW : UnicodeTag | |
wikipediaW = | |
"f266" | |
safari : UnicodeTag | |
safari = | |
"f267" | |
chrome : UnicodeTag | |
chrome = | |
"f268" | |
firefox : UnicodeTag | |
firefox = | |
"f269" | |
opera : UnicodeTag | |
opera = | |
"f26a" | |
internetExplorer : UnicodeTag | |
internetExplorer = | |
"f26b" | |
television : UnicodeTag | |
television = | |
"f26c" | |
contao : UnicodeTag | |
contao = | |
"f26d" | |
px500 : UnicodeTag | |
px500 = | |
"f26e" | |
amazon : UnicodeTag | |
amazon = | |
"f270" | |
calendarPlusO : UnicodeTag | |
calendarPlusO = | |
"f271" | |
calendarMinusO : UnicodeTag | |
calendarMinusO = | |
"f272" | |
calendarTimesO : UnicodeTag | |
calendarTimesO = | |
"f273" | |
calendarCheckO : UnicodeTag | |
calendarCheckO = | |
"f274" | |
industry : UnicodeTag | |
industry = | |
"f275" | |
mapPin : UnicodeTag | |
mapPin = | |
"f276" | |
mapSigns : UnicodeTag | |
mapSigns = | |
"f277" | |
mapO : UnicodeTag | |
mapO = | |
"f278" | |
map : UnicodeTag | |
map = | |
"f279" | |
commenting : UnicodeTag | |
commenting = | |
"f27a" | |
commentingO : UnicodeTag | |
commentingO = | |
"f27b" | |
houzz : UnicodeTag | |
houzz = | |
"f27c" | |
vimeo : UnicodeTag | |
vimeo = | |
"f27d" | |
blackTie : UnicodeTag | |
blackTie = | |
"f27e" | |
fonticons : UnicodeTag | |
fonticons = | |
"f280" | |
redditAlien : UnicodeTag | |
redditAlien = | |
"f281" | |
edge : UnicodeTag | |
edge = | |
"f282" | |
creditCardAlt : UnicodeTag | |
creditCardAlt = | |
"f283" | |
codiepie : UnicodeTag | |
codiepie = | |
"f284" | |
modx : UnicodeTag | |
modx = | |
"f285" | |
fortAwesome : UnicodeTag | |
fortAwesome = | |
"f286" | |
usb : UnicodeTag | |
usb = | |
"f287" | |
productHunt : UnicodeTag | |
productHunt = | |
"f288" | |
mixcloud : UnicodeTag | |
mixcloud = | |
"f289" | |
scribd : UnicodeTag | |
scribd = | |
"f28a" | |
pauseCircle : UnicodeTag | |
pauseCircle = | |
"f28b" | |
pauseCircleO : UnicodeTag | |
pauseCircleO = | |
"f28c" | |
stopCircle : UnicodeTag | |
stopCircle = | |
"f28d" | |
stopCircleO : UnicodeTag | |
stopCircleO = | |
"f28e" | |
shoppingBag : UnicodeTag | |
shoppingBag = | |
"f290" | |
shoppingBasket : UnicodeTag | |
shoppingBasket = | |
"f291" | |
hashtag : UnicodeTag | |
hashtag = | |
"f292" | |
bluetooth : UnicodeTag | |
bluetooth = | |
"f293" | |
bluetoothB : UnicodeTag | |
bluetoothB = | |
"f294" | |
percent : UnicodeTag | |
percent = | |
"f295" | |
gitlab : UnicodeTag | |
gitlab = | |
"f296" | |
wpbeginner : UnicodeTag | |
wpbeginner = | |
"f297" | |
wpforms : UnicodeTag | |
wpforms = | |
"f298" | |
envira : UnicodeTag | |
envira = | |
"f299" | |
universalAccess : UnicodeTag | |
universalAccess = | |
"f29a" | |
wheelchairAlt : UnicodeTag | |
wheelchairAlt = | |
"f29b" | |
questionCircleO : UnicodeTag | |
questionCircleO = | |
"f29c" | |
blind : UnicodeTag | |
blind = | |
"f29d" | |
audioDescription : UnicodeTag | |
audioDescription = | |
"f29e" | |
volumeControlPhone : UnicodeTag | |
volumeControlPhone = | |
"f2a0" | |
braille : UnicodeTag | |
braille = | |
"f2a1" | |
assistiveListeningSystems : UnicodeTag | |
assistiveListeningSystems = | |
"f2a2" | |
americanSignLanguageInterpreting : UnicodeTag | |
americanSignLanguageInterpreting = | |
"f2a3" | |
deaf : UnicodeTag | |
deaf = | |
"f2a4" | |
glide : UnicodeTag | |
glide = | |
"f2a5" | |
glideG : UnicodeTag | |
glideG = | |
"f2a6" | |
signLanguage : UnicodeTag | |
signLanguage = | |
"f2a7" | |
lowVision : UnicodeTag | |
lowVision = | |
"f2a8" | |
viadeo : UnicodeTag | |
viadeo = | |
"f2a9" | |
viadeoSquare : UnicodeTag | |
viadeoSquare = | |
"f2aa" | |
snapchat : UnicodeTag | |
snapchat = | |
"f2ab" | |
snapchatGhost : UnicodeTag | |
snapchatGhost = | |
"f2ac" | |
snapchatSquare : UnicodeTag | |
snapchatSquare = | |
"f2ad" | |
piedPiper : UnicodeTag | |
piedPiper = | |
"f2ae" | |
firstOrder : UnicodeTag | |
firstOrder = | |
"f2b0" | |
yoast : UnicodeTag | |
yoast = | |
"f2b1" | |
themeisle : UnicodeTag | |
themeisle = | |
"f2b2" | |
googlePlusOfficial : UnicodeTag | |
googlePlusOfficial = | |
"f2b3" | |
fontAwesome : UnicodeTag | |
fontAwesome = | |
"f2b4" | |
handshakeO : UnicodeTag | |
handshakeO = | |
"f2b5" | |
envelopeOpen : UnicodeTag | |
envelopeOpen = | |
"f2b6" | |
envelopeOpenO : UnicodeTag | |
envelopeOpenO = | |
"f2b7" | |
linode : UnicodeTag | |
linode = | |
"f2b8" | |
addressBook : UnicodeTag | |
addressBook = | |
"f2b9" | |
addressBookO : UnicodeTag | |
addressBookO = | |
"f2ba" | |
addressCard : UnicodeTag | |
addressCard = | |
"f2bb" | |
addressCardO : UnicodeTag | |
addressCardO = | |
"f2bc" | |
userCircle : UnicodeTag | |
userCircle = | |
"f2bd" | |
userCircleO : UnicodeTag | |
userCircleO = | |
"f2be" | |
userO : UnicodeTag | |
userO = | |
"f2c0" | |
idBadge : UnicodeTag | |
idBadge = | |
"f2c1" | |
idCard : UnicodeTag | |
idCard = | |
"f2c2" | |
idCardO : UnicodeTag | |
idCardO = | |
"f2c3" | |
quora : UnicodeTag | |
quora = | |
"f2c4" | |
freeCodeCamp : UnicodeTag | |
freeCodeCamp = | |
"f2c5" | |
telegram : UnicodeTag | |
telegram = | |
"f2c6" | |
thermometerFull : UnicodeTag | |
thermometerFull = | |
"f2c7" | |
thermometerThreeQuarters : UnicodeTag | |
thermometerThreeQuarters = | |
"f2c8" | |
thermometerHalf : UnicodeTag | |
thermometerHalf = | |
"f2c9" | |
thermometerQuarter : UnicodeTag | |
thermometerQuarter = | |
"f2ca" | |
thermometerEmpty : UnicodeTag | |
thermometerEmpty = | |
"f2cb" | |
shower : UnicodeTag | |
shower = | |
"f2cc" | |
bath : UnicodeTag | |
bath = | |
"f2cd" | |
podcast : UnicodeTag | |
podcast = | |
"f2ce" | |
windowMaximize : UnicodeTag | |
windowMaximize = | |
"f2d0" | |
windowMinimize : UnicodeTag | |
windowMinimize = | |
"f2d1" | |
windowRestore : UnicodeTag | |
windowRestore = | |
"f2d2" | |
windowClose : UnicodeTag | |
windowClose = | |
"f2d3" | |
windowCloseO : UnicodeTag | |
windowCloseO = | |
"f2d4" | |
bandcamp : UnicodeTag | |
bandcamp = | |
"f2d5" | |
grav : UnicodeTag | |
grav = | |
"f2d6" | |
etsy : UnicodeTag | |
etsy = | |
"f2d7" | |
imdb : UnicodeTag | |
imdb = | |
"f2d8" | |
ravelry : UnicodeTag | |
ravelry = | |
"f2d9" | |
eercast : UnicodeTag | |
eercast = | |
"f2da" | |
microchip : UnicodeTag | |
microchip = | |
"f2db" | |
snowflakeO : UnicodeTag | |
snowflakeO = | |
"f2dc" | |
superpowers : UnicodeTag | |
superpowers = | |
"f2dd" | |
wpexplorer : UnicodeTag | |
wpexplorer = | |
"f2de" | |
meetup : UnicodeTag | |
meetup = | |
"f2e0" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment