diff --git a/assets/images/ic_label.svg b/assets/images/ic_label.svg
new file mode 100644
index 000000000..f5c7c1f6a
--- /dev/null
+++ b/assets/images/ic_label.svg
@@ -0,0 +1,5 @@
+
diff --git a/core/lib/presentation/resources/image_paths.dart b/core/lib/presentation/resources/image_paths.dart
index cea0e2cdf..256904613 100644
--- a/core/lib/presentation/resources/image_paths.dart
+++ b/core/lib/presentation/resources/image_paths.dart
@@ -276,6 +276,7 @@ class ImagePaths {
String get icAiMoreProfessional => _getImagePath('ic_ai_more_professional.svg');
String get icAiMorePolite => _getImagePath('ic_ai_more_polite.svg');
String get icTag => _getImagePath('ic_tag.svg');
+ String get icLabel => _getImagePath('ic_label.svg');
String get icColorPicker => _getImagePath('ic_color_picker.svg');
String get icThumbsUp => _getImagePath('ic_thumbs_up.svg');
diff --git a/lib/features/mailbox/presentation/widgets/labels/label_list_item.dart b/lib/features/mailbox/presentation/widgets/labels/label_list_item.dart
index 49858237d..8feaf3fbb 100644
--- a/lib/features/mailbox/presentation/widgets/labels/label_list_item.dart
+++ b/lib/features/mailbox/presentation/widgets/labels/label_list_item.dart
@@ -98,7 +98,7 @@ class _LabelListItemState extends State {
child: Row(
children: [
_LabelIcon(
- icon: widget.imagePaths.icTag,
+ icon: widget.imagePaths.icLabel,
color: widget.label.backgroundColor,
spacing: _iconSpacing,
),