diff --git a/src/Button/Button.stories.mdx b/src/Button/Button.stories.mdx
index 0957b1ad..4d6f6f32 100644
--- a/src/Button/Button.stories.mdx
+++ b/src/Button/Button.stories.mdx
@@ -363,28 +363,32 @@ For dark themed buttons, the borders are completely removed to make the colors l
-## Custom element
+## `as`
-You can customize the element rendered by `Button`. This is helpful when you want to render a link that looks like a button.
+Specify the element used to render the button with the `as` prop. The default is ``.
+
+All props added to the `as` element will be merged with the props added by the `Button` component. `classNames`, `styles`, and `css` will be intelligently merged.
-
- }>Link
-
-
- } color={colors.red.base}>
- Link
-
-
-
- } color={colors.blue.base} feel="flat">
- Link
-
-
-
- } color={colors.white}>
- Link
-
+
+
+ }>Default
+ }>
+ White
+
+ }>
+ Indigo
+
+ }>
+ Red
+
+ }>
+ Green
+
+ }>
+ Blue
+
+