diff --git a/alfa-client/libs/design-system/src/lib/button/button.stories.ts b/alfa-client/libs/design-system/src/lib/button/button.stories.ts index bbaeb0c5866e6b55519d35ca74e83fa9eaf9c44b..5db5e2e20ad61881bf767c822890d900898544ea 100644 --- a/alfa-client/libs/design-system/src/lib/button/button.stories.ts +++ b/alfa-client/libs/design-system/src/lib/button/button.stories.ts @@ -36,7 +36,6 @@ export const Default: Story = { export const WithIcon: Story = { args: { text: 'I have an icon', - isLoading: false, variant: 'outline', }, render: (args) => ({ @@ -46,3 +45,10 @@ export const WithIcon: Story = { </ods-button>`, }), }; + +export const IsLoading: Story = { + args: { + text: 'Loading...', + isLoading: true, + }, +};