diff --git a/ee/app/assets/javascripts/escalation_policies/components/escalation_policies_wrapper.vue b/ee/app/assets/javascripts/escalation_policies/components/escalation_policies_wrapper.vue
index 0bb44ef79496b864a6790b928b342e2b85613651..25538dc6e6291b4632a7bb6482ff9642ec6239a3 100644
--- a/ee/app/assets/javascripts/escalation_policies/components/escalation_policies_wrapper.vue
+++ b/ee/app/assets/javascripts/escalation_policies/components/escalation_policies_wrapper.vue
@@ -127,7 +127,6 @@ export default {
       v-else
       :title="$options.i18n.emptyState.title"
       :svg-path="emptyEscalationPoliciesSvgPath"
-      :svg-height="null"
     >
       <template #description>
         <p v-if="userCanCreateEscalationPolicy">
diff --git a/ee/app/helpers/incident_management/escalation_policy_helper.rb b/ee/app/helpers/incident_management/escalation_policy_helper.rb
index 265f26809af453f340c6915f10abe4ef859e85f2..6c31ee207bff2cf329f0166eab8814d519d105b6 100644
--- a/ee/app/helpers/incident_management/escalation_policy_helper.rb
+++ b/ee/app/helpers/incident_management/escalation_policy_helper.rb
@@ -5,7 +5,7 @@ module EscalationPolicyHelper
     def escalation_policy_data(project)
       {
         'project-path' => project.full_path,
-        'empty_escalation_policies_svg_path' => image_path('illustrations/empty-state/empty-escalation.svg'),
+        'empty_escalation_policies_svg_path' => image_path('illustrations/status/status-new-md.svg'),
         'user_can_create_escalation_policy' => can?(
           current_user,
           :admin_incident_management_escalation_policy, project
diff --git a/ee/spec/helpers/incident_management/escalation_policy_helper_spec.rb b/ee/spec/helpers/incident_management/escalation_policy_helper_spec.rb
index 71fea6ab7dc79650e857df6e0d4f0614648fed88..c7456d4da90a63cda4f30198cacf337840c31335 100644
--- a/ee/spec/helpers/incident_management/escalation_policy_helper_spec.rb
+++ b/ee/spec/helpers/incident_management/escalation_policy_helper_spec.rb
@@ -20,7 +20,7 @@
     it 'returns escalation policies data' do
       is_expected.to eq(
         'project-path' => project.full_path,
-        'empty_escalation_policies_svg_path' => helper.image_path('illustrations/empty-state/empty-escalation.svg'),
+        'empty_escalation_policies_svg_path' => helper.image_path('illustrations/status/status-new-md.svg'),
         'user_can_create_escalation_policy' => 'false',
         'access_level_description_path' => Gitlab::Routing.url_helpers.project_project_members_url(
           project,