diff --git a/mailpoet/assets/css/src/components-automation-editor/_add-step-button.scss b/mailpoet/assets/css/src/components-automation-editor/_add-step-button.scss
index 3cc27186c0..8a8d6039f7 100644
--- a/mailpoet/assets/css/src/components-automation-editor/_add-step-button.scss
+++ b/mailpoet/assets/css/src/components-automation-editor/_add-step-button.scss
@@ -3,6 +3,7 @@
background: #dcdcde;
border: none;
border-radius: 2px;
+ fill: #2b3337;
height: 16px;
margin: 0;
outline: 4px solid #fbfbfb;
diff --git a/mailpoet/assets/js/src/automation/editor/components/icons/index.ts b/mailpoet/assets/js/src/automation/editor/components/icons/index.ts
index b6f7264383..ff4325aad2 100644
--- a/mailpoet/assets/js/src/automation/editor/components/icons/index.ts
+++ b/mailpoet/assets/js/src/automation/editor/components/icons/index.ts
@@ -1,4 +1,3 @@
export { DelayIcon } from './delay';
export { EmailIcon } from './email';
-export { PlusIcon } from './plus';
export { TriggerIcon } from './trigger';
diff --git a/mailpoet/assets/js/src/automation/editor/components/icons/plus.tsx b/mailpoet/assets/js/src/automation/editor/components/icons/plus.tsx
deleted file mode 100644
index 45a7f6a332..0000000000
--- a/mailpoet/assets/js/src/automation/editor/components/icons/plus.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-export function PlusIcon(): JSX.Element {
- return (
-
- );
-}
diff --git a/mailpoet/assets/js/src/automation/editor/components/workflow/add-step-button.tsx b/mailpoet/assets/js/src/automation/editor/components/workflow/add-step-button.tsx
index 76162ec5fb..bc03fb0bae 100644
--- a/mailpoet/assets/js/src/automation/editor/components/workflow/add-step-button.tsx
+++ b/mailpoet/assets/js/src/automation/editor/components/workflow/add-step-button.tsx
@@ -1,7 +1,7 @@
import { useContext } from 'react';
import { __unstableCompositeItem as CompositeItem } from '@wordpress/components';
+import { Icon, plus } from '@wordpress/icons';
import { WorkflowCompositeContext } from './context';
-import { PlusIcon } from '../icons';
type Props = {
onClick?: (element: HTMLButtonElement) => void;
@@ -21,7 +21,7 @@ export function AddStepButton({ onClick }: Props): JSX.Element {
onClick(button);
}}
>
-
+
);
}