Skip to content

Commit

Permalink
fix(Pattern-Saving): Reversed the icons for default and success states
Browse files Browse the repository at this point in the history
Signed-off-by: Mridula Mohan <[email protected]>
  • Loading branch information
MriduMohan committed Oct 11, 2023
1 parent 1bcff24 commit 2912167
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ibm-products/src/components/Saving/Saving.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export let Saving = forwardRef(
default: {
text: defaultText,
iconDescription: defaultIconDescription,
icon: (props) => <CheckmarkOutline size={16} {...props} />,
icon: (props) => <Save size={16} {...props} />,
},
['in-progress']: {
text: inProgressText,
Expand All @@ -56,7 +56,7 @@ export let Saving = forwardRef(
success: {
text: successText,
iconDescription: successIconDescription,
icon: (props) => <Save size={16} {...props} />,
icon: (props) => <CheckmarkOutline size={16} {...props} />,
},
fail: {
text: failText,
Expand Down

0 comments on commit 2912167

Please sign in to comment.