1
0
mirror of https://github.com/flarum/core.git synced 2025-10-11 06:54:26 +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

@@ -52,7 +52,7 @@ export default class Navigation extends Component {
return LinkButton.component({
className: 'Button Navigation-back Button--icon',
href: history.backUrl(),
icon: 'fa fa-chevron-left',
icon: 'fas fa-chevron-left',
title: previous.title,
config: () => {},
onclick: e => {
@@ -77,7 +77,7 @@ export default class Navigation extends Component {
return Button.component({
className: 'Button Button--icon Navigation-pin' + (pane.pinned ? ' active' : ''),
onclick: pane.togglePinned.bind(pane),
icon: 'fa fa-thumbtack'
icon: 'fas fa-thumbtack'
});
}
@@ -100,7 +100,7 @@ export default class Navigation extends Component {
e.stopPropagation();
drawer.show();
},
icon: 'fa fa-bars'
icon: 'fas fa-bars'
});
}
}