diff --git a/canon-docs/src/content/components/button-icon.mdx b/canon-docs/src/content/components/button-icon.mdx
index 2281814a89..b020b19f33 100644
--- a/canon-docs/src/content/components/button-icon.mdx
+++ b/canon-docs/src/content/components/button-icon.mdx
@@ -14,7 +14,7 @@ import {
} from './button-icon.props';
import { ComponentInfos } from '@/components/ComponentInfos';
-# Icon Button
+# ButtonIcon
A button component with a single icon that can be used to trigger actions.
@@ -27,7 +27,7 @@ A button component with a single icon that can be used to trigger actions.
diff --git a/canon-docs/src/content/components/button-icon.props.ts b/canon-docs/src/content/components/button-icon.props.ts
index 160690a29e..a21bf3cd57 100644
--- a/canon-docs/src/content/components/button-icon.props.ts
+++ b/canon-docs/src/content/components/button-icon.props.ts
@@ -48,7 +48,7 @@ export const buttonIconSizesSnippet = `
} size="medium" />
`;
-export const buttonIconDisabledSnippet = `} disabled />`;
+export const buttonIconDisabledSnippet = `} isDisabled />`;
export const buttonIconResponsiveSnippet = `} variant={{ initial: 'primary', lg: 'secondary' }} />`;
diff --git a/canon-docs/src/content/components/button-link.mdx b/canon-docs/src/content/components/button-link.mdx
index 3f24874220..f6da987941 100644
--- a/canon-docs/src/content/components/button-link.mdx
+++ b/canon-docs/src/content/components/button-link.mdx
@@ -26,7 +26,7 @@ A button component that can be used as a link.
diff --git a/canon-docs/src/content/components/button-link.props.ts b/canon-docs/src/content/components/button-link.props.ts
index 94d696b736..b92b3154e5 100644
--- a/canon-docs/src/content/components/button-link.props.ts
+++ b/canon-docs/src/content/components/button-link.props.ts
@@ -36,10 +36,10 @@ export const buttonLinkSnippetUsage = `import { ButtonLink } from '@backstage/ca
`;
export const buttonLinkVariantsSnippet = `
-
+ } variant="primary">
Button
-
+ } variant="secondary">
Button
`;
diff --git a/canon-docs/src/content/components/button.mdx b/canon-docs/src/content/components/button.mdx
index 89d3c3f612..c0053d0f5e 100644
--- a/canon-docs/src/content/components/button.mdx
+++ b/canon-docs/src/content/components/button.mdx
@@ -27,7 +27,7 @@ A button component that can be used to trigger actions.