Skip to content

Commit 7d7bfc5

Browse files
authored
Merge pull request #4 from calderacc/font-awesome-update
Change brand icons to font awesome 5
2 parents 823b02d + dcf344a commit 7d7bfc5

11 files changed

Lines changed: 11 additions & 11 deletions

Network/AbstractFacebookNetwork.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ abstract class AbstractFacebookNetwork extends AbstractNetwork
77
const REGEX_PATTERN = '/(?:(?:http|https):\/\/)?(?:www.)?facebook.com\/(?:(?:\w)*#!\/)?(?:pages\/)?(?:[?\w\-]*\/)?(?:profile.php\?id=(?=\d.*))?([\w\-]*)?/';
88

99
/** @var string $icon */
10-
protected $icon = 'fa-facebook';
10+
protected $icon = 'fab fa-facebook-f';
1111

1212
/** @var string $backgroundColor */
1313
protected $backgroundColor = 'rgb(60, 88, 152)';

Network/AbstractInstagramNetwork.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
abstract class AbstractInstagramNetwork extends AbstractNetwork
66
{
77
/** @var string $icon */
8-
protected $icon = 'fa-instagram';
8+
protected $icon = 'fab fa-instagram';
99

1010
/** @var string $backgroundColor */
1111
protected $backgroundColor = 'rgb(203, 44, 128)';

Network/AbstractYoutubeNetwork.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
abstract class AbstractYoutubeNetwork extends AbstractNetwork
66
{
77
/** @var string $icon */
8-
protected $icon = 'fa-youtube';
8+
protected $icon = 'fab fa-youtube';
99

1010
/** @var string $backgroundColor */
1111
protected $backgroundColor = 'rgb(255, 0, 0)';

Network/DiscordChat.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class DiscordChat extends AbstractNetwork
88
protected $name = 'Discord-Chat';
99

1010
/** @var string $icon */
11-
protected $icon = 'fa-discord';
11+
protected $icon = 'fab fa-discord';
1212

1313
/** @var string $backgroundColor */
1414
protected $backgroundColor = 'rgb(114, 137, 218)';

Network/Flickr.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Flickr extends AbstractNetwork
88
protected $name = 'flickr';
99

1010
/** @var string $icon */
11-
protected $icon = 'fa-flickr';
11+
protected $icon = 'fab fa-flickr';
1212

1313
/** @var string $backgroundColor */
1414
protected $backgroundColor = 'rgb(12, 101, 211)';

Network/Google.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Google extends AbstractNetwork
88
protected $name = 'Google+';
99

1010
/** @var string $icon */
11-
protected $icon = 'fa-google-plus';
11+
protected $icon = 'fab google-plus-g';
1212

1313
/** @var string $backgroundColor */
1414
protected $backgroundColor = 'rgb(234, 66, 53)';

Network/Homepage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Homepage extends AbstractNetwork
88
protected $name = 'Homepage';
99

1010
/** @var string $icon */
11-
protected $icon = 'fa-globe';
11+
protected $icon = 'far fa-home';
1212

1313
/** @var string $backgroundColor */
1414
protected $backgroundColor = 'white';

Network/TelegramChat.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class TelegramChat extends AbstractNetwork
88
protected $name = 'Telegram-Chat';
99

1010
/** @var string $icon */
11-
protected $icon = 'fa-telegram';
11+
protected $icon = 'fab fa-telegram-plane';
1212

1313
/** @var string $backgroundColor */
1414
protected $backgroundColor = 'rgb(40, 159, 217)';

Network/Tumblr.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Tumblr extends AbstractNetwork
88
protected $name = 'Tumblr';
99

1010
/** @var string $icon */
11-
protected $icon = 'fa-tumblr';
11+
protected $icon = 'fab fa-tumblr';
1212

1313
/** @var string $backgroundColor */
1414
protected $backgroundColor = 'rgb(0, 0, 0)';

Network/Twitter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Twitter extends AbstractNetwork
88
protected $name = 'twitter';
99

1010
/** @var string $icon */
11-
protected $icon = 'fa-twitter';
11+
protected $icon = 'fab fa-twitter';
1212

1313
/** @var string $backgroundColor */
1414
protected $backgroundColor = 'rgb(29, 161, 242)';

0 commit comments

Comments
 (0)