diff --git a/src/components/Button/ButtonAsLink.stories.tsx b/src/components/Button/ButtonAsLink.stories.tsx index 6478ce10ee..653c00239c 100644 --- a/src/components/Button/ButtonAsLink.stories.tsx +++ b/src/components/Button/ButtonAsLink.stories.tsx @@ -6,25 +6,25 @@ const meta: Meta = { title: "Buttons/Button As Link", component: Component, argTypes: { - label: { - defaultValue: "Click me", - }, - variant: { - defaultValue: "minimal", - }, - href: { - defaultValue: "/", - }, - }, + label: { + defaultValue: "Click me", + }, + variant: { + defaultValue: "minimal", + }, + href: { + defaultValue: "/", + }, + }, }; export default meta; type Story = StoryObj; -export const ButtonAsLink : Story = { +export const ButtonAsLink: Story = { args: { - label: "Click me", - variant: "minimal", - href: "/", + label: "Click me", + variant: "minimal", + href: "/", }, };