diff --git a/apps/website/screens/components/link/code/LinkCodePage.tsx b/apps/website/screens/components/link/code/LinkCodePage.tsx
index 5292dadc3..a3ba4610a 100644
--- a/apps/website/screens/components/link/code/LinkCodePage.tsx
+++ b/apps/website/screens/components/link/code/LinkCodePage.tsx
@@ -42,7 +42,7 @@ const sections = [
boolean
|
- If true, the link is disabled. |
+ If true, the link will be disabled. |
false
|
diff --git a/apps/website/screens/components/nav-tabs/code/NavTabsCodePage.tsx b/apps/website/screens/components/nav-tabs/code/NavTabsCodePage.tsx
index d33144905..fdfff9578 100644
--- a/apps/website/screens/components/nav-tabs/code/NavTabsCodePage.tsx
+++ b/apps/website/screens/components/nav-tabs/code/NavTabsCodePage.tsx
@@ -110,7 +110,7 @@ const sections = [
boolean
|
- Whether the tab is disabled or not. |
+ If true, the tab will be disabled. |
false
|
diff --git a/apps/website/screens/components/tabs/code/TabsCodePage.tsx b/apps/website/screens/components/tabs/code/TabsCodePage.tsx
index bbde19305..16998acfc 100644
--- a/apps/website/screens/components/tabs/code/TabsCodePage.tsx
+++ b/apps/website/screens/components/tabs/code/TabsCodePage.tsx
@@ -130,7 +130,7 @@ const sections = [
boolean
|
- Whether the tab is disabled or not. |
+ If true, the tab will be disabled. |
false
|
diff --git a/apps/website/screens/components/wizard/code/WizardCodePage.tsx b/apps/website/screens/components/wizard/code/WizardCodePage.tsx
index c4470d750..0410a95c8 100644
--- a/apps/website/screens/components/wizard/code/WizardCodePage.tsx
+++ b/apps/website/screens/components/wizard/code/WizardCodePage.tsx
@@ -111,7 +111,7 @@ const sections = [
name or SVG element used as the icon displayed in the step.
- disabled: Whether the step is disabled or not.
+ disabled: If true, the step will be disabled.
valid: Whether the step is valid or not.
diff --git a/packages/lib/src/link/types.ts b/packages/lib/src/link/types.ts
index bea6ded47..8802dbc31 100644
--- a/packages/lib/src/link/types.ts
+++ b/packages/lib/src/link/types.ts
@@ -2,7 +2,7 @@ import { Margin, SVG, Space } from "../common/utils";
export type LinkProps = {
/**
- * If true, the link is disabled.
+ * If true, the link will be disabled.
*/
disabled?: boolean;
/**
diff --git a/packages/lib/src/nav-tabs/types.ts b/packages/lib/src/nav-tabs/types.ts
index 83fafddc2..5bc960f20 100644
--- a/packages/lib/src/nav-tabs/types.ts
+++ b/packages/lib/src/nav-tabs/types.ts
@@ -17,7 +17,7 @@ export type TabProps = {
*/
children: string;
/**
- * Whether the tab is disabled or not.
+ * If true, the tab will be disabled.
*/
disabled?: boolean;
/**
diff --git a/packages/lib/src/wizard/types.ts b/packages/lib/src/wizard/types.ts
index df8d87b65..074edb1d3 100644
--- a/packages/lib/src/wizard/types.ts
+++ b/packages/lib/src/wizard/types.ts
@@ -14,7 +14,7 @@ export type StepProps = {
*/
icon?: string | SVG;
/**
- * Whether the step is disabled or not.
+ * If true, the step will be disabled.
*/
disabled?: boolean;
/**