diff --git a/assets/images/ic_delete_dialog_identity.svg b/assets/images/ic_delete_dialog_identity.svg index 1d7492eba..78a1d1695 100644 --- a/assets/images/ic_delete_dialog_identity.svg +++ b/assets/images/ic_delete_dialog_identity.svg @@ -1,12 +1,4 @@ - - - - + + diff --git a/assets/images/ic_delete_dialog_recipients.svg b/assets/images/ic_delete_dialog_recipients.svg new file mode 100644 index 000000000..0976366eb --- /dev/null +++ b/assets/images/ic_delete_dialog_recipients.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/core/lib/presentation/resources/image_paths.dart b/core/lib/presentation/resources/image_paths.dart index de1b8de76..046f58032 100644 --- a/core/lib/presentation/resources/image_paths.dart +++ b/core/lib/presentation/resources/image_paths.dart @@ -87,6 +87,7 @@ class ImagePaths { String get icReplyTo => _getImagePath('ic_reply_to.svg'); String get icEditIdentity => _getImagePath('ic_edit_identity.svg'); String get icDeleteDialogIdentity => _getImagePath('ic_delete_dialog_identity.svg'); + String get icDeleteDialogRecipients => _getImagePath('ic_delete_dialog_recipients.svg'); String get icDeleteDialogFailed => _getImagePath('ic_delete_dialog_failed.svg'); String get icEdit => _getImagePath('ic_edit.svg'); String get icEye => _getImagePath('ic_eye.svg'); diff --git a/lib/features/manage_account/presentation/forward/forward_controller.dart b/lib/features/manage_account/presentation/forward/forward_controller.dart index a3f287dad..b1c2e65ce 100644 --- a/lib/features/manage_account/presentation/forward/forward_controller.dart +++ b/lib/features/manage_account/presentation/forward/forward_controller.dart @@ -118,7 +118,7 @@ class ForwardController extends BaseController { AppLocalizations.of(context).remove, onConfirmAction: () => _handleDeleteRecipientAction({emailAddress}), showAsBottomSheet: true, - icon: SvgPicture.asset(_imagePaths.icDeleteDialogIdentity, fit: BoxFit.fill), + icon: SvgPicture.asset(_imagePaths.icDeleteDialogRecipients, fit: BoxFit.fill), titleStyle: const TextStyle( fontSize: 20, fontWeight: FontWeight.w600, @@ -205,7 +205,7 @@ class ForwardController extends BaseController { AppLocalizations.of(currentContext!).remove, onConfirmAction: () => _handleDeleteRecipientAction(listEmailAddress), showAsBottomSheet: true, - icon: SvgPicture.asset(_imagePaths.icDeleteDialogIdentity, fit: BoxFit.fill), + icon: SvgPicture.asset(_imagePaths.icDeleteDialogRecipients, fit: BoxFit.fill), titleStyle: const TextStyle( fontSize: 20, fontWeight: FontWeight.w600,