fix: add correct size to storybook icon buttons (#16539)

Jaayden and I noticed that the icon button in storybooks didn't look
correct. This PR fixes that by adding the correct size argument.
This commit is contained in:
brettkolodny
2025-02-12 14:28:15 -05:00
committed by GitHub
parent f65051966c
commit f1c26050b1
@@ -96,6 +96,7 @@ export const DestructiveSmall: Story = {
export const IconButtonDefault: Story = {
args: {
variant: "default",
size: "icon",
children: <PlusIcon />,
},
};
@@ -103,6 +104,7 @@ export const IconButtonDefault: Story = {
export const IconButtonOutline: Story = {
args: {
variant: "outline",
size: "icon",
children: <PlusIcon />,
},
};
@@ -110,6 +112,7 @@ export const IconButtonOutline: Story = {
export const IconButtonSubtle: Story = {
args: {
variant: "subtle",
size: "icon",
children: <PlusIcon />,
},
};