diff --git a/packages/react/cypress-image-diff-screenshots/baseline/IcButton.cy.tsx-icon-variants-button-group.png b/packages/react/cypress-image-diff-screenshots/baseline/IcButton.cy.tsx-icon-variants-button-group.png
deleted file mode 100755
index d944c97987..0000000000
Binary files a/packages/react/cypress-image-diff-screenshots/baseline/IcButton.cy.tsx-icon-variants-button-group.png and /dev/null differ
diff --git a/packages/react/cypress-image-diff-screenshots/baseline/IcButton.cy.tsx-icon-variants-high-contrast.png b/packages/react/cypress-image-diff-screenshots/baseline/IcButton.cy.tsx-icon-variants-high-contrast.png
deleted file mode 100755
index 4a7032d5f8..0000000000
Binary files a/packages/react/cypress-image-diff-screenshots/baseline/IcButton.cy.tsx-icon-variants-high-contrast.png and /dev/null differ
diff --git a/packages/react/src/component-tests/IcButton/IcButtonTestData.tsx b/packages/react/src/component-tests/IcButton/IcButtonTestData.tsx
index 526b529a9b..b2aac05b1b 100644
--- a/packages/react/src/component-tests/IcButton/IcButtonTestData.tsx
+++ b/packages/react/src/component-tests/IcButton/IcButtonTestData.tsx
@@ -33,6 +33,14 @@ export const iconProps = {
disabled: false,
monochrome: false,
},
+ iconLoading: {
+ title: "Default",
+ size: "medium",
+ theme: "light",
+ loading: true,
+ disabled: false,
+ monochrome: false,
+ },
iconDisabled: {
title: "Disabled",
size: "medium",
@@ -49,6 +57,14 @@ export const iconProps = {
disabled: false,
monochrome: true,
},
+ iconDarkLoading: {
+ title: "Dark",
+ size: "medium",
+ theme: "dark",
+ loading: true,
+ disabled: false,
+ monochrome: true,
+ },
iconLight: {
title: "Light",
size: "medium",
@@ -57,6 +73,14 @@ export const iconProps = {
disabled: false,
monochrome: true,
},
+ iconLightLoading: {
+ title: "Light",
+ size: "medium",
+ theme: "light",
+ loading: true,
+ disabled: false,
+ monochrome: true,
+ },
};
export const SlottedIcon = () => {
@@ -787,9 +811,12 @@ export const IconButtonGroup = (): ReactElement => {
+
+
+
>
);
};