diff --git a/src/Button/Button.stories.js b/src/Button/Button.stories.js index a868f1c5..425d86e6 100644 --- a/src/Button/Button.stories.js +++ b/src/Button/Button.stories.js @@ -24,7 +24,6 @@ export const Default = () => ({ disabled: boolean("Disabled (disabled)", false), size: select("Button size (size)", sizes, "default"), iconDescription: text("Icon description (iconDescription)", "Button icon"), - small: boolean("Small (small) - Deprecated in favor of `size`", false), }, }); @@ -54,7 +53,7 @@ export const SetOfButtons = () => ({ props: { story: "set of buttons", disabled: boolean("Disabled (disabled)", false), - small: boolean("Small (small)", false), + stacked: boolean("Stacked (stacked)", false), size: select("Button size (size)", sizes, "default"), iconDescription: text("Icon description (iconDescription)", "Button icon"), },