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

@@ -7,7 +7,7 @@ import { keyframes } from 'tss-react';
import { makeStyles } from 'tss-react/mui';
import { hideDialog } from '../../../dialog/actions';
import { IconClose } from '../../../icons/svg';
import { IconCloseLarge } from '../../../icons/svg';
import { withPixelLineHeight } from '../../../styles/functions.web';
import Button from './Button';
@@ -277,7 +277,7 @@ const Dialog = ({
{!hideCloseButton && (
<ClickableIcon
accessibilityLabel = { t('dialog.close') }
icon = { IconClose }
icon = { IconCloseLarge }
id = 'modal-header-close-button'
onClick = { onClose } />
)}