Don't use _rounded icons

This commit is contained in:
Dain Nilsson 2024-03-08 14:14:02 +01:00
parent 277a7bcab7
commit f9e3c875f2
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8
3 changed files with 3 additions and 3 deletions

View File

@ -239,7 +239,7 @@ class LoggingPanel extends ConsumerWidget {
),
ActionChip(
key: logChip,
avatar: const Icon(Symbols.content_copy_rounded),
avatar: const Icon(Symbols.content_copy),
backgroundColor: Theme.of(context).colorScheme.surfaceVariant,
label: Text(l10n.s_copy_log),
onPressed: () async {

View File

@ -172,7 +172,7 @@ class _KeyCustomizationDialogState
: primaryColor,
shape: const CircleBorder(),
child: Icon(
Symbols.cancel_rounded,
Symbols.cancel,
size: 16,
color: _customColor == null
? theme.colorScheme.onSurface

View File

@ -70,7 +70,7 @@ class AccountHelper {
ActionItem(
key: keys.copyAction,
feature: features.accountsClipboard,
icon: const Icon(Symbols.content_copy_rounded),
icon: const Icon(Symbols.content_copy),
title: l10n.l_copy_to_clipboard,
subtitle: l10n.l_copy_code_desc,
shortcut: Platform.isMacOS ? '\u2318 C' : 'Ctrl+C',