1
0
mirror of https://github.com/flarum/core.git synced 2025-07-18 23:31:17 +02:00

Update icons to "fas" (#1426)

* Update icons to "fas"

* Install icon change
This commit is contained in:
Charlie
2018-05-08 23:56:30 -07:00
committed by Daniël Klabbers
parent b8632d693a
commit 4df0101f56
47 changed files with 101 additions and 101 deletions

View File

@@ -8,6 +8,6 @@ import icon from 'flarum/helpers/icon';
*/
export default function userOnline(user) {
if (user.lastSeenTime() && user.isOnline()) {
return <span className="UserOnline">{icon('fa fa-circle')}</span>;
return <span className="UserOnline">{icon('fas fa-circle')}</span>;
}
}