diff --git a/docs/content/3.components/alert.md b/docs/content/3.components/alert.md
index d792a5d5..c489bf74 100644
--- a/docs/content/3.components/alert.md
+++ b/docs/content/3.components/alert.md
@@ -131,7 +131,7 @@ props:
---
::
-You can also pass all the props of the [Button](/components/button) component to customize it.
+You can pass any property from the [Button](/components/button) component to customize it.
::component-code
---
diff --git a/docs/content/3.components/avatar.md b/docs/content/3.components/avatar.md
index f4e52b40..5d5702d1 100644
--- a/docs/content/3.components/avatar.md
+++ b/docs/content/3.components/avatar.md
@@ -17,7 +17,11 @@ The Avatar uses the `NuxtImg` component when [`@nuxt/image`](https://github.com/
### Src
-Use the `src` prop to set the image URL. You can pass any property from HTML `
` element such as `alt`, `loading`, etc.
+Use the `src` prop to set the image URL.
+
+::note
+You can pass any property from the HTML `
` element such as `alt`, `loading`, etc.
+::
::component-code
---
diff --git a/docs/content/3.components/breadcrumb.md b/docs/content/3.components/breadcrumb.md
index 26ba14d2..f9241924 100644
--- a/docs/content/3.components/breadcrumb.md
+++ b/docs/content/3.components/breadcrumb.md
@@ -18,7 +18,7 @@ Use the `items` prop as an array of objects with the following properties:
- `class?: any`{lang="ts-type"}
- [`slot?: string`{lang="ts-type"}](#with-custom-slot)
-You can also pass any property from the [Link](/components/link#props) component such as `to`, `target`, etc.
+You can pass any property from the [Link](/components/link#props) component such as `to`, `target`, etc.
::component-code
---
diff --git a/docs/content/3.components/command-palette.md b/docs/content/3.components/command-palette.md
index 5c12b6f4..394b7bcc 100644
--- a/docs/content/3.components/command-palette.md
+++ b/docs/content/3.components/command-palette.md
@@ -358,7 +358,7 @@ props:
---
::
-You can also pass all the props of the [Button](/components/button) component to customize it.
+You can pass any property from the [Button](/components/button) component to customize it.
::component-code
---
diff --git a/docs/content/3.components/context-menu.md b/docs/content/3.components/context-menu.md
index 618ca28d..f47678ad 100644
--- a/docs/content/3.components/context-menu.md
+++ b/docs/content/3.components/context-menu.md
@@ -32,7 +32,7 @@ Use the `items` prop as an array of objects with the following properties:
- `onSelect?(e: Event): void`{lang="ts-type"}
- [`onUpdateChecked?(checked: boolean): void`{lang="ts-type"}](#with-checkbox-items)
-You can also pass any property from the [Link](/components/link#props) component such as `to`, `target`, etc.
+You can pass any property from the [Link](/components/link#props) component such as `to`, `target`, etc.
::component-code
---
@@ -104,7 +104,7 @@ slots:
::
::note
-You can pass an array of arrays to the `items` prop to create separated groups of items.
+You can also pass an array of arrays to the `items` prop to create separated groups of items.
::
::tip
diff --git a/docs/content/3.components/dropdown-menu.md b/docs/content/3.components/dropdown-menu.md
index 32537010..9562bbac 100644
--- a/docs/content/3.components/dropdown-menu.md
+++ b/docs/content/3.components/dropdown-menu.md
@@ -32,7 +32,7 @@ Use the `items` prop as an array of objects with the following properties:
- `onSelect?(e: Event): void`{lang="ts-type"}
- [`onUpdateChecked?(checked: boolean): void`{lang="ts-type"}](#with-checkbox-items)
-You can also pass any property from the [Link](/components/link#props) component such as `to`, `target`, etc.
+You can pass any property from the [Link](/components/link#props) component such as `to`, `target`, etc.
::component-code
---
@@ -103,7 +103,7 @@ slots:
::
::note
-You can pass an array of arrays to the `items` prop to create separated groups of items.
+You can also pass an array of arrays to the `items` prop to create separated groups of items.
::
::tip
diff --git a/docs/content/3.components/modal.md b/docs/content/3.components/modal.md
index c1d442b7..880a4794 100644
--- a/docs/content/3.components/modal.md
+++ b/docs/content/3.components/modal.md
@@ -93,7 +93,7 @@ slots:
Use the `close` prop to customize or hide the close button (with `false` value) displayed in the Modal's header.
-You can pass all the props of the [Button](/components/button) component to customize it.
+You can pass any property from the [Button](/components/button) component to customize it.
::component-code
---
diff --git a/docs/content/3.components/navigation-menu.md b/docs/content/3.components/navigation-menu.md
index 820fb6a1..787ca6a5 100644
--- a/docs/content/3.components/navigation-menu.md
+++ b/docs/content/3.components/navigation-menu.md
@@ -27,7 +27,7 @@ Use the `items` prop as an array of objects with the following properties:
- [`slot?: string`{lang="ts-type"}](#with-custom-slot)
- `onSelect?(e: Event): void`{lang="ts-type"}
-You can also pass any property from the [Link](/components/link#props) component such as `to`, `target`, etc.
+You can pass any property from the [Link](/components/link#props) component such as `to`, `target`, etc.
::component-code
---
@@ -120,7 +120,7 @@ props:
::
::note
-You can pass an array of arrays to the `items` prop to display groups of items.
+You can also pass an array of arrays to the `items` prop to display groups of items.
::
::tip
diff --git a/docs/content/3.components/select-menu.md b/docs/content/3.components/select-menu.md
index 092ae9ff..5b94bb32 100644
--- a/docs/content/3.components/select-menu.md
+++ b/docs/content/3.components/select-menu.md
@@ -202,7 +202,7 @@ props:
Use the `search-input` prop to customize or hide the search input (with `false` value).
-You can pass all the props of the [Input](/components/input) component to customize it.
+You can pass any property from the [Input](/components/input) component to customize it.
::component-code
---
diff --git a/docs/content/3.components/slideover.md b/docs/content/3.components/slideover.md
index 36f4210b..706fb177 100644
--- a/docs/content/3.components/slideover.md
+++ b/docs/content/3.components/slideover.md
@@ -93,7 +93,7 @@ slots:
Use the `close` prop to customize or hide the close button (with `false` value) displayed in the Slideover's header.
-You can pass all the props of the [Button](/components/button) component to customize it.
+You can pass any property from the [Button](/components/button) component to customize it.
::component-code
---