Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
aversini committed Feb 26, 2024
1 parent b5d9295 commit f30a3a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/ui-components/src/components/Bubble/Bubble.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const Bubble = ({
onClick={handleCopyToClipboard}
disabled={copied}
>
{copied ? <IconCopied decorative /> : <IconCopy decorative />}
{copied ? <IconCopied /> : <IconCopy />}
</ButtonIcon>
</div>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ describe("ButtonIcon modifiers", () => {
it("should render a size small button icon with a label on the right", async () => {
render(
<ButtonIcon size="small" labelRight="Settings">
<IconSettings decorative />
<IconSettings />
</ButtonIcon>,
);
const button = await screen.findByRole("button");
Expand All @@ -112,7 +112,7 @@ describe("ButtonIcon modifiers", () => {
it("should render a size small button icon with a label on the left", async () => {
render(
<ButtonIcon size="small" labelLeft="Settings">
<IconSettings decorative />
<IconSettings />
</ButtonIcon>,
);
const button = await screen.findByRole("button");
Expand All @@ -134,7 +134,7 @@ describe("ButtonIcon modifiers", () => {
it("should render a size medium button icon with a label on the right", async () => {
render(
<ButtonIcon size="medium" labelRight="Settings">
<IconSettings decorative />
<IconSettings />
</ButtonIcon>,
);
const button = await screen.findByRole("button");
Expand All @@ -146,7 +146,7 @@ describe("ButtonIcon modifiers", () => {
it("should render a size medium button icon with a label on the left", async () => {
render(
<ButtonIcon size="medium" labelLeft="Settings">
<IconSettings decorative />
<IconSettings />
</ButtonIcon>,
);
const button = await screen.findByRole("button");
Expand All @@ -168,7 +168,7 @@ describe("ButtonIcon modifiers", () => {
it("should render a size large button icon with a label on the right", async () => {
render(
<ButtonIcon size="large" labelRight="Settings">
<IconSettings decorative />
<IconSettings />
</ButtonIcon>,
);
const button = await screen.findByRole("button");
Expand All @@ -180,7 +180,7 @@ describe("ButtonIcon modifiers", () => {
it("should render a size large button icon with a label on the left", async () => {
render(
<ButtonIcon size="large" labelLeft="Settings">
<IconSettings decorative />
<IconSettings />
</ButtonIcon>,
);
const button = await screen.findByRole("button");
Expand Down

0 comments on commit f30a3a6

Please sign in to comment.