diff --git a/docs-ui/src/content/select.mdx b/docs-ui/src/content/select.mdx
index 436129d749..45aa9d1f26 100644
--- a/docs-ui/src/content/select.mdx
+++ b/docs-ui/src/content/select.mdx
@@ -14,6 +14,7 @@ import {
selectSearchableSnippet,
selectMultipleSnippet,
selectSearchableMultipleSnippet,
+ selectDisabledOptionsSnippet,
} from './select.props';
import { PageTitle } from '@/components/PageTitle';
import { Theming } from '@/components/Theming';
@@ -91,6 +92,19 @@ Here's a view when the select is disabled.
code={selectDisabledSnippet}
/>
+### Disabled options
+
+You can disable specific options within the Select component using `disabledKeys`.
+
+}
+ code={selectDisabledOptionsSnippet}
+/>
+
+
### Searchable
Here's a view when the select has searchable filtering.
@@ -127,6 +141,7 @@ Here's a view when the select combines search and multiple selection.
code={selectSearchableMultipleSnippet}
/>
+
### Responsive
Here's a view when the select is responsive.
@@ -136,3 +151,4 @@ Here's a view when the select is responsive.
+
diff --git a/docs-ui/src/content/select.props.ts b/docs-ui/src/content/select.props.ts
index 05f0d895c9..5c5dfb7fc8 100644
--- a/docs-ui/src/content/select.props.ts
+++ b/docs-ui/src/content/select.props.ts
@@ -209,3 +209,16 @@ export const selectSearchableMultipleSnippet = ``;
+
+export const selectDisabledOptionsSnippet = ``;