feat(cleanup): remove no longer used FontAwesome

This commit is contained in:
Saúl Ibarra Corretgé
2018-11-29 12:36:22 +01:00
committed by Zoltan Bettenbuk
parent f83d609f1a
commit e452867e12
20 changed files with 28 additions and 6529 deletions

View File

@@ -84,16 +84,14 @@ class RemoteControlButton extends Component<Props> {
switch (remoteControlState) {
case REMOTE_CONTROL_MENU_STATES.NOT_STARTED:
className = 'requestRemoteControlLink';
icon = 'fa fa-play';
icon = 'icon-play';
break;
case REMOTE_CONTROL_MENU_STATES.REQUESTING:
className = 'requestRemoteControlLink disabled';
icon = 'remote-control-spinner fa fa-spinner fa-spin';
className = ' disabled';
icon = 'icon-play';
break;
case REMOTE_CONTROL_MENU_STATES.STARTED:
className = 'requestRemoteControlLink';
icon = 'fa fa-stop';
icon = 'icon-stop';
break;
case REMOTE_CONTROL_MENU_STATES.NOT_SUPPORTED: