From 47b9db0f34ea60e893be3e6a5af7c22f1b6b3d8a Mon Sep 17 00:00:00 2001 From: Rebecca Alpert Date: Thu, 11 Jun 2026 21:18:14 -0400 Subject: [PATCH] fix(PendingIcon): Replace PendingIcon with RhUiPendingIcon Co-authored-by: Cursor --- .../components/ProgressStepper/examples/ProgressStepper.md | 2 +- .../ProgressStepper/examples/ProgressStepperCustomIcons.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/react-core/src/components/ProgressStepper/examples/ProgressStepper.md b/packages/react-core/src/components/ProgressStepper/examples/ProgressStepper.md index cf2ae15a207..c4ddf5db72c 100644 --- a/packages/react-core/src/components/ProgressStepper/examples/ProgressStepper.md +++ b/packages/react-core/src/components/ProgressStepper/examples/ProgressStepper.md @@ -7,7 +7,7 @@ propComponents: ['ProgressStepper', 'ProgressStep'] import { Fragment, useState } from 'react'; import RhUiInProgressIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-in-progress-icon'; -import PendingIcon from '@patternfly/react-icons/dist/esm/icons/pending-icon'; +import RhUiPendingIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-pending-icon'; ## Examples diff --git a/packages/react-core/src/components/ProgressStepper/examples/ProgressStepperCustomIcons.tsx b/packages/react-core/src/components/ProgressStepper/examples/ProgressStepperCustomIcons.tsx index 6aa0aef78f2..326b76cbcd7 100644 --- a/packages/react-core/src/components/ProgressStepper/examples/ProgressStepperCustomIcons.tsx +++ b/packages/react-core/src/components/ProgressStepper/examples/ProgressStepperCustomIcons.tsx @@ -1,6 +1,6 @@ import { ProgressStepper, ProgressStep } from '@patternfly/react-core'; import RhUiInProgressIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-in-progress-icon'; -import PendingIcon from '@patternfly/react-icons/dist/esm/icons/pending-icon'; +import RhUiPendingIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-pending-icon'; export const ProgressStepperCustomIcons: React.FunctionComponent = () => ( @@ -23,7 +23,7 @@ export const ProgressStepperCustomIcons: React.FunctionComponent = () => ( } + icon={} id="custom-step3" titleId="custom-step3-title" aria-label="pending step"