diff --git a/site/src/components/Button/Button.stories.tsx b/site/src/components/Button/Button.stories.tsx
index 3dc5001064f44..ceeb395cf8006 100644
--- a/site/src/components/Button/Button.stories.tsx
+++ b/site/src/components/Button/Button.stories.tsx
@@ -96,6 +96,7 @@ export const DestructiveSmall: Story = {
export const IconButtonDefault: Story = {
args: {
variant: "default",
+ size: "icon",
children: ,
},
};
@@ -103,6 +104,7 @@ export const IconButtonDefault: Story = {
export const IconButtonOutline: Story = {
args: {
variant: "outline",
+ size: "icon",
children: ,
},
};
@@ -110,6 +112,7 @@ export const IconButtonOutline: Story = {
export const IconButtonSubtle: Story = {
args: {
variant: "subtle",
+ size: "icon",
children: ,
},
};