diff --git a/frontends/ol-components/src/components/Button/Button.mdx b/frontends/ol-components/src/components/Button/Button.mdx
index 6c97def52d..cda40de939 100644
--- a/frontends/ol-components/src/components/Button/Button.mdx
+++ b/frontends/ol-components/src/components/Button/Button.mdx
@@ -6,7 +6,7 @@ import * as ButtonStories from "./Button.stories"
# Button
-Use prop `variant="primary" | "secondary" | "tertiary" | "text"` to set the button variant:
+Use prop `variant="primary" | "secondary" | "tertiary" | "bordered" | "noBorder" | "inverted" | "success" | "text"` to set the button variant:
diff --git a/frontends/ol-components/src/components/Button/Button.stories.tsx b/frontends/ol-components/src/components/Button/Button.stories.tsx
index 499e408c33..d7e7e71175 100644
--- a/frontends/ol-components/src/components/Button/Button.stories.tsx
+++ b/frontends/ol-components/src/components/Button/Button.stories.tsx
@@ -34,9 +34,11 @@ const meta: Meta = {
"primary",
"secondary",
"tertiary",
- "text",
+ "bordered",
+ "noBorder",
"inverted",
- "text-secondary",
+ "success",
+ "text",
],
control: { type: "select" },
},
@@ -88,15 +90,21 @@ export const VariantStory: Story = {
-