ref(design) Update icons (#12489)

Remove unused icons
Remove fill none from icons
Rename some icons
This commit is contained in:
Robert Pintilii
2022-11-08 12:24:32 +02:00
committed by GitHub
parent f4e8f860b1
commit 936a1a6b0e
323 changed files with 631 additions and 1074 deletions

View File

@@ -1,7 +1,7 @@
// @flow
import { translate } from '../../../base/i18n';
import { IconShareDesktop } from '../../../base/icons';
import { IconScreenshare, IconStopScreenshare } from '../../../base/icons';
import JitsiMeetJS from '../../../base/lib-jitsi-meet/_';
import { connect } from '../../../base/redux';
import { AbstractButton, type AbstractButtonProps } from '../../../base/toolbox/components';
@@ -32,7 +32,8 @@ type Props = AbstractButtonProps & {
class ShareDesktopButton extends AbstractButton<Props, *> {
accessibilityLabel = 'toolbar.accessibilityLabel.shareYourScreen';
label = 'toolbar.startScreenSharing';
icon = IconShareDesktop;
icon = IconScreenshare;
toggledIcon = IconStopScreenshare;
toggledLabel = 'toolbar.stopScreenSharing';
tooltip = 'toolbar.accessibilityLabel.shareYourScreen';