diff --git a/packages/components/menu/src/menu-button.stories.ts b/packages/components/menu/src/menu-button.stories.ts index 442b02b19..f50d26288 100644 --- a/packages/components/menu/src/menu-button.stories.ts +++ b/packages/components/menu/src/menu-button.stories.ts @@ -22,6 +22,7 @@ type Props = Pick; @@ -86,7 +87,7 @@ export default { // Disables Chromatic's snapshotting on a story level chromatic: { disableSnapshot: true } }, - render: ({ alignSelf, body, disabled, fill, justifySelf, menuItems, position, size, variant }) => { + render: ({ alignSelf, body, disabled, fill, justifySelf, label, menuItems, position, size, variant }) => { return html` `, + label: 'Label', menuItems: () => html` @@ -138,14 +141,16 @@ export const IconAndText: Story = { body: html` Settings - ` + `, + label: undefined } }; export const Text: Story = { args: { ...Basic.args, - body: html`Settings` + body: html`Settings`, + label: undefined } };