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

@@ -5,7 +5,7 @@ import { type Dispatch } from 'redux';
import { isDialogOpen, openDialog } from '../../../base/dialog';
import { RAISE_HAND_ENABLED, getFeatureFlag } from '../../../base/flags';
import { translate } from '../../../base/i18n';
import { IconRaisedHand } from '../../../base/icons';
import { IconRaiseHand } from '../../../base/icons';
import {
getLocalParticipant, hasRaisedHand
} from '../../../base/participants';
@@ -40,7 +40,7 @@ type Props = AbstractButtonProps & {
*/
class ReactionsMenuButton extends AbstractButton<Props, *> {
accessibilityLabel = 'toolbar.accessibilityLabel.reactionsMenu';
icon = IconRaisedHand;
icon = IconRaiseHand;
label = 'toolbar.openReactionsMenu';
toggledLabel = 'toolbar.closeReactionsMenu';