prawn-icon 2.1.0 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +57 -1
- data/README.md +11 -1
- data/Rakefile +0 -1
- data/data/fonts/fa4/shims.yml +462 -0
- data/data/fonts/fab/LICENSE +1 -1
- data/data/fonts/fab/fa-brands.ttf +0 -0
- data/data/fonts/fab/fab.yml +131 -3
- data/data/fonts/far/LICENSE +1 -1
- data/data/fonts/far/fa-regular.ttf +0 -0
- data/data/fonts/far/far.yml +37 -1
- data/data/fonts/fas/LICENSE +1 -1
- data/data/fonts/fas/fa-solid.ttf +0 -0
- data/data/fonts/fas/fas.yml +503 -1
- data/examples/fontawesome.rb +3 -2
- data/examples/foundation_icons.rb +3 -2
- data/examples/paymentfont.rb +4 -3
- data/lib/prawn/icon.rb +2 -0
- data/lib/prawn/icon/base.rb +14 -2
- data/lib/prawn/icon/compatibility.rb +17 -130
- data/lib/prawn/icon/configuration.rb +40 -0
- data/lib/prawn/icon/font_data.rb +5 -3
- data/lib/prawn/icon/interface.rb +35 -8
- data/lib/prawn/icon/version.rb +1 -1
- data/spec/integration/icon_spec.rb +67 -15
- data/spec/unit/base_spec.rb +25 -6
- data/spec/unit/configuration_spec.rb +21 -0
- data/spec/unit/errors/icon_key_empty_spec.rb +1 -3
- data/spec/unit/errors/icon_not_found_spec.rb +1 -3
- data/spec/unit/font_data_spec.rb +9 -9
- data/spec/unit/icon_spec.rb +15 -15
- data/spec/unit/parser_spec.rb +6 -4
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8c9cf8d2f79db2e2732626f6b46ebb9f0a019243b29e68379ccc95e63a604dbd
|
4
|
+
data.tar.gz: a3f67c49dd586f4c45ec9ebcf846514d38f08b6aadd031ca60028fa464a09633
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1bf95fa8ae5852d32880167fa6d0fcbc24498b43d0a3db8b5ea4eba6358f403fa4c08ceb68e9a7581a9e637e73a9b6d8774446f09d72c517f4f1098a5cd56230
|
7
|
+
data.tar.gz: ce1dce62f8eabb83c543a8f596848d0417cc2520f706bc6cb2e420850410f7889020d2ed33e231f82181988ae9532ec3d9c9ffa1f2fb12018479e6f94b3ffeb4
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,59 @@
|
|
1
|
+
# 3.0.0 - November 10, 2020
|
2
|
+
|
3
|
+
* **breaking change** - Fix incorrect layout and line-wrapping logic for inline-formatted icons. Please see [Inline Format Changes](#inline-format-changes) for more details.
|
4
|
+
* Add a `#formatted_icon_box` method to retain the previous inline icon behaviour.
|
5
|
+
* Allow `#formatted_icon_box` to accept absolute positioning parameters (`x`, `y`, and `at`). Thanks @navinspm!
|
6
|
+
* Update fontawesome from version `5.11.2` to `5.15.1`.
|
7
|
+
* See FontAwesome's [upgrade guide](https://github.com/FortAwesome/Font-Awesome/blob/57005cea6da7d1c67f3466974aecd25485f60452/UPGRADING.md) for more details.
|
8
|
+
* Introduce a configuration mechanism so that the font directory can be customized as follows:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
Prawn::Icon.configure do |config|
|
12
|
+
config.font_directory = '/path/to/fonts'
|
13
|
+
end
|
14
|
+
```
|
15
|
+
|
16
|
+
* Deprecate the global variables of `Prawn::Icon::Base::FONTDIR` and `Prawn::Icon::Compatibility::SHIMS`. Use `Prawn::Icon.configuration.font_directory` and `Prawn::Icon::Compatibility.shims` instead.
|
17
|
+
* Use `Gem::Specification#full_gem_path` to get the root path of the gem directory to resolve https://github.com/jessedoyle/prawn-icon/issues/45.
|
18
|
+
|
19
|
+
#### Inline Format Changes
|
20
|
+
|
21
|
+
As noted in https://github.com/jessedoyle/prawn-icon/issues/49, `Prawn::Icon` did not correctly respect page boundaries for inline-formatted icons.
|
22
|
+
|
23
|
+
The fix for the issue requires `Prawn::Icon` to use the inline layout and formatting logic implemented in `Prawn`.
|
24
|
+
|
25
|
+
This change has ramifications to the `#icon` and `#inline_icon` method return values, but most applications should not require changes.
|
26
|
+
|
27
|
+
Changes are listed below:
|
28
|
+
|
29
|
+
* `#icon` - returns `nil` with the `inline_format: true` parameter.
|
30
|
+
* `#inline_icon` - returns `nil` (instead of a `Prawn::Text::Formatted::Box` instance).
|
31
|
+
|
32
|
+
You can call `#formatted_icon_box` to retain the previous inline icon functionality.
|
33
|
+
|
34
|
+
# 2.5.0 - October 4, 2019
|
35
|
+
|
36
|
+
* Update FontAwesome from `5.8.2` to `5.11.2`.
|
37
|
+
* See FontAwesome's [upgrade guide](https://github.com/FortAwesome/Font-Awesome/blob/master/UPGRADING.md) for more details.
|
38
|
+
|
39
|
+
# 2.4.0 - May 26, 2019
|
40
|
+
|
41
|
+
* Update FontAwesome from `5.4.0` to `5.8.2`.
|
42
|
+
* See FontAwesome's [upgrade guide](https://github.com/FortAwesome/Font-Awesome/blob/master/UPGRADING.md) for more details.
|
43
|
+
* Update the Payment Icon URL to https://paymentfont.com.
|
44
|
+
|
45
|
+
# 2.3.0 - October 8, 2018
|
46
|
+
|
47
|
+
* Update FontAwesome to version from `5.0.13` to `5.4.0`.
|
48
|
+
* See FontAwesome's [release page](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.4.0) for more details.
|
49
|
+
|
50
|
+
# 2.2.0 - May 20, 2018
|
51
|
+
|
52
|
+
* Move out shim configuration into a `.yml` file located inside the `data/fonts/fa4/shims.yml` file.
|
53
|
+
* Update FontAwesome TTF files and legend files from 5.0.8 to 5.0.13.
|
54
|
+
* Add additional compatibility shims that were missing for some icons from FontAwesome 4. This version release is now fully backwards-compatible with all icon specifiers present in FontAwesome 4 (via version `1.4.0` of this gem).
|
55
|
+
* Fix a bug in the FontAwesome converter tool by properly requiring `fileutils` before execution.
|
56
|
+
|
1
57
|
# 2.1.0 - April 1, 2018
|
2
58
|
|
3
59
|
* Introduce backwards compatibility with FontAwesome 4 icon keys by dynamically
|
@@ -97,7 +153,7 @@
|
|
97
153
|
|
98
154
|
# 0.6.4 - May 4, 2015
|
99
155
|
|
100
|
-
- [PaymentFont](
|
156
|
+
- [PaymentFont](https://paymentfont.com) is now supported and included in `Prawn::Icon`.
|
101
157
|
|
102
158
|
# 0.6.3 - March 4, 2015
|
103
159
|
|
data/README.md
CHANGED
@@ -10,7 +10,7 @@ The following icon fonts ship with Prawn::Icon:
|
|
10
10
|
|
11
11
|
* FontAwesome (http://fontawesome.io/icons/)
|
12
12
|
* Foundation Icons (http://zurb.com/playground/foundation-icon-fonts-3)
|
13
|
-
* PaymentFont (
|
13
|
+
* PaymentFont (https://paymentfont.com)
|
14
14
|
|
15
15
|
Prawn::Icon was originally written by Jesse Doyle.
|
16
16
|
|
@@ -110,6 +110,16 @@ rake legend
|
|
110
110
|
|
111
111
|
should generate these files when run from Prawn::Icon's gem directory.
|
112
112
|
|
113
|
+
## Configuration
|
114
|
+
|
115
|
+
You can optionally configure Prawn::Icon to use an alternate data directory for font files.
|
116
|
+
|
117
|
+
```ruby
|
118
|
+
Prawn::Icon.configure do |config|
|
119
|
+
config.font_directory = '/path/to/my/fonts'
|
120
|
+
end
|
121
|
+
```
|
122
|
+
|
113
123
|
## Contributing
|
114
124
|
|
115
125
|
I'll gladly accept pull requests that are well tested for any bug found in Prawn::Icon.
|
data/Rakefile
CHANGED
@@ -0,0 +1,462 @@
|
|
1
|
+
---
|
2
|
+
fa-500px: fab-500px
|
3
|
+
fa-address-book-o: far-address-book
|
4
|
+
fa-address-card-o: far-address-card
|
5
|
+
fa-adn: fab-adn
|
6
|
+
fa-amazon: fab-amazon
|
7
|
+
fa-android: fab-android
|
8
|
+
fa-angellist: fab-angellist
|
9
|
+
fa-apple: fab-apple
|
10
|
+
fa-area-chart: fas-chart-area
|
11
|
+
fa-arrow-circle-o-down: far-arrow-alt-circle-down
|
12
|
+
fa-arrow-circle-o-left: far-arrow-alt-circle-left
|
13
|
+
fa-arrow-circle-o-right: far-arrow-alt-circle-right
|
14
|
+
fa-arrow-circle-o-up: far-arrow-alt-circle-up
|
15
|
+
fa-arrows: fas-arrows-alt
|
16
|
+
fa-arrows-alt: fas-expand-arrows-alt
|
17
|
+
fa-arrows-h: fas-arrows-alt-h
|
18
|
+
fa-arrows-v: fas-arrows-alt-v
|
19
|
+
fa-asl: fas-american-sign-language-interpreting
|
20
|
+
fa-asl-interpreting: fas-american-sign-language-interpreting
|
21
|
+
fa-automobile: fas-car
|
22
|
+
fa-bandcamp: fab-bandcamp
|
23
|
+
fa-bank: fas-university
|
24
|
+
fa-bar-chart: far-chart-bar
|
25
|
+
fa-bar-chart-o: far-chart-bar
|
26
|
+
fa-bathtub: fas-bath
|
27
|
+
fa-battery: fas-battery-full
|
28
|
+
fa-battery-0: fas-battery-empty
|
29
|
+
fa-battery-1: fas-battery-quarter
|
30
|
+
fa-battery-2: fas-battery-half
|
31
|
+
fa-battery-3: fas-battery-three-quarters
|
32
|
+
fa-battery-4: fas-battery-full
|
33
|
+
fa-behance: fab-behance
|
34
|
+
fa-behance-square: fab-behance-square
|
35
|
+
fa-bell-o: far-bell
|
36
|
+
fa-bell-slash-o: far-bell-slash
|
37
|
+
fa-bitbucket: fab-bitbucket
|
38
|
+
fa-bitbucket-square: fab-bitbucket
|
39
|
+
fa-bitcoin: fab-bitcoin
|
40
|
+
fa-black-tie: fab-black-tie
|
41
|
+
fa-bluetooth: fab-bluetooth
|
42
|
+
fa-bluetooth-b: fab-bluetooth-b
|
43
|
+
fa-bookmark-o: far-bookmark
|
44
|
+
fa-btc: fab-btc
|
45
|
+
fa-building-o: far-building
|
46
|
+
fa-buysellads: fab-buysellads
|
47
|
+
fa-cab: fas-taxi
|
48
|
+
fa-calendar: fas-calendar-alt
|
49
|
+
fa-calendar-check-o: far-calendar-check
|
50
|
+
fa-calendar-minus-o: far-calendar-minus
|
51
|
+
fa-calendar-o: far-calendar
|
52
|
+
fa-calendar-plus-o: far-calendar-plus
|
53
|
+
fa-calendar-times-o: far-calendar-times
|
54
|
+
fa-caret-square-o-down: far-caret-square-down
|
55
|
+
fa-caret-square-o-left: far-caret-square-left
|
56
|
+
fa-caret-square-o-right: far-caret-square-right
|
57
|
+
fa-caret-square-o-up: far-caret-square-up
|
58
|
+
fa-cc: far-closed-captioning
|
59
|
+
fa-cc-amex: fab-cc-amex
|
60
|
+
fa-cc-diners-club: fab-cc-diners-club
|
61
|
+
fa-cc-discover: fab-cc-discover
|
62
|
+
fa-cc-jcb: fab-cc-jcb
|
63
|
+
fa-cc-mastercard: fab-cc-mastercard
|
64
|
+
fa-cc-paypal: fab-cc-paypal
|
65
|
+
fa-cc-stripe: fab-cc-stripe
|
66
|
+
fa-cc-visa: fab-cc-visa
|
67
|
+
fa-chain: fas-link
|
68
|
+
fa-chain-broken: fas-unlink
|
69
|
+
fa-check-circle-o: far-check-circle
|
70
|
+
fa-check-square-o: far-check-square
|
71
|
+
fa-chrome: fab-chrome
|
72
|
+
fa-circle-o: far-circle
|
73
|
+
fa-circle-o-notch: fas-circle-notch
|
74
|
+
fa-circle-thin: far-circle
|
75
|
+
fa-clipboard: far-clipboard
|
76
|
+
fa-clock-o: far-clock
|
77
|
+
fa-clone: far-clone
|
78
|
+
fa-close: fas-times
|
79
|
+
fa-cloud-download: fas-cloud-download-alt
|
80
|
+
fa-cloud-upload: fas-cloud-upload-alt
|
81
|
+
fa-cny: fas-yen-sign
|
82
|
+
fa-code-fork: fas-code-branch
|
83
|
+
fa-codepen: fab-codepen
|
84
|
+
fa-codiepie: fab-codiepie
|
85
|
+
fa-comment-o: far-comment
|
86
|
+
fa-commenting: fas-comment-alt
|
87
|
+
fa-commenting-o: far-comment-dots
|
88
|
+
fa-comments-o: far-comments
|
89
|
+
fa-compass: far-compass
|
90
|
+
fa-connectdevelop: fab-connectdevelop
|
91
|
+
fa-contao: fab-contao
|
92
|
+
fa-copyright: far-copyright
|
93
|
+
fa-creative-commons: fab-creative-commons
|
94
|
+
fa-credit-card: far-credit-card
|
95
|
+
fa-credit-card-alt: fas-credit-card
|
96
|
+
fa-css3: fab-css3
|
97
|
+
fa-cutlery: fas-utensils
|
98
|
+
fa-dashboard: fas-tachometer-alt
|
99
|
+
fa-dashcube: fab-dashcube
|
100
|
+
fa-deafness: fas-deaf
|
101
|
+
fa-dedent: fas-outdent
|
102
|
+
fa-delicious: fab-delicious
|
103
|
+
fa-deviantart: fab-deviantart
|
104
|
+
fa-diamond: far-gem
|
105
|
+
fa-digg: fab-digg
|
106
|
+
fa-dollar: fas-dollar-sign
|
107
|
+
fa-dot-circle-o: far-dot-circle
|
108
|
+
fa-dribbble: fab-dribbble
|
109
|
+
fa-drivers-license: fas-id-card
|
110
|
+
fa-drivers-license-o: far-id-card
|
111
|
+
fa-dropbox: fab-dropbox
|
112
|
+
fa-drupal: fab-drupal
|
113
|
+
fa-edge: fab-edge
|
114
|
+
fa-eercast: fab-sellcast
|
115
|
+
fa-empire: fab-empire
|
116
|
+
fa-envelope-o: far-envelope
|
117
|
+
fa-envelope-open-o: far-envelope-open
|
118
|
+
fa-envira: fab-envira
|
119
|
+
fa-etsy: fab-etsy
|
120
|
+
fa-eur: fas-euro-sign
|
121
|
+
fa-euro: fas-euro-sign
|
122
|
+
fa-exchange: fas-exchange-alt
|
123
|
+
fa-expeditedssl: fab-expeditedssl
|
124
|
+
fa-external-link: fas-external-link-alt
|
125
|
+
fa-external-link-square: fas-external-link-square-alt
|
126
|
+
fa-eye-dropper: far-eye-dropper
|
127
|
+
fa-eye-slash: far-eye-slash
|
128
|
+
fa-eyedropper: fas-eye-dropper
|
129
|
+
fa-fa: fab-font-awesome
|
130
|
+
fa-facebook: fab-facebook-f
|
131
|
+
fa-facebook-f: fab-facebook-f
|
132
|
+
fa-facebook-official: fab-facebook
|
133
|
+
fa-facebook-square: fab-facebook-square
|
134
|
+
fa-feed: fas-rss
|
135
|
+
fa-file-archive-o: far-file-archive
|
136
|
+
fa-file-audio-o: far-file-audio
|
137
|
+
fa-file-code-o: far-file-code
|
138
|
+
fa-file-excel-o: far-file-excel
|
139
|
+
fa-file-image-o: far-file-image
|
140
|
+
fa-file-movie-o: far-file-video
|
141
|
+
fa-file-o: far-file
|
142
|
+
fa-file-pdf-o: far-file-pdf
|
143
|
+
fa-file-photo-o: far-file-image
|
144
|
+
fa-file-picture-o: far-file-image
|
145
|
+
fa-file-powerpoint-o: far-file-powerpoint
|
146
|
+
fa-file-sound-o: far-file-audio
|
147
|
+
fa-file-text: fas-file-alt
|
148
|
+
fa-file-text-o: far-file-alt
|
149
|
+
fa-file-video-o: far-file-video
|
150
|
+
fa-file-word-o: far-file-word
|
151
|
+
fa-file-zip-o: far-file-archive
|
152
|
+
fa-files-o: far-copy
|
153
|
+
fa-firefox: fab-firefox
|
154
|
+
fa-first-order: fab-first-order
|
155
|
+
fa-flag-o: far-flag
|
156
|
+
fa-flash: fas-bolt
|
157
|
+
fa-flickr: fab-flickr
|
158
|
+
fa-floppy-o: far-save
|
159
|
+
fa-folder-o: far-folder
|
160
|
+
fa-folder-open-o: far-folder-open
|
161
|
+
fa-font-awesome: fab-font-awesome
|
162
|
+
fa-fonticons: fab-fonticons
|
163
|
+
fa-fort-awesome: fab-fort-awesome
|
164
|
+
fa-forumbee: fab-forumbee
|
165
|
+
fa-foursquare: fab-foursquare
|
166
|
+
fa-free-code-camp: fab-free-code-camp
|
167
|
+
fa-frown-o: far-frown
|
168
|
+
fa-futbol-o: far-futbol
|
169
|
+
fa-gbp: fas-pound-sign
|
170
|
+
fa-ge: fab-empire
|
171
|
+
fa-gear: fas-cog
|
172
|
+
fa-gears: fas-cogs
|
173
|
+
fa-get-pocket: fab-get-pocket
|
174
|
+
fa-gg: fab-gg
|
175
|
+
fa-gg-circle: fab-gg-circle
|
176
|
+
fa-git: fab-git
|
177
|
+
fa-git-square: fab-git-square
|
178
|
+
fa-github: fab-github
|
179
|
+
fa-github-alt: fab-github-alt
|
180
|
+
fa-github-square: fab-github-square
|
181
|
+
fa-gitlab: fab-gitlab
|
182
|
+
fa-gittip: fab-gratipay
|
183
|
+
fa-glass: fas-glass-martini
|
184
|
+
fa-glide: fab-glide
|
185
|
+
fa-glide-g: fab-glide-g
|
186
|
+
fa-google: fab-google
|
187
|
+
fa-google-plus: fab-google-plus-g
|
188
|
+
fa-google-plus-circle: fab-google-plus
|
189
|
+
fa-google-plus-official: fab-google-plus
|
190
|
+
fa-google-plus-square: fab-google-plus-square
|
191
|
+
fa-google-wallet: fab-google-wallet
|
192
|
+
fa-gratipay: fab-gratipay
|
193
|
+
fa-grav: fab-grav
|
194
|
+
fa-group: fas-users
|
195
|
+
fa-hacker-news: fab-hacker-news
|
196
|
+
fa-hand-grab-o: far-hand-rock
|
197
|
+
fa-hand-lizard-o: far-hand-lizard
|
198
|
+
fa-hand-o-down: far-hand-point-down
|
199
|
+
fa-hand-o-left: far-hand-point-left
|
200
|
+
fa-hand-o-right: far-hand-point-right
|
201
|
+
fa-hand-o-up: far-hand-point-up
|
202
|
+
fa-hand-paper-o: far-hand-paper
|
203
|
+
fa-hand-peace-o: far-hand-peace
|
204
|
+
fa-hand-pointer-o: far-hand-pointer
|
205
|
+
fa-hand-rock-o: far-hand-rock
|
206
|
+
fa-hand-scissors-o: far-hand-scissors
|
207
|
+
fa-hand-spock-o: far-hand-spock
|
208
|
+
fa-hand-stop-o: far-hand-paper
|
209
|
+
fa-handshake-o: far-handshake
|
210
|
+
fa-hard-of-hearing: fas-deaf
|
211
|
+
fa-hdd-o: far-hdd
|
212
|
+
fa-header: fas-heading
|
213
|
+
fa-heart-o: far-heart
|
214
|
+
fa-hospital-o: far-hospital
|
215
|
+
fa-hotel: fas-bed
|
216
|
+
fa-hourglass-1: fas-hourglass-start
|
217
|
+
fa-hourglass-2: fas-hourglass-half
|
218
|
+
fa-hourglass-3: fas-hourglass-end
|
219
|
+
fa-hourglass-o: far-hourglass
|
220
|
+
fa-houzz: fab-houzz
|
221
|
+
fa-html5: fab-html5
|
222
|
+
fa-id-badge: far-id-badge
|
223
|
+
fa-id-card-o: far-id-card
|
224
|
+
fa-ils: fas-shekel-sign
|
225
|
+
fa-imdb: fab-imdb
|
226
|
+
fa-inr: fas-rupee-sign
|
227
|
+
fa-instagram: fab-instagram
|
228
|
+
fa-institution: fas-university
|
229
|
+
fa-internet-explorer: fab-internet-explorer
|
230
|
+
fa-intersex: fas-transgender
|
231
|
+
fa-ioxhost: fab-ioxhost
|
232
|
+
fa-joomla: fab-joomla
|
233
|
+
fa-jpy: fas-yen-sign
|
234
|
+
fa-jsfiddle: fab-jsfiddle
|
235
|
+
fa-keyboard-o: far-keyboard
|
236
|
+
fa-krw: fas-won-sign
|
237
|
+
fa-lastfm: fab-lastfm
|
238
|
+
fa-lastfm-square: fab-lastfm-square
|
239
|
+
fa-leanpub: fab-leanpub
|
240
|
+
fa-legal: fas-gavel
|
241
|
+
fa-lemon-o: far-lemon
|
242
|
+
fa-level-down: fas-level-down-alt
|
243
|
+
fa-level-up: fas-level-up-alt
|
244
|
+
fa-life-bouy: fas-life-ring
|
245
|
+
fa-life-buoy: fas-life-ring
|
246
|
+
fa-life-ring: far-life-ring
|
247
|
+
fa-life-saver: fas-life-ring
|
248
|
+
fa-lightbulb-o: far-lightbulb
|
249
|
+
fa-line-chart: fas-chart-line
|
250
|
+
fa-linkedin: fab-linkedin-in
|
251
|
+
fa-linkedin-square: fab-linkedin
|
252
|
+
fa-linode: fab-linode
|
253
|
+
fa-linux: fab-linux
|
254
|
+
fa-list-alt: far-list-alt
|
255
|
+
fa-long-arrow-down: fas-long-arrow-alt-down
|
256
|
+
fa-long-arrow-left: fas-long-arrow-alt-left
|
257
|
+
fa-long-arrow-right: fas-long-arrow-alt-right
|
258
|
+
fa-long-arrow-up: fas-long-arrow-alt-up
|
259
|
+
fa-mail-forward: fas-share
|
260
|
+
fa-mail-reply: fas-reply
|
261
|
+
fa-mail-reply-all: fas-reply-all
|
262
|
+
fa-map-marker: fas-map-marker-alt
|
263
|
+
fa-map-o: far-map
|
264
|
+
fa-maxcdn: fab-maxcdn
|
265
|
+
fa-meanpath: fab-font-awesome
|
266
|
+
fa-medium: fab-medium
|
267
|
+
fa-meetup: fab-meetup
|
268
|
+
fa-meh-o: far-meh
|
269
|
+
fa-minus-square-o: far-minus-square
|
270
|
+
fa-mixcloud: fab-mixcloud
|
271
|
+
fa-mobile: fas-mobile-alt
|
272
|
+
fa-mobile-phone: fas-mobile
|
273
|
+
fa-modx: fab-modx
|
274
|
+
fa-money: far-money-bill-alt
|
275
|
+
fa-moon-o: far-moon
|
276
|
+
fa-mortar-board: fas-graduation-cap
|
277
|
+
fa-navicon: fas-bars
|
278
|
+
fa-newspaper-o: far-newspaper
|
279
|
+
fa-object-group: far-object-group
|
280
|
+
fa-object-ungroup: far-object-ungroup
|
281
|
+
fa-odnoklassniki: fab-odnoklassniki
|
282
|
+
fa-odnoklassniki-square: fab-odnoklassniki-square
|
283
|
+
fa-opencart: fab-opencart
|
284
|
+
fa-openid: fab-openid
|
285
|
+
fa-opera: fab-opera
|
286
|
+
fa-optin-monster: fab-optin-monster
|
287
|
+
fa-pagelines: fab-pagelines
|
288
|
+
fa-paper-plane-o: far-paper-plane
|
289
|
+
fa-paste: fas-paste
|
290
|
+
fa-pause-circle-o: far-pause-circle
|
291
|
+
fa-paypal: fab-paypal
|
292
|
+
fa-pencil: fas-pencil-alt
|
293
|
+
fa-pencil-square: fas-pen-square
|
294
|
+
fa-pencil-square-o: far-edit
|
295
|
+
fa-photo: far-image
|
296
|
+
fa-picture: fas-image
|
297
|
+
fa-picture-o: far-image
|
298
|
+
fa-pie-chart: fas-chart-pie
|
299
|
+
fa-pied-piper: fab-pied-piper
|
300
|
+
fa-pied-piper-alt: fab-pied-piper-alt
|
301
|
+
fa-pied-piper-pp: fab-pied-piper-pp
|
302
|
+
fa-pinterest: fab-pinterest
|
303
|
+
fa-pinterest-p: fab-pinterest-p
|
304
|
+
fa-pinterest-square: fab-pinterest-square
|
305
|
+
fa-play-circle-o: far-play-circle
|
306
|
+
fa-plus-square-o: far-plus-square
|
307
|
+
fa-product-hunt: fab-product-hunt
|
308
|
+
fa-qq: fab-qq
|
309
|
+
fa-question-circle-o: far-question-circle
|
310
|
+
fa-quora: fab-quora
|
311
|
+
fa-ra: fab-rebel
|
312
|
+
fa-ravelry: fab-ravelry
|
313
|
+
fa-rebel: fab-rebel
|
314
|
+
fa-reddit: fab-reddit
|
315
|
+
fa-reddit-alien: fab-reddit-alien
|
316
|
+
fa-reddit-square: fab-reddit-square
|
317
|
+
fa-refresh: fas-sync
|
318
|
+
fa-registered: far-registered
|
319
|
+
fa-remove: fas-times
|
320
|
+
fa-renren: fab-renren
|
321
|
+
fa-reorder: fas-bars
|
322
|
+
fa-repeat: fas-redo
|
323
|
+
fa-resistance: fab-rebel
|
324
|
+
fa-rmb: fas-yen-sign
|
325
|
+
fa-rotate-left: fas-undo
|
326
|
+
fa-rotate-right: fas-redo
|
327
|
+
fa-rouble: fas-ruble-sign
|
328
|
+
fa-rub: fas-ruble-sign
|
329
|
+
fa-ruble: fas-ruble-sign
|
330
|
+
fa-rupee: fas-rupee-sign
|
331
|
+
fa-s15: fas-bath
|
332
|
+
fa-safari: fab-safari
|
333
|
+
fa-scissors: fas-cut
|
334
|
+
fa-scribd: fab-scribd
|
335
|
+
fa-sellsy: fab-sellsy
|
336
|
+
fa-send: fas-paper-plane
|
337
|
+
fa-send-o: far-paper-plane
|
338
|
+
fa-share-square-o: far-share-square
|
339
|
+
fa-shekel: fas-shekel-sign
|
340
|
+
fa-sheqel: fas-shekel-sign
|
341
|
+
fa-shield: fas-shield-alt
|
342
|
+
fa-shirtsinbulk: fab-shirtsinbulk
|
343
|
+
fa-sign-in: fas-sign-in-alt
|
344
|
+
fa-sign-out: fas-sign-out-alt
|
345
|
+
fa-signing: fas-sign-language
|
346
|
+
fa-simplybuilt: fab-simplybuilt
|
347
|
+
fa-skyatlas: fab-skyatlas
|
348
|
+
fa-skype: fab-skype
|
349
|
+
fa-slack: fab-slack
|
350
|
+
fa-sliders: fas-sliders-h
|
351
|
+
fa-slideshare: fab-slideshare
|
352
|
+
fa-smile-o: far-smile
|
353
|
+
fa-snapchat: fab-snapchat
|
354
|
+
fa-snapchat-ghost: fab-snapchat-ghost
|
355
|
+
fa-snapchat-square: fab-snapchat-square
|
356
|
+
fa-snowflake-o: far-snowflake
|
357
|
+
fa-soccer-ball-o: far-futbol
|
358
|
+
fa-sort-alpha-asc: fas-sort-alpha-down
|
359
|
+
fa-sort-alpha-desc: fas-sort-alpha-up
|
360
|
+
fa-sort-amount-asc: fas-sort-amount-down
|
361
|
+
fa-sort-amount-desc: fas-sort-amount-up
|
362
|
+
fa-sort-asc: fas-sort-up
|
363
|
+
fa-sort-desc: fas-sort-down
|
364
|
+
fa-sort-numeric-asc: fas-sort-numeric-down
|
365
|
+
fa-sort-numeric-desc: fas-sort-numeric-up
|
366
|
+
fa-soundcloud: fab-soundcloud
|
367
|
+
fa-spoon: fas-utensil-spoon
|
368
|
+
fa-spotify: fab-spotify
|
369
|
+
fa-square-o: far-square
|
370
|
+
fa-stack-exchange: fab-stack-exchange
|
371
|
+
fa-stack-overflow: fab-stack-overflow
|
372
|
+
fa-star-half-empty: fas-star-half
|
373
|
+
fa-star-half-full: fas-star-half
|
374
|
+
fa-star-half-o: far-star-half
|
375
|
+
fa-star-o: far-star
|
376
|
+
fa-steam: fab-steam
|
377
|
+
fa-steam-square: fab-steam-square
|
378
|
+
fa-sticky-note-o: far-sticky-note
|
379
|
+
fa-stop-circle-o: far-stop-circle
|
380
|
+
fa-stumbleupon: fab-stumbleupon
|
381
|
+
fa-stumbleupon-circle: fab-stumbleupon-circle
|
382
|
+
fa-sun-o: far-sun
|
383
|
+
fa-superpowers: fab-superpowers
|
384
|
+
fa-support: far-life-ring
|
385
|
+
fa-tablet: fas-tablet-alt
|
386
|
+
fa-tachometer: fas-tachometer-alt
|
387
|
+
fa-telegram: fab-telegram
|
388
|
+
fa-television: fas-tv
|
389
|
+
fa-tencent-weibo: fab-tencent-weibo
|
390
|
+
fa-themeisle: fab-themeisle
|
391
|
+
fa-thermometer-0: fas-thermometer-empty
|
392
|
+
fa-thermometer-1: fas-thermometer-quarter
|
393
|
+
fa-thermometer-2: fas-thermometer-half
|
394
|
+
fa-thermometer-3: fas-thermometer-three-quarters
|
395
|
+
fa-thermometer-4: fas-thermometer-full
|
396
|
+
fa-thumb-tack: fas-thumbtack
|
397
|
+
fa-thumbs-o-down: far-thumbs-down
|
398
|
+
fa-thumbs-o-up: far-thumbs-up
|
399
|
+
fa-ticket: fas-ticket-alt
|
400
|
+
fa-times-circle-o: far-times-circle
|
401
|
+
fa-times-rectangle: fas-window-close
|
402
|
+
fa-times-rectangle-o: far-window-close
|
403
|
+
fa-toggle-down: far-caret-square-down
|
404
|
+
fa-toggle-left: far-caret-square-left
|
405
|
+
fa-toggle-right: far-caret-square-right
|
406
|
+
fa-toggle-up: far-caret-square-up
|
407
|
+
fa-trash: fas-trash-alt
|
408
|
+
fa-trash-o: far-trash-alt
|
409
|
+
fa-trello: fab-trello
|
410
|
+
fa-tripadvisor: fab-tripadvisor
|
411
|
+
fa-try: fas-lira-sign
|
412
|
+
fa-tumblr: fab-tumblr
|
413
|
+
fa-tumblr-square: fab-tumblr-square
|
414
|
+
fa-turkish-lira: fas-lira-sign
|
415
|
+
fa-twitch: fab-twitch
|
416
|
+
fa-twitter: fab-twitter
|
417
|
+
fa-twitter-square: fab-twitter-square
|
418
|
+
fa-unsorted: fas-sort
|
419
|
+
fa-usb: fab-usb
|
420
|
+
fa-usd: fas-dollar-sign
|
421
|
+
fa-user-circle-o: far-user-circle
|
422
|
+
fa-user-o: far-user
|
423
|
+
fa-vcard: fas-address-card
|
424
|
+
fa-vcard-o: far-address-card
|
425
|
+
fa-viacoin: fab-viacoin
|
426
|
+
fa-viadeo: fab-viadeo
|
427
|
+
fa-viadeo-square: fab-viadeo-square
|
428
|
+
fa-video-camera: fas-video
|
429
|
+
fa-vimeo: fab-vimeo-v
|
430
|
+
fa-vimeo-square: fab-vimeo-square
|
431
|
+
fa-vine: fab-vine
|
432
|
+
fa-vk: fab-vk
|
433
|
+
fa-volume-control-phone: fas-phone-volume
|
434
|
+
fa-warning: fas-exclamation-triangle
|
435
|
+
fa-wechat: fab-weixin
|
436
|
+
fa-weibo: fab-weibo
|
437
|
+
fa-weixin: fab-weixin
|
438
|
+
fa-whatsapp: fab-whatsapp
|
439
|
+
fa-wheelchair-alt: fab-accessible-icon
|
440
|
+
fa-wikipedia-w: fab-wikipedia-w
|
441
|
+
fa-window-close-o: far-window-close
|
442
|
+
fa-window-maximize: far-window-maximize
|
443
|
+
fa-window-restore: far-window-restore
|
444
|
+
fa-windows: fab-windows
|
445
|
+
fa-won: fas-won-sign
|
446
|
+
fa-wordpress: fab-wordpress
|
447
|
+
fa-wpbeginner: fab-wpbeginner
|
448
|
+
fa-wpexplorer: fab-wpexplorer
|
449
|
+
fa-wpforms: fab-wpforms
|
450
|
+
fa-xing-square: fab-xing-square
|
451
|
+
fa-y-combinator: fab-y-combinator
|
452
|
+
fa-y-combinator-square: fab-hacker-news
|
453
|
+
fa-yahoo: fab-yahoo
|
454
|
+
fa-yc: fab-y-combinator
|
455
|
+
fa-yc-square: fab-hacker-news
|
456
|
+
fa-yelp: fab-yelp
|
457
|
+
fa-yen: fas-yen-sign
|
458
|
+
fa-yoast: fab-yoast
|
459
|
+
fa-youtube: fab-youtube
|
460
|
+
fa-youtube-play: fab-youtube
|
461
|
+
fa-youtube-square: fab-youtube-square
|
462
|
+
fa-xing: fab-xing
|