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

@@ -4,7 +4,7 @@ import React from 'react';
import { Text, TouchableOpacity, View } from 'react-native';
import { translate } from '../../../base/i18n';
import { Icon, IconClose } from '../../../base/icons';
import { Icon, IconCloseLarge } from '../../../base/icons';
import { replaceNonUnicodeEmojis } from '../../../chat/functions';
import AbstractNotification, {
type Props
@@ -47,7 +47,7 @@ class Notification extends AbstractNotification<Props> {
</View>
<TouchableOpacity onPress = { this._onDismissed }>
<Icon
src = { IconClose }
src = { IconCloseLarge }
style = { styles.dismissIcon } />
</TouchableOpacity>
</View>