Skip to content

Commit b592ea6

Browse files
committed
style(content_management): update action button icons
- Replace edit_note icon with drafts_outlined for Drafts button - Replace inventory_2_outlined icon with archive_outlined for Archived Items button - Replace plain add icon with add_outlined for Add New Item button
1 parent 590cdd3 commit b592ea6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/content_management/view/content_management_page.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class _ContentManagementPageState extends State<ContentManagementPage>
9696
),
9797
actions: [
9898
IconButton(
99-
icon: const Icon(Icons.edit_note),
99+
icon: const Icon(Icons.drafts_outlined),
100100
tooltip: l10n.draftsIconTooltip,
101101
onPressed: () {
102102
final currentTab = context
@@ -114,7 +114,7 @@ class _ContentManagementPageState extends State<ContentManagementPage>
114114
},
115115
),
116116
IconButton(
117-
icon: const Icon(Icons.inventory_2_outlined),
117+
icon: const Icon(Icons.archive_outlined),
118118
tooltip: l10n.archivedItems,
119119
onPressed: () {
120120
final currentTab = context
@@ -132,7 +132,7 @@ class _ContentManagementPageState extends State<ContentManagementPage>
132132
},
133133
),
134134
IconButton(
135-
icon: const Icon(Icons.add),
135+
icon: const Icon(Icons.add_outlined),
136136
tooltip: l10n.addNewItem,
137137
onPressed: () {
138138
final currentTab = context

0 commit comments

Comments
 (0)